/* About */
.about {
    width: 100%;
    padding: 75px 0px;
}

.about-div {
    width: 90%;
    margin: auto;
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.about-div h4 {
    color: var(--orange);
    font-weight: var(--fw-md);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-div h3 {
    font-family: var(--secondary-font);
    color: var(--sub);
    font-weight: var(--fw-xl);
    margin-bottom: 15px;
}

.about-div h5 {
    font-family: var(--secondary-font);
    color: var(--text-primary);
    font-weight: var(--fw-lg);
    margin-bottom: 15px;
}

.about-div h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 15px;
}

/* What */
.what {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px 60px 0px;
}

.what-div {
    width: 90%;
    margin: auto;
}

.what-cntnt {
    padding: 30px 0px;
}

.what-cl .splide__slide {
    background: var(--sub);
    border-radius: 10px;
    padding: 20px;
}

.what-ct img {
    position: relative;
    width: 98%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px;
    z-index: 0;
    filter: brightness(60%);
}

.what-cl .splide__list {
    gap: 10px !important;
}

.what-ct h5 {
    color: var(--secondary);
    font-weight: var(--fw-lg);
    height: 50px;
    margin-bottom: 10px;
}

.what-ct h5 i {
    font-size: 8px;
}

.what-ct h6 {
    color: var(--light);
    font-weight: var(--fw-sm);
    height: 180px;
    margin-bottom: 30px;
}

.what-cl .splide__arrow {
    top: 107%;
    opacity: 1;
}

.what-cl .splide__arrow--next,
.what-cl .splide__arrow--prev {
    background-color: transparent;
    border: 1px solid var(--sub);
    height: 30px;
    width: 30px;
}

.what-cl .splide__arrow svg {
    fill: var(--text-primary);
    height: 15px;
    width: 15px;
}

/* Techniques */
.techniques {
    width: 100%;
    background-color: var(--sub);
    padding: 50px 0px;
}

.techniques-div {
    width: 90%;
    margin: auto;
}

.techniques-card {
    display: grid;
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.lb-brands {
    width: 70%;
    margin: auto;
    background-color: var(--secondary);
    display: grid;
    grid-template-columns: 40% 58%;
    align-items: start;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.lb-brands h3 {
    color: var(--text-primary);
    font-weight: var(--fw-lg);
    margin-bottom: 25px;
}

.lb-brands li {
    list-style-type: disc;
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 10px;
}

/* Objective */
.objective {
    width: 100%;
    padding: 50px 0px;
}

.objective-div {
    width: 90%;
    margin: auto;
}

.objective-head h3 {
    font-family: var(--secondary-font);
    color: var(--text-primary);
    font-weight: var(--fw-lg);
    margin-bottom: 0px;
}

.objective-card {
    display: grid;
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.objective-items {
    background-color: var(--secondary);
    box-shadow: var(--box-shadow);
    height: 100%;
    padding: 20px;
    border-radius: 10px;
}

.objective-items h5 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.objective-items h5 i {
    font-size: 12px;
}

.objective-items h6 {
    color: var(--text-secondary);
    margin-bottom: 0px;
}

/* Work */
.work {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px;
}

.work-div {
    width: 90%;
    margin: auto;
}

.work-card {
    display: grid;
    grid-template-columns: repeat(5, 19%);
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.work-items img {
    display: flex;
    margin: 0px auto 15px auto;
}

.work-items h5 {
    color: var(--text-primary);
    font-weight: var(--fw-lg);
    margin-bottom: 0px;
    text-align: center;
}

@media screen and (min-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 48% 48%;
    }

    .about-div h3 {
        font-size: 30px;
    }

    .about-div h4 {
        font-size: 14px;
    }

    .about-div h5 {
        font-size: 15px;
    }

    .about-div h6 {
        width: 80%;
        font-size: 16px;
        line-height: 30px;
    }

    /* What */
    .what-ct h5 {
        font-size: 14px;
    }

    .what-ct h6 {
        font-size: 14px;
        line-height: 25px;
    }

    .what-cl .splide__arrow--prev {
        left: 2%;
    }

    .what-cl .splide__arrow--next {
        left: 7%;
    }

    /* Techniques */
    .techniques-card {
        grid-template-columns: 58% 40%;
    }

    .lb-brands {
        width: 70%;
    }

    .lb-brands h3 {
        font-size: 25px;
    }
    
    .lb-brands li {
        font-size: 14px;
    }

    /* Objective */
    .objective-head h3 {
        width: 40%;
        font-size: 35px;
    }

    .objective-card {
        grid-template-columns: repeat(3, 31%);
    }

    .objective-items h5 {
        font-size: 18px;
    }

    .objective-items h6 {
        font-size: 14px;
        line-height: 25px;
    }

    /* Work */
    .work-card {
        grid-template-columns: repeat(5, 19%);
    }

    .work-items h5 {
        font-size: 16px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 45% 45%;
    }

    .about-div h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .about-div h4 {
        font-size: 12px;
    }

    .about-div h5 {
        font-size: 14px;
    }

    .about-div h6 {
        width: 85%;
        font-size: 16px;
        line-height: 25px;
    }

    /* What */
    .what-ct h5 {
        font-size: 12px;
    }

    .what-ct h6 {
        font-size: 12px;
        line-height: 22px;
    }

    .what-cl .splide__arrow--prev {
        left: 4%;
    }

    .what-cl .splide__arrow--next {
        left: 14%;
    }

    /* Techniques */
    .techniques-card {
        grid-template-columns: 60% 38%;
    }

    .lb-brands {
        width: 80%;
    }

    .lb-brands h3 {
        font-size: 20px;
    }
    
    .lb-brands li {
        font-size: 14px;
    }

    /* Objective */
    .objective-head h3 {
        width: 60%;
        font-size: 25px;
    }

    .objective-card {
        grid-template-columns: repeat(3, 32%);
    }

    .objective-items h5 {
        font-size: 14px;
    }

    .objective-items h6 {
        font-size: 12px;
        line-height: 20px;
    }

    /* Work */
    .work-card {
        grid-template-columns: repeat(5, 19%);
    }

    .work-items h5 {
        font-size: 14px;
    }

}

@media screen and (max-width: 767px) {

    /* About */
    .about-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-div h3 {
        font-size: 30px;
        text-align: left;
    }

    .about-div h4 {
        font-size: 14px;
        text-align: left;
    }

    .about-div h5 {
        font-size: 15px;
        text-align: left;
    }

    .about-div h6 {
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
    }

    /* What */
    .what-ct h5 {
        font-size: 14px;
    }

    .what-ct h6 {
        font-size: 14px;
        line-height: 25px;
    }

    .what-cl .splide__arrow--prev {
        left: 7%;
    }

    .what-cl .splide__arrow--next {
        left: 27%;
    }

    /* Techniques */
    .techniques-card {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .lb-brands {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .lb-brands img {
        width: 100% !important;
    }

    .lb-brands h3 {
        font-size: 18px;
    }
    
    .lb-brands li {
        font-size: 12px;
    }

    /* Objective */
    .objective-head h3 {
        width: 100%;
        font-size: 20px;
        text-align: center;
    }

    .objective-card {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .objective-items h5 {
        font-size: 14px;
    }

    .objective-items h6 {
        font-size: 12px;
        line-height: 20px;
    }

    /* Work */
    .work-card {
        grid-template-columns: repeat(2, 49%);
        row-gap: 20px;
    }

    .work-items h5 {
        font-size: 12px;
    }

}