@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* home */
:root {
    --black: #000 !important;
    --white: #ffffff !important;
    --yellow: #fdd264 !important;
    --sky: #db5252 !important;
    --redc: #db5252 !important;
    --color-text: #13204B !important;
    --grey: #6F7278 !important;
    --color-menu: #18353B !important;
    --body-font: 'Poppins', sans-serif !important;
    --heading: 'Montserrat', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* =================scroll top css start here================ */
.breadcrumb {
    text-transform: uppercase !important;
    color: var(--color-dark) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.go-top {
    bottom: 90px;
    opacity: 0;
    visibility: visible;
    right: 10px;
    border-radius: 100%;
    z-index: 9;
    background: #3cc5f5;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    position: fixed;
    cursor: pointer;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: -moz-linear-gradient(0deg, #3cc5f5 0%, #c1282a 100%);
    background-image: linear-gradient(to right, #3cc5f5 0%, #00132b 100%);
    background-image: -ms-linear-gradient(0deg, #3cc5f5 0%, #c1282a 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}

.go-top::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 35px;
    height: 35px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    -o-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -webkit-linear-gradient(0deg, #3cc5f5 0%, #3cc5f5 100%);
    border-radius: 100%;
}

.go-top i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top:focus i:last-child,
.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.go-top:focus i:first-child,
.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

/* =scroll top css start here=*/

/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: var(--white) !important;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--sky) !important;
    border-radius: 5px;
    border: 0px;
}

/* ------Scrollbar CSS End----- */

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px !important;
    line-height: 24px !important;
    font-family: var(--body-font) !important;
    color: var(--color-text) !important;
}

p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block !important;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out !important;
    -moz-transition: all 300ms ease-in-out !important;
    transition: all 300ms ease-in-out !important;
}

figure {
    margin: 0;
    padding: 0;
    display: block;
}

img {
    max-width: 100%;
}

h1,
h2,
.heading {
    line-height: normal !important;
    font-weight: 600 !important;
    margin-bottom: 5px;
    font-size: 31px !important;
    margin-bottom: 18px;
    color: var(--color-text) !important;
    font-family: var(--heading) !important;
}

h3 {
    font-size: 22px !important;
}

h4 {
    font-size: 20px !important;
}

h5 {
    font-size: 18px !important;
}

h6 {
    font-size: 16px !important;
}

ul {
    padding-left: 0px !important;
    margin-bottom: 0px !important;
}

.bg-black {
    background: var(--dark);
}

/*--- Common Style End---*/

/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0 !important;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 25px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    font-family: var(--body-font) !important;
    border: 1px solid transparent !important;
    text-transform: capitalize !important;
    position: relative !important;
    transition: all .5s !important;
    -webkit-transition: all .5s !important;
    -moz-transition: all .5s !important;
    -ms-transition: all .5s !important;
    -o-transition: all .5s !important;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid-white {
    height: 40px !important;
    line-height: 38px !important;
    background: var(--white) !important;
    color: var(--sky) !important;
    border: 1px solid var(--sky) !important;
    transition: all .4s !important;
}

.btn-solid-white:where(:hover, :focus, :active) {
    background: var(--sky) !important;
    color: var(--white) !important;
    border-color: var(--sky) !important;
}

.btn-solid-sky {
    background: #0d83c8 !important;
    color: #fff !important;
    border: 1px solid transparent;
    border-radius: 100px !important;
}

.btn-solid-sky:hover {
    background: #000 !important;
    color: #fdd264 !important;
}

.btn-transparent {
    font-size: 13px !important;
    background: transparent !important;
    color: var(--sky) !important;
    font-weight: 600 !important;
    transition: all .4s !important;
    position: relative !important;
    padding: 0 0 4px 0 !important;
}

.btn-transparent::before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--sky);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .4s;
}

.btn-transparent:hover::before {
    height: 2px;
    background: var(--sky);
    width: 10%;
    transition: all .4s;
}

.btn-transparent:hover {
    color: var(--sky);
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title {
    margin-bottom: 30px;
}

.section-title h3 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 0px;
    font-weight: 400;
    font-family: var(--heading);
}

.section-title span {
    position: relative;
    width: 120px;
    margin: 0 auto;
    display: block;
}

.sec-space {
    padding: 60px 0 !important;
}

.text-black {
    color: var(--black);
}

.sec-space.marge-sec {
    padding: 40px 0px 60px 0px !important;
}

/*--- TITLE End---*/
/* sticky side bar */

/*--- Animation Header Start ---*/

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.header-appear {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--bluish);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
}

/*--- Animation Header End ---*/

/*----   HEADER  START  ----*/

.main-header {
    width: 100%;
    z-index: 999;
}

.sub-menu {
    background: #000 !important;
    z-index: 1;
    list-style: none;
    padding: 10px !important;
}

.navbar-collapse ul li .sub-menu li {
    margin: 0 !important;
    padding: 0;
    position: relative;
}

.navbar-collapse ul li .sub-menu li a {
    display: block;
    padding: 7px 0 !important;
    color: var(--white) !important;
}

@media (min-width: 992px) {

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
}

@media screen and (min-width: 992px) {
    .sub-menu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 80px;
        transition: all 300ms ease-in-out;
        left: 0;
        width: 170px;
    }

    .navbar-collapse ul li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        z-index: 9;
        top: 68px;
    }
}

.navbar-collapse ul li .fa::before {
    content: "\f0d7";
    font-size: 12px;
}

.navbar-brand {
    padding: 0px;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-collapse ul>li {
    margin-right: 20px;
    position: relative;
}

/* .navbar-collapse ul>li:last-child {
    margin-right: 0px;
} */

.navbar-collapse ul>li>a {
    color: var(--color-menu) !important;
    padding: 25px 18px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 9;
    text-transform: capitalize;
}

.navbar-collapse ul>li>a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--sky) !important;
    content: '';
    height: 2px;
    width: 100%;
    z-index: -1;
    transition: all .4s;
    opacity: 0;
}

.navbar-collapse ul>li.active>a:before,
.navbar-collapse ul>li:hover>a:before {
    width: 100%;
    z-index: -1;
    transition: all .4s;
    opacity: 1;
}

.navbar-text .call {
    position: relative;
    z-index: 1;
    padding-left: 40px;
    color: var(--white);
}

.navbar-text .hcall {
    margin-right: 20px;
}

.navbar-text .btn {
    border-width: 2px !important;
    line-height: 36px !important;
    padding: 0 20px;
}

.navbar-text .call::before,
.time::before {
    content: "\f095";
    font: normal normal normal 14px/1 FontAwesome;
    background: var(--yellow);
    color: #fff;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    z-index: -1;
    text-align: center;
}

.time {
    position: relative;
    padding-left: 40px;
}

.time::before {
    z-index: 1;
    content: "\f017";
}

.navbar-text h6 {
    font-size: 10px;
    color: #9E9E9E;
    line-height: 16px;
}

.navbar-text p {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
}

/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.banner {
    position: relative;
}

.banner-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.banner img {
    height: 550px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.banner-text h1 {
    font-size: 59px;
    line-height: 69px;
    letter-spacing: 1px;
    padding-bottom: 12px;
    font-family: var(--heading);
    color: var(--color-text);
    font-weight: 600;
}

.bannertextwrap {
    max-width: 450px;
}

.bannerbox {
    position: relative;
}

.bannerimg {
    position: relative;
    width: 100%;
    padding-top: 29%;
    overflow: hidden;
}

.bannerimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* innerbanner */

.innerBanner {
    position: relative;
}

.innerBannerImg {
    height: 350px;
    position: relative;
}

.innerBannerImg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: #000000;
}

.innerBannerImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.innerBannerTxt {
    position: absolute;
    bottom: 40%;
    transform: translateY(50%);
    left: 0;
    width: 100%;
    text-align: center;
}

.innerBannerWrap {
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.separator {
    margin: 0 4px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
    text-transform: uppercase;
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 400;
}

.innerBannerWrap h1 {
    color: var(--color-main);
    margin-bottom: 0;
}

.breadcrumb a {
    color: var(--color-blue);
}

/*---   BANNER END   ---*/

.repeat-image img {
    max-height: 400px;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}

.repeat-content p {
    color: var(--grey);
}

.laundry .repeat-content p:last-of-type {
    margin-bottom: 0;
}

.repeate-section:nth-child(even) .row {
    flex-direction: row-reverse;
}

.repeat-content ul {
    margin-top: 18px;
}

.repeate-section:not(:last-child) {
    margin-bottom: 60px;
}

.repeat-content ul li {
    list-style: none;
    line-height: 26px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
    color: var(--color-text);
}

.repeat-content ul li+li {
    margin-top: 10px;
}

.spara {
    color: #6F7278;
}

.repeat-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url(../images/tick.svg) no-repeat center / 18px;
    margin-right: 12px;
}

/*-- Why Us start --*/

.why-us {
    background: url('image/why-us-banner.jpg') no-repeat center;
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--redc);
    opacity: 0.9;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.why-us-icon::before {
    background: var(--white);
    height: 70px;
    width: 70px;
    line-height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 6px solid #ffffff24;
    content: "";
    z-index: -1;
}

.why-us-icon {
    height: 70px;
    width: 70px;
    line-height: 66px;
    margin: 0 auto 30px;
}

.why-us-icon img {
    height: 30px;
    width: auto;
}

.reason {
    line-height: 21px;
    font-size: 14px;
    font-weight: 300;
}

.why-us-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 320px;
    height: 1px;
    z-index: -1;
    background: #fff;
    opacity: 0;
}

.reason:last-child .why-us-icon::after {
    background: transparent;
}

.img-col {
    position: absolute !important;
    left: 50%;
}

.text-col {
    padding: 50px;
}

.accordion .card .card-body ul {
    padding: 10px !important;
    margin: 10px !important;
}

.laundry-call {
    background: url('image/yellow-banner.jpg') no-repeat center;
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.laundry-call::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--yellow);
    opacity: 0.94;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.laundry-call h4 {
    font-size: 26px !important;
    line-height: 32px !important;
    max-width: 450px !important;
}

.laundry-call .btn {
    height: 60px !important;
    line-height: 60px !important;
    padding: 0 28px !important;
    font-size: 21px !important;
    letter-spacing: 1px !important;
}

/* Testimonial start  */

.testimonial-head {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.testimonial-left {
    background: url('../images/quote-big.svg') no-repeat left;
    height: 200px;
    width: auto;
    background-size: contain;
}

.testimonial-wrapper {
    background: #EAF3F8;
    padding: 60px 40px 15px;
    border-radius: 16px;
    position: relative;
}

.testimonial-wrapper::before {
    content: "";
    background: url(../images/quote-right.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 22px;
    right: 30px;
    width: 30px;
    height: 30px;
}

.blue-quote {
    width: 30px;
    height: 30px;
    margin-left: auto;
}

.customer-review {
    height: 150px;
    color: #5E7888;
    font-size: 13px;
    font-style: italic;
    overflow-y: auto;
}

.customer-img {
    flex-shrink: 0;
}

.customer-img img {
    border-radius: 50%;
    width: 50px !important;
    height: 50px;
    object-fit: cover;
}

.customer-details h6 {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
}

.customer-details p {
    color: #5E7888;
    font-size: 13px;
    font-weight: 600;
}

/* Testimonial end */

/* FAQ start */

.faq {
    background: #f8f8f8;
}

.faq h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    position: relative;
    padding: 20px 25px;
    padding-right: 46px;
    margin-bottom: 0;
    cursor: pointer;
    color: #13204b !important;
}

.faq .fa {
    color: var(--color-text);
    font-size: 14px;
}

.card {
    border: none !important;
    margin-bottom: 25px;
}

.arrow-down {
    position: absolute;
    right: 15px;
    top: 14px;
}

h4[aria-expanded="true"] .arrow-down {
    transform: rotate(180deg);
}

.card-header {
    background-color: var(--white) !important;
    border-bottom: none !important;
    padding: 18px 25px;
    line-height: normal;
}

.card-body {
    color: var(--grey) !important;
    padding: 5px 25px 30px 25px !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
}

/* FAQ end */

/*--  Footer Start  --*/

.footer-main .flogo {
    padding-top: 40px;
}

.quick-link-box {
    padding: 30px 0;
}

.contact-info {
    background: var(--sky);
    padding: 20px 20px;
    position: relative;
    margin-top: -64px;
}

.contact-info h6 {
    color: #B4D0E1;
    font-size: 12px;
}

.contact-info p {
    line-height: 20px;
    color: var(--white);
    font-weight: 400;
}

.contact-info li {
    flex: 0 0 27%;
    margin-right: 0;
    padding-left: 50px;
    position: relative;
}

.ficon {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--white);
}

.ft-logo img {
    width: 124px;
    height: auto;
}

.quick-link-box ul {
    list-style: none;
    padding-left: 0px;
}

.quick-link-box ul li {
    display: inline;
    margin: 0 30px;
}

.quick-link-box ul li a {
    text-decoration: none;
    color: var(--color-menu);
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    transition: all .4s;
}

.quick-link-box ul li a:hover {
    color: var(--sky);
    transition: all .4s;
}

.ft-social ul li {
    margin: 0 15px;
}

.ft-social ul li a {
    color: var(--color-text);
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    background: #F2F7F8;
    height: 40px;
    line-height: 40px;
    width: 40px;
    transition: all 0.4s;
}

.ft-social ul li a:hover {
    color: var(--black);
    background: var(--yellow);
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    margin-top: 40px;
    padding: 20px 15px;
    text-align: center;
    background-color: #F2F7F8;
}

.copy-right p {
    line-height: normal;
    font-size: 12px;
    color: #000000;
}

.copy-right p a {
    color: var(--black);
}

/*--  Footer End  --*/

#button {
    display: inline-block;
    background-color: var(--yellow);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* ========================

    CONTACT PAGE DESIGN

=========================== */

.contact-form {
    padding: 30px;
    background-color: #F1EEEE;
    margin: 40px 0;
    border: 5px solid var(--yellow);
    position: relative;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 30px;
    color: var(--sky);
    line-height: normal;
}

.submit-btn {
    background-color: var(--sky);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 auto;
    width: 150px;
    display: block;
}

.submit-btn:hover {
    background-color: var(--yellow);
}

.contact-form::before {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    right: -30px;
    top: -40px;
    z-index: -1;
    background: url(../images/dot-pattern.png) repeat top right;
    opacity: 0.2;
    background-size: 15px;
}

.contact-form label {
    margin-bottom: 15px;
    display: block;
}

.contact-form::after {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    left: -30px;
    bottom: -35px;
    z-index: -1;
    background: url(../images/dot-pattern.png) repeat top right;
    opacity: 0.2;
    background-size: 15px;
}

.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 9px;
}

.wpcf7-form-control-wrap input.f12c {
    padding: 0 10px;
    font-size: 15px;
    border: 1px solid rgb(11 36 113 / 20%);
    margin-bottom: 2px;
    height: 48px;
    width: 100%;
    margin-bottom: 5px;
}

.captcha-col .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.contact-box {
    font-size: 20px;
    display: flex;
    border-radius: 10px;
    line-height: normal;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    /*  border: 2px solid var(--color-main); */
}

.contact-box a {
    color: inherit;
}

.contact-box a:hover {
    color: var(--sky);
}

.contact-box span {
    flex-shrink: 0;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #fff;
    font-size: 26px;
    border-radius: 100%;
}

/* =========================

    SINGLE PAGE DESIGN

============================ */

.others-section {
    background-color: #f2f5ff;
}

.others-section .latest-menu-box {
    background-color: #fff;
    padding: 10px;
}

.others-section .latest-menu-box figure {
    margin-bottom: 10px;
}

.single-content h2:after {
    content: "";
    display: block;
    width: 16%;
    height: 3px;
    margin-top: 15px;
    background-color: var(--sky);
}

.single-content h2::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: absolute;
    bottom: -2px;
    left: 8%;
    margin-left: -2px;
    margin-top: 15px;
    background-color: var(--sky);
}

.single-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.single-content ul li {
    list-style: none;
    line-height: 26px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
    color: var(--color-text);
}

.single-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url(image/tick.svg) no-repeat center / 18px;
    margin-right: 12px;
}

.single-pic {
    float: right;
    position: relative;
    max-width: 450px;
    margin: 0 0 40px 40px;
}

.single-pic img {
    display: block;
    box-shadow: 10px 10px 0 var(--sky);
}

.single-pic::before {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    right: -30px;
    top: -40px;
    z-index: -1;
    background: url(image/dot-pattern.png) repeat top right;
    opacity: 0.2;
    background-size: 15px;
}

.single-pic::after {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    left: -30px;
    bottom: -35px;
    z-index: -1;
    background: url(image/dot-pattern.png) repeat top right;
    opacity: 0.2;
    background-size: 15px;
}

/* ============= */

.sbox {
    display: block !important;
    background-color: #fff;
}

.scontent {
    text-align: center;
    padding: 10px;
}

.scontent h3 {
    color: var(--black);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0;
}

.sbox figure {
    position: relative;
    padding-top: 72%;
    width: 100%;
    overflow: hidden;
}

.sbox figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.sbox:hover figure img {
    transform: scale(1.2);
}

/* ========================= */

.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dots button {
    box-shadow: none !important;
    outline: none !important;
    border-radius: 100%;
    margin: 4px;
    background: #F8EDED !important;
    border: 1px solid var(--sky) !important;
    width: 12px;
    height: 12px;
    position: relative;
}

.owl-dots button span {
    width: 5px;
    height: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    overflow: hidden;
    background-color: #F8EDED;
    display: block;
}

.owl-dots button.active span {
    background-color: var(--sky);
}

.wpcf7-not-valid-tip+.wpcf7-not-valid-tip {
    display: none !important;
}

.top-ser-txt ul {
    margin-bottom: 0;
    color: #0081c4;
    font-size: 16px;
}

.top-ser-txt ul li {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: normal;
    color: #0081c4;
}

.top-ser-txt ul li:last-child {
    margin-bottom: 0;
}

.top-ser-txt {
    padding: 10px;
    background: #f6fcff;
    display: table;
    margin-bottom: 10px;
    border-left: 4px solid #d9f3ff;
}

.hours li {
    width: 100% !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    font-size: 12px !important;
    line-height: 19px !important;
    font-weight: 600 !important;
}

.hours li .fa {
    font-size: 18px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-right: 8px;
}

/* gallery */

.gallery-page .form-row {
    grid-row-gap: 10px;
}

.gal-box {
    position: relative;
    padding-top: 72%;
    width: 100%;
    display: block;
    overflow: hidden;
}

.gal-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.gal-box::before {
    content: "\f00e";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 100%;
    background: rgb(0 0 0 / 60%);
    color: #fff;
    z-index: 1;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    opacity: 0;
}

.gal-box:hover img {
    transform: scale(1.3);
}

.gal-box:hover::before,
.gbox:hover::before {
    opacity: 1;
}

.page-id-228 .laundry {
    display: none;
}

@media (min-width: 992px) {
    .laundry_image {
        flex: 0 0 auto;
        width: 48% !important;
    }
}

/* 1170 */
@media screen and (max-width:1199px) {
    .innerBannerWrap h1 {
        margin-bottom: 0;
    }

    .banner-text h1 {
        font-size: 39px;
        line-height: 45px;
        padding-bottom: 0;
        margin-bottom: 10px;
    }

    .navbar-text .btn {
        padding: 0 12px;
    }

    .navbar-text .hcall {
        margin-right: 10px;
    }

    .main-header .container {
        max-width: 1050px;
    }

    #ht-ctc-chat {
        top: 40% !important;
        right: 5px !important;
    }
}

/* 992 */
@media screen and (max-width:1199px) {
    .why-us-icon::after {
        width: 300px;
    }

    .contact-info {
        padding: 20px 20px;
    }

    .contact-info li {
        flex: 1;
    }

    .contact-info li {
        padding-left: 40px;
    }

    .copy-right {
        padding: 15px 0;
        line-height: normal;
    }

    .navbar-text .btn {
        position: fixed;
        right: -37px;
        top: 40%;
        z-index: 9;
        transform: rotate(-90deg);
        border-radius: 20px 20px 0 0;
        height: 30px;
        line-height: 27px !important;
    }
}

/* 768 */
@media screen and (max-width:991px) {
    .navbar-collapse {
        position: absolute;
        top: 67px;
        right: 0;
        z-index: 99;
        background-color: #13204b;
        width: 300px;
    }

    .navbar-collapse ul ul {
        display: none;
    }

    .navbar-collapse ul {
        padding: 10px;
    }

    .navbar-collapse ul li {
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar-collapse ul li a {
        padding: 8px 5px !important;
        display: block;
        color: #fff !important;
    }

    .navbar-collapse ul li.menu-item-has-children .fa {
        font-size: 13px;
        top: 0;
        width: 30px;
        height: 34px;
        text-align: center;
        line-height: 34px;
        right: 0;
        pointer-events: all;
        position: absolute;
        right: 0;
        color: #fff;
        z-index: 9;
    }

    .navbar-collapse ul li.menu-item-has-children a {
        padding-right: 20px !important;
    }

    .navbar-collapse ul li.menu-item-has-children.menuarrow .fa {
        transform: rotate(180deg);
    }

    .navbar-toggler {
        height: 40px;
        padding: 0 !important;
        margin-left: 20px;
        background-color: var(--sky);
        color: #fff;
        width: 40px;
        border-radius: 100%;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler[aria-expanded="true"] i::before {
        content: "\f00d";
    }

    .navbar-text {
        margin-left: auto;
    }

    h1,
    h2,
    .heading {
        font-size: 24px;
        line-height: 29px;
    }

    .sec-space,
    .fmiddle {
        padding: 40px 0;
    }

    .header-btn {
        margin-left: auto;
    }

    .banner-text h1 {
        font-size: 30px;
        line-height: normal;
        padding-bottom: 0;
    }

    .banner-text p {
        margin-top: 10px;
    }

    .banner-text .btn {
        margin-top: 10px;
    }

    .single-pic {
        max-width: 320px;
    }

    .main-header {
        padding: 10px 0;
    }

    .why-us-icon::after {
        display: none;
    }

    .why-us-icon {
        margin-bottom: 15px;
    }

    .why-us-reasons .row {
        grid-row-gap: 30px;
    }

    .repeate-section:not(:last-child) {
        margin-bottom: 40px;
    }

    .why-us {
        background-size: cover;
    }

    .img-col {
        position: static;
    }

    .text-col {
        padding: 15px 0 0;
        order: 2;
    }

    .testimonial-head {
        position: static;
        transform: none;
    }

    .testimonial-left {
        height: auto;
        margin-bottom: 25px;
    }

    .contact-info li {
        flex: auto;
        width: 100%;
    }

    .contact-info li+li {
        margin-top: 14px;
    }

    .contact-box {
        border: 2px solid #f1eeee;
    }
}

/* 576 */
@media screen and (max-width:767px) {
    .homebanner .owl-carousel .owl-dots {
        display: none;
    }

    .banner-text {
        top: 50%;
    }

    .banner-text h1 {
        font-size: 20px;
        line-height: normal;
        margin-bottom: 0;
    }

    .repeat-content h2 span {
        width: auto !important;
    }

    .img-col.laundry_image {
        position: relative !important;
        left: 0 !important;
    }

    .homebanner {
        height: 300px !important;
    }

    .homebanner .bannerbox {
        height: 100% !important;
    }

    .homebanner .bannerbox .item {
        height: 100% !important;
    }

    .homebanner .bannerbox .item .bannerbox {
        height: 100% !important;
    }

    .homebanner .bannerbox .item .bannerbox .bannerimg-col {
        height: 100% !important;
    }

    .homebanner .bannerbox .item .bannerbox .bannerimg-col figure {
        height: 100% !important;
    }

    .sec-space {
        padding: 30px 0 !important;
    }

    .btn {
        font-size: 12px;
        height: 38px;
        line-height: 36px;
    }

    .innerBannerImg {
        height: 170px;
    }

    .wpcf7-form-control-wrap input.f12c {
        width: 100%;
    }

    .single-pic {
        max-width: 100%;
        width: 100%;
        margin-bottom: 45px;
    }

    .bannertextwrap {
        max-width: 300px;
        font-size: 13px;
        line-height: 18px;
    }

    .banner-text .btn {
        margin-top: 12px !important;
    }

    .repeat-content ul li+li {
        margin-top: 5px;
    }

    .quick-link-box ul li {
        margin: 4px 20px;
    }

    .footer-main .flogo {
        padding-top: 30px;
    }

    .quick-link-box {
        padding: 20px 0;
    }

    .copy-right {
        line-height: normal;
        margin-top: 30px;
    }

    .ft-social ul li a {
        font-size: 14px;
        height: 32px;
        line-height: 32px;
        width: 32px;
    }

    .map iframe {
        height: 300px;
    }

    .laundry-call {
        padding: 25px 0 !important;
    }

    .laundry-call h4 {
        font-size: 20px !important;
        line-height: 30px !important;
        padding-right: 15px !important;
    }

    .laundry-call .btn {
        height: 52px !important;
        line-height: 52px !important;
        padding: 0 22px !important;
        font-size: 17px !important;
    }

    .contact-information {
        margin-top: -30px;
    }

    .card:last-child {
        margin-bottom: 0;
    }

    .main-header .navbar {
        justify-content: center !important;
    }

    .navbar-text {
        margin-left: 0;
    }

    .navbar-brand {
        width: 100%;
        text-align: center;
    }

    .navbar-collapse {
        top: calc(100% + 10px);
        width: 100%;
    }

    #ht-ctc-chat {
        width: 30px !important;
        top: auto !important;
        bottom: 140px !important;
    }

    .go-top {
        width: 30px;
        height: 30px;
    }

    .go-top::after {
        width: 25px;
        height: 25px;
    }
}

/* 480 */
@media screen and (max-width:575px) {
    .banner-text p {
        font-size: 12px;
        line-height: 18px;
    }

    .navbar-toggler {
        margin-left: 15px;
    }

    .btn {
        padding: 0 15px;
    }

    /* .banner-text{position: static; transform: none; padding: 20px 0 30px; background: var(--color-main);} */
    .wpcf7-form-control-wrap input.f12c {
        width: auto;
        margin-right: 5px;
        flex: 1;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form {
        margin-top: 40px;
    }

    .owl-dots {
        margin-top: 15px;
    }

    .navbar-text .call {
        margin-right: 15px;
        width: 100%;
        height: 100%;
    }

    .navbar-text .btn {
        padding: 0 12px;
    }

    .navbar-brand img {
        max-height: 48px;
    }

    .contact-form h2 {
        font-size: 23px;
    }

    .contact-box {
        font-size: 17px;
    }

    .hours li {
        width: 100%;
        border: none !important;
        justify-content: center;
    }

    .navbar-brand {
        width: 100%;
        margin: 0;
    }
}

/* 360 */
@media screen and (max-width:479px) {

    h1,
    h2,
    .heading {
        font-size: 20px;
        line-height: 24px;
    }

    .navbar-toggler {
        height: 35px;
        width: 35px;
        margin-left: 10px;
    }

    .btn-center,
    .btn-left,
    .btn-right {
        margin-top: 20px;
    }

    .innerBannerImg {
        height: 140px;
    }

    .form-control {
        height: 44px;
    }

    .laundry-call .d-flex {
        flex-wrap: wrap;
    }

    .laundry-call h4 {
        font-size: 20px;
        line-height: 30px;
        padding-right: 0;
        text-align: center;
        margin-bottom: 10px !important;
    }

    .navbar-text h6,
    .navbar-text p {
        display: none;
    }

    .navbar-text ul {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-text .call {
        position: relative;
        z-index: 1;
        padding-left: 0;
        margin-right: 10px;
    }

    .hcall {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }

    .time {
        width: auto !important;
        height: auto !important;
    }

    .navbar-brand {
        padding: 0px;
    }

    .bannerimg {
        padding-top: 38%;
    }

    .why-us-reasons h5 {
        font-size: 16px;
        line-height: normal;
    }

    .reason {
        line-height: 19px;
        font-size: 12px;
        font-weight: 300;
    }

    .testimonial-wrapper {
        padding: 60px 20px 15px;
    }

    .laundry-call .btn {
        height: 42px;
        line-height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }

    .quick-link-box ul li {
        margin: 0 13px;
    }

    .quick-link-box ul li a {
        font-size: 12px;
    }

    .contact-box span {
        margin-bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* 320 */
@media screen and (max-width:359px) {
    .hours li {
        font-size: 11px;
    }
}