@import url(../bootstrap-icons/font/bootstrap-icons.min.css);
.industries {
    width: 100%;
    background: white;
    padding: 60px 0;

    .header {
        font-size: 30px;
        color: black;
        text-align: center;
        font-weight: 600;
    }

    .industries-card {
        width: 100%;
        height: 100%;
        position: relative;

        .industries-card-img {
            width: 100%;
        }

        .sub-header {
            margin: 15px 0 10px 0;
            font-weight: 600;
            font-size: 18px;
        }

        .text {
            color: #525252;
            font-size: 14px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .industry-card-anchor {
            display: inline-block;
            text-decoration: none;
            margin-top: 20px;
            padding: 8px 30px;
            border: 1px solid var(--primary);
            background: white;
            color: black;
            font-size: 12px;

            &:hover {
                background: var(--primary);
                border: 1px solid var(--primary);
                color: white;
            }

            img {
                width: 30px;
            }
        }
    }
}

/* hero */

.hero {
    width: 100%;
    padding: 180px 0 100px 0;

    .header {
        text-align: center;
        color: white;
        margin-bottom: 25px;
        font-size: 30px;
    }

    .text {
        width: 70%;
        color: white;
        text-align: center;
        font-size: 14px;
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:992px) {
    .hero {
        .text {
            width: 100%;
        }
    }
}

/* hero end */

/* fancy-box */

.shuffle-box {
    width: 100%;
    background: white;
    padding: 50px 0;

    .sidebar {
        width: 100%;

        .category-button {
            display: block;
            width: 100%;
            text-align: left;
            padding: 12px 0;
            border: none;
            outline: none;
            background: white;
            font-weight: 400;
            border-bottom: 1px solid lightgray;

            &:hover {
                color: var(--primary);
            }
        }

        .category-button.active {
            color: var(--primary);
            font-weight: 600;
        }
    }

    .content {
        width: 100%;

        .content-card {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--primary);
            padding: 20px;
            transition: .15s ease-in-out;

            &:hover {
                background: var(--primary);
                color: white;
            }

            h6 {
                text-align: center;
                font-size: 14px;
                font-weight: 400;
            }
        }
    }
}

/* fancy-box end */