@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


:root {
    --main-color: #2A34E7;
    --sec-color: #031B27;
    --gradient-color: linear-gradient(#2A34E7, #219EBC);
    --spacing-Carousel: calc(100vw - (100vw - 32px));
}

body {
    background-color: #f4f4f4;
}

.main-wrapper {
    overflow-x: hidden;
}

/* CUSTOM MARGIN FOR CONTENT */
.content-wrapper {
    margin: 0 3rem;
}

/* TOP NAVBAR */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 12px;
    height: 45px;
    width: auto;
    transition: 0.3s height ease;
}

.nav-bg .logo img,
.navbar.noscript .logo img {
    height: 34px;
}

.navbar-toggler {
    border-color: transparent;
}

.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
}

.hamburger span {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}

.nav-bg .hamburger span {
    background-color: var(--main-color);
}

.hamburger span.first {
    top: 0;
}

.hamburger span.second {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span.third {
    bottom: 0;
}

.hamburger:hover span.second {
    width: 66%;
}

.hamburger:hover span.third {
    width: 33%;
}

.navbar-toggler[aria-expanded="true"] span.first {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] span.second {
    display: none;
}

.navbar-toggler[aria-expanded="true"] span.third {
    transform: rotate(-45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .hamburger:hover span.first {
    transform: rotate(360deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger:hover span.third {
    width: 100%;
    transform: rotate(360deg);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

nav .overlay {
    position: absolute;
    display: block;
    height: 100vh;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    transition: 0.4s all ease;
}

.navbar-toggler[aria-expanded="true"] .overlay {
    background-color: rgba(000, 000, 000, 0.6);
}

nav .logo,
nav .navLink {
    color: #fff;
    text-decoration: none;
    transition: 0.8s all ease;
}

nav .logo {
    font-size: 19px;
    font-weight: 600;
}

nav .navLink {
    font-weight: 500;
}

nav {
    background-color: transparent;
    transition: 0.8s all ease;
}

nav.nav-bg,
.navbar.noscript {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar.noscript p,
.navbar.noscript a {
    color: var(--main-color);
}

.navbar.noscript .contactUs .navLink {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

nav.nav-bg .logo,
nav.nav-bg .navLink {
    transition: 0.8s all ease;
    color: var(--main-color);
}

.navbar-nav {
    width: 100%;
}

.navbar-collapse.collapsing {
    height: 0 !important;
    width: 0 !important;
    transition: none;
    --webkit-transition: none;
}

.sidebar-social {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.3) 2px 3px 30px 0px;
}

.sidebar-social p {
    font-weight: 600;
    font-size: 14px;
}

.sidebar-social .social-container {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    transition: 0.3s top ease;
}

.sidebar-social .social-container:hover {
    top: -0.25rem;
}

.arrow::after,
.arrow::before {
    content: '';
}

.arrow,
.arrow::before,
.arrow::after {
    display: block;
    position: absolute;
    border-radius: 5px;
    width: 10px;
    height: 2px;
    background-color: #000;
}

.arrow {
    animation: 1s arrowMid infinite ease;
}

.arrow::before {
    animation: 1s arrowTop infinite ease;
}

.arrow::after {
    animation: 1s arrowBot infinite ease;
}

@keyframes arrowTop {
    from {
        opacity: 0;
    }

    to {
        margin-left: 7.5px;
        opacity: 1;
        width: 5px;
        transform: translate3d(50%, -50%, 0) rotate(45deg);
    }
}

@keyframes arrowMid {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        margin-left: 2px;
    }
}

@keyframes arrowBot {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        margin-left: 7.5px;
        width: 5px;
        transform: translate3d(50%, 50%, 0) rotate(-45deg);
    }
}

/* HOME */
.home-wrapper {
    height: 100vh;
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.image-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    /* Corrected rgba values */
}

.image-container img {
    /* Changed the selector to 'img' */
    object-fit: cover;
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 0;
    /* Added a z-index to ensure it's behind the pseudo-element */
}

.home-wrapper image {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    position: absolute;
}

.heroSection-wrapper {
    height: 100%;
}

.heroSection-container {
    z-index: 2;
    color: #fff;
    position: relative;
    top: 2.5rem;
    width: 100%;
}

.heroDesc {
    color: #ffffffcc;
    width: calc(100% - 20vw);
    margin: 1.6rem 0 5rem 0;
    line-height: 35px;
    font-size: clamp(16px, 12px + 1vw, 20px);
}

.heroSection-container .btn {
    background-color: var(--main-color);
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    padding: 1.25rem 2rem;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.heroSection-container .btn::before,
.heroSection-container .btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    border-radius: 40px;
}

.heroSection-container .btn::before {
    width: 0;
    z-index: -1;
    background-color: #fff;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.heroSection-container .btn:hover {
    color: var(--main-color);
}

.heroSection-container .btn::after {
    z-index: -2;
    width: 100%;
}

.heroSection-container .btn:hover::before {
    width: 100%;
}

/* OVERVIEW */
.overview {
    position: relative;
}

.overview-wrapper {
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.overview-container {
    background-color: var(--main-color);
}

.num {
    font-weight: 500;
    color: #fff;
    font-size: 32px;
}

.num span {
    display: none;
}

.overview-container i {
    color: #fff;
    font-size: 32px;
}

.overDesc {
    font-weight: 200;
    color: #fff;
    font-size: 14px;
}

/* PRODUCT */
.product-wrapper {
    padding-top: 4rem;
}

.subheading {
    font-size: clamp(24px, 24px + 1vw, 36px);
    font-weight: 600;
}

.subheading span {
    color: var(--main-color);
}

.txtDesc {
    color: #AAA;
    font-size: clamp(14px, 1.2vw, 17px);
}

.product-wrapper .carousel-wrapper {
    margin-top: 3.75rem;
}

.productCarousel-wrapper .card-wrapper {
    width: 100%;
}

.card-container {
    border-radius: 10px;
    width: auto;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.card-container:hover {
    cursor: pointer;
}

.card-container:hover .card-img {
    transform: scale(1.5);
}

.card-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    right: 0;
    background-color: rgba(000, 000, 000, 0.6);
    border-radius: 10px;
}

.card-container img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.4s transform ease;
}

#productCarousel .splide__track,
.productCarousel-wrapper .card-wrapper {
    height: 215px;
}

.productInfo {
    position: absolute;
    z-index: 1;
    line-height: 24px;
    bottom: 1rem;
    padding-left: 2px;
}

.productTitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-width: 200px;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.variation {
    color: #8ECAE6;
    font-size: 14px;
}

.enlarge-container::before {
    content: '';
    display: block;
    height: 38px;
    width: 38px;
    z-index: -1;
    position: absolute;
    background-color: var(--main-color);
    border-radius: 50%;
}

.enlarge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
}

.enlarge-container img {
    height: 21px;
    width: auto;
}

/* PRODUCT MODAL */
.modal-content {
    border: none;
}

.productModal .carousel-item {
    height: 275px;
}

.productModal img {
    border-radius: 0.5rem 0.5rem 0 0;
    object-fit: cover;
    height: 100%;
    width: auto;
}

.productModal video {
    border-radius: 0.5rem 0.5rem 0 0;
    object-fit: cover;
    height: 100%;
    width: auto;
}

.productList {
    background-color: #f4f4f4;
    border-radius: 0 0 10px 10px;
}

.productList .status {
    font-size: clamp(11px, 10px + 0.5vw, 14px);
    font-weight: 700;
}

.status.blue {
    color: var(--main-color);
}

.productCategory {
    font-weight: 700;
    font-size: clamp(18px, 19px + 0.5vw, 24px);
    line-height: 32px;
    border-bottom: 1px solid var(--bs-border-color);
}

.productModal .carousel-indicators button {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 1;
    background-color: #D9D9D9;
    transition: 0.5s all ease;
}

.productModal .carousel-indicators button.active {
    width: 50px;
    border-radius: 25%/50%;
    background-color: var(--main-color);
}

.productModal .btnClose {
    background-color: var(--sec-color);
    border-radius: 50%;
    position: absolute;
    right: 0;
    height: 30px;
    width: 30px;
    transform: translate(-50%, 50%);
    transition: 0.3s opacity ease, 0.3s transform ease;
    border: 2px solid #fff;
    opacity: 0.7;
    z-index: 5;
}

.productModal .btnClose span.top,
.productModal .btnClose span.bottom {
    height: 2px;
    width: 15px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: 0.3s all ease;
}

.productModal .btnClose span.top {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.productModal .btnClose span.bottom {
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
    ;
}

.productModal .btnClose:hover {
    opacity: 1;
    background-color: rgb(255, 0, 64);
}

.productModal .btnClose:hover span.top {
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.productModal .btnClose:hover span.bottom {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.productModal .accordion {
    --bs-accordion-bg: transparent;
    /* --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
}

.productType .productName {
    color: #b9b9b9;
    font-weight: 600;

}

.productType .accordion-button {
    transition: 0.5s all ease;
}

.productType .accordion-button:focus {
    box-shadow: none;
}

.productType .accordion-button:not(.collapsed) {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background-color: transparent;
}

.productType .accordion-button:not(.collapsed) .productName {
    color: #808080;

}

.productDetails-container .productDetailsTitle {
    color: #AAA;
}

.productDetails-container .row {
    margin-bottom: 0.5rem;
}

.productDetails-container .row:last-child {
    margin-bottom: 0;
}

.productType .accordion-body {
    font-size: 14px;
}

/* TABLE */
.navTab-wrapper {
    margin-top: 3rem;
}

.navTab-wrapper .nav-tabs {
    margin-bottom: 1.5rem;
    border-bottom: none;
    gap: 1rem;
}

.navTab-wrapper .nav-link {
    color: #d9d9d9;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    border: none;
    background-color: #2A34E7;
}

.navTab-wrapper .nav-link:hover {
    color: var(--bs-nav-tabs-link-active-color);
}

.navTab-wrapper .nav-link::before {
    content: url("/images/product/arrowdown.svg");
    transition: 0.3s all ease;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 1.25rem;
    opacity: 0;
}

.navTab-wrapper .nav-link.active::before {
    margin-right: 4px;
    width: 1rem;
    opacity: 1;
}

.tableTitle {
    color: #AAA;
    font-weight: 600;
    font-size: 16px;
}

.productList tr,
.productList td,
.productList th {
    border: 1px solid #d9d9d9;
    vertical-align: middle;
}

.productList th {
    color: #AAA;
    font-weight: 500;
}

.productList td {
    color: #7c7c7c;
}

.productList tr,
.productList td.bg-white {
    background-color: #fff;
}

.productList tr:nth-child(even) td,
.productList td.bg-striped {
    background-color: #F4F4F4;
}

/* ABOUT US */
#aboutUs {
    position: relative;
}

#aboutUs .bg-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    top: 0;
    transform: translateY(-5%);
}

.tag {
    font-weight: 300;
    font-size: clamp(12px, 12px + 0.5vw, 14px);
    letter-spacing: 2px;
}

.about-wrapper {
    padding-top: 8.375rem;
}

.about-wrapper .img-container {
    height: 360px;
    position: relative;
    width: auto;
}

.about-wrapper .txtGroup p {
    text-align: justify;
    text-align-last: left;
    font-size: clamp(13px, 13px + 0.5vw, 16px);
}

.about-wrapper .img-container img {
    /* object-fit: cover; */
    height: 100%;
    width: 100%;
    border-radius: 0px;
    z-index: 1;
}

.btn-about {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    padding: 0.5rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s all ease;
}

.btn-about::before,
.btn-about::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
}

.btn-about::before {
    width: 0;
    z-index: -1;
    background-color: #fff;
    transition: 0.3s all ease;
}

.btn-about:hover {
    color: var(--main-color);
}

.btn-about::after {
    z-index: -2;
    width: 100%;
}

.btn-about:hover::before {
    width: 100%;
}

.square1,
.square2 {
    position: absolute;
    left: 0;
    z-index: -1;


}

.square1 {
    height: 330px;
    width: 345px;
    border: 2px solid #8ECAE6;
    transform: translate(15%, -5%);
}

.square2 {
    height: 305px;
    width: 335px;
    border: 3px solid var(--main-color);
    transform: translate(8%, -10%);
}

.square1e,
.square2e {
    position: absolute;
    left: 0;
    z-index: -1;
}

.square1e {
    height: 330px;
    width: 335px;
    border: 2px solid #8ECAE6;
    transform: translate(-3%, -5%);
}

.square2e {
    height: 305px;
    width: 335px;
    border: 3px solid var(--main-color);
    transform: translate(-5%, -10%);
}



/* TESTIMONIALS */
.testimonial-wrapper {
    padding-top: 7.5rem;
}

.testimonial-wrapper .carousel-wrapper {
    margin-top: 3.5rem;
}

.testimonial-wrapper .img-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 130px;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s filter ease;
    filter: grayscale(100%);
    /* Standard */
    -webkit-filter: grayscale(100%);
    /* Webkit */
    filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
    /* Firefox4-34*/
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Old WebKit */
}

.testimonial-wrapper .img-wrapper:hover {
    filter: none;
    filter: grayscale(0);
    --webkit-filter: grayscale(0);
}

/* APPLICATION */

.application-wrapper {
    padding-top: 7.5rem;
}

.application-wrapper .carousel-wrapper {
    margin-top: 3.5rem;
}

.applicationCarousel-wrapper .application-card {
    width: 100%;
}

.application-card {
    height: 400px;
    position: relative;
}

.application-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.application-card::before {
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(-130deg, rgba(245, 241, 241, 0) 0%, rgba(53, 52, 52, 0.83) 57.41%, #161616 100%);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.application-card .txtGroup {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 1rem 1rem 1rem;
}

.application-card .title {
    color: #fff;
    font-weight: 600;
}

.application-card .desc {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}



/* achievement */
#achievement {
    position: relative;
}

#achievement .bg-decor {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    transform: translateY(-25%);
}

.achievement-wrapper {
    padding-top: 12rem;
}

#achievement .certificateTxt {
    font-size: clamp(13px, 13px + 0.5vw, 16px);
}

.achievement-wrapper .iso-wrapper {
    /* height: 150px; */
    height: 170px;
}

.iso-wrapper .img-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

/* CONTACT US */

#contactUs {
    position: relative;
}

#contactUs .bg-decor {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    transform: translateY(-25%);
}

.contactUs-wrapper {
    padding-top: 11.25rem;
    padding-bottom: 8.5rem;
}

.contactUs-wrapper .txtDesc {
    color: #7a7a7a;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
}

.contactUs-wrapper .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.contactUs-wrapper .title {
    font-weight: 500;
}

.contactForm {
    border-radius: 10px;
    background: linear-gradient(180deg, #2A34E7 0%, #219EBC 100%);
}

.contactForm input,
.contactForm textarea {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    border-color: transparent;
}

.contactForm .form-control::placeholder {
    font-size: 13px;
    color: #616161;
    font-weight: 500;
}

.contactForm [id="submit-button"] {
    background-color: var(--sec-color);
    color: #fff;
    border-radius: 24px;
    font-size: 13px;
    width: 100%;
    padding: 0.75rem 0;
    transition: 0.5s all ease;
}

.btn-submit:hover [id="submit-button"] {
    background-color: #fff;
    color: var(--sec-color);
}

.btn-submit img {
    position: absolute;
    height: 20px;
    width: auto;
    right: 0%;
    left: 100%;
    transform: translateX(350%);
    display: none;
    animation: 0.8s arrow-forward ease-in-out infinite;
    transition: 0.3s all ease;
}

.btn-submit:hover img {
    display: block;
}

@keyframes arrow-forward {

    0%,
    100% {
        transform: translateX(335%);
    }

    50% {
        transform: translateX(300%);
    }
}

.contactForm .decor {
    position: absolute;
    z-index: -1;
    object-fit: cover;
}

.contactForm .decor.top {
    top: 0;
    right: 0;
    transform: translate(48%, -32%);
}

.contactForm .decor.bottom {
    left: 0;
    bottom: 0;
    transform: translate(-32%, 23%);
}

.background {
    position: relative;
    top: 0;
    transform: translateY(-5%);
}


/* FOOTER */
.footer-wrapper {
    color: #fff;
    background: linear-gradient(180deg, #2A34E7 0%, #219EBC 100%);
}

footer .logo-desc {
    text-align: justify;
    text-align-last: left;
}

footer .desc {
    font-size: 13px;
    font-weight: 300;
}

footer .desc.custom-margin {
    margin-left: 1.68rem !important;
}

/* 
footer .linkSmall{
    font-size: 13px;
} */

footer .product .desc {
    margin-bottom: 3px
}

footer .product .desc:last-child {
    margin-bottom: 0;
}

footer .title {
    height: 25px;
}

.linksFooter {
    color: #fff;
    text-decoration: none;
    width: fit-content;
    font-weight: 300;
    position: relative;
    font-size: 13px;
}

.linksFooter:hover {
    color: #fff;
}

.linksFooter::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #fff;
    height: 1px;
    width: 0;
    transition: 0.3s all ease;
    top: 100%;
}

.linksFooter:hover::before {
    width: 100%;
}

.follow-icon .social-container {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    z-index: 0;
    position: relative;
    transition: 0.3s all ease;
    top: 0;
}

.follow-icon a:hover .social-container {
    top: -0.25rem;
}

.follow-icon {
    position: relative;
    top: -0.25rem;
}

.copyright {
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-size: 12px;
    margin-top: 2px;
}

/* MEDIA QUERIES */

/* LARGE DESKTOP */
@media only screen and (min-width:993px) {

    /* NAV */
    nav .contactUs .navLink {
        padding: 0.5rem 0.75rem;
        border-radius: 30px;
        border: 1px solid #fff;
    }

    nav.nav-bg .contactUs .navLink {
        background: var(--main-color);
        color: #fff;
        border: 1px solid var(--main-color);
    }

    .nav-bg .contactUs .navLink.active,
    .nav-bg .contactUs .navLink:hover,
    .contactUs .navLink:hover {
        background-color: #fff;
        color: var(--main-color);
    }

    .contactUs .navLink.active::after,
    .contactUs .navLink::after {
        display: none;
    }

    .navLink::after {
        content: '';
        height: 1.5px;
        background-color: var(--main-color);
        display: block;
        width: 0;
    }

    .navLink:hover::after {
        transition: 0.3s width ease;
    }

    .navLink.active::after,
    .navLink:hover::after {
        width: 100%;
    }

    /* OVERVIEW */
    .overview-container:first-child {
        border-top-left-radius: 40px;
    }

    .overview-container:nth-child(2) {
        border-color: rgba(000, 000, 000, 0.2);
        border-width: 0 1px 0 1px;
        border-style: solid;
    }

    .overview-container:last-child {
        border-end-end-radius: 40px;
    }

    /* PRODUCT */
    .productModal .carousel-item {
        height: 375px;
    }

    /* ABOUT */
    .about-wrapper .img-container img {
        height: 90%;
        width: 90%;
    }

    /* FOOTER */
    .footer-wrapper .col-lg-3 {
        padding-right: 3rem;
    }

    /* CAROUSEL */
    .splide__pagination.splide__pagination--ltr {
        display: none;
    }

    .splide__track {
        cursor: grab;
    }
}

/* SMALL TO LARGE DEVICE */
@media only screen and (max-width:992px) {

    /* CUSTOM SPACING */
    .content-wrapper {
        margin: 0 1.5rem;
    }

    .product-wrapper,
    .application-wrapper,
    .contactUs-wrapper {
        padding-top: 5rem;
    }

    .product-wrapper .carousel-wrapper,
    .application-wrapper .carousel-wrapper {
        margin-top: 2rem;
    }

    .testimonial-wrapper .carousel-wrapper {
        margin-top: 0.25rem;
    }

    .about-wrapper {
        padding-top: 7.5rem;
    }

    .achievement-wrapper {
        padding-bottom: 8rem;
    }

    .testimonial-wrapper,
    .achievement-wrapper {
        padding-top: 8rem;
    }

    .subheading {
        line-height: 34px;
    }

    /* NAVBAR */
    .navbar-toggler .hamburger {
        z-index: 1;
    }

    .navbar-collapse .navbar-nav {
        width: 0;
        transition: 0.3s width ease;
    }

    .navbar-collapse.show .navbar-nav {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #f4f4f4;
        height: 100vh;
        justify-content: space-around;
        width: 50%;
    }

    .nav-item {
        position: relative;
        width: fit-content;
    }

    .navLink.active {
        font-weight: 600;
    }

    .navLink.active::after {
        content: '';
        display: block;
        position: absolute;
        background-color: rgba(123, 130, 255, 0.3);
        height: 50%;
        width: 100%;
        bottom: 0;
        z-index: 0;
        margin-left: 0.25rem;
        /* transition: 0.3s width linear; */
    }

    /* HOME */
    .heroDesc {
        margin: 1.75rem 0 2.5rem;
        line-height: normal;
        width: 100%;
    }

    .overview {
        position: static;
    }

    .overview-wrapper {
        position: static;
        transform: translateY(0);
    }

    /* PRODUCT */
    #productCarousel .splide__track {
        height: 280px;
    }

    .navTab-wrapper {
        margin-top: 1.5rem;
    }

    .navTab-wrapper .nav-tabs {
        gap: 0.5rem;
    }

    /* TESTIMONIAL */
    .testimonial-wrapper .splide__slide.is-active .img-wrapper {
        filter: none;
        filter: grayscale(0);
        --webkit-filter: grayscale(0);
    }

    /* ACHIEVEMENT */
    #achievement .certificateTxt {
        text-align: justify;
        text-align-last: left;
    }

    /* CONTACT US */
    .contactUs-wrapper .contactInfo-wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .row {
        flex-direction: column;
    }

    .col-6 {
        width: 100%;
    }

    .col-6:first-child {
        margin-bottom: 20px;
    }

    .img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }


    .img-container img {
        padding: 10px;
    }
}

@media (min-width: 577px) {
    .col-6:first-child .img-container img {
        margin-left: -80px;
    }

    .img-container img {
        padding: 10px;
    }
}

@media (min-width: 820px) {
    .col-6:first-child .img-container img {
        margin-left: -55px;
    }

    .img-container img {
        padding: 10px;
    }
}

@media (width: 1024px) {
    .col-6:first-child .img-container img {
        margin-left: -105px;
    }

    .img-container img {
        padding: 10px;
    }
}

@media (width: 768px) {
    .col-6:first-child .img-container img {
        margin-left: -15px;
    }

    .img-container img {
        padding: 10px;
    }
}

@media (width: 820px) {
    .col-6:first-child .img-container img {
        margin-left: -15px;
    }

    .img-container img {
        padding: 10px;
        /* width: auto; */
    }
}

@media (max-width: 435px) {

    .responsive-image {
        width: 70% !important;
        /* Adjust width for screens 435px or less */
        margin: 0 auto;
        margin-left: 40px;
        /* Center the image */
    }
}

@media (width: 1024px) {

    .responsive-image {
        width: 80% !important;
        /* Adjust width for screens 435px or less */
        margin: 0 auto;
        /* Center the image */
    }
}