@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* START Variables */

:root {

    /* Font Family */

    --fm-roboto: "Roboto", system-ui;

    /* Fonts Size */

    --fs-h1: 61px;
    --fs-h2: 47px;
    --fs-h3: 36px;
    --fs-h4: 27px;
    --fs-h5: 21px;
    --fs-body: 16px;
    --fs-small: 12px;

    /* Font Weight */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;


    /* Colors */

    --clr-white: #ffffff;
    --clr-black: #0B0A0A;
    --clr-gray: #3C3B3B;
    --clr-light-gray: #B1B1B1;
    
    --clr-green: #009B72;
    --clr-light-green: #7FFFDD; 

    --clr-blue: #0873BB; 
    --clr-dark-blue: #1C323F; 
    --clr-Disabled-Blue: #5CA1D0;

    --clr-yellow: #FFEE05; 

    --clr-cta-hover: #7FFFDD; /* #E3E3E3; */
    --clr-cta-active: #D1D1D1;

    /* container width */

    --dt-width: 1312px;
    --tl-width: 802px;
    --ml-width: 359px;

}

/* End Variables */



/* START Reset Defaults */

*, *::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fm-roboto);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--clr-black);
    cursor: pointer;
}


/* End Reset Defaults */



/* ----- START Reusable classes ----- */


/* - START CONTAINER - */

/* Default (mobile-first) */

.container {
    max-width: var(--dt-width);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1rem;
}


/* Tablet */
@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
        overflow: hidden;
    }
}

@media (max-width: 840px) {
    .container {
        max-width: var(--tl-width);
    }
}

/* Mobile */
@media (max-width: 520px) {
    .container {
        padding-inline: 0.5rem;
    }
}

@media (max-width: 390px) {
    .container {
        max-width: var(--ml-width);
        padding-inline: 0.5rem;
    }
}

.nav.container {
    overflow: unset;
}




/* - END CONTAINER - */


.sc-separator {
    margin-top: 140px;
}

@media (max-width: 520px) {
    .sc-separator {
        margin-top: 120px;
    }
    
}



/* CTA reusable style */
.cta {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;

    border: none;
    border-radius: 8px;

    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--clr-black);

    cursor: pointer;
}
.cta.yellow {
    background-color: var(--clr-yellow);
    padding: 20px 32px;
}
.cta.yellow:hover {
    background-color: #f0e105;
}

.cta:hover {
    background-color: var(--clr-cta-hover);
}

.cta:active {
    background-color: var(--clr-cta-active);
}

@media (max-width: 1280px) {
    .cta {
        padding: 16px 24px;
    }   
}

@media (max-width: 520px) {
    .cta {
        padding: 14px 12px;
        gap: 4px;

        font-size: var(--fs-small);
        font-weight: var(--fw-bold);
    }   

    .cta img {
        width: 18px;
        height: 18px;
    }

}


/* if we want to show the icon on the cta btn */
.cta.icon-visible img {
    display: none;
}

/* START secondary CTA */


.secondary-cta {
    display: flex;
    align-items: center;
    gap: 8px;

    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.secondary-cta .secondary-cta-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-blue);
}
.secondary-cta:hover .secondary-cta-text {
    color: var(--clr-dark-blue);
}
.secondary-cta:hover .secondary-cta-icon {    
    filter: brightness(0) saturate(100%) invert(16%) sepia(10%) saturate(2254%) hue-rotate(160deg) brightness(94%) contrast(94%);
}
.secondary-cta:active .secondary-cta-text {
    color: #1C2E38;
}
.secondary-cta:active .secondary-cta-icon {    
    filter: brightness(0) saturate(100%) invert(13%) sepia(7%) saturate(3011%) hue-rotate(157deg) brightness(94%) contrast(89%);
}


@media (max-width: 520px) {
    .secondary-cta {
        gap: 4px;
    }

    .secondary-cta .secondary-cta-text {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

    .secondary-cta .secondary-cta-icon {    
        width: 16px;
        height: 16px;
    }
}

/* START secondary CTA */


.cta-small {
    background-color: var(--clr-yellow);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;

    border: none;
    border-radius: 8px;

    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: var(--clr-black);

    cursor: pointer;
}
.cta-small:hover {
    background-color: #E5D600;
}
.cta-small:active {
    background-color: #ADA200;
}
.cta-small img {
    width: 18px;
}

@media (max-width: 520px) {
    .cta-small {
        gap: 2px;
        padding: 10px 8px;

        font-size: var(--fs-small);
        font-weight: var(--fw-bold);

    }

}

/* CTA reusable style */

/* ----- END Reusable classes ----- */





/* ----- START HEADER ----- */

.header {
    background-color: var(--clr-blue);
    background-image: url('./images/icons/graphic-Large.svg');
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 768px; */
    padding-bottom: 5rem;

    display: flex;
    flex-direction: column;
    gap: 88px;
}

@media (max-width: 1280px) {
    .header {
        /* height: auto; */
        padding-bottom: 5rem;
        gap: 72px;
    }
}

@media (max-width: 840px) {
    .header {
        background-image: url('./images/icons/graphic-medium.svg');
    }
}

@media (max-width: 520px) {
    .header {
        background-image: url('./images/icons/graphic-small.svg');
        padding-bottom: 3rem;
        gap: 56px;
    }
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 14px;    /* for gap between nav items (products, industry etc) and search bar */
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
}


/* - START header-nav - */


.header-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* reseting the search input field */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.header-nav .search .search-input {
    width: 630px;
    background-image: url('./images/icons/search.svg');
    background-position: 582px;
    background-repeat: no-repeat;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    outline: none;

}

.header-nav .search .search-input::placeholder {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--clr-light-gray);
}



.header-nav .contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-nav .contact .contact-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-regular);
    color: var(--clr-light-green);

    line-height: 31.5px;
}

.header-nav .contact .contact-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.header-nav .contact .contact-wrapper .contact-number {
    font-size: var(--fs-h6);
    font-weight: var(--fw-bold);
    color: var(--clr-white);

    line-height: 31.5px;
}

.menu {
    display: none;
}

.side-bar {
    display: none;
}

.side-bar .sidebar-contact {
    margin: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
    background-color: #002e22;
    width: calc(100% - 32px);
}

.side-bar .sidebar-contact .contact {
    display: flex;
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.side-bar .sidebar-contact .contact .contact-title {
    color: var(--clr-light-gray);
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    line-height: 24px;
}

.side-bar .sidebar-contact .contact .contact-wrapper .contact-number {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    line-height: 24px;
}

.side-bar .sidebar-contact .contact .contact-wrapper img {
    width: 18px;
}

.side-bar .sidebar-contact .cta {
    font-weight: var(--fw-black);
}

.overlay {
    content: '';
    background: #01010199;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    display: none;
}


.side-bar-dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-bar-dropdown.show-dropdown {
    background-color: var(--clr-white);
}

.side-bar-dropdown.show-dropdown .dropdown {
    color: var(--clr-black);
}

.side-bar-dropdown .dropdown svg {
    transform: rotate(0deg);
    transition: transform 300ms ease-in;
}
.side-bar-dropdown.show-dropdown .dropdown svg {
    filter: brightness(0) saturate(100%) invert(5%) sepia(8%) saturate(840%) hue-rotate(76deg) brightness(94%) contrast(102%);
    transform: rotate(180deg);
}
.side-bar-dropdown:hover .dropdown svg {
    filter: brightness(0) saturate(100%) invert(5%) sepia(8%) saturate(840%) hue-rotate(76deg) brightness(94%) contrast(102%);
}



.side-bar-dropdown.show-dropdown .side-bar-dropdown-links {
    display: flex;
}

.side-bar-dropdown .side-bar-dropdown-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-inline: 8px;
}

.side-bar-dropdown .side-bar-dropdown-links .side-bar-link {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--clr-gray);
}


@media (max-width: 1280px) {
    .header-nav .search .search-input {
        width: 320px;
        background-position: 272px;
    }

    .header-nav .contact .contact-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-medium);

        line-height: 24px;
    }


    .header-nav .contact .contact-wrapper img {
        width: 16px;
    }

    .header-nav .contact .contact-wrapper .contact-number {
        font-size: var(--fs-body);
        font-weight: var(--fw-bold);

        line-height: 24px;
    }
}

/* Mobile */
@media (max-width: 720px) {

    .header-nav {
        position: relative;
        row-gap: 16px;
        padding-block: 40px;
    }
    
    .header-nav .contact {
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: row;
        gap: 8px;
    }
    
    .cta-nav {
        display: none;
    }

    .menu {
        display: block;
        height: 48px;
    }
    
    .menu .menu-icon {
        width: 48px;
        height: 48px;
    }

    .menu .side-bar {
        background-color: #002a1f;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
        overflow: auto;
    }
   
    .menu .side-bar .close-icon {
        width: 24px;
        height: 24px;
        margin: 16px;
        cursor: pointer;
    }

    .menu .side-bar-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    

    .menu .side-bar-links li {
        width: 100%;
        padding: 16px;
    }
    .menu .side-bar-links li:hover {
        background-color: var(--clr-white);
    }
    .menu .side-bar-links li:hover .dropdown {
        color: var(--clr-black);
    }
    .menu .side-bar-links li:hover a {
        color: var(--clr-black);
    }

    .menu .side-bar-links li .dropdown {
        justify-content: space-between;
    }
}

@media (max-width: 520px) {

    .header-nav {
        align-items: flex-end;
        padding-block: 0;
        height: 68px;
    }

    .header-nav .logo .logo-img {
        max-width: 150px;
        object-fit: cover;
    }


    .header-nav .search .search-input {
        width: 200px;
        padding: 8px 16px;
        background-position: calc(100% - 16px);
        background-size: 16px;
    }

    
    .header-nav .search .search-input::placeholder {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        color: var(--clr-light-gray);
    }

    .header-nav .contact .contact-title {
        font-size: var(--fs-small);    
        line-height: 18px;
    }
    
    .header-nav .contact .contact-wrapper img {
        width: 12px;
    }
    
    .header-nav .contact .contact-wrapper .contact-number {
        font-size: var(--fs-small);    
        line-height: 18px;
    }

    .menu {
        height: 32px;
    }

    .menu .menu-icon {
        width: 32px;
        height: 32px;
    }


}


@media (max-width: 320px) {

    .header-nav {
        position: static;
        flex-wrap: wrap;
        align-items: center;
        height: auto;

        row-gap: 8px;
    }

    .header-nav .logo {
        order: 1;
    }
    .header-nav .search {
        order: 3;
    }
    .header-nav .contact {
        order: 2;
    }
    .header-nav .menu {
        order: 4;
    }


    .header-nav .contact {
        position: static;
    }

}

@media (max-width: 250px) {

    .nav .header-nav .logo {
        order: 1;
    }
    .nav .header-nav .search {
        width: 100%;
        order: 3;
    }
    .nav .header-nav .contact {
        display: none;
    }
    .nav .header-nav .menu {
        order: 2;
    }

    .header-nav .search .search-input {
        width: 100%;
    }

}


/* - END header-nav - */



/* - START navbar - */

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 24px;
}


.navbar li a {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--clr-white);
    padding-block: 8px;
    transition: opacity 300ms ease-in;
}
.navbar li:hover a {
    opacity: 0.8;
}


.nav .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: relative;

}
.nav .dropdown-menu:hover .dropdown-content {
    display: flex;

}

.navbar li .dropdown {
    display: flex;
    gap: 2px;
    padding-block: 0px;

}

.navbar li .dropdown-content {
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-white);
    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
    display: none;
    border-radius: 8px;
}

.navbar li .dropdown-content::before {
    left: 8%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 15px;
    /* margin-left: -10px; */
    top: -27px;
}

.navbar li .dropdown-content .dropdown-content-link {
    font-weight: var(--fw-medium);
    color: var(--clr-black);
}

.navbar li .dropdown-content .dropdown-content-link  {
    padding: 10px 12px;
}

.navbar li .dropdown-content .dropdown-content-link:hover {
    color: var(--clr-green);
}

@media (max-width: 720px) {
    .navbar {
        display: none;
    }

}


/* - END navbar - */



/* - START Hero - */

.hero {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

.hero .left .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero .left .hero-content .title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    line-height: 79.3px;
    letter-spacing: -1px;
}

.hero .left .hero-content .subtitle {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--clr-white);
    line-height: 24px;
}


.hero .right {
    width: 100%;
}

.hero .right img {
    max-width: 470px;
}

@media (max-width: 1280px) {
    .hero {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero .left .hero-content {
        gap: 16px;
    }

    .hero .right {
        width: auto;
    }

    .hero .right img {
        max-width: 600px;
    }

}

@media (max-width: 520px) {
    .hero {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero .left {
        gap: 40px;
    }

    .hero .left .hero-content {
        gap: 8px;
    }

    .hero .left .hero-content .title {
        font-size: var(--fs-h4);
        line-height: 40.5px;
        letter-spacing: 0px;
    }
    
    .hero .left .hero-content .subtitle {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }

    .hero .right img {
        max-width: 100%;
    }

}

/* - END Hero - */




/* ----- END HEADER ----- */





/* ----- START PRODUCTS SECTION ----- */

.sc-product {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    line-height: 61.1px;
    letter-spacing: -1px;

    color: var(--clr-dark-blue);
}

.section-products {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-products .product {
    width: 413px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;

    border-radius: 8px;

    -webkit-box-shadow: 0px 0px 80px 0px rgba(72,72,72,0.1);
    -moz-box-shadow: 0px 0px 80px 0px rgba(72,72,72,0.1);
    box-shadow: 0px 0px 80px 0px rgba(72,72,72,0.1);
}

.section-products .product img {
    height: 318px;
    object-fit: cover;
}

.section-products .product .product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.section-products .product .product-info .text-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-products .product .product-info .text-container .product-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    line-height: 31.5px;

    color: var(--clr-black);
}

.section-products .product .product-info .text-container .product-subtitle {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-gray);
}



@media (max-width: 1280px) {
    .section-products {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 24px;
        column-gap: 1rem;
    }

    .section-products .product {
        width: calc(50% - 1rem);
    }

    .section-products .product img {
        height: 100%;
        object-fit: cover;
    }

    .section-products .product .product-info .text-container .product-subtitle {
        font-weight: var(--fw-light);
    }
    
}

@media (max-width: 520px) {
    .section-products {
        column-gap: 0.5rem;
    }

    .sc-product {
        gap: 32px;
    }

    .section-title {
        font-size: var(--fs-h4);
        line-height: 40.5px;
        letter-spacing: 0px;
    }

    .section-products .product {
        width: calc(50% - 0.5rem);
        padding: 16px 8px;
    }

    .section-products .product img {
        height: 100%;
        object-fit: cover;
    }

    .section-products {
        row-gap: 16px;
    }

}


@media (max-width: 400px) {

    .section-products .product {
        width: 180px;
        padding: 16px 8px;
    }

    .section-products .product img {
        height: 120px;
        object-fit: cover;
    }
    
    .section-products .product .product-info {
        gap: 8px;
    }

    .section-products .product .product-info .text-container {
        gap: 4px;
    }
    
    .section-products .product .product-info .text-container .product-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-medium);
        line-height: 24px;
    }
    
    .section-products .product .product-info .text-container .product-subtitle {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }
}

@media (max-width: 390px) {

    .section-products .product {
        width: 100% !important;
    }

    .section-products .product img {
        height: 80%;
        object-fit: cover;
    }
    
}


/* ----- END PRODUCTS SECTION ----- */



/* ----- START WHY US SECTION ----- */


.sc-whyus {
    display: flex;
    flex-direction: column;
    gap: 32px;    

    background-color: var(--clr-blue);
    padding-top: 80px;
    padding-bottom: 80px;
}


.sc-whyus .section-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 88px;
}

.sc-whyus .section-wrapper .section-title {
    color: var(--clr-white);
}

.sc-whyus .section-wrapper .section-subtitle {
    width: 417px;
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-white);
}


/* section-content */

@media (min-width: 1500px) {
    .sc-whyus .section-content {
        max-width: 1890px;
        gap: 64px;
    
        margin-right: 160px;
    }

    .sc-whyus .section-content .benefits .benefits-card {
        max-width: 400px;
    }

    .section-content .section-content-img {
        height: 500px;
        width: 376px;
        object-fit: cover;
    }
    
}

.section-content {
    display: flex;
    max-width: 1360px;
    gap: 56px;

    margin-right: 80px;
}

.section-content .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0;
}

.section-content .benefits .benefits-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    
    max-width: calc(50% - 16px);
}

.section-content .benefits .benefits-card .benefits-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.section-content .benefits .benefits-card .benefits-card-info .benefits-card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-medium);
    line-height: 31.5px;

    color: var(--clr-white);
}

.section-content .benefits .benefits-card .benefits-card-info .benefits-card-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-white);
}

.section-content .section-content-img {
    max-width: none;
    object-fit: cover;   
    border-radius: 0 12px 12px 0;
}


@media (max-width: 1280px) {
    .sc-whyus {
        gap: 40px;    
        padding-bottom: 120px;
        padding-top: 120px;
    }

    .sc-whyus .section-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .sc-whyus .section-wrapper .section-subtitle {
        width: auto;
    }


    /* section-content */

    .section-content {
        flex-direction: column;
        max-width: 1024px;
        gap: 40px;

        margin-right: auto;
        margin-left: auto;
        padding-inline: 1rem;
    }
    
    .section-content .section-content-img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .section-content .benefits .benefits-card {
        max-width: 370px;
    }

    .section-content .benefits .benefits-card .benefits-card-info {
        gap: 8px;
    }

}

@media (max-width: 840px) {

    .section-content {
        max-width: var(--tl-width);
    }
}

@media (max-width: 520px) {
    .sc-whyus {
        gap: 32px;    
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .sc-whyus .section-wrapper .section-subtitle {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }

    /* section-content */

    .section-content {
        max-width: 100%;
        padding-inline: 0.5rem;
    }

    .section-content .benefits {
        gap: 32px 0;
    }
    
    .section-content .benefits .benefits-card {
        max-width: 343px;
        gap: 8px;
    }
    
    .section-content .benefits .benefits-card img {
        width: 40px;
    }

    .section-content .benefits .benefits-card .benefits-card-info .benefits-card-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-bold);
        line-height: 24px;
    }
    
    .section-content .benefits .benefits-card .benefits-card-info .benefits-card-text {
        font-weight: var(--fw-regular);
    }

}


@media (max-width: 390px) {
    .container {
        max-width: var(--ml-width);
        padding-inline: 0.5rem;
    }
}


/* ----- END WHY US SECTION ----- */




/* ----- START HOW IT WORKS SECTION ----- */

.sc-how {
    display: flex;
    justify-content: space-between;
}

.sc-how .left {
    display: flex;
    flex-direction: column;
    gap: 48px;
}


.sc-how .left .steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sc-how .left .steps-card.active .steps-wrapper .steps-card-text {
    display: block;
}

.sc-how .left .steps-card {
    display: flex;
    flex-direction: column;
    gap: 32px;

    width: 522px;
    cursor: pointer;
}

.sc-how .left .steps-card .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-how .left .steps-card .steps-wrapper .steps-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-how .left .steps-card .steps-wrapper .steps-card-info-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sc-how .left .steps-card .steps-wrapper .steps-card-info-text .steps-card-number {
    font-size: 32px;
    font-weight: var(--fw-medium);
    line-height: 41.6px;

    color: #63666A;
}

.sc-how .left .steps-card .steps-wrapper .steps-card-info-text .steps-card-title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    line-height: 40.5px;

    color: var(--clr-black);
}

.sc-how .left .steps-card .steps-wrapper .steps-card-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    display: none;
    color: #63666A;
}


.sc-how .left .steps-card .steps-wrapper .steps-card-info .card-icon {
    transition: transform 0.3s ease-in;
}
.sc-how .left .steps-card.active .steps-wrapper .steps-card-info .card-icon {
    transform: rotate(45deg);
}




.sc-how .left .steps-card .card-line {
    height: 2px;
    background-color: #E3E3E3;
}


.sc-how .right {
    object-fit: cover;
}


@media (max-width: 1280px) {
    
    .sc-how {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .sc-how .right {
        height: 350px;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .sc-how .left {
        gap: 40px;
    }

    .sc-how .left .steps {
        gap: 24px;
    }

    .sc-how .left .steps-card {
        width: auto;
    }

    .sc-how .left .steps-card .steps-wrapper .steps-card-info .card-icon img {
        height: 40px;
        width: 40px;
    }


}

@media (max-width: 520px) {
        
    .sc-how {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .sc-how .left {
        gap: 24px;
    }

    .sc-how .left .steps-card {
        gap: 24px;
    }

    
    .sc-how .left .steps-card .steps-wrapper {
        gap: 8px;
    }

    .sc-how .left .steps-card .steps-wrapper .steps-card-info-text {
        gap: 8px;
    }

    .sc-how .left .steps-card .steps-wrapper .steps-card-info-text .steps-card-number {
        font-size: var(--fs-h4);
        font-weight: var(--fw-medium);
        line-height: 40.5px;
    }
    
    .sc-how .left .steps-card .steps-wrapper .steps-card-info-text .steps-card-title {
        font-size: var(--fs-h5);
        font-weight: var(--fw-bold);
        line-height: 31.5px;
    }

    .sc-how .left .steps-card .steps-wrapper .steps-card-info .card-icon img {
        height: 32px;
        width: 32px;
    }


}



/* ----- END HOW IT WORKS SECTION ----- */




/* ----- START ECO SECTION ----- */

.sc-eco {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sc-eco .eco-card {
    background-color: #E7EEF6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
}
.sc-eco .eco-card.left {
    flex-direction: row-reverse;
    background-color: #FBF8F1;
}

.eco-card .eco-card_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px 16px;
    /* width: 645px; */
}

.eco-card .eco-card_img {
    width: 100%;
}

.eco-card .eco-card_img img {
    max-width: 500px;
    height: 500px;
    border-radius: 16px;
    object-fit: cover;
}

.eco-card .eco-card_content .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eco-card .eco-card_content .content-wrap .eco-card_title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    line-height: 46.8px;

    color: var(--clr-dark-blue);
}
.eco-card .eco-card_content .content-wrap .eco-card_text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-gray);
}

.sc-eco .eco-card .eco-tags {
    display: flex;
    gap: 24px;
}
.sc-eco .eco-card .eco-tags .tag {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;

    border: none;
    border-radius: 8px;

    font-size: var(--fs-body);
    font-weight: var(--fw-medium);

    cursor: pointer;
}
.sc-eco .eco-card .eco-tags .tag.green {
    color: #89FFE0;
    background-color: #0E4228;
}
.sc-eco .eco-card .eco-tags .tag.white {
    color: #009B72;
    background-color: var(--clr-white);
}
.sc-eco .eco-card .eco-tags .tag.yellow {
    color: var(--clr-black);
    background-color: var(--clr-yellow);
}

.sc-eco .eco-card .eco-tags .tag img {
    width: 24px;
    height: 24px;
}

@media (max-width: 1280px) {
    .sc-eco .eco-card {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .eco-card .eco-card_img img {
        max-width: none;
        width: 100%;
        height: 380px;
    }

    .sc-eco .eco-card.left {
        flex-direction: column-reverse;
    }

    .eco-card .eco-card_content {
        padding: 0px 0px;
    }
}

@media (max-width: 520px) {

    .sc-eco.container {
        padding-inline: 0px;
    }

    .eco-card .eco-card_content .content-wrap .eco-card_title {
        font-size: var(--fs-h4);
        font-weight: var(--fw-medium);
        line-height: 40.5px;    
    }

    .sc-eco .eco-card {
        gap: 16px;
        padding: 16px;
    }

    .eco-card .eco-card_img img {
        height: 200px;
    }

    .sc-eco .eco-card .eco-tags {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        row-gap: 8px;
    }

    .sc-eco .eco-card .eco-tags .tag {
        padding: 8px 12px;
    
        font-size: var(--fs-small);
        line-height: 18px;
    }
    .sc-eco .eco-card .eco-tags .tag img {
        width: 16px;
        height: 16px;
    }

}

/* ----- END ECO SECTION ----- */




/* ----- START REVIEW SECTION ----- */

.sc-review {

    background-color: var(--clr-blue);
}

.sc-review .review-container {
    max-width: var(--dt-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;

    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 80px;
    padding-top: 80px;
}

.review-container .review-up {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.review-container .review-up .review-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.review-container .review-up .review-content .review-content_up {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.review-content .review-content_up .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-content .review-content_up .content-wrap .section-title {
    color: var(--clr-white);
}
.review-content .review-content_up .content-wrap .section-subtitle {
    font-size: var(--fs-h5);
    font-weight: var(--fw-regular);
    line-height: 31.5px;
    
    color: var(--clr-white);
}


.review-container .review-up .review-content .review-content_down {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-container .review-up .review-content .review-content_down .trust {
    font-size: var(--fs-h5);
    font-weight: var(--fw-medium);
    line-height: 31.5px;
    
    color: var(--clr-white);
}

.review-container .review-up .review-content .review-content_down .trust-logos {
    display: flex;
    gap: 32px;
}

.review-container .review-up .review-content .review-content_down .trust-logos img {
    filter: invert(95%) sepia(5%) saturate(0%) hue-rotate(327deg) brightness(103%) contrast(107%);
    height: 40px;
}

.review-container .review-up .review-img {
    width: 587px;
    height: 377px;
    object-fit: cover;
    border-radius: 16px;
}



.review-container .review-down {
    display: flex;
    justify-content: space-between;
    gap: 20.5px;
}

.review-container .review-down .review-card {
    display: flex;
    flex-direction: column;
    gap: 16px;

    background-color: var(--clr-white);
    width: 413px;
    border-radius: 16px;
    padding: 32px 24px;
}

.review-container .review-down .review-card .stars-wrap {
    display: flex;
}
.review-container .review-down .review-card .stars-wrap img {
    width: 32px;
    height: 32px;
}


.review-down .review-card .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-down .review-card .content-wrap .review-text {
    font-size: var(--fs-h5);
    font-weight: var(--fw-regular);
    line-height: 31.5px;
    
    color: var(--clr-gray);
}

.review-down .review-card .content-wrap .costumer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-down .review-card .content-wrap .costumer-info .card-avatar {
    width: 64px;
    height: 64px;
    
    border-radius: 100px;
}

.review-down .review-card .content-wrap .costumer-info .costomer-info_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-down .review-card .content-wrap .costumer-info .costomer-info_wrap .costomer-name {
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    line-height: 24px;
    
    color: var(--clr-gray);
}
.review-down .review-card .content-wrap .costumer-info .costomer-info_wrap .costomer-role {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-gray);
}



@media (max-width: 1280px) {
    .review-container .review-up {
        flex-direction: column-reverse;
    }

    .sc-review .review-container {
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 64px;
        padding-top: 64px;
    }

    .review-container .review-up .review-img {
        width: 100%;
    }

    .review-container .review-down {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 24px;
    }

    .review-container .review-up .review-content .review-content_down .trust-logos {
        flex-wrap: wrap;
    }
}


@media (max-width: 520px) {
    .sc-review .review-container {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
        padding-top: 24px;

        gap: 48px;
    }

    .review-container .review-up .review-img {
        height: 200px;
    }

    .review-container .review-up {
        gap: 24px;
    }

    .review-container .review-up .review-content {
        gap: 24px;
    }

    .review-container .review-up .review-content .review-content_up {
        gap: 24px;
    }

    .review-container .review-up .review-content .review-content_down {
        gap: 8px;
    }


    .review-container .review-down {
        row-gap: 16px;
    }


    .review-content .review-content_up .content-wrap .section-subtitle {
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 24px;
    }
    
    .review-container .review-up .review-content .review-content_down .trust {
        font-size: var(--fs-small);
        font-weight: var(--fw-medium);
        line-height: 18px;
    }

    .sc-review .cta {
        padding: 10px 8px;
        gap: 2px;
    }
    .review-container .review-up .review-content .review-content_down .trust-logos {
        gap: 0px;
        justify-content: space-between;

        flex-wrap: wrap;
    }
    .review-container .review-up .review-content .review-content_down .trust-logos img {
        height: 20px;
    }


    .review-container .review-down .review-card {
        gap: 8px;
        padding: 16px 16px;
    }

    .review-container .review-down .review-card .stars-wrap img {
        width: 24px;
        height: 24px;
    }

    .review-down .review-card .content-wrap {
        gap: 8px;
    }

    .review-down .review-card .content-wrap .review-text {
        font-size: var(--fs-body);
        line-height: 24px;
    }

    .review-down .review-card .content-wrap .costumer-info {
        gap: 8px;
    }

    .review-down .review-card .content-wrap .costumer-info .costomer-info_wrap {
        gap: 0px;
    }

    .review-down .review-card .content-wrap .costumer-info .card-avatar {
        width: 40px;
        height: 40px;
    }

    .review-down .review-card .content-wrap .costumer-info .costomer-info_wrap .costomer-name {
        font-size: var(--fs-small);
        line-height: 18px;
    }

    .review-down .review-card .content-wrap .costumer-info .costomer-info_wrap .costomer-role {
        font-size: var(--fs-small);
        line-height: 18px;
    }
}






/* ----- END REVIEW SECTION ----- */



/* ----- START FAQ SECTION ----- */



.sc-faq {
    display: flex;
    flex-direction: column;
    gap: 48px;
}


.sc-faq .faq-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.sc-faq .faq-cards .faq-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.sc-faq .faq-cards .faq-card .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border: 2px solid #E8E8E8;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.sc-faq .faq-cards .faq-card .faq-question .question {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    line-height: 31.5px;

    color: var(--clr-black);
}



.sc-faq .faq-cards .faq-card .faq-answer {
    padding: 32px 48px;
    border: 2px solid #E8E8E8;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: #F4F4F4;

    display: none;
}

.sc-faq .faq-cards .faq-card .faq-answer .answer {
    font-size: var(--fs-h5);
    font-weight: var(--fw-medium);
    line-height: 31.5px;
    color: #363F3F;
}

.sc-faq .faq-cards .faq-card.active .faq-answer {
    display: block;
}


.sc-faq .faq-cards .faq-card.active .faq-question img {
    transform: rotate(45deg);
}

.sc-faq .faq-cards .faq-card .faq-question img {
    transition: transform 0.3s ease-in;
}


@media (max-width: 1280px) {
    .sc-faq {
        gap: 40px;
    }

    .sc-faq .faq-cards .faq-card .faq-question {
        padding: 24px 32px;
    }

    .sc-faq .faq-cards .faq-card .faq-question .question {
        font-size: var(--fs-body);
        font-weight: var(--fw-medium);
        line-height: 24px;
    }

    .sc-faq .faq-cards .faq-card .faq-answer {
        padding: 32px 32px;    
    }

    .sc-faq .faq-cards .faq-card .faq-answer .answer {
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 24px;
    }

}

@media (max-width: 520px) {
    .sc-faq {
        gap: 32px;
    }

    .sc-faq .faq-cards {
        gap: 16px;
    }

    .sc-faq .faq-cards .faq-card .faq-question {
        padding: 16px 16px;
    }

    .sc-faq .faq-cards .faq-card .faq-question .question {
        font-size: var(--fs-small);
        font-weight: var(--fw-medium);
        line-height: 18px;
    }

    .sc-faq .faq-cards .faq-card .faq-answer {
        padding: 24px 16px;    
    }

    .sc-faq .faq-cards .faq-card .faq-answer .answer {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

    .sc-faq .faq-cards .faq-card .faq-question img {
        width: 24px;
        height: 24px;
    }

}


/* ----- END FAQ SECTION ----- */







/* ----- START CTA SECTION ----- */


.sc-cta {
    background-color: var(--clr-blue);
    background-image: url('./images/icons/graphic-Large.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 123px;
    padding-top: 123px;
}

.sc-cta .cta-container {
    max-width: var(--dt-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-cta .cta-container .cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 634px;
}

.sc-cta .cta-container .cta-wrapper .cta-title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-black);
    line-height: 79.3px;
    letter-spacing: -1px;

    color: var(--clr-white);
}

.sc-cta .cta-container .cta-wrapper .cta-title .cta-special {
    color: #7FFFDD;
}


.sc-cta .cta-container .cta-wrapper .cta-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: var(--clr-white);
}


.sc-cta .cta-container .cta-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 482px;
    width: 100%;
    background-color: var(--clr-white);
    padding: 48px 40px;
    border-radius: 12px;
}

.sc-cta .cta-container .cta-form .form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-cta .cta-container .cta-form .form-fields .input {
    padding: 16px;
    border-radius: 8px;
    border: none;

    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: #63666A;
    background-color: #F4F0F2;
}

.sc-cta .cta-container .cta-form .form-fields .message {
    height: 120px;
    padding: 16px 16px 80px 16px;
    border-radius: 8px;
    border: none;
    
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;
    
    color: #63666A;
    background-color: #F4F0F2;
}

.sc-cta .cta-container .cta-form .form-btn {
    color: var(--clr-white);
    background-color: var(--clr-Disabled-Blue);
    display: flex;
    justify-content: center;
}
.sc-cta .cta-container .cta-form .form-btn:hover {
    background-color: var(--clr-blue);
}
.sc-cta .cta-container .cta-form .form-btn:active {
    background-color: #065489;
}


@media (max-width: 1280px) {
    .sc-cta {
        background-image: url('./images/icons/graphic-medium.svg');
        padding-bottom: 88px;
        padding-top: 88px;
        padding-inline: 1rem;
    }

    .sc-cta .cta-container {
        max-width: 1024px;
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
    }

    .sc-cta .cta-container .cta-wrapper {
        width: auto;
    }

}

@media (max-width: 520px) {
 
    .sc-cta {
        background-image: url('./images/icons/graphic-small.svg');
        padding-bottom: 88px;
        padding-top: 88px;
        padding-inline: 0.5rem;
    }

    .sc-cta .cta-container {
        max-width: 100%;
        gap: 64px;
    }

    .sc-cta .cta-container .cta-wrapper {
        gap: 8px;
    }

    .sc-cta .cta-container .cta-wrapper .cta-title {
        font-size: var(--fs-h3);
        font-weight: var(--fw-bold);
        line-height: 46.8px;
        letter-spacing: -1px;
    }
    
    .sc-cta .cta-container .cta-wrapper .cta-text {
        font-weight: var(--fw-regular);
    }

    .sc-cta .cta-container .cta-form {
        padding: 32px 24px;
        gap: 24px;
    }

    .sc-cta .cta-container .cta-form .form-fields {
        gap: 8px;
    }

    .sc-cta .cta-container .cta-form .form-fields .input {
        padding: 12px;
        font-size: var(--fs-small);
        line-height: 18px;
    }

    .sc-cta .cta-container .cta-form .form-fields .message {
        height: 120px;
        padding: 12px 12px 90px 12px;        
        font-size: var(--fs-small);
        line-height: 18px;
    }

    .sc-cta .cta-container .cta-form .form-btn span {
        font-size: var(--fs-small);
        line-height: 18px;
    }

    .sc-cta .cta-container .cta-form .form-btn .secondary-cta-icon {
        width: 18px;
        height: 18px;
    }

}


@media (max-width: 840px) {
    .sc-cta .cta-container {
        max-width: var(--tl-width);
    }
}


@media (max-width: 390px) {
    .container {
        max-width: 343px;
        padding-inline: 0.5rem;
    }
}



/* ----- END CTA SECTION ----- */




/* ----- START FOOTER SECTION ----- */

.footer {
    display: flex;
    flex-direction: column;
    gap: 48px;
}



.footer-wrapper {
    background-color: var(--clr-blue);
    padding-top: 100px;
background-image: url('./images/icons/graphic-Large.svg');
background-repeat: no-repeat;
}


.footer-wrapper .sc-footer {
    display: flex;
    flex-direction: column;
    gap: 96px;

    padding-bottom: 64px;
}

.footer-line {
    height: 1px;
    background-color: rgba(217,217,217,0.2);
    border-radius: 50px;
}


@media (max-width: 1280px) {

    .footer-wrapper .sc-footer {
        padding-bottom: 48px;
    }

}

@media (max-width: 520px) {
    .footer-wrapper {
        padding-top: 56px;
    }
    
    .footer-wrapper .sc-footer {
        gap: 72px;
        padding-bottom: 40px;
    }
}



/* - START footer-top - */

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-top .footer-top-content {
    width: 521px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-top .footer-top-content .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-top .footer-top-content .logo-text .text {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: var(--clr-white);
}

.footer-top .footer-top-content .social-media {
    display: flex;
    align-items: center;
    gap: 16px;
}




.footer-top .newsletter {
    max-width: 524px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;

    padding: 48px 32px;
    border-radius: 8px;
    background-color: var(--clr-light-green);
}

.footer-top .newsletter .newsletter-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-top .newsletter .newsletter-info .newsletter-info-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    line-height: 31.5px;

    color: var(--clr-black);
}

.footer-top .newsletter .newsletter-info .newsletter-info-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-gray);
}




.footer-top .newsletter .input-wrapper {
    position: relative;
}

.footer-top .newsletter .input-wrapper .newsletter-input {
    width: 100%;
    height: 62px;
    padding: 8px 8px 8px 16px;
    border-radius: 8px;
    border: none;

    background-color: var(--clr-white);
}
.footer-top .newsletter .input-wrapper .newsletter-input::placeholder {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: #63666A;
}




.footer-top .newsletter .input-wrapper .newsletter-cta {
    position: absolute;
    top: 8px;
    right: 8px;
}


@media (max-width: 1280px) {

    .footer-top {
        flex-direction: column;
        gap: 96px;
    }

}

@media (max-width: 520px) {
    .footer-top {
        gap: 80px;
    }
    
    .footer-top .footer-top-content {
        width: auto;
        gap: 40px;
    }
    
    .footer-top .footer-top-content .logo-text .logo-footer {
        width: 100px;
    }

    .footer-top .footer-top-content .logo-text .text {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }
    
    .footer-top .footer-top-content .social-media {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .footer-top .footer-top-content .social-media img {
        width: 24px;
        height: 24px;
    }


    .footer-top .newsletter {
        max-width: 343px;
        height: auto;
        padding: 32px 24px;
    }
    
    .footer-top .newsletter .newsletter-info {
        gap: 4px;
    }
    
    .footer-top .newsletter .newsletter-info .newsletter-info-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-medium);
        line-height: 24px;
    }
    
    .footer-top .newsletter .newsletter-info .newsletter-info-text {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }
    
    
    .footer-top .newsletter .input-wrapper .newsletter-input {
        width: 100%;
        height: 46px;
        padding: 4px 4px 4px 8px;
    }
    .footer-top .newsletter .input-wrapper .newsletter-input::placeholder {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }
        
    .footer-top .newsletter .input-wrapper .newsletter-cta {
        position: absolute;
        top: 6px;
        right: 5px;
    }
        
    .footer-top .newsletter .input-wrapper .newsletter-cta img {
        display: none;
    }
}

@media (max-width: 320px) {

    .footer-top .newsletter {
        padding: 24px 16px;
    }

    .footer-top .newsletter .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-top .newsletter .input-wrapper .newsletter-input {
        height: auto;
        padding: 16px 16px;
    }

    .footer-top .newsletter .input-wrapper .newsletter-cta {
        position: static;
        padding: 16px 12px;
    }

}

/* - END footer-top - */





/* - START footer-navigation - */

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* START LINKS */

.footer-navigation .links {
    display: flex;
    justify-content: space-between;
    
}

.footer-navigation .links .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-navigation .links .links-wrapper .links-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-medium);
    line-height: 31.5px;

    color: var(--clr-white);
}

.footer-navigation .links .links-wrapper .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-navigation .links .links-wrapper .footer-links li a {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;
    
    color: var(--clr-white);
}
.footer-navigation .links .links-wrapper .footer-links li:hover a {
    /* font-weight: var(--fw-bold); */
    color: var(--clr-white);
    text-decoration: underline;
}
.footer-navigation .links .links-wrapper .footer-links .view-more a {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-white);
    text-decoration: underline;
}


.footer-navigation .links .links-wrapper .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-navigation .links .links-wrapper .footer-contact .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-navigation .links .links-wrapper .footer-contact .footer-contact-info .footer-contact-title {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: #DFDFDF;
}

.footer-navigation .links .links-wrapper .footer-contact .footer-contact-info .footer-contact-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: var(--clr-white);
}


@media (max-width: 1280px) {    

    .footer-navigation .links {
        flex-wrap: wrap;
        column-gap: 24px;
        row-gap: 115px;
    }

}

@media (max-width: 520px) {
    
    .footer-navigation {
        gap: 48px;
    }

    .footer-navigation .links {
        column-gap: 0px;
        row-gap: 48px;
    }

    .footer-navigation .links .links-wrapper {
        gap: 16px;
    }
    
    .footer-navigation .links .links-wrapper .links-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-bold);
        line-height: 24px;
    }
    
    .footer-navigation .links .links-wrapper .footer-links {
        gap: 8px;
    }

    .footer-navigation .links .links-wrapper .footer-links li a {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }
    .footer-navigation .links .links-wrapper .footer-links .view-more a {
        font-size: var(--fs-small);
        font-weight: var(--fw-medium);
        line-height: 18px;
    }

    

    .footer-navigation .links .links-wrapper .footer-contact {
        gap: 8px;
        width: 146px;
    }
    
    .footer-navigation .links .links-wrapper .footer-contact .footer-contact-info {
        gap: 4px;
    }
    
    .footer-navigation .links .links-wrapper .footer-contact .footer-contact-info .footer-contact-title {
        font-size: var(--fs-small);
        font-weight: var(--fw-medium);
        line-height: 18px;
    }
    
    .footer-navigation .links .links-wrapper .footer-contact .footer-contact-info .footer-contact-text {
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }

}

/* END LINKS */



/* START location-card */

.location-card {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;

    padding: 24px 24px;
    border-radius: 16px;
    background-color: var(--clr-light-green);
}

.location-card .location-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    line-height: 31.5px;
    
    color: var(--clr-black);
}


.location-card .location-wrapper {
    display: flex;
    gap: 32px;
}

.location-card .location-wrapper .location-wrapper-flex {
    width: 171px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-card .location-wrapper .location-wrapper-flex .location-map {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card .location-wrapper .location-wrapper-flex .location-map .location-map-title {
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    line-height: 24px;

    color: #005D44;
}

.location-card .location-wrapper .location-wrapper-flex .location-map-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-black);
}

@media (max-width: 520px) {

    .location-card {
        padding: 16px 16px;
        gap: 8px;
        max-width: 100%;
    }

    .location-card .location-title {
        font-size: var(--fs-body);
        font-weight: var(--fw-bold);
        line-height: 24px;
    }

    .location-card .location-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .location-card .location-wrapper .location-wrapper-flex {
        width: 127px;
        gap: 4px;
    }
    
    .location-card .location-wrapper .location-wrapper-flex .location-map {
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .location-card .location-wrapper .location-wrapper-flex .location-map img {
        width: 16px;
        height: 16px;
    }
    
    .location-card .location-wrapper .location-wrapper-flex .location-map .location-map-title {
        font-size: var(--fs-small);
        font-weight: var(--fw-bold);
        line-height: 18px;
    }

    .location-card .location-wrapper .location-wrapper-flex .location-map-text {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

}

/* END location-card */






/* - END footer-navigation - */








/* - START footer-reviews - */

.footer-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.footer-reviews .footer-reviews-title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;

    color: var(--clr-white);
}

.footer-reviews .footer-reviews-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 1280px) {

    .footer-reviews {
        flex-wrap: wrap;
        gap: 64px;
    }
    
}

@media (max-width: 520px){

    .footer-reviews {
        gap: 32px;
    }

    .footer-reviews .footer-reviews-title {
        font-weight: var(--fw-bold);
        text-align: center;
    }
    
    .footer-reviews .footer-reviews-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    
    .footer-reviews .footer-reviews-wrapper img {
        height: 80px;
        object-fit: cover;
    }
    
}


/* - END footer-reviews - */





/* - START footer-bottom - */

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-bottom .footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom .footer-copyright .copyright {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-bottom .footer-copyright .copyright .copyright-title {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: var(--clr-white);
}


.footer-bottom .footer-copyright .footer-other-links {
    display: flex;
    align-items: center;
    gap: 16px;

    list-style: none;
}

.footer-bottom .footer-copyright .footer-other-links li a {
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;
    
    color: var(--clr-white);
    text-decoration: underline;
}
.footer-bottom .footer-copyright .footer-other-links li:hover a {
    text-decoration: none;
}

.footer-bottom .footer-copyright .footer-other-links .footer-navigation-line {
    width: 1px;
    height: 15px;
    background-color: var(--clr-white);
}


.footer-bottom .footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
}


@media (max-width: 520px) {

    .footer-bottom {
        gap: 16px;
    }
    
    .footer-bottom .footer-copyright {
        gap: 8px;
    }
     
    .footer-bottom .footer-copyright .copyright img{
        width: 16px;
        height: 16px;
    }
   
    .footer-bottom .footer-copyright .copyright .copyright-title {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

    .footer-bottom .footer-copyright .footer-other-links {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom .footer-copyright .footer-other-links li a {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }
    
    .footer-bottom .footer-payments {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0px;
    }
    
    .footer-bottom .footer-payments img {
        width: 40px;
    }

}



/* - END footer-bottom - */




/* - START footer-seals - */

.footer-seals {
    background-color: var(--clr-white);
    padding: 24px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

@media (max-width: 1280px) {

    .footer-seals {
        padding: 16px 0;    
        gap: 48px;
    }
    
    .footer-seals img {
        height: 80px;
    }

}

@media (max-width: 520px) {

    .footer-seals {
        padding: 8px 0;    
        gap: 16px;
    }
    
    .footer-seals img {
        height: 40px;
    }

}

/* - END footer-seals - */








/* ----- END FOOTER SECTION ----- */




/* *************** START PRODUCT PAGE *************** */


/* ----- START HEADER SECTION ----- */

.product-page .header {
    padding-bottom: 0px;

    background-color: var(--clr-blue);
}

/*
.product-page.scroll-up .nav {
    background-color: var(--clr-blue);
}
*/

/* ----- END HEADER SECTION ----- */


.breadcrumb-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-block-start: 6px;
    margin-block-end: 0px;
}

.breadcrumb {
    font-size: var(--fs-body);
    line-height: 20px;
    color: var(--clr-gray);
}

.breadcrumb ol {
    list-style: none;
    padding: 16px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
    border-radius: 8px;
}
.breadcrumb li {
    display: flex;
    align-items: center;
}
.breadcrumb li a {
    text-decoration: none;
    color: var(--clr-blue); /* brand color */
    transition: color 0.2s;
}
.breadcrumb li a:hover {
    color: var(--clr-dark-blue);
}
.breadcrumb li::after {
    content: "•";   /* dot separator */
    margin-left: 8px;
    margin-right: 8px;
    color: #aaa;
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb li[aria-current="page"] {
    color: var(--clr-gray);
    font-weight: var(--fw-medium);
}

@media (max-width: 1280px) {

    .breadcrumb-wrapper {
        margin-block-start: 20px;
        margin-block-end: 40px;
        overflow: unset;
    }
    

}
@media (max-width: 520px) {
    .breadcrumb-wrapper {
        margin-block-start: 5px;
        margin-block-end: 14px;
    }

    .breadcrumb {
        font-size: var(--fs-small);
        line-height: 18px;
    }
}


/* ----- START PRODUCT SECTION ----- */


.sc-product {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.sc-product .product-wrapper {
    display: flex;
    justify-content: space-between;
}

.sc-product .product-wrapper .info-wrapper {
    width: 578px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.sc-product .product-wrapper .info-wrapper .product-title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    line-height: 46.8px;
    letter-spacing: -1px;
    
    color: var(--clr-dark-blue);
}


.sc-product .product-wrapper .info-wrapper .stars-wrap {
    display: flex;
    gap: 0px;
}
.sc-product .product-wrapper .info-wrapper .stars-wrap img {
    width: 24px;
    height: 24px;
}

.sc-product .product-wrapper .info-wrapper .product-description {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-black);
}




.sc-product .quote-wrapper .details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;

    /* border: 1px solid var(--clr-gray); */
    border-radius: 20px;
    padding: 32px 16px;
    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
}

.sc-product .quote-wrapper .details-wrapper .product-id {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;
    
    color: var(--clr-green);
}

.quote-wrapper .details-wrapper .purchase-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* gap: 64px; */
}

.quote-wrapper .details-wrapper .purchase-wrapper .quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purchase-wrapper .quantity-wrapper .quantity-text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-gray);
} 



.purchase-wrapper .purchase-details {
    display: flex;
    gap: 16px;
}

.purchase-wrapper .purchase-details .stock {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.purchase-wrapper .purchase-details .stock .stock-status {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-green);
}

.purchase-wrapper .purchase-details .stock .product-price {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;
    
    color: var(--clr-black);
}




.quantity-selector {
    display: flex;
    align-items: center;
    gap: 24px;
    
    border: 2px solid #3C3B3B;
    border-radius: 8px;
    padding: 16px 16px;
    width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.quantity-selector .quantity-input {
    border: none;
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;
    
    color: var(--clr-gray);
    width: 100%;

    min-width: 2ch;   /* minimum for 1–2 digits */
    max-width: 4ch;   /* cap it so it doesn’t break layout */
    text-align: center;

}

.quantity-selector .minus, .quantity-selector .plus {
    border: none;
    background-color: transparent;
}

.quantity-selector .minus img, .quantity-selector .plus img {
    width: 24px;
    height: 24px;
    max-width: none;

}
  



.quote-wrapper .left {
    flex-basis: 55%;
}
.quote-wrapper .right {
    flex-basis: calc(45% - 32px);
}


.quote-wrapper {
    display: flex;
    gap: 72px;
}

.quote-wrapper .left {
    display: flex;
    flex-direction: column;
    gap: 24px;  /* For Space between product short text and image */
}

.quote-wrapper .left .product-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.left .product-images .main-img {
    /* width: 630px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    
    aspect-ratio: 1 / 1;
    max-width: none;
}


.left .product-images .thumbnails-wrapper {
    display: flex;
    justify-content: space-between;
}
.left .product-images .thumbnails-wrapper img {
    width: 108px;
    height: 104px;
    object-fit: cover;
    border-radius: 8px;
    transition: border 0.2s;
}


.thumbnails-wrapper img.active,
.thumbnails-wrapper img:hover {
  border: 2px solid #1565c0; /* highlight */
	cursor: pointer;
}


.button-wrapper {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;

    padding: 24px 24px;
    border-radius: 16px;
    background-color: var(--clr-white);

    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1),
    0px 24px 60px rgba(6, 47, 125, 0.05),
    0px 12px 24px rgba(27, 59, 119, 0.05);
}
.button-wrapper .btn-left {
    display: flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;
}
.button-wrapper .btn-left img {
    width: 28px;
    height: 28px;
}
.button-wrapper .btn-left p {
    font-size: 20px;
    font-weight: var(--fw-medium);
    line-height: 26px;

}
.button-wrapper .btn-left.request p {
    color: var(--clr-green);
}
.button-wrapper .btn-left.download p {
    color: var(--clr-dark-blue);
}
.button-wrapper .btn-left.request:hover p {
    color: #00AC8B;
}
.button-wrapper .btn-left.download:hover p {
    color: #395d7b;
}


.left .review-cards {
    display: flex;
    gap: 30px;
}

.left .review-cards .trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    padding: 20px 24px;
    border-radius: 16px;
    background-color: var(--clr-white);

    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1),
    0px 24px 60px rgba(6, 47, 125, 0.05),
    0px 12px 24px rgba(27, 59, 119, 0.05);

}

.left .review-cards .trust-card .card-header img {
    width: 119px;
    height: 27px;
}

.left .review-cards .trust-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}


.trust-card .card-body .review-stars {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-card .card-body .review-stars .stars-wrapper {
    display: flex;
    gap: 8px;
}
.trust-card .card-body .review-stars .stars-wrapper img {
    width: 32px;
    height: 32px;
}

.trust-card .card-body .review-stars .review-score {
    font-family: var(--fm-roboto);
    font-size: 28px;
    font-weight: var(--fw-bold);
    line-height: 22px;
    
    color: black;
}

.trust-card .card-body .review-count {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 22px;
    
    color: var(--clr-black);
}

.review-count .dot {
    font-size: var(--fs-h5);
    font-weight: var(--fw-black);
    color: var(--clr-black);
    position: relative;
    top: 1px; /* float it slightly */
}

.trust-card .card-body .review-stars .stars-wrapper.google {
    gap: 4px;
}
.trust-card .card-body .review-stars .stars-wrapper.google img {
    width: 24px;
    height: 24px;
}


.quote-wrapper .right {
    display: flex;
    flex-direction: column;
    gap: 16px; /* for gap between instant price quote and top text heading */

    margin-block-start: 60px; /* for Gap between right side text and top breadcrumb */
}

.quote-wrapper .right .quote-title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;
    
    color: var(--clr-dark-blue);
}

.quote-wrapper .right .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-wrapper .right .form-wrapper .form-title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;
    
    color: var(--clr-green);
}

.quote-wrapper .right .form-wrapper .quote-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.quote-wrapper .right .form-wrapper .quote-form .form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-form .form-fields .part-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-form .form-fields .part-1 .select-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    row-gap: 16px;
}
.quote-form .form-fields .part-1 .select-wrapper .select {
    flex-basis: calc(50% - 8px);
}

.quote-form .form-fields .part-1 .input {
    padding: 16px;
    border-radius: 8px;
    border: none;

    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: #63666A;
    border: 1px solid var(--clr-gray);
}

.quote-form .form-fields .part-1 .select {
    padding: 16px;
    border-radius: 8px;
    border: none;

    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: #63666A;
    border: 1px solid var(--clr-gray);

    appearance: none;       /* Chrome/Edge */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none;  /* Firefox */
    padding-right: 16px;    /* space for custom arrow */
    background: url("./images/icons/arrow_down.svg") no-repeat right 0.7rem center;
    background-size: 24px;    
}


.quote-form .form-fields .line {
    height: 1px;
    width: 100%;
    background-color: var(--clr-green);
}

.quote-form .form-fields .part-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-form .form-fields .part-2 .input {
    padding: 16px;
    border-radius: 8px;
    border: none;

    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;

    color: #63666A;
    border: 1px solid var(--clr-gray);
}

.quote-form .form-fields .part-2 .message {
    height: 120px;
    padding: 16px 16px 80px 16px;
    border-radius: 8px;
    border: none;
    
    font-size: var(--fs-body);
    font-weight: var(--fw-light);
    line-height: 24px;
    
    color: #63666A;
    border: 1px solid var(--clr-gray);
}

.quote-form .quote-cta {
    background-color: #016047;
    border: none;
    border-radius: 150px;
    padding: 16px 16px;

    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-white);
    
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.quote-form .quote-cta:hover {
    background-color: #016a4e;
}

.sc-product .quantity-selector .minus, .quantity-selector .plus {
    cursor: pointer;
}

@media (max-width: 1280px) {

    .sc-separator {
        margin-top: 64px;
    }


    .sc-product {
        display: flex;
    }
    
    .sc-product {
        gap: 40px;
    }

    .sc-product .product-wrapper .info-wrapper {
        width: 671px;
    }

    .quote-wrapper {
        row-gap: 72px;
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-wrapper .left {
        gap: 40px;
        width: 100%;
    }

    .left .product-images .main-img {
        width: 100%;
        height: 556px;
    }

    .left .product-images .thumbnails-wrapper {
        justify-content: flex-start;
        gap: 32px;
        flex-wrap: wrap
    }


    .quote-wrapper .right {
        gap: 24px;
        width: 100%;
        margin-block-start: 0px;
    }

    .sc-product .new-wrapper {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .sc-product .quote-wrapper .details-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;

        margin-block-start: 16px;
        margin-block-end: 40px;
    }
    
    .sc-product .quote-wrapper .details-wrapper .product-id {
        font-size: var(--fs-h4);
        font-weight: var(--fw-medium);
        line-height: 40.5px;
        
        color: var(--clr-green);
    }
    
    .sc-product .quote-wrapper .details-wrapper .purchase-wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 64px;
    }
    
    .sc-product .quote-wrapper .details-wrapper .purchase-wrapper .quantity-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .sc-product .purchase-wrapper .quantity-wrapper .quantity-text {
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 24px;
        
        color: var(--clr-gray);
    } 
    
    
    
    .sc-product .purchase-wrapper .purchase-details {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        row-gap: 8px;
    }
    

    .sc-product .purchase-wrapper .purchase-details .stock {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    
    .sc-product .purchase-wrapper .purchase-details .stock .stock-status {
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 24px;
        
        color: var(--clr-green);
    }
    
    .sc-product .purchase-wrapper .purchase-details .stock .product-price {
        font-size: var(--fs-h4);
        font-weight: var(--fw-medium);
        line-height: 40.5px;
        
        color: var(--clr-black);
    }
    
    
    
    
    .sc-product .quantity-selector {
        display: flex;
        align-items: center;
        gap: 24px;
        
        border: 2px solid #3C3B3B;
        border-radius: 8px;
        padding: 16px 16px;
        width: 100%;
    }
    
    .sc-product .quantity-selector .quantity-input {
        border: none;
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 24px;
        
        color: var(--clr-gray);
        width: 100%;
    
        min-width: 2ch;   /* minimum for 1–2 digits */
        max-width: 4ch;   /* cap it so it doesn’t break layout */
        text-align: center;
    
    }
    
    .sc-product .quantity-selector .minus, .quantity-selector .plus {
        border: none;
        background-color: transparent;
    }
    
    .sc-product .quantity-selector .minus img, .quantity-selector .plus img {
        width: 24px;
        height: 24px;
        max-width: none;
    
    }


    .button-wrapper {
        width: 100%;
        gap: 32px;
        row-gap: 16px;
        padding: 24px 16px;
    }

    .sc-product .review-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .sc-product .review-cards .trust-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    
        padding: 20px 24px;
        border-radius: 16px;
        background-color: var(--clr-white);
    
        box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1),
        0px 24px 60px rgba(6, 47, 125, 0.05),
        0px 12px 24px rgba(27, 59, 119, 0.05);
    
    }
    
    .sc-product .review-cards .trust-card .card-header img {
        width: 119px;
        height: 27px;
    }
    
    .sc-product .review-cards .trust-card .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    
    .sc-product .trust-card .card-body .review-stars {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .sc-product .trust-card .card-body .review-stars .stars-wrapper {
        display: flex;
        gap: 8px;
    }
    .sc-product .trust-card .card-body .review-stars .stars-wrapper img {
        width: 32px;
        height: 32px;
    }
    
    .sc-product .trust-card .card-body .review-stars .review-score {
        font-family: var(--fm-roboto);
        font-size: 28px;
        font-weight: var(--fw-bold);
        line-height: 22px;
        
        color: black;
    }
    
    .sc-product .trust-card .card-body .review-count {
        font-size: var(--fs-body);
        font-weight: var(--fw-regular);
        line-height: 22px;
        
        color: var(--clr-black);
    }
    
    .sc-product .review-count .dot {
        font-size: var(--fs-h5);
        font-weight: var(--fw-black);
        color: var(--clr-black);
        position: relative;
        top: 1px; /* float it slightly */
    }
    
    .sc-product .trust-card .card-body .review-stars .stars-wrapper.google {
        gap: 4px;
    }
    .sc-product .trust-card .card-body .review-stars .stars-wrapper.google img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 520px) {
    .sc-product {
        gap: 32px;
    }

    .sc-separator {
        margin-top: 32px;
    }

    .sc-product .product-wrapper .info-wrapper {
        width: 100%;
        gap: 8px;
    }

    .sc-product .product-wrapper .info-wrapper .product-title {
        font-size: var(--fs-h4);
        font-weight: var(--fw-bold);
        line-height: 40.5px;
    }

    .sc-product .product-wrapper .info-wrapper .stars-wrap img {
        width: 20px;
        height: 20px;
    }

    .quote-wrapper {
        row-gap: 64px;
    }

    .left .product-images .main-img {
        height: 250px;
    }

    .left .product-images .thumbnails-wrapper {
        justify-content: space-between;
        gap: 4px;
    }
    .left .product-images .thumbnails-wrapper img {
        width: 60px;
        height: 58px;
    }

    .quote-wrapper .right .form-wrapper .quote-form .form-fields {
        gap: 16px;
    }
    .quote-form .form-fields .part-1 {
        gap: 8px;
    }
    .quote-form .form-fields .part-2 {
        gap: 8px;
    }


    .quote-wrapper .right .quote-title {
        font-size: var(--fs-h5);
        font-weight: var(--fw-medium);
        line-height: 31.5px;
    }

    .quote-wrapper .right .form-wrapper .form-title {
        font-size: var(--fs-h5);
        font-weight: var(--fw-medium);
        line-height: 31.5px;
    }


    .quote-form .form-fields .part-1 .select {
        padding: 12px;
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
        padding-right: 12px;
        background-size: 20px;
    }

    .quote-form .form-fields .part-1 .input {
        padding: 12px;
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }

    .quote-form .form-fields .part-2 .input {
        padding: 12px;
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }

    .quote-form .form-fields .part-2 .message {
        padding: 12px 12px 80px 12px;
        font-size: var(--fs-small);
        font-weight: var(--fw-light);
        line-height: 18px;
    }
    
    .quote-form .quote-cta {
        padding: 12px 16px;
    }


    .sc-product .quote-wrapper .new-wrapper {
        gap: 40px;
    }

    .sc-product .quote-wrapper .details-wrapper {
        padding: 16px 8px;
    }

    .sc-product .quote-wrapper .details-wrapper .product-id {
        font-size: var(--fs-h5);
        font-weight: var(--fw-medium);
        line-height: 21.5px;
    }

    .sc-product .quote-wrapper .details-wrapper .purchase-wrapper {
        gap: 32px;
    }

    .sc-product .quote-wrapper .details-wrapper .purchase-wrapper .quantity-wrapper {
        gap: 4px;
    }

    .sc-product .quote-wrapper .purchase-wrapper .quantity-wrapper .quantity-text {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

    .sc-product .quote-wrapper .quantity-selector {
        padding: 12px;
    }

    .sc-product .quote-wrapper .quantity-selector .quantity-input {
        font-size: var(--fs-small);
        font-weight: var(--fw-regular);
        line-height: 18px;
    }

    .sc-product .quote-wrapper .purchase-wrapper .purchase-details .stock .product-price {
        font-size: var(--fs-h5);
        font-weight: var(--fw-medium);
        line-height: 31.5px;
    }


    .button-wrapper {
        gap: 16px;
        row-gap: 16px;
        padding: 24px 16px;
    }
    .button-wrapper .btn-left {
        gap: 4px;
    }
    .button-wrapper .btn-left img {
        width: 24px;
        height: 24px;
    }
    .button-wrapper .btn-left p {
        font-size: var(--fs-body);
        line-height: 24px;
    
    }

    .sc-product .review-cards {
        gap: 16px;
    }

    .sc-product .review-cards .trust-card {
        width: 100%;
    }
}


@media (max-width: 291px) {
    .sc-product .purchase-wrapper .purchase-details .cta.yellow {
        order: 2;
    }

    .sc-product .purchase-wrapper .purchase-details .stock {
        order: 1;
    }
}



/* ----- END PRODUCT SECTION ----- */




/* ----- START PRODUCT DESCRIPTION SECTION ----- */

.sc-maintext {
    background-color: var(--clr-light-gray);
    
}

.sc-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sc-description .tabs {
    display: flex;
    gap: 16px;
}
  
.sc-description .tab {
    padding: 12px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
  
    line-height: 24px;

    border-radius: 8px;
    transition: background 0.2s;
    color: var(--clr-gray);
    border: 1px solid var(--clr-dark-blue);
}
  
.sc-description .tab:hover {
    background: #f0f0f0;
}

.sc-description .tab.active {
    color: var(--clr-white);
    background: var(--clr-dark-blue);   /* active background */
    border: none;
}

.sc-description .tab-content {
    display: block;
}

.sc-description .tab-content.hidden {
    display: none;
}
  

.sc-description .description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sc-description .description-wrapper .description-text {
    font-size: var(--fs-h5);
    font-weight: var(--fw-regular);
    color: var(--clr-gray);

    line-height: 31.5px;
}


.description-wrapper .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cards-wrapper .description-card {
    display: flex;
    flex-direction: column;
    gap: 0px;

    width: 305px;
}

.cards-wrapper .description-card img {
    width: 305px;
    height: 160px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.cards-wrapper .description-card .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 32px 16px;
    border-radius: 0px 0px 16px 16px;

    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.1);
}

.cards-wrapper .description-card .content-wrapper .title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-medium);
    color: var(--clr-dark-blue);

    line-height: 31.5px;
}

.cards-wrapper .description-card .content-wrapper .text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: #3C3B3B;

    line-height: 24px;
}


@media (max-width: 1280px) {
    .sc-description .tabs {
        flex-wrap: wrap;
    }

    .description-wrapper .cards-wrapper {
        row-gap: 20px !important;
    }

}

@media (max-width: 700px) {

    .description-wrapper .cards-wrapper {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 20px;
        gap: 16px;
    }

    .cards-wrapper .description-card {
        flex-basis: calc(50% - 8px);
    }

}

@media (max-width: 520px) {
    .sc-description {
        gap: 16px;
    }

    .sc-description .tabs {
        row-gap: 8px;
        gap: 8px;
    }

    .sc-description .description-wrapper {
        gap: 32px;
    }

    .sc-description .tab {
        padding: 8px 12px;
    }

    .sc-description .description-wrapper .description-text {
        font-size: var(--fs-body);    
        line-height: 24px;
    }

    .cards-wrapper .description-card {
        width: 343px;
    }
    
    .cards-wrapper .description-card img {
        width: auto;
        height: 140px;
    }
    
    .cards-wrapper .description-card .content-wrapper {
        padding: 16px 16px;
    }
    
    .cards-wrapper .description-card .content-wrapper .title {
        font-size: var(--fs-body);
        font-weight: var(--fw-medium);
        line-height: 24px;
    }
    
    .cards-wrapper .description-card .content-wrapper .text {
        font-size: var(--fs-small);
        line-height: 18px;
    }

    .description-wrapper .cards-wrapper {
        flex-wrap: wrap;
        row-gap: 20px;
        gap: 16px;
    }

    .cards-wrapper .description-card {
        flex-basis: calc(50% - 8px);
    }

}

@media (max-width: 376px) {
    .cards-wrapper .description-card .content-wrapper {
        padding: 16px 12px;
    }
    
    .description-wrapper .cards-wrapper {
        row-gap: 16px;
        gap: 8px;
    }
    .cards-wrapper .description-card img {
        height: 100px;
    }

    .cards-wrapper .description-card {
        flex-basis: calc(50% - 4px);
    }
}




/* ----- END PRODUCT DESCRIPTION SECTION ----- */




/* ----- START PRODUCT FEATURE SECTION ----- */

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 64px;
}


.sc-features .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    row-gap: 48px;
    justify-content: center; /* keeps grid centered if last row has fewer cards */
    align-items: stretch;     /* same height in each row */
    
}

  
.sc-features .features .feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);

    max-width: 350px;
    width: 100%;
    
}

  
.sc-features .features .feature-card .card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sc-features .features .feature-card .card-header img {
    width: 48px;
    height: 48px;
}
  
.sc-features .features .feature-card .card-header .card-header_title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: 40.5px;
}
  
.sc-features .features .feature-card .card-body .card-body_text {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 24px;

    color: var(--clr-gray);
}


  
.sc-features .features .feature-card.green {
    background-color: #E5FFF8;
}
.sc-features .features .feature-card.dark-blue {
    background-color: #E5EBFF;
}
.sc-features .features .feature-card.purple {
    background-color: #F3E5FF;
}
.sc-features .features .feature-card.brown {
    background-color: #FFFBE5;
}
.sc-features .features .feature-card.red {
    background-color: #FFE5E5;
}
.sc-features .features .feature-card.blue {
    background-color: #E5FCFF;
}


.sc-features .features .feature-card.green .card-header .card-header_title {
    color: var(--clr-green);
}
.sc-features .features .feature-card.dark-blue .card-header .card-header_title {
    color: var(--clr-dark-blue);
}
.sc-features .features .feature-card.purple .card-header .card-header_title {
    color: #9921FF;
}
.sc-features .features .feature-card.brown .card-header .card-header_title {
    color: var(--clr-black);
}
.sc-features .features .feature-card.red .card-header .card-header_title {
    color: #FF2160;
}
.sc-features .features .feature-card.blue .card-header .card-header_title{
    color: #009EDD;
}


/* Tablet (shrink to auto-fit below 1024px) */
@media (max-width: 1280px) {
    .sc-features {
        overflow: unset;
    }

    .sc-features .features {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

}
  
  /* Mobile (stack 1 per row below 400px) */
  @media (max-width: 560px) {
    .sc-features {
        gap: 24px;
    }

    .sc-features .features {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    
    

    .sc-features .features .feature-card {
        max-width: unset;

    }

    .sc-features .features .feature-card .card-header .card-header_title {
        font-size: var(--fs-h5);
        font-weight: var(--fw-medium);
        line-height: 31.5px;
    }

    .sc-features .features .feature-card .card-header img {
        width: 40px;
        height: 40px;
    }

    .sc-features .features .feature-card {
        gap: 8px;
        padding: 16px 20px;
    }

    .sc-features .features .feature-card .card-header {
        gap: 4px;
    }

    .section-title {
        font-size: var(--fs-h4);
        line-height: 40.5px;
        letter-spacing: 0px;
    }

}


/* ----- END PRODUCT FEATURE SECTION ----- */




















/* *************** END PRODUCT PAGE *************** */