@font-face {
    font-family: "HK Grotesk";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/hk-grotesk/OTF/HKGrotesk-Light.otf);
}

@font-face {
    font-family: "HK Grotesk";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/hk-grotesk/OTF/HKGrotesk-Regular.otf);
}

@font-face {
    font-family: "HK Grotesk";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/hk-grotesk/OTF/HKGrotesk-Medium.otf);
}

@font-face {
    font-family: "HK Grotesk";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/hk-grotesk/OTF/HKGrotesk-SemiBold.otf);
}

@font-face {
    font-family: "HK Grotesk";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/hk-grotesk/OTF/HKGrotesk-Bold.otf);
}

* {
    font-family: "HK Grotesk";
}

.fixed {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    z-index: 9999;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
p {
    color: #183b56;
}

.buttons-box {
    .btn-blue {
        background-color: #4a94f7;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 20px 32px;
        border-radius: 6px;
    }
    .btn-blue:hover {
        background-color: #0085cc;
    }
    .btn-blue-blog {
        background-color: #4a94f7;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 12px 20px;
        border-radius: 6px;
    }
    .btn-blue-blog:hover {
        background-color: #4a94f7;
    }
    .btn-link {
        color: #000000;
        font-size: 20px;
        font-weight: 700;
    }
}

.header {
    background-color: #f7d04f;
    .navbar {
        .navbar-nav {
            padding-bottom: 0;
        }
        .navbar-nav .nav-item {
            position: relative;
            height: 100%;
            margin: auto;
        }
        .navbar-nav .nav-item:not(:last-child) a {
            position: relative;
            z-index: 11;
            font-size: 20px;
            font-weight: 700;
            padding: 24px 24px;
            color: #5a5a5a;
        }
        .navbar-nav .nav-item:not(:last-child):hover::after {
            content: "";
            background-color: #ffffff;
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
            width: 100%;
            z-index: 1;
            transform: skew(-16deg, 0deg);
        }
        .navbar-nav .nav-item:not(:last-child):hover a {
            color: #4a94f7;
            font-size: 20px;
        }
        .navbar-nav .nav-item .btn-sign {
            background-color: #4a94f7;
            padding: 16px 32px;
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            border-radius: 8px;
            text-transform: uppercase;
            margin-left: 40px;
        }
        .navbar-nav .nav-item .btn-sign:hover {
            background-color: #0085cc;
        }
    }
}

    .banner {
    background-image: url(../images/banner-1.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    .banenr-content-box {
        width: 100%;
        max-width: 50%;
        margin: auto;
        background-color: #ffffff;
        padding: 80px 24px;
        border-radius: 8px;
    }
    .banenr-content-box span {
        color: #f7d04f;
        font-size: 25px;
        font-weight: 600;
    }
    .banenr-content-box h1 {
        color: #183b56;
        font-size: 64px;
        font-weight: 700;
    }
    .banenr-content-box p {
        color: #183b56;
        font-size: 25px;
        font-weight: 500;
    }
    .banenr-content-box p a {
        color: #183b56;
        font-size: 15px;
        font-weight: 500;
        text-decoration: underline;
    }
    .banenr-content-box ul {
        padding: 3rem 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .banenr-content-box ul li {
        position: relative;
        font-size: 22px;
        font-weight: 600;
        color: #4a94f7;
    }
    .banenr-content-box ul li::before {
        position: absolute;
        content: "\f00c";
        color: #ffffff;
        font-family: fontawesome;
        font-size: 14px;
        top: 4px;
        left: -40px;
        width: 30px;
        height: 30px;
        background-color: #f7d04f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.book-top-rated {
    padding: 100px 0;
    .book-top-content h2 {
        font-size: 40px;
        font-weight: 700;
    }
    .book-top-content p {
        font-size: 22px;
        font-weight: 400;
    }

    .choose-list li {
        position: relative;
    }
    .choose-list li::before {
        position: absolute;
        top: 0px;
        left: -50px;
        height: 30px;
        width: 30px;
        background-color: #4a94f7;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .choose-list li:nth-child(1):before {
        content: "1";
    }
    .choose-list li:nth-child(2):before {
        content: "2";
    }
    .choose-list li:nth-child(3):before {
        content: "3";
    }
    .choose-list li h3 {
        font-size: 24px;
        font-weight: 700;
    }
    .choose-list li p {
        font-size: 18px;
        font-weight: 400;
    }
}
.cleaning-rate {
    padding: 100px 0;
    .for-two-title h2 {
        font-size: 40px;
        font-weight: 700;
    }
    .for-hours-box {
        padding: 48px;
        box-shadow: 0px 19px 80px #edf0f4;
    }
    .for-hours-box h2 {
        font-size: 96px;
        font-weight: 700;
        color: #f7d04f;
    }
    .for-hours-box p {
        font-size: 24px;
        font-weight: 500;
        color: #4a94f7;
    }
    .subsequent-clean {
        width: 100%;
        max-width: 55%;
        margin: auto;
    }
    .subsequent-clean p {
        font-size: 24px;
        font-weight: 500;
    }
}

.foreverclean {
    .forever-content {
        width: 100%;
        max-width: 40%;
        margin: auto;
        .forever-title h2 {
            font-size: 40px;
            font-weight: 700;
        }
        .forever-title p {
            font-size: 24px;
            font-weight: 500;
        }
        .free-content-box {
            box-shadow: 0px 19px 80px #edf0f4;
            padding: 40px 0 0 0;
            border-radius: 16px;
            .best-value p {
                margin-bottom: 0;
            }
            .best-value p i {
                font-size: 24px;
                font-weight: 700;
            }
            .best-value {
                background-color: #fef9ec;
                padding: 20px 80px;
                border-radius: 16px;
            }
        }
        .free-content-box h2 {
            font-size: 96px;
            font-weight: 700;
            color: #f7d04f;
        }
        .free-content-box h3 {
            font-size: 24px;
            font-weight: 600;
        }
        .free-content-box h3 b {
            font-weight: 800;
            font-family: Arial, Helvetica, sans-serif;
        }
        .free-content-box p {
            font-size: 18px;
            font-weight: 600;
        }
        .free-content-box p span {
            text-decoration: line-through;
        }
    }
}

.Unbeatable-price-sec {
    background-color: #fef9ec;
    padding: 80px 0;
    .unbeatable-price-box {
        background-color: #ffffff;
        padding: 32px;
        height: 100%;
        border-radius: 16px;
        box-shadow: 0px 19px 80px #edf0f4;
        .unbeat-icon {
            height: 100px;
            width: 100px;
            margin: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(#fffdf8, #ffffff) padding-box,
                linear-gradient(to right, #006dff, #ffc400) border-box;
        }
    }
    .unbeatable-price-box h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 24px 0;
    }
    .unbeatable-price-box p {
        font-size: 18px;
        font-weight: 400;
    }
}

.thousand-happy-customer {
    background-color: #ecf4ff;
    padding: 80px 0 40px;
    .thousnd-tiitle {
        width: 100%;
        max-width: 50%;
        margin: auto;
    }
    .thousnd-tiitle h2 {
        font-size: 40px;
        font-weight: 700;
    }
    .thousnd-review {
        width: 100%;
        max-width: 60%;
        margin: auto;
        .star-ago-hour {
            background-color: #ffffff;
            padding: 32px;
            border-radius: 16px;
        }
        .star-ago-hour p {
            margin: 20px 0 0;
            font-weight: 500;
        }
        .star-ago-hour .stars p {
            margin: 0;
        }
        .star-ago-hour .stars i {
            color: #ffc400;
            margin-right: 4px;
        }
        .reviw-detail p {
            margin-bottom: 0;
        }
    }
}
.meat-star-housekepers {
    background-color: #cee3ff;
    padding: 80px 0 60px;
    .star-housekeper-title h2 {
        font-size: 40px;
        font-weight: 700;
    }
    .star-houserkeeper-slider {
        .house-keeper {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .house-keeper-slide {
            padding: 40px 20px;
        }
        .housekeeper-slider-inner-box {
            padding: 30px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 5px 5px 20px #98c1d97e;
        }
        .slick-prev:before,
        .slick-next:before {
            font-size: 40px;
            padding: 20px;
        }
        .slick-prev {
            left: -80px;
        }
        .meet--profile-det {
            .meet-profile-img img {
                width: 80px !important;
                height: 80px;
                border-radius: 50%;
            }
            .meet-profile-text h3 {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 0;
            }
            .meet-profile-text .stars i {
                color: #ffc400;
                margin-right: 4px;
                font-size: 14px;
            }
            .meet-profile-text .stars p {
                margin: 0;
            }
        }
        .meet-specifications li p {
            margin-bottom: 6px;
        }
        .meet-specifications li p b {
            font-weight: 700;
            font-family: Arial, Helvetica, sans-serif;
        }
        .meet-about h3 {
            font-size: 18px;
            font-weight: 700;
        }
        .meet-about p {
            font-size: 17px;
            font-weight: 500;
            margin-bottom: 0;
            overflow: hidden;
            text-transform: capitalize;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
        }
    }
}

.book--first-cleaning {
    background-color: #f7d04f;
    padding: 80px 0;
    .book--first-content {
        width: 100%;
        max-width: 60%;
        margin: auto;
    }
    .book--first-content h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 32px;
    }
    .book--first-content p {
        font-size: 18px;
        font-weight: 500;
    }
}
.footer {
    padding: 80px 0 20px;
    .home-glow-gooter-min-wegets ul li {
        margin: 8px 0 16px;
        padding: 8px 0;
    }
    .home-glow-gooter-min-wegets ul li a {
        color: #006dff;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
    }
    .home-glow-gooter-min-wegets ul li a:hover {
        text-decoration: underline;
        color: #0056b3;
    }
    .home-glow-gooter-min-wegets .fotoer-brand {
        width: 100%;
        max-width: 50%;
    }
    .copy-right-text p {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .footer-locations {
        .foter-weg-menu h2 {
            font-size: 24px;
            font-weight: 700;
        }
    }
    .footer-locations ul li {
        margin: 8px 0 0px;
        padding: 8px 0 0px;
    }
    .footer-locations ul li a {
        color: #1f1f1f;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 500;
    }
    .footer-locations ul li a:hover {
        text-decoration: underline;
    }
}

.faq-sec {
    background-color: #4a94f7;
    .faq-title h2 {
        font-weight: 700;
        font-size: 40px;
    }
    .faq-box {
        width: 100%;
        max-width: 75%;
        margin: auto;
    }
    .faq-box .accordion .accordion-item {
        margin: 12px 0;
        border: navajowhite;
        border-radius: 8px;
    }
    .faq-box .accordion .accordion-item .accordion-button {
        background-color: #0056b3;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
    }
    .faq-box .accordion .accordion-item .accordion-body {
        background-color: #0056b3;
    }
    .faq-box .accordion .accordion-item .accordion-body p {
        color: #ffffff;
        font-size: 18px;
        font-weight: 400;
    }
    .accordion-button:not(.collapsed) {
        box-shadow: 0px 0px 2px 0px #0056b3;
    }
}

.house-cleaning-banner {
    background-color: #fffbee;
    height: 800px;
    .house-banner-box {
        display: flex;
        align-items: center;
        width: 100%;
        height: 800px;
        max-width: 80%;
        margin-left: auto;
    }
    .house-banner-content h2 {
        font-size: 64px;
        font-weight: 700;
    }
    .house-banner-content p {
        font-size: 32px;
        font-weight: 500;
    }
    .house-banner-rating {
        background-color: #ffffff;
        width: max-content;
        padding: 16px 24px;
        border-radius: 20px;
        .stars p {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0;
        }
        .stars i {
            color: #f7d04f;
            margin-right: 4px;
            font-size: 16px;
        }
    }
    .house-baner-img {
        position: relative;
    }
    .house-baner-img {
        display: block;
        position: absolute;
        content: "";
        /* top: 41px; */
        z-index: 0;
        /* right: 0; */
        height: 800px;
        mask-image: url(../images/abc-banner.png);
        mask-repeat: no-repeat;
        mask-position: right;
        mask-size: cover;
    }
    .house-baner-img img {
        height: 100%;
    }
}
.Unbeatable-price-sec.house-pg {
    background-image: linear-gradient(
        269.94deg,
        #ffc20029 -11.5%,
        #ffe3880c 129.81%,
        #ffe58d0c 129.81%
    ) !important;
    .unbeatable-price-box {
        background-color: transparent;
        box-shadow: none;
        padding: 8px;
    }
}

.best-house {
    /*padding: 80px 0;*/
    .house-clean-box {
        width: 100%;
        max-width: 80%;
        margin: auto;
        padding-top:50px;
    }
    .best-house-content h2 {
        font-size: 40px;
        font-weight: 700;
    }
    .best-house-content p {
        font-size: 24px;
        font-weight: 500;
        padding: 0 40px;
    }
    .hunderd-trust {
        margin-top: 80px;
        .hundred-title h2 {
            font-size: 40px;
            font-weight: 700;
        }
        .cleaners-available {
            box-shadow: 0px 19px 80px #edf0f4;
            height: 100%;
            padding: 40px 20px;
            border-radius: 16px;
        }
        /*.cleaners-available img {*/
        /*    height: 40px;*/
        /*    width: 40px;*/
        /*}*/
        .cleaners-available h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: 30px;
        }
    }
}

.best-house.inc-house {
    .container {
        width: 100%;
        max-width: 80%;
    }
    .hunderd-trust {
        .cleaners-available {
            padding: 0;
            .kithen-sec {
                border-bottom: 2px dashed #4a94f752;
                padding: 24px;
                background:#fff;
                position: relative;
                .kitchen-img {
                    width: 100%;
                    max-width: 35%;
                }
                .kitchen-cont {
                    width: 100%;
                    max-width: 60%;
                }
                .kitchen-cont h3 {
                    font-size: 24px;
                    font-weight: 600;
                    margin-top: 0px;
                }
                .kitchen-cont p {
                    font-size: 18px;
                    font-weight: 500;
                }
                .purchase-sec {
                    position: absolute;
                    top: 70%;
                    right: 0%;
                    width: 100%;
                    max-width: 25%;
                    .price-bg {
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        background-color: #000000;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        z-index: 99;
                    }
                    .price-bg h4 {
                        color: #ffffff;
                        font-size: 16px;
                        margin-bottom: 0;
                    }
                    .book-Now {
                        background-color: #f7d04f;
                        padding: 8px 10px 6px 32px;
                        height: fit-content;
                        margin-left: -20px;
                    }
                }
            }
        }
        .kitchen-wegits {
            background-color: #f8fcff;
            padding: 24px;
        }
        .kitchen-wegits ul {
            display: flex;
            justify-content: space-between;
            list-style: none;
            padding-left: 0;
            flex-wrap: wrap;
        }
        .kitchen-wegits ul li {
            width: 100%;
            max-width: 49%;
            font-size: 18px;
            font-weight: 500;
            margin: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        .kitchen-wegits ul li::before {
            position: absolute;
            content: "\f00c";
            font-family: fontawesome;
            color: #0085cc;
            font-size: 12px;
            top: 4px;
            left: 0;
            background-color: #4a94f738;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
.book--first-cleaning.book-clean-bg {
    background-color: #fff7db;
    .book--first-content {
        width: 100%;
        max-width: 80%;
        margin: auto;
    }
    .book--first-content p {
        font-size: 24px;
    }
}

.benefit-of-cleaning {
    .benefit--img {
        border-radius: 20px;
        overflow: hidden;
    }
    .benefit--contnet h2 {
        font-size: 40px;
        font-weight: 600;
    }
    .benefit--contnet p {
        font-size: 18px;
        font-weight: 600;
        margin-top: 16px;
    }
}

.blog-banner {
    background-color: #fffbee;
    padding: 80px 0;
    .blog-banner-content-box {
        width: 100%;
        max-width: 40%;
        margin: auto;
    }
    .blog-banner-content-box h2 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    .blog-banner-content-box p {
        font-size: 24px;
        font-weight: 500;
    }
}
.cleaning-tips-experts {
    margin-top: -60px;
    .cleaning--expert h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 24px;
    }
    .cleaning--expert p {
        font-size: 24px;
        font-weight: 500;
    }
}
.cleaning-tips-blogs {
    .tip-blog-filter {
        position: sticky;
        top: 40px;
        .tip-title h3 {
            font-size: 24px;
            font-weight: 700;
        }
    }
    .tip-blog-filter ul li {
        padding: 8px 0;
        margin: 8px 0;
    }
    .tip-blog-filter ul li a {
        font-size: 16px;
        font-weight: 600;
    }
    .tip-blog-filter ul li a:hover {
        color: #006dff;
    }
}
.blog-sec {
    position: relative;
    .cleaning-blog-one {
        height: 100%;
        .blog-one-img img {
            object-fit: cover;
            width: 100%;
            height: 350px;
            border-radius: 16px;
        }
        .blog-one-content {
            padding: 24px;
        }
        .blog-one-content span {
            background-color: #ecf4ff;
            color: #006dff;
            font-size: 14px;
            padding: 6px 16px;
            font-weight: 600;
            border-radius: 12px;
        }
        .blog-one-content span:hover {
            color: #000000;
        }
        .blog-one-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin: 20px 0;
        }
        .blog-one-content p {
            font-size: 18px;
            font-weight: 500;
        }
    }
}
.blog-sec::before {
    position: absolute;
    content: "";
    top: 20px;
    left: -40px;
    height: 95%;
    width: 1px;
    background-color: #183b56;
}
.clean-house--proff {
    background-image: linear-gradient(to bottom, #ecf4ff, #ffffff);
    padding: 80px 0;
    .proff-content span {
        font-size: 24px;
        font-weight: 700;
    }
    .proff-content h2 {
        font-size: 40px;
        font-weight: 700;
    }
}
.detail-blog {
    padding: 80px 0;
    .blog-detail-content {
        .title-detail h1 {
            font-size: 64px;
            font-weight: 700;
        }
        .title-detail p {
            font-size: 24px;
            font-weight: 600;
            margin-top: 40px;
        }
        .blog-description p {
            font-size: 20px;
            font-weight: 500;
        }
        .blog-description h2 {
            font-size: 48px;
            font-weight: 700;
        }
        .blog-description h3 {
            font-size: 24px;
            font-weight: 700;
        }
        .blog-description ul li {
            font-size: 20px;
        }
    }
}
.book-top-rated.def-bg {
    background-color: #ecf4ff;
}

.cleaning-tips-blogs.no-orrder {
    .blog-sec::before {
        position: inherit;
    }
}
.how-we-help {
    background-image: linear-gradient(80deg, #00857a, #006a75);
    padding: 60px 0;
    .search-help-article input[type="text"] {
        width: 100%;
        max-width: 45%;
        border-radius: 6px;
        border: 0;
        font-size: 14px;
        padding: 8px 16px;
    }
    .search-help-article input[type="submit"] {
        border-radius: 6px;
        border: 0;
        font-size: 15px;
        color: #000000;
        font-weight: 700;
        padding: 8px 16px;
        background-color: #eee8aa;
        margin-left: 12px;
    }
    .search-help-article input[type="submit"]:hover {
        background-color: #eee8aa;
    }
}
.how-we-help h2 {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
}
.how-we-help p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
.how-we-help p a {
    font-size: 18px;
    font-weight: 500;
    color: #eee8aa;
    text-decoration: underline;
}

.help-form-sec {
    margin: 60px 0;
    .help-form-content {
        padding-right: 20px;
    }
    .help-form-content h2 {
        font-size: 48px;
        font-weight: 600;
    }
    .help-form-content p {
        font-size: 18px;
        font-weight: 600;
        font-size: 19px;
    }
    .help-form-content p a {
        font-weight: 600;
        color: #0085cc;
    }
    .contact-form h2 {
        font-size: 48px;
        font-weight: 600;
    }
    .contact-form label {
        font-size: 16px;
        font-weight: 600;
    }
    .contact-form span {
        font-size: 14px;
        font-weight: 600;
    }
}

.sign-in-page {
    background-color: #f8f8da;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    .sign-in-form {
        width: 100%;
        max-width: 30%;
        margin: auto;
    }
    .sign-in-form h2 {
        font-size: 32px;
        font-weight: 600;
    }
    .sign-in-form label {
        font-size: 16px;
        font-weight: 700;
        text-align: end;
        width: 100%;
    }
    .sign-in-form input[type="submit"] {
        background-color: #5cb85c;
        color: #ffffff;
        font-weight: 600;
    }
    .sign-in-form input[type="submit"]:hover {
        background-color: #00857a;
    }
    .sign-in-form p {
        width: 100%;
        display: flex;
        justify-content: end;
    }
    .sign-in-form p a {
        color: #0085cc;
    }
}
