/*****************Css******************/

*,
body,
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(0.44, rgb(122, 153, 217)),
            color-stop(0.72, rgb(73, 125, 189)),
            color-stop(0.86, rgb(28, 58, 148)));
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "Poppins", sans-serif;
}

.font-header {
    font-size: 20px;
}

.font-subheader {
    font-size: 15px;
}

.banner {
    width: 200px;
    margin: 0 auto;
}


/** LANDING PAGE */

/* NAV SECTION */

.nav-link {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}

.nav-link:focus:after,
.nav-link:hover:after {
    width: 100%;
    left: 0%;
}

.nav-link:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

 .custom-btn {
    background: rgb(242, 242, 199);
    background: linear-gradient(324deg, rgba(242, 242, 199, 1) 38%, rgba(245, 223, 172, 1) 64%, rgba(188, 171, 132, 1) 100%);
    border: none;
    color: #000;
    padding: 10px 20px;
    font-size: 10px;
    border-radius: 5px;
}

/* HERO SECTION */

.button-container {
    display: flex;
    gap: 10px;
}

.button-style {
    background: linear-gradient(#2176E3, #0C3E7F);
    color: #FFF;
}

.landing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 40vh;
    /*Make to 100vh for larger screen*/
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.landing-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url('../images/header/hero-phone-bg-image.png');
    /* Change Background Image to hero-bg-image.jpg */
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.glass-card {
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    padding: 2rem;
}

/* FIND AUTO RECYCLER */

.find-auto-recycler__container {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.find-auto-recycler {
    flex-direction: column;
    align-items: center;
}

.find-auto-recycler img {
    width: 100%;
    margin: 3rem 0;
}

.statistics-container {
    padding: 2rem;
    margin: 0 5rem;
}

.title-style h1:after {
    width: 400px;
    height: 5px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0053b4;
}

.tab-container,
.statistics-container,
.illustrations-container {
    display: none !important;
}

.statistics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
}

.statistics-item .icon-style {
    font-size: 2rem;
    color: #FFF;
    border: 1px solid #0053b4;
    background-color: #0053b4;
    border-radius: 100%;
    padding: 2rem;
}

.tri-image__container {
    flex-direction: column;
    margin: 0rem 0;
    gap: 2rem;
}

.tri-image__container img {
    width: 100%;
    max-width: 20rem;
}

.illustrations-container .illustration-text,
#illustrationsIndicators .illustration-text {
    text-transform: uppercase;
    color: #006AE6;
}

.choose-text {
    color: #006AE6;
    font-size: 30px;
}

.choose-subtext {
    font-size: 20px;
}


.cta {
    height: 60vh;
}

.cta-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../images/header/cta-mobile-bg.png');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.cta-header {
    font-size: 25px;
}

.cta-subheader {
    font-size: 17px;
}

.footer-container {
    flex-direction: column-reverse;
    gap: 50px;
}

.footer-container .more-footer {
    text-align: left;
    justify-content: center;
}


.footer-container .more-footer .nav-link {
    text-align: left;
    margin-left: 2rem;
}

.footer-container .logo-footer {
    width: 100%;
}

.footer-container .footer-brand-logo2 {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.footer-container .logo-footer .icons-footer {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-container .logo-footer .icons-footer .socmed-link {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-container .logo-footer .icons-footer .socmed-link img {
    height: 1.1rem;
    width: 100%;
}

.footer-container .logo-footer .footer-brand-logo {
    height: 7rem;
    width: 100%;
    max-width: 12rem;
}

.logo-footer {
    text-align: center;
    margin: 0;
}

@media (min-width: 769px) and (min-width: 1024px) {
    .font-header {
        font-size: calc(1.5em + 1vw);
    }

    .font-subheader {
        font-size: 22px;
    }

    .button-style {
        font-size: 22px;
    }

    .banner {
        width: 200px;
        margin: 0;
    }

    .nav-link {
        text-decoration: none;
        color: #000000;
        cursor: pointer;
        position: relative;
        border: none;
        background: none;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: color;
        text-align: center;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #fff;
    }

    .nav-link:focus:after,
    .nav-link:hover:after {
        width: 100%;
        left: 0%;
    }

    .nav-link:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 50%;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #fff;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: width, left;
    }


    .menu-item .menu-link {
        font-size: 17px;
        font-weight: 500;
    }

     .custom-btn {
        background: rgb(242, 242, 199);
        background: linear-gradient(324deg, rgba(242, 242, 199, 1) 38%, rgba(245, 223, 172, 1) 64%, rgba(188, 171, 132, 1) 100%);
        border: none;
        color: #000;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 5px;
    }

    .hero-banner-logo {
        width: 100%;
        max-width: 35rem;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .header-title h1 span {
        font-size: 3.3rem;
        color: #FFF;
        text-transform: uppercase;
    }

    .header-text {
        background-color: #1349b0;
    }

    .landing-hero {
        min-height: 90vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 5rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        text-align: left;
    }

    .landing-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background-image: url('../images/header/hero-bg-image.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    .carousel-container {
        display: none !important;
    }


    .tab-container,
    .statistics-container,
    .illustrations-container {
        display: block !important;
    }

    .find-auto-recycler__container {
        padding: 5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
    }

    .find-auto-recycler__container .find-auto-recycler h3 {
        font-size: 2.5rem;
    }

    .find-auto-recycler__container .find-auto-recycler p {
        font-size: 1.5rem;
    }

    .find-auto-recycler__container .recycler-location-views {
        margin: auto 0;
        width: 50%;
    }

    .find-auto-button span {
        font-size: 1.5rem;
    }

    .find-auto-button a {
        font-size: 1.5rem;
    }

    .find-auto-recycler {
        flex-direction: column;
        align-items: center;
        /* width: 50%; */
    }

    .find-auto-recycler img {
        width: 100%;
        margin: 3rem 0;
    }

    .statistics-container {
        padding: 5rem 2rem;
        margin: 5rem;
    }

    .title-style h1 {
        text-align: center;
        text-transform: uppercase;
        padding-bottom: 20px;
        font-size: 2.5rem;
    }

    .title-style h1:after {
        width: 400px;
        height: 5px;
        display: block;
        content: "";
        position: relative;
        margin-top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #0053b4;
    }

    .statistics-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        gap: 2rem;
    }

    .statistics-item .icon-style {
        font-size: 2rem;
        color: #FFF;
        border: 1px solid #0053b4;
        background-color: #0053b4;
        border-radius: 100%;
        padding: 2rem;
    }

    .octagon-text p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .tri-image__container {
        flex-direction: row;
        margin: 0 0 5rem;
        gap: 5rem;
    }

    .tri-image__container img {
        width: 100%;
        max-width: 30rem;
    }



    .illustrations-container .illustration-text,
    #illustrationsIndicators .illustration-text {
        font-size: 2rem;
        text-transform: uppercase;
        color: #006AE6;
    }

    .illustrations-container .card {
        max-height: 330px;
        height: 100%;
        max-width: 470px;
        width: 100%;
        padding: 2rem;
        margin: 0 auto;
    }

    .illustrations-container .card:hover {
        background: linear-gradient(#2176E3, #0C3E7F);
        cursor: pointer;
        color: #70ADFA;
        box-shadow: 0 .5rem 1rem #000;
        transition: all .3s ease-in;
    }

    .illustrations-container .card:hover h1 {
        color: #FFF;
        transition: all .3s ease-in;
    }


    .illustration-details,
    #illustrationsIndicators .illustration-details {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .cta {
        height: 60vh;
    }

    .cta-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        background-image: url('../images/header/cta-bg.png');
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }


    .cta-header {
        font-size: 3rem;
    }

    .cta-subheader {
        font-size: 2rem;
        width: 70%;
    }


    .footer-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer-container .more-footer {
        text-align: left;
        width: 50%;
        justify-content: center;
    }

    .footer-container .more-footer h4 {
        font-size: 2rem;
    }

    .footer-container .more-footer .nav-link {
        font-size: 1.2rem;
        text-align: left;
        margin-left: 2rem;
    }

    .footer-container .logo-footer {
        width: 50%;
    }

    .footer-container .footer-brand-logo2 {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }

    .footer-container .logo-footer .icons-footer {
        display: flex;
        justify-content: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link img {
        height: 1.5rem;
        width: 100%;
    }

    .footer-container .logo-footer .footer-brand-logo {
        height: 10rem;
        width: 100%;
        max-width: 20rem;
    }

    .footer-container .logo-footer p {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer a {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer .icon p {
        font-size: 1.2rem;
    }

    .logo-footer {
        text-align: center;
        margin: 0;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {


    .font-header {
        font-size: calc(1.5em + 1vw);
    }

    .font-subheader {
        font-size: 22px;
    }

    .button-style {
        font-size: 22px;
    }

    .banner {
        width: 300px;
        margin: 0;
    }

    .nav-link {
        text-decoration: none;
        color: #000000;
        cursor: pointer;
        position: relative;
        border: none;
        background: none;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: color;
        text-align: center;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #fff;
    }

    .nav-link:focus:after,
    .nav-link:hover:after {
        width: 100%;
        left: 0%;
    }

    .nav-link:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 50%;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #fff;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: width, left;
    }


    .menu-item .menu-link {
        font-size: 17px;
        font-weight: 500;
    }

     .custom-btn {
        background: rgb(242, 242, 199);
        background: linear-gradient(324deg, rgba(242, 242, 199, 1) 38%, rgba(245, 223, 172, 1) 64%, rgba(188, 171, 132, 1) 100%);
        border: none;
        color: #000;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 5px;
    }

    .hero-banner-logo {
        width: 100%;
        max-width: 35rem;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .header-title h1 span {
        font-size: 3.3rem;
        color: #FFF;
        text-transform: uppercase;
    }

    .header-text {
        background-color: #1349b0;
    }

    .landing-hero {
        min-height: 60vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 5rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        text-align: left;
    }

    .landing-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background-image: url('../images/header/hero-bg-image.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    .carousel-container {
        display: none !important;
    }

    .tab-container,
    .statistics-container,
    .illustrations-container {
        display: block !important;
    }

    .find-auto-recycler__container {
        padding: 5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
    }

    .find-auto-recycler__container .find-auto-recycler h3 {
        font-size: 2.5rem;
    }

    .find-auto-recycler__container .find-auto-recycler p {
        font-size: 1.5rem;
    }

    .find-auto-recycler__container .recycler-location-views {
        margin: auto 0;
        width: 50%;
    }

    .find-auto-button span {
        font-size: 1.5rem;
    }

    .find-auto-button a {
        font-size: 1.5rem;
    }

    .find-auto-recycler {
        flex-direction: column;
        align-items: center;
        /* width: 50%; */
    }

    .find-auto-recycler img {
        width: 100%;
        margin: 3rem 0;
    }

    .statistics-container {
        padding: 5rem 2rem;
        margin: 5rem;
    }

    .title-style h1 {
        text-align: center;
        text-transform: uppercase;
        padding-bottom: 20px;
        font-size: 2rem;
    }

    .title-style h1:after {
        width: 400px;
        height: 5px;
        display: block;
        content: "";
        position: relative;
        margin-top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #0053b4;
    }

    .statistics-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        gap: 2rem;
    }

    .statistics-item .icon-style {
        font-size: 1.5rem;
        color: #FFF;
        border: 1px solid #0053b4;
        background-color: #0053b4;
        border-radius: 100%;
        padding: 2rem;
    }

    .octagon-text p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .tri-image__container {
        flex-direction: row;
        margin: 0 0 5rem;
        gap: 5rem;
    }

    .tri-image__container img {
        width: 100%;
        max-width: 20rem;
    }



    .illustrations-container .illustration-text,
    #illustrationsIndicators .illustration-text {
        font-size: 2rem;
        text-transform: uppercase;
        color: #006AE6;
    }

    .illustrations-container .card {
        max-height: 330px;
        height: 100%;
        max-width: 470px;
        width: 100%;
        padding: 2rem;
        margin: 0 auto;
    }

    .illustrations-container .card:hover {
        background: linear-gradient(#2176E3, #0C3E7F);
        cursor: pointer;
        color: #70ADFA;
        box-shadow: 0 .5rem 1rem #000;
        transition: all .3s ease-in;
    }

    .illustrations-container .card:hover h1 {
        color: #FFF;
        transition: all .3s ease-in;
    }

    .illustration-details,
    #illustrationsIndicators .illustration-details {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .cta {
        height: 85vh;
    }

    .cta-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        background-image: url('../images/header/cta-bg.png');
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }


    .cta-header {
        font-size: 2rem;
    }

    .cta-subheader {
        font-size: 1.5rem;
        width: 70%;
    }


    .footer-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer-container .more-footer {
        text-align: left;
        width: 50%;
        justify-content: center;
    }

    .footer-container .more-footer h4 {
        font-size: 2rem;
    }

    .footer-container .more-footer .nav-link {
        font-size: 1.2rem;
        text-align: left;
        margin-left: 2rem;
    }

    .footer-container .logo-footer {
        width: 50%;
    }

    .footer-container .footer-brand-logo2 {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }

    .footer-container .logo-footer .icons-footer {
        display: flex;
        justify-content: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link img {
        height: 1.5rem;
        width: 100%;
    }

    .footer-container .logo-footer .footer-brand-logo {
        height: 10rem;
        width: 100%;
        max-width: 20rem;
    }

    .footer-container .logo-footer p {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer a {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer .icon p {
        font-size: 1.2rem;
    }

    .logo-footer {
        text-align: center;
        margin: 0;
    }
}

@media (min-width: 1493px) and (max-width: 1919px) {

    .font-header {
        font-size: calc(1.2em + 1vw);
    }

    .font-subheader {
        font-size: 22px;
    }

    .button-style {
        font-size: 17px;
    }

    .banner {
        width: 300px;
        margin: 0;
    }

    .nav-link {
        text-decoration: none;
        color: #000000;
        cursor: pointer;
        position: relative;
        border: none;
        background: none;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: color;
        text-align: center;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #fff;
    }

    .nav-link:focus:after,
    .nav-link:hover:after {
        width: 100%;
        left: 0%;
    }

    .nav-link:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 50%;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #fff;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: width, left;
    }


    .menu-item .menu-link {
        font-size: 17px;
        font-weight: 500;
    }

     .custom-btn {
        background: rgb(242, 242, 199);
        background: linear-gradient(324deg, rgba(242, 242, 199, 1) 38%, rgba(245, 223, 172, 1) 64%, rgba(188, 171, 132, 1) 100%);
        border: none;
        color: #000;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 5px;
    }

    .hero-banner-logo {
        width: 100%;
        max-width: 35rem;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .header-title h1 span {
        font-size: 3.3rem;
        color: #FFF;
        text-transform: uppercase;
    }

    .header-text {
        background-color: #1349b0;
    }

    .landing-hero {
        min-height: 60vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 5rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        text-align: left;
    }

    .landing-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background-image: url('../images/header/hero-bg-image.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        z-index: -1;
    }

    .carousel-container {
        display: none !important;
    }

    .tab-container,
    .statistics-container,
    .illustrations-container {
        display: block !important;
    }

    .find-auto-recycler__container {
        padding: 5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
    }

    .find-auto-recycler__container .find-auto-recycler h3 {
        font-size: 2.5rem;
    }

    .find-auto-recycler__container .find-auto-recycler p {
        font-size: 1.5rem;
    }

    .find-auto-recycler__container .recycler-location-views {
        margin: auto 0;
        width: 50%;
    }

    .find-auto-button span {
        font-size: 1.5rem;
    }

    .find-auto-button a {
        font-size: 1.5rem;
    }

    .find-auto-recycler {
        flex-direction: column;
        align-items: center;
        /* width: 50%; */
    }

    .find-auto-recycler img {
        width: 100%;
        margin: 3rem 0;
    }

    .statistics-container {
        padding: 5rem 2rem;
        margin: 5rem;
    }

    .title-style h1 {
        text-align: center;
        text-transform: uppercase;
        padding-bottom: 20px;
        font-size: 2.5rem;
    }

    .title-style h1:after {
        width: 400px;
        height: 5px;
        display: block;
        content: "";
        position: relative;
        margin-top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #0053b4;
    }

    .statistics-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        gap: 2rem;
    }

    .statistics-item .icon-style {
        font-size: 2rem;
        color: #FFF;
        border: 1px solid #0053b4;
        background-color: #0053b4;
        border-radius: 100%;
        padding: 2rem;
    }

    .octagon-text p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .tri-image__container {
        flex-direction: row;
        margin: 0 0 10rem;
        gap: 5rem;
    }

    .tri-image__container img {
        width: 100%;
        max-width: 30rem;
    }

    .illustrations-container .illustration-text,
    #illustrationsIndicators .illustration-text {
        font-size: 2rem;
        text-transform: uppercase;
        color: #006AE6;
    }

    .illustrations-container .card {
        height: 330px;
        width: 470px;
        padding: 4rem;
        margin: 0 auto;
    }

    .illustrations-container .card:hover {
        background: linear-gradient(#2176E3, #0C3E7F);
        cursor: pointer;
        color: #70ADFA;
        box-shadow: 0 .5rem 1rem #000;
        transition: all .3s ease-in;
    }

    .illustrations-container .card:hover h1 {
        color: #FFF;
        transition: all .3s ease-in;
    }


    .illustration-details,
    #illustrationsIndicators .illustration-details {
        font-size: 2rem;
        font-weight: 700;
    }

    .cta {
        height: 60vh;
    }

    .cta-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        background-image: url('../images/header/cta-bg.png');
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }


    .cta-header {
        font-size: 2.5rem;
    }

    .cta-subheader {
        font-size: 1.5rem;
        width: 70%;
    }


    .footer-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer-container .more-footer {
        text-align: left;
        width: 50%;
        justify-content: center;
    }

    .footer-container .more-footer h4 {
        font-size: 2rem;
    }

    .footer-container .more-footer .nav-link {
        font-size: 1.2rem;
        text-align: left;
        margin-left: 2rem;
    }

    .footer-container .logo-footer {
        width: 50%;
    }

    .footer-container .footer-brand-logo2 {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }

    .footer-container .logo-footer .icons-footer {
        display: flex;
        justify-content: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link img {
        height: 1.5rem;
        width: 100%;
    }

    .footer-container .logo-footer .footer-brand-logo {
        height: 10rem;
        width: 100%;
        max-width: 20rem;
    }

    .footer-container .logo-footer p {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer a {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer .icon p {
        font-size: 1.2rem;
    }

    .logo-footer {
        text-align: center;
        margin: 0;
    }
}

@media (min-width: 1920px) {

    .font-header {
        font-size: calc(2em + 1vw);
    }

    .font-subheader {
        font-size: 22px;
    }

    .button-style {
        font-size: 22px;
    }

    .banner {
        width: 400px;
        margin: 0;
    }

    .nav-link {
        text-decoration: none;
        color: #000000;
        cursor: pointer;
        position: relative;
        border: none;
        background: none;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: color;
        text-align: center;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #fff;
    }

    .nav-link:focus:after,
    .nav-link:hover:after {
        width: 100%;
        left: 0%;
    }

    .nav-link:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 50%;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #fff;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: width, left;
    }


    .menu-item .menu-link {
        font-size: 17px;
        font-weight: 500;
    }

     .custom-btn {
        background: rgb(242, 242, 199);
        background: linear-gradient(324deg, rgba(242, 242, 199, 1) 38%, rgba(245, 223, 172, 1) 64%, rgba(188, 171, 132, 1) 100%);
        border: none;
        color: #000;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 5px;
    }

    .hero-banner-logo {
        width: 100%;
        max-width: 35rem;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .header-title h1 span {
        font-size: 3.3rem;
        color: #FFF;
        text-transform: uppercase;
    }

    .header-text {
        background-color: #1349b0;
    }

    .landing-hero {
        min-height: 60vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 5rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        text-align: left;
    }

    .landing-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background-image: url('../images/header/hero-bg-image.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    .carousel-container {
        display: none !important;
    }

    .tab-container,
    .statistics-container,
    .illustrations-container {
        display: block !important;
    }

    .find-auto-recycler__container {
        padding: 5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
    }

    .find-auto-recycler__container .find-auto-recycler h3 {
        font-size: 3.5rem;
    }

    .find-auto-recycler__container .find-auto-recycler p {
        font-size: 1.5rem;
    }

    .find-auto-recycler__container .recycler-location-views {
        margin: auto 0;
        width: 50%;
    }

    .find-auto-button span {
        font-size: 1.5rem;
    }

    .find-auto-button a {
        font-size: 1.5rem;
    }

    .find-auto-recycler {
        flex-direction: column;
        align-items: center;
        /* width: 50%; */
    }

    .find-auto-recycler img {
        width: 100%;
        margin: 3rem 0;
    }

    .statistics-container {
        padding: 5rem 2rem;
        margin: 5rem;
    }

    .title-style h1 {
        text-align: center;
        text-transform: uppercase;
        padding-bottom: 20px;
        font-size: 2.5rem;
    }

    .title-style h1:after {
        width: 400px;
        height: 5px;
        display: block;
        content: "";
        position: relative;
        margin-top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #0053b4;
    }

    .statistics-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        gap: 2rem;
    }

    .statistics-item .icon-style {
        font-size: 2rem;
        color: #FFF;
        border: 1px solid #0053b4;
        background-color: #0053b4;
        border-radius: 100%;
        padding: 2rem;
    }

    .octagon-text p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .tri-image__container {
        flex-direction: row;
        margin: 0 0 5rem;
        gap: 5rem;
    }

    .tri-image__container img {
        width: 100%;
        max-width: 30rem;
    }

    .illustrations-container .illustration-text,
    #illustrationsIndicators .illustration-text {
        font-size: 2rem;
        text-transform: uppercase;
        color: #006AE6;
    }

    .illustrations-container .card {
        height: 330px;
        width: 470px;
        padding: 4rem;
        margin: 0 auto;
    }

    .illustrations-container .card:hover {
        background: linear-gradient(#2176E3, #0C3E7F);
        cursor: pointer;
        color: #70ADFA;
        box-shadow: 0 .5rem 1rem #000;
        transition: all .3s ease-in;
    }

    .illustrations-container .card:hover h1 {
        color: #FFF;
        transition: all .3s ease-in;
    }


    .illustration-details,
    #illustrationsIndicators .illustration-details {
        font-size: 2rem;
        font-weight: 700;
    }

    .cta {
        height: 60vh;
    }

    .cta-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        background-image: url('../images/header/cta-bg.png');
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }


    .cta-header {
        font-size: 3rem;
    }

    .cta-subheader {
        font-size: 2rem;
        width: 70%;
    }


    .footer-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer-container .more-footer {
        text-align: left;
        width: 50%;
        justify-content: center;
    }

    .footer-container .more-footer h4 {
        font-size: 2rem;
    }

    .footer-container .more-footer .nav-link {
        font-size: 1.2rem;
        text-align: left;
        margin-left: 2rem;
    }

    .footer-container .logo-footer {
        width: 50%;
    }

    .footer-container .footer-brand-logo2 {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }

    .footer-container .logo-footer .icons-footer {
        display: flex;
        justify-content: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-container .logo-footer .icons-footer .socmed-link img {
        height: 1.5rem;
        width: 100%;
    }

    .footer-container .logo-footer .footer-brand-logo {
        height: 10rem;
        width: 100%;
        max-width: 20rem;
    }

    .footer-container .logo-footer p {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer a {
        font-size: 1.5rem;
    }

    .footer-container .logo-footer .icon p {
        font-size: 1.2rem;
    }

    .logo-footer {
        text-align: center;
        margin: 0;
    }
}



/*****************AUTO PARTS SHOP******************/
#warranty-choices,
#parts-grading,
#shipping-policies,
#recycling-benefits,
#about-us,
#scrap,
#auto-parts,
#recyclers-matching,
#matching-vehicles,
#matching-partners {
    padding: 50px 0px 60px;
}

.form {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    width: 100%;
    max-width: 650px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.form .form-guide {
    margin: 0 auto .5rem;
}

.form .form-guide ol li {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0053b4;
    list-style-type: none;
    text-align: center;
}

.form .form-guide {
    color: #0053b4;
}

.form .form-guide ul li {
    color: #0053b4;
}

.form .form-guide ul li p {
    font-size: 1.2rem;
    font-weight: bold;
}

.form p.form-guide {
    font-size: 1.5rem;
    font-weight: 600;
}

.form .input-header {
    font-size: 1.5rem;
    font-weight: 600;
}

.form input {
    margin-bottom: 1rem;
}

.form .vehicle-buttons {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.form .vehicle-buttons a {
    width: 100%;
    background-image: linear-gradient(#2176E3, #0C3E7F);
}

.back-btn {
    margin-left: 2rem;
}

.vehicle-modal {
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
}

.vehicle-modal .modal-body .input-field {
    border: 1px solid #e0e0e0;
    width: 74%;
    outline: none;
    box-shadow: 0px 0px;
    font-size: 16px;
    padding: 11px 21px;
}

.vehicle-modal .modal-body table.table tr td:nth-child(odd) {
    text-align: left;
}

.vehicle-modal .modal-body table.table tr td:nth-child(even) {
    text-align: right;
    text-transform: uppercase;
}

.vehicle-modal .modal-body table.table tr td {
    font-size: 16px;
    border: 0px;
    padding: 4px;
}

.vehicle-modal .modal-body .form-field-txt {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    font-size: 17px;
    text-transform: uppercase;
    color: #000;
    padding: 6px 17px;
    width: 40%;
    margin-left: auto;
}

.filter-container .vehicle-not-found {
    font-size: 2.5rem;
    text-align: center;
}

.filter-container .expand-title {
    font-size: 2rem;
}

.filter-container p {
    font-size: 1.5rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
    margin: 1.5rem 0;
}

.modal-title {
    margin: 1rem 0;
}

.no-vehicle {
    max-width: 600px;
}

.general-partners-form,
.specified-partner-forms {
    width: 100%;
    max-width: 1200px;
}

#recyclers-vehicle {
    width: 90vw;
}

.main-form {
    flex-direction: column;
}

.flex-gap {
    display: flex;
    gap: 2rem;
}

.single-vehicle {
    overflow-x: hidden;
}

.table-container {
    max-width: 70rem;
    width: 100%;
}

.table-button {
    display: flex;
    justify-content: center;
}

@media (min-width: 426px) {
    #recyclers-vehicle {
        width: 50vw;
    }
}

@media (min-width: 769px) {
    .main-form {
        flex-direction: row;
    }

    .parts-form {
        padding: 0 10rem;
    }

    .upper-form {
        margin-bottom: 2.5rem;
    }

    #postCode::placeholder {
        font-size: 1rem;
    }

    .flex-gap {
        display: flex;
        gap: 5rem;
    }

    #auto-parts,
    #recyclers-matching,
    #matching-vehicles,
    #matching-partners {
        padding: 50px 0px 60px;
    }

    .single-vehicle {
        overflow-x: hidden;
    }
}


.partners-container {
    display: flex;
    justify-content: space-between;
    padding: 14px 30px;
    border: 2px solid #E1E3EA;
    border-radius: 5px;
}

.partner-details {
    max-width: 1200px;
    width: 100%;
    margin: 45px auto 0px;
}

#recyclers-matching .partner-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#recyclers-matching .partner-heading-details p {
    font-size: 1.5rem;
    line-height: 1.1;
}

#recyclers-matching .partner-details ul {
    padding: 0px !important;
}

#recyclers-matching .partner-details ul li {
    list-style-type: none;
    align-items: center;
    display: flex;
    justify-content: space-between;
    color: #000;
}

#recyclers-matching .partner-details ul li p {
    font-size: 20px;
    margin: 0px;
}

#recyclers-matching .partner-details ul h4 {
    text-align: left;
    line-height: 1;
    font-weight: bold;
    font-size: 2rem;
    margin: 3rem 0;
}

#recyclers-matching .vehicle-parts p {
    font-size: 18px;
    font-weight: 500;
}


#captchaBackground {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 0 0;
    border-radius: 15px;
    margin: 1rem 0;
    width: 100%;
    max-width: 40rem;
}

#captchaHeading {
    color: white;
}

#captcha {
    height: 70%;
    width: 70%;
    font-size: 30px;
    letter-spacing: 3px;
    margin: auto;
    display: block;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#submitButton {
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
    margin-top: 1rem;
}

#refreshButton {
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
    margin-top: 1rem;
}

#textBox {
    margin: 0 2rem;
}

.incorrectCaptcha {
    color: #FF0000;
}

.correctCaptcha {
    color: #7FFF00;
}


/** INFORMATION PAGES  */

.header h4 {
    font-size: 2.5rem;
    text-align: center;
}

.header h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.header p {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.header ol {
    font-size: 1.2rem;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-title h2 {
    font-size: 1.5rem;
}

.card-body ul li {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.card-body p {
    font-size: 1.2rem;
}

.alert h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.alert ul li {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.alert p {
    font-size: 1.2rem;
}

.accordion h4 {
    font-size: 2rem;
}

.accordion-header h3 {
    font-size: 1.5rem;
}

.accordion-text {
    font-size: 1.2rem;
}

.list h3 {
    font-size: 1.5rem;
}

.list p {
    font-size: 1.2rem;
}


.customer h4 {
    font-size: 1.5rem;
}

.customer p {
    font-size: 1.2rem;
}

.about-header h4,
.about-who h3 {
    font-size: 2.5rem;
    /* color: #FFF; */
}

.about-header p,
.about-who p {
    font-size: 1.2rem;
    line-height: 2.2rem;
    /* color: #FFF; */
}

.about-mission h3,
.about-offer h3 {
    font-size: 1.5rem;
}

.about-mission p,
.about-offer ul li {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

@media (min-width: 769px) and (min-width: 1024px) {
    .header h4 {
        font-size: 2.5rem;
        text-align: center;
    }

    .header h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .header p {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .header ol {
        font-size: 1.2rem;
    }

    .cards-container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .cards-container-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr .5fr;
        gap: 2rem 2rem;
        grid-template-areas:
            "card-1 card-2 card-3"
            "card-4 card-4 card-4";
    }

    .card-1 {
        grid-area: card-1;
    }

    .card-2 {
        grid-area: card-2;
    }

    .card-3 {
        grid-area: card-3;
    }

    .card-4 {
        grid-area: card-4;
    }

    .card-title h2 {
        font-size: 1.3rem;
    }

    .card-body ul li {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .card-body p {
        font-size: 1.2rem;
    }

    .alert h4 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .alert ul li {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .alert p {
        font-size: 1.2rem;
    }

    .accordion h4 {
        font-size: 2rem;
    }

    .accordion-header h3 {
        font-size: 1.5rem;
    }

    .accordion-text {
        font-size: 1.2rem;
    }

    .list h3 {
        font-size: 1.5rem;
    }

    .list p {
        font-size: 1.2rem;
    }


    .customer h4 {
        font-size: 1.5rem;
    }

    .customer p {
        font-size: 1.2rem;
    }

    .about-header h4,
    .about-who h3 {
        font-size: 2.5rem;
    }

    .about-header p,
    .about-who p {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .about-mission h3,
    .about-offer h3 {
        font-size: 1.5rem;
    }

    .about-mission p,
    .about-offer ul li {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .about-img {
        margin: 5rem auto;
    }


}

@media (min-width: 1025px) {

    .warranty-choices,
    .parts-grading,
    .recycling-benefits,
    .shipping-policies,
    .about-us,
    .scrap {
        margin-top: 7rem;
    }
}


/* PARTNERS LANDING PAGE */


.partner-parts {
    background-color: #be1d2c;
}

section .partner-parts-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    gap: 2rem;
    background-position: center;
    background-blend-mode: color-burn;
}

@media (max-width: 1024px) {
    .partner-landing-page .landing-header {
        height: 150px;
    }

    .nav-container {
        flex-direction: column;
    }

    [data-kt-sticky-landing-header=on] .partner-landing-page .landing-header {
        height: 70px;
    }

    [data-kt-sticky-landing-header=on] .nav-container {
        display: flex;
        flex-direction: row !important;
    }

    section .partner-parts-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        color: #FFF;
        gap: 2rem;
    }

    .partners-header {
        font-size: calc(.7em + 1vw) !important;
    }

    .partner-parts .online-parts {
        flex-direction: column;
    }

    .partner-parts .online-parts h1 {
        font-size: calc(2em + 1vw);
        color: #FFF;
        margin-top: 2rem;
    }

    section .partner-parts-container h1 {
        font-size: calc(3em + 1vw);
        color: #FFF;
    }

    section .partner-parts-container p {
        font-size: calc(1em + 1vw);
    }

    .identify-vehicle h1 {
        font-size: calc(1.5em + 1vw);
        margin-bottom: 3rem;
    }

    .identify-container {
        flex-direction: column;
    }

}

@media (min-width: 1025px) {
    .partner-landing-page .landing-header {
        height: 100px;
    }

    [data-kt-sticky-landing-header=on] .partner-landing-page .landing-header {
        height: 70px;
    }

    [data-kt-sticky-landing-header=on] .nav-container {
        flex-direction: row !important;
    }

    .landing-header .nav-container {
        position: relative;
    }

    .landing-header .nav-container a {
        position: absolute;
        left: 50px
    }

    .partners-header {
        font-size: calc(.5em + 1vw) !important;
    }

    .partner-parts .online-parts {
        position: relative;
    }

    .partner-parts .online-parts img {
        position: absolute;
        left: 150px;
    }

    .partner-parts .online-parts h1 {
        font-size: calc(2.5em + 1vw);
        color: #FFF;
        margin: 0 auto;
    }

    section .partner-parts-container h1 {
        font-size: calc(3em + 1vw);
        font-weight: bold;
        color: #FFF;
    }

    section .partner-parts-container p {
        font-size: calc(.7em + 1vw);
    }

}

/* For smaller screens (e.g., mobile) */
@media (max-width: 768px) {
    .dropdown-menu.show {
        min-width: 255px !important;  /* Set the min-width to 100% on mobile */
    }
}