@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", sans-serif;
}


a {
    text-decoration: none !important;
}





.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}



img.header-logo {
    width: 140px;
}

ul.navbar-nav {
    gap: 30px;
}


.navbar-brand {
    font-weight: bold;
    color: #fff;
    font-size: 1.6rem;
}

.navbar-nav .nav-link {
    color: #555555;
    transition: all 0.3s ease;
    font-size: 18px;
}

.navbar-nav .nav-link:hover {
    background-color: rgb(0 54 92 / 84%);
    color: #f67823;
    border-radius: 5px;
}

.dropdown-menu {
    background-color: rgb(0 54 92 / 84%);
    border: none;
    border-radius: 0px !important;
}

.dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f67823;
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 600px;
    width: 100%;
    background-color: rgb(0 54 92 / 97%);
    display: none;
    flex-direction: column;
    z-index: 1050;
    padding-top: 60px;
    overflow-y: auto;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu .nav-link,
.mobile-menu .dropdown-btn,
.mobile-menu .dropdown-item {
    padding: 7px 20px;
    color: #fff;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    width: 100%;
}

.mobile-menu .dropdown-btn:after {
    content: "▼";
    float: none;
    font-size: 13px;
    margin-left: 4px;
}

.mobile-menu .dropdown-btn.open:after {
    content: "▲";
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column;
    padding-left: 1.5rem;
}

.mobile-submenu.show {
    max-height: 500px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.mobile-toggle {
    background: none;
    border: none;
}

@media (min-width: 992px) {

    .mobile-toggle,
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
}

.sticky-top {
    z-index: 1020;
}


.dropdown-divider {
    border-top: 1px solid rgb(246 120 35) !important;
}







.hero-section {
    position: relative;
    height: 750px;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.customer-care {
    color: #f67823;
    font-weight: bold;
    font-size: 26px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: rgb(0 54 92 / 68%);
    border-radius: 4px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-content .btn {
    background-color: #f67823 !important;
    border: none;
    padding: 0.75rem 1.5rem;
    color: #fff;
}


.form-box {
    position: relative;
    z-index: 2;
    background-color: rgb(0 54 92 / 77%);
    padding: 30px 30px;
    border-radius: 4px;
    max-width: 400px;
    margin: auto;
    color: #fff;
}

.form-box input,
.form-box button {
    margin-bottom: 1rem;
    border-radius: 3px;
}

.form-box button {
    background-color: #f67823 !important;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {

    .hero-content,
    .form-box {
        margin: 2rem auto;
        text-align: center;
    }

    .hero-content {
        margin-left: auto;
        margin-top: 5rem;
    }
}



.hero-section p.small {
    font-size: 13px;
}


.hero-section .badge.bg-light.text-dark.mb-3 {
    padding: 8px !important;
    font-size: 18px;
    color: #555555 !important;
    background: #fff !important;
}








.about-section {
    padding: 60px 20px;
}

.about-section .about-title {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
    color: #555555;
}

.about-section .about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}


.about-section .feature-card p {
    font-size: 15px;
}

.about-section .feature-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 4px;
    transition: 0.3s;
    box-shadow: 0px 4px 8px #00000054;
}

.about-section .feature-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.about-section .feature-icon {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.about-section .cta-btn {
    background-color: #f67823 !important;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.3s;
}


.about-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 50% 93%;
}



.about-section .feature-card h6 {
    font-size: 20px;
    font-weight: bold;
}






@media (max-width: 1024px) {

    .hero-content {
        padding: 30px;
    }


    .hero-section {
        height: 600px;
    }


    .form-box {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }


    .about-section .about-title {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .about-section .about-text {
        font-size: 15px;
        margin-bottom: 18px;
    }


    .about-section .col-md-6.col-lg-3 {
        padding: 5px;
    }


    .about-section .feature-card {
        padding: 15px;
    }


    .about-section .feature-icon {
        font-size: 35px;
        margin-bottom: 0px;
    }


    .about-section .feature-card h6 {
        font-size: 17px;
    }


    .about-section .feature-card p {
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

}



@media (max-width: 430px) {


    .hero-section {
        height: 100%;
    }


    .form-box {
        margin: 0 0 30px 0;
    }


    .hero-content {
        padding: 20px;
        margin: 30px 0px 0px 0px;
    }


    .about-section img {
        height: 100%;
    }


    .about-section {
        padding: 50px 10px;
    }


    .about-section .about-title {
        font-size: 22px;
    }

    .col-now-footer {
        background: #d40f1f;
        color: #fff;
        float: left;
        width: 50%;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        padding: 11px 0px;
    }

    .footer-oll-now {
        display: block !important;
        bottom: 0px;
        float: left;
        width: 100%;
        position: fixed;
        z-index: 999999999;
    }

    .col-now-whats {
        background: #2db841;
        color: #fff;
        float: left;
        width: 50%;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        padding: 11px 0px;
    }

    a.h4.mx-4.mb-0.text-dark {
        padding-top: 10px;
        padding-bottom: 0px;
        font-size: 17px;
    }

    ._orientationRight_d422.wrap_e104 {
        right: -2px !important;
        bottom: 10px;
    }

    .float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 105px;
        right: 10px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: none !important;
    }

    .call-buton .cc-calto-action-ripple {
        z-index: 99999;
        position: fixed;
        right: 10px;
        bottom: 175px;
        background: red;
        width: 60px;
        height: 60px;
        padding: 1rem;
        border-radius: 100%;
        box-sizing: border-box;
        color: #ffffff;
        display: none !important;
        justify-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
    }


    .footer .copyright {
        padding-bottom: 40px;
    }

}



@media (max-width: 412px) {

    .hero-content {
        padding: 10px 0;
    }

    .hero-section .badge.bg-light.text-dark.mb-3 {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 24px;
    }


    .hero-content .btn {
        padding: 8px 24px;
    }


    .form-box {
        padding: 30px 15px;
    }

    .d-flex.gap-2 {
        flex-direction: column;
    }


    .about-section .about-title {
        font-size: 24px;
    }

    .about-section .about-text {
        font-size: 14px;
    }


    .about-section .col-lg-6.mb-4.mb-lg-0 {
        padding: 0;
    }

    .about-section .col-lg-6 {
        padding: 0;
    }

    .about-section {
        padding: 40px 10px;
    }


}



.footer-oll-now {
    display: none;
}

.services-section .service-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px !important;
    border-radius: 4px !important;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.services-section .service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.badge {
    padding: 7px 30px;
    font-size: 18px;
    color: #fff !important;
    background: #00365c !important;
}


.services-section h2 {
    color: #555555;
    font-size: 35px;
}


.services-section a {
    color: #f67823 !important;
}


.services-section h5 {
    color: #555555 !important;
}











.why-choose-section h2 {
    font-size: 1.8rem;
    color: #555555;
}

.why-choose-section p {
    font-size: 1rem;
    color: #555;
}

.why-choose-section .row .col-md-6 h6 {
    font-size: 16px;
    margin-bottom: 0.3rem;
    color: #555555;
}

.why-choose-section .row .col-md-6 p {
    font-size: 14px;
    color: #666;
}

.why-choose-section .img-fluid {
    max-width: 100%;
    height: 510px;
    border-radius: 4px !important;
    object-fit: cover;
}


.why-choose-section i {
    color: #f67823;
}

@media (max-width: 767px) {
    .why-choose-section h2 {
        font-size: 1.4rem;
    }

    .why-choose-section p {
        font-size: 0.95rem;
    }

    .why-choose-section .row .col-md-6 h6 {
        font-size: 1rem;
    }

    .why-choose-section .row .col-md-6 p {
        font-size: 0.88rem;
    }
}







.testimonials-section .card {
    border-radius: 8px;
    overflow: hidden;
}

.testimonials-section .card-header {
    font-size: 0.95rem;
    background: #f67823 !important;
}

.testimonials-section .card-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: auto;
    top: auto;
    bottom: 0;
    transform: none;
}

@media (max-width: 767px) {
    .testimonials-section h3 {
        font-size: 1.3rem;
    }

    .testimonials-section .card-body p {
        font-size: 0.9rem;
    }
}








.amc-section h2 {
    font-size: 1.8rem;
    color: #555555;
}

.amc-section .card h5 {
    font-size: 1.1rem;
    font-weight: bold;
}

.amc-section .card p {
    font-size: 0.95rem;
    color: #444;
}

.amc-section .card ul {
    padding-left: 1rem;
}

@media (max-width: 767px) {
    .amc-section h2 {
        font-size: 1.5rem;
    }
}


.amc-section i {
    color: #f67823 !important;
}


.amc-section h6 {
    color: #00365c !important;
}


.amc-section .card {
    border: 1px solid #00365c !important;
}


.testimonials-section h3 {
    color: #555555;
}






.contact-section {
    padding: 40px 0;
}

.contact-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.2rem;
    color: #007bff;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
    color: #1a1a1a;
}

.contact-text {
    color: #555;
}



.contact-section h2 {
    color: #555555;
}


.contact-icon {
    font-size: 2.2rem;
    color: #f67823;
}





.footer {
    background-color: #0a0b1a;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer .footer-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #f67823;
    width: fit-content;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ff6a00;
}

.footer .description {
    max-width: 300px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #ccc;
}

.footer .social-icons a {
    margin: 0 8px;
    font-size: 1.2rem;
    color: #ccc;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #ff6a00;
}

.footer .copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
    margin-top: 40px;
}



img.footer-icon {
    width: 38px;
    padding: 10px;
    background: #e3e3e3;
    border-radius: 4px;
}






@media (max-width: 1024px) {


    section#services {
        padding: 30px 10px !important;
    }


    .about-section {
        padding: 60px 20px 40px 20px;
    }


    .services-section h5 {
        font-size: 18px;
    }

    .services-section .service-card p {
        font-size: 14px;
    }


    .why-choose-section h2 {
        font-size: 20px;
        margin-bottom: 10px !important;
    }


    .why-choose-section .col-lg-6 {
        padding: 15px;
    }


    .why-choose-section .row .col-md-6 p {
        font-size: 14px;
        margin-bottom: 0px !important;
    }


    .why-choose-section p {
        margin-bottom: 0px !important;
    }



    section.py-5.amc-section {
        padding: 30px 0px !important;
    }


    .testimonials-section h3 {
        font-size: 25px;
        margin-bottom: 5px !important;
    }


    .testimonials-section .card-body {
        padding: 10px 10px !important;
    }


    .contact-text {
        font-size: 15px;
    }


    .footer .social-icons a {
        margin: 0 3px;
    }


    .footer {
        padding: 30px 0 20px;
    }

}





@media (max-width: 430px) {

    .about-section {
        padding: 50px 0px 40px 0px;
    }


    section#services {
        padding: 20px 10px !important;
    }


    .services-section h2 {
        font-size: 25px;
    }


    section#services {
        padding: 20px 0px !important;
    }


    .services-section .service-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .why-choose-section .img-fluid {
        height: 100%;
    }


    .why-choose-section .row {
        flex-direction: column-reverse;
    }


    section.why-choose-section.py-5 {
        padding: 28px 0px !important;
    }

    .why-choose-section h2 {
        font-size: 25px;
        margin-bottom: 10px !important;
    }


    .why-choose-section .col-lg-6 {
        margin-top: 0px !important;
    }


    section.py-5.amc-section {
        padding: 20px 0px !important;
    }


    .testimonials-section h3 {
        font-size: 23px;
        margin-bottom: 8px !important;
    }


    .testimonials-section .row {
        flex-direction: column-reverse;
    }


    section.py-5.testimonials-section {
        padding: 30px 0px !important;
    }


    .contact-section {
        padding: 30px 0 40px 0px;
    }


    .contact-section p.mb-5.text-muted {
        margin-bottom: 20px !important;
    }


    img.header-logo {
        width: 120px;
    }
}



@media (max-width: 412px) {


    .about-section {
        padding: 40px 10px 30px 10px;
    }

    .about-section .about-title {
        font-size: 23px;
    }

    .services-section p.text-muted {
        font-size: 15px;
        margin-bottom: 0px !important;
    }


    .services-section .service-card {
        padding: 15px !important;
    }


    .why-choose-section h2 {
        font-size: 23px;
    }


    section.py-5.amc-section {
        padding: 20px 0px !important;
    }

    .amc-section h2 {
        font-size: 20px;
    }

}




.hero-ac {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/slider-1.jpg);
    color: #fff;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-ac h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-ac p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.hero-ac .hero-btn {
    background-color: #f67823;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-ac .hero-btn:hover {
    background-color: #f67823;
}


.hero-ac p.small {
    font-size: 13px;
}





.about-ac h2 {
    font-weight: 700;
    color: #f67823;
    font-size: 40px;
}

.about-ac p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.about-ac .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.about-ac .btn-primary:hover {
    background-color: #0056b3;
}


.about-ac img {
    height: 400px;
    object-fit: cover;
}








.ac-service-offers {
    padding: 50px 20px;
}

.ac-service-offers h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f67823;
    font-size: 40px;
}

.ac-service-offers .service-box {
    background-color: #fff;
    border-radius: 4px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.ac-service-offers .service-box:hover {
    transform: translateY(-5px);
}

.ac-service-offers .service-box img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.ac-service-offers .service-box h5 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #00365c;
}

.ac-service-offers .service-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0px !important;
}


.service-card p {
    color: #555555 !important;
}

@media (max-width: 767px) {
    .ac-service-offers .service-box {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {

    .hero-ac h1 {
        font-size: 38px;
    }


    .hero-ac {
        height: 600px;
    }

    .about-ac h2 {
        font-size: 30px;
    }

    .about-ac img {
        height: 340px;
    }

    .ac-service-offers {
        padding: 35px 20px;
    }



}




@media (max-width: 430px) {

    .hero-ac {
        height: 100%;
        padding: 40px 0 10px 0;
    }


    .hero-ac h1 {
        font-size: 30px;
    }


    .about-ac h2 {
        font-size: 28px;
    }

    .about-ac img {
        height: 100%;
    }

    .about-ac p {
        font-size: 15px;
        line-height: 1.6;
    }


    section.about-ac.py-5 {
        padding: 40px 0 20px !important;
    }


    .ac-service-offers h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .ac-service-offers {
        padding: 35px 0px;
    }


    .ac-service-offers p.text-center.mb-5 {
        font-size: 15px;
        margin-bottom: 20px !important;
    }


    .ac-service-offers .service-box {
        padding: 20px 15px 0;
    }


}

@media (max-width: 412px) {

    .ac-service-offers .service-box p {
        font-size: 14px;
    }


    .hero-ac p {
        font-size: 15px;
    }


}









.hero-fridge {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/fridge/hero-fridge.jpg);
    color: #fff;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.hero-fridge h1 {
    font-size: 2.5rem;
    color: #fff !important;
}


.hero-fridge p.text-muted {
    color: #fff !important;
}


.hero-fridge .card {
    border-radius: 4px;
}

.hero-fridge .btn {
    min-width: 140px;
    background: #f67823;
    border: 1px solid #f67823;
}

@media (max-width: 576px) {
    .hero-fridge h1 {
        font-size: 1.8rem;
    }
}


.hero-fridge p.small {
    font-size: 13px;
}






.about-fridge h2 {
    font-size: 38px;
    color: #f67823;
}

.about-fridge ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.about-fridge img {
    max-height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-fridge h2 {
        font-size: 1.5rem;
    }
}


i.fas.fa-check-circle.text-success.me-2 {
    color: #00365c !important;
}





.fridge-service-offers {
    padding: 30px 0px;
}

.fridge-service-offers h2 {
    text-align: center;
    font-weight: 700;
    color: #f67823;
    margin-bottom: 20px;
    font-size: 40px;
}

.fridge-service-offers .service-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 20px 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.fridge-service-offers .service-card:hover {
    transform: translateY(-5px);
}

.fridge-service-offers .service-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.fridge-service-offers .service-card h5 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #00365c;
}

.fridge-service-offers .service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0px !important;
}

@media (max-width: 767px) {
    .fridge-service-offers .service-card {
        margin-bottom: 20px;
    }
}


@media (max-width: 1024px) {

    .hero-fridge {
        height: 600px;
    }


    .about-fridge h2 {
        font-size: 28px;
    }


    .about-fridge p.text-muted {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .fridge-service-offers {
        padding: 8px 0px 35px;
    }



}


@media (max-width: 430px) {


    .hero-fridge {
        height: 100%;
        padding: 46px 0 10px 0 !important;
    }


    .about-fridge h2 {
        font-size: 25px;
    }


    .fridge-service-offers h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }


    .fridge-service-offers p.text-center.mb-5 {
        margin-bottom: 20px !important;
    }


    .fridge-service-offers .service-card {
        padding: 20px 20px 0;
    }


}


@media (max-width: 412px) {

    .hero-fridge h1 {
        font-size: 23px;
    }


    .fridge-service-offers p.text-center.mb-5 {
        margin-bottom: 20px !important;
        font-size: 15px;
    }

    .fridge-service-offers .service-card p {
        font-size: 14px;
        margin-bottom: 0px !important;
    }


    .fridge-service-offers .service-card {
        padding: 15px 15px 0;
    }


}







.hero-geyser h1 {
    font-size: 2rem;
}

.hero-geyser .card {
    border-radius: 4px;
}


.hero-geyser p.text-muted {
    color: #fff !important;
}


@media (max-width: 768px) {
    .hero-geyser h1 {
        font-size: 1.5rem;
    }
}


.hero-geyser a.btn.btn-primary.me-2 {
    background: #f67823;
    border: 1px solid #f67823;
}




.hero-geyser {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/geyser/hero-geyser.jpg);
    color: #fff;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.form-box p.small {
    font-size: 13px;
}






.about-geyser h2 {
    font-size: 37px;
    color: #f67823;
}

.about-geyser img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-geyser h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-geyser p {
        text-align: center;
    }
}


.about-geyser ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}



.geyser-service-offers {
    padding: 20px 15px;
}

.geyser-service-offers h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f67823;
    font-size: 40px;
}

.geyser-service-offers p.section-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #444;
}

.geyser-service-offers .geyser-card {
    background: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 20px 20px 0;
    transition: 0.3s;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.geyser-service-offers .geyser-card:hover {
    transform: translateY(-5px);
}

.geyser-service-offers .geyser-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
}

.geyser-service-offers .geyser-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00365c;
}

.geyser-service-offers .geyser-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .geyser-service-offers .geyser-card {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {

    .hero-geyser {
        height: 600px;
    }


    .hero-geyser h1 {
        font-size: 35px;
    }


    .about-geyser h2 {
        font-size: 27px;
    }


    .about-geyser ul.list-unstyled.mt-3 {
        margin-top: 0px !important;
    }


    .about-geyser p.text-muted {
        font-size: 14px;
        margin-bottom: 5px !important;
    }



}



@media (max-width: 430px) {


    .hero-geyser h1 {
        font-size: 28px;
    }

    .hero-geyser {
        height: 100%;
        padding: 40px 0px 10px !important;
    }


    .about-geyser h2 {
        font-size: 25px;
        text-align: left;
    }


    .about-geyser p.text-muted {
        text-align: left;
    }


    .geyser-service-offers h2 {
        font-size: 35px;
    }


    .geyser-service-offers {
        padding: 5px 0px 25px;
    }


    .geyser-service-offers p.section-intro {
        margin-bottom: 20px;
        font-size: 15px;
    }

}



@media (max-width: 412px) {


    .hero-geyser h1 {
        font-size: 25px;
    }

    .about-geyser h2 {
        font-size: 24px;
        text-align: left;
    }


    .geyser-service-offers h2 {
        font-size: 30px;
    }


    .geyser-service-offers .geyser-card p {
        font-size: 14px;
    }


    .geyser-service-offers .geyser-card {
        padding: 15px 15px 0;
    }

}







.hero-washing-machine h1 {
    font-size: 2rem;
}

.hero-washing-machine p {
    font-size: 1rem;
    color: #fff !important;
}

.hero-washing-machine .card {
    border-radius: 10px;
}

.hero-washing-machine a.btn.btn-primary.me-2 {
    background: #f67823 !important;
    border: 1px solid #f67823;
}


.hero-washing-machine {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/washing-machine/hero-wash.jpeg);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}






.about-washing-machine h2 {
    font-size: 29px;
    color: #f67823;
}


.about-washing-machine p {
    font-size: 1rem;
}

.about-washing-machine ul {
    padding-left: 1rem;
}

.about-washing-machine ul li {
    margin-bottom: 8px;
}



.about-washing-machine img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}




.washing-machine-service-offers {
    padding: 20px 0px;
}


.washing-machine-service-offers h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f67823;
    font-size: 40px;
}

.washing-machine-service-offers p.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.washing-machine-service-offers .wm-card {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.washing-machine-service-offers .wm-card:hover {
    transform: translateY(-5px);
}

.washing-machine-service-offers .wm-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.washing-machine-service-offers .wm-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00365c;
}

.washing-machine-service-offers .wm-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .washing-machine-service-offers .wm-card {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {


    .hero-washing-machine {
        height: 600px;
    }


    .washing-machine-service-offers .wm-card {
        padding: 10px 10px 0;
    }


    .washing-machine-service-offers {
        padding: 20px 0px 30px;
    }




}



@media (max-width: 430px) {

    .hero-washing-machine {
        height: 100%;
        padding: 40px 0px 20px !important;
    }


    .about-washing-machine h2 {
        font-size: 26px;
    }

    .washing-machine-service-offers h2 {
        font-size: 35px;
    }


    .washing-machine-service-offers {
        padding: 0px 0px 30px;
    }


}



@media (max-width: 412px) {

    .hero-washing-machine h1 {
        font-size: 25px;
    }


    .hero-washing-machine {
        height: 100%;
        padding: 40px 0px 10px !important;
    }

    .about-washing-machine h2 {
        font-size: 25px;
    }

    .about-washing-machine p {
        font-size: 15px;
    }

    .about-washing-machine ul {
        padding-left: 0;
    }


    .about-washing-machine img {
        height: 300px;
    }


    .washing-machine-service-offers h2 {
        font-size: 30px;
    }


    .washing-machine-service-offers p.section-intro {
        margin-bottom: 20px;
        font-size: 15px;
    }


    .washing-machine-service-offers .wm-card p {
        font-size: 14px;
        color: #666;
    }

}




.hero-RO h1 {
    font-size: 2.2rem;
    color: #fff !important;
}

.hero-RO p {
    font-size: 1rem;
    color: #fff !important;
}

.hero-RO .card {
    border-radius: 10px;
}


.hero-RO a.btn {
    background: #f67823;
    border: 1px solid #f67823;
    margin-top: 0px !important;
}


.hero-RO {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/ro/hero-ro.jpeg);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}





.about-RO h2 {
    font-size: 40px;
    color: #f67823;
    margin-bottom: 0px !important;
}

.about-RO p {
    font-size: 1rem;
    line-height: 1.7;
}

.about-RO img {
    max-width: 100%;
    border-radius: 10px;
}





.ro-service-offers {
    padding: 30px 0px;
}

.ro-service-offers h2 {
    text-align: center;
    font-weight: bold;
    color: #f67823;
    margin-bottom: 15px;
    font-size: 40px;
}

.ro-service-offers p.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.ro-service-offers .ro-card {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.ro-service-offers .ro-card:hover {
    transform: translateY(-5px);
}

.ro-service-offers .ro-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.ro-service-offers .ro-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00365c;
}

.ro-service-offers .ro-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .ro-service-offers .ro-card {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {

    .hero-RO {
        height: 600px;
    }


    .hero-RO h1 {
        font-size: 34px;
    }


    .about-RO h2 {
        font-size: 32px;
    }


    .about-RO p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 0px;
    }


    .about-RO ul.list-unstyled.mt-3 {
        margin-top: 10px !important;
    }

    .ro-service-offers {
        padding: 10px 0px 40px;
    }

}


@media (max-width: 430px) {


    .hero-RO {
        height: 100%;
        padding: 40px 0px 10px !important;
    }


    .hero-RO h1 {
        font-size: 30px;
    }


    .about-RO h2 {
        font-size: 29px;
    }


    .about-RO .col-lg-6.mb-4.mb-lg-0 {
        margin-bottom: 10px !important;
    }


    .ro-service-offers {
        padding: 0px 0px 40px;
    }


    .ro-service-offers h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }



}


@media (max-width: 412px) {

    .hero-RO h1 {
        font-size: 21px;
    }


    .about-RO h2 {
        font-size: 21px;
        margin-bottom: 10px !important;
    }



    .ro-service-offers p.section-intro {
        margin-bottom: 20px;
        font-size: 15px;
    }


    .ro-service-offers .ro-card img {
        height: 150px;
    }


    .ro-service-offers .ro-card {
        padding: 10px 10px 0;
    }

    .ro-service-offers .ro-card p {
        font-size: 14px;
    }

}






.hero-microwave {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/microwave/hero-section.jpg);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.hero-microwave h1 {
    color: #ffffff;
    font-size: 36px;
}


.hero-microwave p.text-muted {
    color: #fff !important;
}



.hero-microwave a.btn {
    background: #f67823;
    border: 1px solid #f67823;
    margin-top: 0px !important;
    border-radius: 4px !important;
}


.hero-microwave .card {
    border-radius: 12px;
}

.hero-microwave .form-control {
    border-radius: 6px;
}






.about-microwave h2 {
    color: #f67823;
    font-size: 35px;
}

.about-microwave p {
    font-size: 1rem;
    line-height: 1.7;
}

.about-microwave img {
    max-width: 100%;
    border-radius: 12px;
    height: 360px;
    object-fit: cover;
}







.microwave-service-offers {
    padding: 30px 0px;
}

.microwave-service-offers h2 {
    text-align: center;
    font-weight: bold;
    color: #f67823;
    margin-bottom: 25px;
    font-size: 40px;
}

.microwave-service-offers p.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.microwave-service-offers .microwave-card {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.microwave-service-offers .microwave-card:hover {
    transform: translateY(-5px);
}

.microwave-service-offers .microwave-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.microwave-service-offers .microwave-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00365c;
}

.microwave-service-offers .microwave-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .microwave-service-offers .microwave-card {
        margin-bottom: 20px;
    }
}







@media (max-width: 1024px) {


    .hero-microwave {
        height: 580px;
    }

    .hero-microwave h1 {
        font-size: 33px;
    }

    .about-microwave p {
        line-height: 1.55;
        margin-bottom: 5px !important;
    }

    .about-microwave h2 {
        font-size: 31px;
    }







}


@media (max-width: 430px) {


    .hero-microwave {
        height: 100%;
        padding: 40px 0px 10px !important;
    }

    .hero-microwave h1 {
        font-size: 32px;
    }

    .about-microwave img {
        height: 100%;
    }


    .microwave-service-offers {
        padding: 10px 0px 40px;
    }


    .microwave-service-offers h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .microwave-service-offers p.section-intro {
        margin-bottom: 30px;
        font-size: 15px;
    }
}


@media (max-width: 412px) {

    .hero-microwave h1 {
        font-size: 23px;
        margin-bottom: 10px !important;
    }


    .about-microwave h2 {
        font-size: 25px;
    }


    .about-microwave p {
        font-size: 15px;
    }

    .microwave-service-offers {
        padding: 0px 0px 40px;
    }

    .microwave-service-offers .microwave-card {
        padding: 10px 10px 0;
    }


    .microwave-service-offers .microwave-card img {
        height: 150px;
    }


    .microwave-service-offers .microwave-card p {
        font-size: 14px;
    }


}





.hero-kitchen-chimney h1 {
    color: #fff;
    font-size: 37px;
}


.hero-kitchen-chimney p.text-muted {
    color: #fff !important;
}

.hero-kitchen-chimney .card {
    border-radius: 12px;
}

.hero-kitchen-chimney input,
.hero-kitchen-chimney select {
    border-radius: 6px;
}

.hero-kitchen-chimney a.btn {
    background: #f67823;
    border: 1px solid #f67823;
    margin-top: 0px !important;
    border-radius: 4px !important;
}


.hero-kitchen-chimney {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/kitchen-chimney/hero-chimney.png);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}






.about-kitchen-chimney h2 {
    color: #f67823;
    font-size: 30px;
}


.about-kitchen-chimney p {
    line-height: 1.7;
}

.about-kitchen-chimney img {
    max-width: 100%;
    height: 350px;
}







.kitchen-chimney-service-offers {
    padding: 30px 0px;
}

.kitchen-chimney-service-offers h2 {
    text-align: center;
    font-weight: bold;
    color: #f67823;
    margin-bottom: 15px;
}

.kitchen-chimney-service-offers p.section-intro {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
}

.kitchen-chimney-service-offers .chimney-card {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.kitchen-chimney-service-offers .chimney-card:hover {
    transform: translateY(-5px);
}

.kitchen-chimney-service-offers .chimney-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
}

.kitchen-chimney-service-offers .chimney-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #02385d;
}


.kitchen-chimney-service-offers .chimney-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .kitchen-chimney-service-offers .chimney-card {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {

    .hero-kitchen-chimney {
        height: 570px;
    }


    .hero-kitchen-chimney h1 {
        font-size: 35px;
    }

    .about-kitchen-chimney p {
        line-height: 1.55;
        font-size: 14px;
        margin-bottom: 8px !important;
    }


    .kitchen-chimney-service-offers {
        padding: 10px 0px 30px;
    }

    .kitchen-chimney-service-offers .chimney-card h5 {
        font-size: 18px;
    }



}


@media (max-width: 430px) {

    .hero-kitchen-chimney {
        height: 100%;
        padding: 40px 0px 20px !important;
    }

    .hero-kitchen-chimney h1 {
        font-size: 32px;
    }


    .about-kitchen-chimney h2 {
        font-size: 27px;
    }

    .about-kitchen-chimney img {
        height: 100%;
    }

    .kitchen-chimney-service-offers h2 {
        font-size: 24px;
    }

    .kitchen-chimney-service-offers p.section-intro {
        margin-bottom: 25px;
        font-size: 15px;
    }


    .kitchen-chimney-service-offers .chimney-card {
        padding: 10px 10px 0;
    }

}


@media (max-width: 412px) {

    .hero-kitchen-chimney h1 {
        font-size: 23px;
    }

    .about-kitchen-chimney h2 {
        font-size: 26px;
    }


    .kitchen-chimney-service-offers {
        padding: 0px 0px 30px;
    }

    .kitchen-chimney-service-offers .chimney-card p {
        font-size: 14px;
    }

}






.hero-cassete-ac h1 {
    color: #f67823;
    font-size: 35px;
}

.hero-cassete-ac p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff !important;
    font-weight: bold;
}

.hero-cassete-ac .card {
    border-radius: 12px;
}


.hero-cassete-ac a.btn {
    background: #f67823;
    border: 1px solid #f67823;
    margin-top: 0px !important;
    border-radius: 4px !important;
}


.hero-cassete-ac {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/cassette-ac/hero-cassette.jpg);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.about-cassette-ac h2 {
    color: #f67823;
}

.about-cassette-ac p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-cassette-ac ul {
    margin-top: 1rem;
}

.about-cassette-ac img {
    max-width: 100%;
    border-radius: 10px;
}






.cassette-ac-service-offers {
    padding: 30px 0px;
}

.cassette-ac-service-offers h2 {
    text-align: center;
    font-weight: bold;
    color: #f67823;
    margin-bottom: 10px;
}

.cassette-ac-service-offers p.section-intro {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
}

.cassette-ac-service-offers .cassette-ac-card {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.cassette-ac-service-offers .cassette-ac-card:hover {
    transform: translateY(-5px);
}

.cassette-ac-service-offers .cassette-ac-card img {
    height: 200px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.cassette-ac-service-offers .cassette-ac-card h5 {
    font-size: 16px;
    font-weight: bold;
    color: #f67823;
}

.cassette-ac-service-offers .cassette-ac-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 767px) {
    .cassette-ac-service-offers .cassette-ac-card {
        margin-bottom: 20px;
    }
}




@media (max-width: 1024px) {

    .hero-cassete-ac {
        height: 570px;
    }


    .hero-cassete-ac h1 {
        font-size: 34px;
    }

    .hero-cassete-ac p {
        line-height: 1.6;
        font-weight: 400;
    }


    .about-cassette-ac h2 {
        font-size: 25px;
        margin-bottom: 5px !important;
    }


    .about-cassette-ac p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 5px !important;
    }


    .cassette-ac-service-offers {
        padding: 10px 0px 30px;
    }


    .cassette-ac-service-offers .cassette-ac-card {
        padding: 10px 10px 0;
    }

}



@media (max-width: 430px) {


    .hero-cassete-ac {
        height: 100%;
        padding: 40px 0px 20px !important;
    }

    .hero-cassete-ac h1 {
        font-size: 32px;
    }


    .about-cassette-ac h2 {
        font-size: 23px;
    }


    .cassette-ac-service-offers h2 {
        margin-bottom: 10px;
        font-size: 24px;
    }


    .cassette-ac-service-offers p.section-intro {
        margin-bottom: 30px;
        font-size: 15px;
    }

}


@media (max-width: 412px) {

    .hero-cassete-ac h1 {
        font-size: 23px;
    }


    .hero-cassete-ac p {
        font-size: 15px;
    }


    .cassette-ac-service-offers h2 {
        margin-bottom: 10px;
        font-size: 20px;
    }


    .cassette-ac-service-offers .cassette-ac-card p {
        font-size: 14px;
    }



}








.hero-tower-ac h1 {
    font-size: 2.2rem;
    color: #f67823 !important;
}


.hero-tower-ac p.mb-4 {
    color: #fff !important;
}

.hero-tower-ac .form-control {
    border-radius: 0.5rem;
}

.hero-tower-ac .card {
    border-radius: 1rem;
    background: #fff;
}

@media (max-width: 768px) {
    .hero-tower-ac h1 {
        font-size: 1.6rem;
    }
}






.hero-tower-ac a.btn {
    background: #f67823;
    border: 1px solid #f67823;
    margin-top: 0px !important;
    border-radius: 4px !important;
}


.hero-tower-ac {
    background: linear-gradient(120deg, #0000008c, #04040485), url(../img/tower-ac/hero-tower-ac.jpg);
    color: #fff;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




.about-tower-ac h2 {
    font-size: 2rem;
    color: #f67823 !important;
}


.about-tower-ac p {
    line-height: 1.7;
}


.about-tower-ac img {
    width: 100%;
    height: 365px;
    object-fit: cover;
}




@media (max-width: 1024px) {

    .hero-tower-ac {
        height: 570px;
    }

    .hero-tower-ac h1 {
        font-size: 30px;
    }


    .hero-tower-ac p.mb-4 {
        color: #fff !important;
        font-size: 16px !important;
    }


    .about-tower-ac p {
        line-height: 1.55;
        font-size: 16px !important;
    }

}


@media (max-width: 430px) {

    .hero-tower-ac {
        height: 100%;
        padding: 40px 0px 20px !important;
    }

    img.img-fluid.rounded.shadow {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .geyser-service-offers h2 {
        font-size: 30px;
    }

    .washing-machine-service-offers h2 {
        font-size: 28px;
    }


    .microwave-service-offers h2 {
        font-size: 29px;
    }
}



@media (max-width: 412px) {

    .hero-tower-ac h1 {
        font-size: 24px;
    }


    .about-tower-ac h2 {
        font-size: 26px;
    }

    .about-tower-ac p {
        line-height: 1.55;
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .ac-service-offers h2 {
        font-size: 25px;
    }


    .fridge-service-offers h2 {
        font-size: 23px;
    }

    .geyser-service-offers h2 {
        font-size: 22px;
    }


    .washing-machine-service-offers h2 {
        font-size: 21px;
    }

    .ro-service-offers h2 {
        font-size: 23px;
    }

    .microwave-service-offers h2 {
        font-size: 21px;
    }

    .kitchen-chimney-service-offers h2 {
        font-size: 23px;
    }


}







.wrapper-1 {
    background: #fff;
    height: initial;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}

.wrapper-2 {
    padding: 30px;
    text-align: center;
}

.wrapper-2 p {
    text-decoration: none;
    color: black;
}

.go-home {
    color: #fff !important;
    background: #02385d;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

.wrapper-2 h2 {
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
    color: #f67823;
}

.go-home a {
    color: #fff !important;
    text-decoration: none;
}

.footer-like {
    text-align: center;
}

.content-thank {
    margin-top: 200px;
}


@media (max-width: 430px) {


    .content-thank {
        margin-top: 150px;
    }
}

@media (max-width: 412px) {

    .content-thank {
        margin-top: 100px;
    }

}





form#captcha-form {
    padding: 20px;
}

.capbox {
    background: #ffffff;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid;
    justify-content: space-between;
    height: 40px;
    border-radius: 3px;
    border: 0;
    margin: 10px 0px;
}

.capbox input#CaptchaInput {
    border: 0;
    padding-left: 14px;
    border-right: 1px solid #e8883a !important;
    height: 40px;
    background: #ffffff;
    border-radius: 5px 0 0 5px;
    width: 170px;
}

input#CaptchaInput:focus-visible {
    outline: none;
}

div#CaptchaDiv {
    padding-left: 0px !important;
    margin: auto;
    color: #555555;
}

.capbox input {
    border-radius: 0px !important;
    border: 0px solid !important;
    border-color: #151d3f !important;
    border-right: 1px solid !important;
    padding: 0px;
    height: 33px !important;
    padding-left: 15px !important;
}

.capbox input:focus-visible {
    outline: none !important;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


input#CaptchaInput {
    margin-bottom: 0px !important;
}





@media (max-width: 412px) {
    .capbox input#CaptchaInput {
        width: 133px;
    }

    .customer-care {
        font-size: 19px;
    }
}