/* About */
.about {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px;
}

.about-div {
    width: 90%;
    margin: auto;
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.about-div h3 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 20px;
}

.about-div h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 15px;
}

/* Service */
.service {
    width: 100%;
    padding: 30px 0px;
}

.service-div {
    margin: auto;
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.service-div h3 {
    font-weight: var(--fw-xl);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-div h5 {
    font-weight: var(--fw-sm);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.service-div h6 span {
    font-weight: var(--fw-sm);
    color: var(--text-secondary);
    margin-bottom: 0px;
    cursor: pointer;
}

.service-div h6 span:hover {
    color: var(--blue);
}

.arrow-div {
    width: 90%;
    margin: auto;
}

/* Domains */
.domains {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px;
}

.domains-div {
    width: 90%;
    margin: auto;
}

.domains-card-grp {
    display: grid;
    align-items: start;
    justify-content: space-between;
    row-gap: 20px;
    margin-top: 30px;
}

.domains-cards {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
}

.domains-cards .card-head {
    display: grid;
    grid-template-columns: 75% 20%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.domains-cards h5 {
    color: var(--blue);
    font-weight: var(--fw-md);
    margin-bottom: 0px;
}

.domains-cards h6 {
    color: var(--text-primary);
    font-weight: var(--fw-sm);
    margin-bottom: 0px;
}

.domains-cards .arrow-icon {
    height: 30px;
    width: 30px;
    background-color: #004DE81A;
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 15px;
    transition: var(--transition);
}

.domains-cards:hover .arrow-icon {
    background-color: var(--blue);
    color: var(--secondary);
}

/* Custom SW */
.custom-sw {
    width: 100%;
    padding: 30px 0px;
}

.custom-sw-div {
    width: 90%;
    margin: auto;
}

.custom-sw-card-grp {
    display: grid;
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.custom-sw-card {
    background-color: var(--secondary);
    box-shadow: var(--box-shadow);
    height: 100%;
    border-radius: 15px;
}

.custom-sw-card img {
    border-radius: 15px 15px 0px 0px;
}

.custom-sw-card h5 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 10px;
}

.custom-sw-card h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 0px;
}

/* Showcase */
.showcase {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px 75px 0px;
}

.showcase-div {
    margin: auto;
}

.showcasehead h2 {
    font-weight: var(--fw-xl);
}

.showcasehead h5 {
    font-weight: var(--fw-sm);
}

.showcase-carousel {
    margin-top: 30px;
}

.showcase-cl .splide__pagination__page {
    display: none;
}

.showcase-cl .splide__slide {
    background-color: var(--light);
    border-radius: 30px;
}

.showcase-cl .splide__slide .projectdiv {
    display: grid;
    justify-content: space-evenly;
    align-items: center;
}

.showcase-cl .splide__slide .projectdiv .projectct .prjtlogo {
    margin-bottom: 15px;
}

.showcase-cl .splide__slide .projectdiv .projectct h5 {
    font-weight: var(--fw-xl);
    color: var(--text-primary);
}

.showcase-cl .splide__slide .projectdiv .projectct h6 {
    font-weight: var(--fw-sm);
    color: var(--text-secondary);
}

.showcase-cl .splide__slide .iconsct {
    display: grid;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light);
    border: 2px solid var(--light-dark);
    border-radius: 5px;
}

.showcase-cl .iconsct h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
}

.showcase-cl .splide__arrow {
    opacity: 1;
}

.showcase-cl .splide__arrow--prev {
    left: 47%;
}

.showcase-cl .splide__arrow--next {
    left: 52%;
}

.showcase-cl .splide__arrow--next,
.showcase-cl .splide__arrow--prev {
    background-color: var(--text-primary);
    height: 30px;
    width: 30px;
}

.showcase-cl .splide__arrow svg {
    fill: var(--secondary);
    height: 15px;
    width: 15px;
}

/* Features */
.features {
    width: 100%;
    background-color: var(--secondary);
    padding: 50px 0px;
}

.feature-div {
    width: 90%;
    margin: auto;
}

.feature-card {
    display: grid;
    grid-template-columns: repeat(4, 24%);
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.feature-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.features .feature-hidden {
    display: none;
}

.feature-img {
    background-color: var(--light);
    box-shadow: var(--box-shadow);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.feature-ct h5 {
    font-weight: var(--fw-xl);
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.feature-ct h6 {
    font-weight: var(--fw-sm);
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 20px;
    color: var(--text-secondary);
}

@media screen and (min-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 45% 45%;
    }

    .about-div h3 {
        width: 70%;
        font-size: 30px;
    }

    .about-div h6 {
        width: 80%;
        font-size: 16px;
        line-height: 25px;
    }

    /* Service */
    .service-div {
        width: 85%;
        grid-template-columns: 30% 65%;
    }

    .service-div h3 {
        font-size: 30px;
    }

    .service-div h5 {
        font-size: 14px;
        line-height: 25px;
    }

    .service-div h6 {
        font-size: 14px;
    }

    /* Arrow */
    .arrow-div img {
        height: 150px;
    }

    /* Domain */
    .domains-card-grp {
        grid-template-columns: repeat(3, 30%);
    }

    .domains-cards .card-head {
        grid-template-columns: 75% 20%;
    }

    .domains-cards h5 {
        font-size: 18px;
    }

    .domains-cards h6 {
        font-size: 14px;
    }

    /* Custom SW */
    .custom-sw-card-grp {
        grid-template-columns: repeat(2, 48%);
    }

    .custom-sw-card h5 {
        font-size: 20px;
    }

    .custom-sw-card h6 {
        font-size: 14px;
        line-height: 25px;
    }

    /* Showcase */
    .showcase-div {
        width: 90%;
    }

    .showcasehead h2 {
        font-size: 35px;
    }

    .showcasehead h5 {
        font-size: 16px;
    }

    .showcase-cl .splide__slide {
        padding: 50px;
    }

    .showcase-cl .splide__slide .projectdiv {
        grid-template-columns: 45% 45%;
    }

    .showcase-cl .splide__slide .projectdiv .projectct .prjtlogo {
        margin-bottom: 15px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h6 {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .showcase-cl .splide__slide .iconsct {
        grid-template-columns: repeat(3, 33%);
        background-color: var(--light);
        border: 2px solid var(--light-dark);
        padding: 15px 5px;
    }

    .showcase-cl .iconsct h6 {
        font-size: 12px !important;
        line-height: 15px !important;
    }

    .showcase-cl .splide__arrow {
        top: 107%;
    }

    .showcase-cl .splide__arrow--prev {
        left: 47%;
    }

    .showcase-cl .splide__arrow--next {
        left: 53%;
    }

    /* Features */
    .feature-card {
        grid-template-columns: repeat(4, 24%);
    }

    .feature-ct h5 {
        font-size: 16px;
    }

    .feature-ct h6 {
        font-size: 12px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 45% 45%;
    }

    .about-div h3 {
        width: 70%;
        font-size: 25px;
        line-height: 35px;
    }

    .about-div h6 {
        width: 85%;
        font-size: 16px;
        line-height: 25px;
    }

    /* Service */
    .service-div {
        width: 90%;
        grid-template-columns: 30% 65%;
    }

    .service-div h3 {
        font-size: 25px;
    }

    .service-div h5 {
        font-size: 14px;
        line-height: 25px;
    }

    .service-div h6 {
        font-size: 14px;
    }

    /* Arrow */
    .arrow-div img {
        height: 80px;
    }

    /* Domain */
    .domains-card-grp {
        grid-template-columns: repeat(3, 32%);
    }

    .domains-cards .card-head {
        grid-template-columns: 75% 20%;
    }

    .domains-cards h5 {
        font-size: 14px;
    }

    .domains-cards h6 {
        font-size: 12px;
    }

    /* Custom SW */
    .custom-sw-card-grp {
        grid-template-columns: repeat(2, 48%);
    }

    .custom-sw-card h5 {
        font-size: 18px;
    }

    .custom-sw-card h6 {
        font-size: 14px;
        line-height: 22px;
    }

    /* Showcase */
    .showcase-div {
        width: 90%;
    }

    .showcase-cl .splide__slide {
        padding: 15px;
    }

    .showcase-cl .splide__slide .projectdiv {
        grid-template-columns: 45% 50%;
    }

    .showcase-cl .splide__slide .projectdiv .projectct .prjtlogo {
        height: 30px !important;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h6 {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .iconsct {
        grid-template-columns: repeat(3, 30%);
        background-color: var(--light);
        border: 2px solid var(--light-dark);
        padding: 10px 5px;
    }

    .showcase-cl .iconsct img {
        height: 20px !important;
    }

    .showcase-cl .iconsct h6 {
        font-size: 8px !important;
        line-height: 10px !important;
    }

    .showcase-cl .splide__arrow {
        top: 107%;
    }

    .showcase-cl .splide__arrow--prev {
        left: 45%;
    }

    .showcase-cl .splide__arrow--next {
        left: 55%;
    }

    /* Features */
    .feature-card {
        grid-template-columns: repeat(3, 32%);
    }

    .feature-ct h5 {
        font-size: 14px;
    }

    .feature-ct h6 {
        font-size: 12px;
    }

}

@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: center;
    }

    .about-div h6 {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    /* Service */
    .service-div {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .service-div img {
        width: 100% !important;
    }

    .service-div h3 {
        font-size: 30px;
    }

    .service-div h5 {
        font-size: 14px;
        line-height: 25px;
    }

    .service-div h6 {
        font-size: 14px;
    }

    /* Arrow */
    .arrow-div {
        overflow: scroll hidden;
    }

    .arrow-div::-webkit-scrollbar {
        display: none;
    }

    .arrow-div img {
        width: 200%;
        height: 80px;
    }

    /* Domain */
    .domains-card-grp {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .domains-cards .card-head {
        grid-template-columns: 75% 20%;
    }

    .domains-cards h5 {
        font-size: 16px;
    }

    .domains-cards h6 {
        font-size: 12px;
    }

    /* Custom SW */
    .custom-sw-card-grp {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .custom-sw-card h5 {
        font-size: 16px;
    }

    .custom-sw-card h6 {
        font-size: 12px;
        line-height: 20px;
    }

    /* Showcase */
    .showcase-div {
        width: 90%;
    }

    .showcase-cl .splide__slide {
        padding: 15px;
    }

    .showcase-cl .splide__slide .projectdiv {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct .prjtlogo {
        height: 30px !important;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .projectdiv .projectct h6 {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .showcase-cl .splide__slide .iconsct {
        grid-template-columns: repeat(3, 30%);
        background-color: var(--light);
        border: 2px solid var(--light-dark);
        padding: 10px 5px;
    }

    .showcase-cl .iconsct img {
        height: 20px !important;
    }

    .showcase-cl .iconsct h6 {
        font-size: 8px !important;
        line-height: 10px !important;
    }

    .showcase-cl .splide__arrow {
        top: 107%;
    }

    .showcase-cl .splide__arrow--prev {
        left: 7%;
    }

    .showcase-cl .splide__arrow--next {
        left: 85%;
    }

    /* Features */
    .feature-card {
        display: flex;
        align-items: center !important;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 30px auto 0px auto;
        gap: 20px;
    }

    .feature-ct h5 {
        font-size: 16px;
    }

    .feature-ct h6 {
        font-size: 14px;
    }

}