/* hero */

.hero {
    width: 100%;
    height: 100dvh;
    background: black;
    position: relative;

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slider img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: 1s ease-in-out;
        filter: brightness(30%);
    }

    .hero-slider img.active {
        opacity: 1;
    }

    .content {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        .header {
            color: white;
            font-weight: 700;
            font-size: 48px;
            text-align: center;
            font-family: Jost;
        }

        .sub-header {
            color: white;
            font-weight: 300;
            font-size: 44px;
            text-align: center;
            font-family: Jost;
        }

        .text {
            color: white;
            font-weight: 200;
            letter-spacing: 2px;
            text-align: center;
        }

        .know-more-anchor {
            background: white;
            font-weight: 500;
            padding: 12px 40px;
            color: black;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 3px;
            border: none;

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

/* hero end */


/* know-more */

.know-more {
    width: 100%;
    padding: 50px 0;
    background: var(--tertiary);

    .header {
        text-align: center;
        font-size: 36px;
        font-weight: 100;
        color: white;
        margin-bottom: 12px;
        letter-spacing: 3px;
    }

    .text {
        text-align: center;
        color: white;
        font-weight: 200;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 14px;
    }

    .custom-anchor {
        text-decoration: none;
        border: 1px solid white;
        padding: 15px 30px;
        border-radius: 30px;
        color: white;
        font-weight: 500;
        letter-spacing: 3px;

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

@media(max-width:576px) {
    .know-more {
        .text {
            font-size: 12px;
            letter-spacing: normal;
        }
    }
}


/* know-more end */

/* industries */

.industries {
    width: 100%;
    background: white;
    padding: 60px 0;

    .header {
        text-align: center;
        font-size: 28px;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .sub-header {
        text-align: center;
        font-size: 30px;
        margin: 15px 25px;
        font-weight: 400;
        color: black;
    }

    .industries-card {
        width: 100%;
        height: 100%;
        margin: 0 25px;
        position: relative;

        .industries-card-img {
            width: 100%;
            /* aspect-ratio: 1 / .6; */
        }

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

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

        .industry-card-anchor {
            display: inline-block;
            text-decoration: none;
            margin-top: 20px;
            color: black;
            font-size: 14px;
            font-weight: 500;

            &:hover {
                font-weight: 700;
            }

            img {
                width: 30px;
            }
        }
    }

    .view-all-anchor {
        padding: 10px 40px;
        text-decoration: none;
        text-align: center;
        color: white;
        background: var(--secondary);
        font-family: InriaSans;
        font-weight: 700;
        letter-spacing: 1px;

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

@media(max-width:1100px) {
    .industries {
        .industries-card {
            margin: 0 15px;
        }
    }
}

@media(max-width:768px) {
    .industries {
        .industries-card {
            margin: 0 5px;
        }
    }
}

/* industries end */

/* partners */

.partners {
    width: 100%;
    padding: 60px 0;
    background: rgb(233, 233, 233);

    .header {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }

    .logo {
        width: 100%;
        margin: 0 5px;
    }

    .logo-img {
        width: 100%;
    }
}

/* partners end */