:root {
    --primary: #4188FF;
    --secondary: black;
    --light-black: #282828;
    --dark-blue: #232F3E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}

.secondary-btn {
    background-color: var(--light-black);
    border-color: var(--light-black);
    padding: 12px 25px;
    border-radius: 10px;
}

.border-white {
    border-color: #fff;
}

.relative {
    position: relative;
}

.roboto {
    font-family: Roboto;
}

.gray {
    color: #4D4D4D;
}

.semi {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}
.semibold{
    font-weight: 700;
}
.f-52 {
    font-size: 52px;
}
.f-46{
    font-size: 46px;
}
.f-34{
    font-size: 34px;
}
.f-32 {
    font-size: 32px;
}

.f-30 {
    font-size: 30px;
}

.f-28 {
    font-size: 28px;
}

.f-24 {
    font-size: 24px;
}

.f-22 {
    font-size: 22px;
}

.f-20 {
    font-size: 20px;
}

.f-21 {
    font-size: 21px;
}

.f-18 {
    font-size: 18px;
}
.f-17{
    font-size: 17px !important;
}
.f-10 {
    font-size: 10px;
}

.container {
    max-width: 1329px !important;
    font-family: "DM Sans", sans-serif;
}

.mid-section {
    padding: 60px 0;
}
.link-text{
    text-decoration: none;
    color: #000;
}
.max-width {
    max-width: 800px;
}

.bg-light-gray {
    background-color: #FDFDFD;
}

.bg-light-blue {
    background-color: #EEF4FF;
}

.bg-header {
    background-color: #ffffff26;
    position: relative;
    z-index: 1;
    padding: 5px 0;
}

.btn, .header-btn select {
    border-radius: 10px !important;
}

.text-dark-blue {
    color: var(--dark-blue);
}

.btn-white {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.work-setps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
}

.hero-section {
    background-image: url("/images/bg-hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: -106px;
    z-index: 0;
    position: relative;
}
.other-pages{
    height: 70vh;
}
.contact-us{
    background-image: url("/images/contact-img.webp");
}
.other-pages .hero-content{
    max-width: 100%;
}
.hero-section::after {
    background-color: #0000001f;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
}

.work-img {
    width: 60px;
}

.hero-content {
    max-width: 843px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.bg-header .navbar a.nav-link {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 0 18px;
}
.bg-header .navbar a.nav-link:hover,
.bg-header .navbar a.nav-link:focus{
    color: var(--primary);
}
.bg-header .navbar a.nav-link.active {
    color: var(--primary);
}
/*header*/
.hero-heading {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 100%;
    color: #fff;
    text-align: center;
}
.navbar-light .navbar-toggler-icon {
   filter: blur(0px) brightness(64.5) invert(14);
}
.navbar-light .navbar-toggler {
    border-color: #ffffff85;
}
.hero-desc {
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

.header-wrapper {
    font-family: Roboto;
    font-weight: 600;
    font-size: 40px;
    line-height: 38.4px;
    text-transform: capitalize;
}

.desc-wrapper {
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.header-logo {
    width: 65px;
}

.header-btn {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px; */

    display: flex;
    justify-content: end;
}
.mob-icon{
    display: none;
}
.header-btn button.btn, .header-btn select {
    padding: 12px 15px;
}
/*footer*/
.footer-section{
    background-color: #F1F8F7;
}
.footer-section .container{
    padding: 0 30px;
}
.f-page-list li{
    border-bottom: 1px dotted #CCCCCC;
    position: relative;
}
.f-page-list li::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    transform: translate(0px, 17px);
    height: 5px;
    content: "";
    border-radius: 50%;
    background-color: #000;
}
.f-page-list li a{
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #000;
}
.f-page-list  li a:hover{
    color: var(--primary);
}
.f-btn-list{
    list-style: none;
    column-gap: 10px;
}
.f-btn-list li>a{
    border-radius: 5px;
}
.f-btn-list li>a img{
    width: 20px;
}
.f-page-list .active a{
    color: var(--primary);
}
/*circle*/
.circle {
    border: 1px solid black;
    padding: 5px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 58px !important;
    height: 58px;
    border-radius: 50%;
    font-size: 27px;
}

/*laundary section*/
.laundary-img {
    width: 82%;
}

.launder-list li {
    font-size: 20px;
    padding: 5px 0;
}
/* .how it work */
.shirt{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mob-work-img{
    width: 70%;
    margin-bottom: 20px;
    border-radius: 15px;
}
/*app section*/
.app-img {
    width: 60%;
}

.app-list {
    list-style: none;
}

.app-list img {
    width: 40px;
}

.app-list li {
    padding: 5px 0;
}

/*know more section*/
.know-more-list li {
    border-top: 1px solid #c9c9c9;
    padding: 15px 0;
}

.know-more-list img {
    width: 55px;
}

.know-more-img {
    width: 75%;
}

/*testmonial card*/
.card-testmonial>.testmonial-body{
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    column-gap: 15px;
    width: 75%;
    margin: 0 auto;
}

.customer-section .carousel-item {
    /* width: 75%; */
    /* margin: 0 auto; */
}

.customer-section .carousel-inner {
    /* display: flex;
    justify-content: center; */
}
.customer-section .carousel-control-prev-icon::after, .customer-section .carousel-control-next-icon::after{
    background-image: none;
    width: 50px;
    height: 50px;
    font-size: 35px;
    border-radius: 50%;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: #ffffff;
    background: #FFFFFF33;
    display: flex;
    align-items: center;
    justify-content: center;

}

.customer-section .carousel-control-prev-icon::after{
    content: "\f104";
}
.customer-section .carousel-control-next-icon::after{
    content: "\f105";
}
.customer-section .carousel-control-prev-icon,
.customer-section .carousel-control-next-icon {
    background-image: none;
}

.customer-section .client-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.customer-section .carousel-indicators {
    bottom: -50px;
}

.customer-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/*cta section*/
.cta-section .container {
    background-color: #F9F9F9;
    border-radius: 20px;
}

.cta-input {
    background: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 53px;
    display: flex;
    box-shadow: 0px 8px 16px 0px #0D0A2C0D;
}
.cta-input>input {
    border: none;
    margin-left: 20px;
    border: none;
    padding-left: 20px;
    flex: 1;
    width: 100%;
}

.cta-input>input:focus {
    border: none;
    outline: none;
}

.cta-input>input:focus-visible {
    border: none;
    outline: none;
}

.cta-input .btn-input {
    background-color: #000;
    border-radius: 29px;
    transform: translateX(-9%);
    color: #fff;
    text-transform: capitalize;
    padding: 10px 25px;
    border-radius: 25px !important;
}

/*faq*/
.search-input {
    /* border: 1px solid red; */
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-top: -33px;
    z-index: 3;
    position: relative;
    background: #fff;
}
.search-input input {
    width: 100%;
    flex: 1;
    border: none;
    padding: 3px 9px;
}
.search-input input:focus,
.search-input input:focus-visible,
.search-input input:active{
    border: none;
    outline: none;
}
.search-faq-img{
    width: 28px;
}
.faq-accordtion .accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
}
.faq-accordtion .accordion-item {
    margin: 10px 0;
    border: 1px solid #D2E3FF;
    border-top: 1px solid #D2E3FF !important;
    border-radius: 24px;
    overflow: hidden;
    height: max-content;
}
.faq-accordtion .accordion-button:focus,
.faq-accordtion .accordion-button:focus-visible{
    outline: none;
    border: none;
    box-shadow: none;
}
.faq-accordtion .accordion-button:not(.collapsed)::after {
    background-image: none;
    border: 1px solid #0C63E4;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "-";
    font-size: 38px;
    font-weight: 300;
}
.faq-accordtion .accordion-button::after{
    background-image: none;
    border: 1px solid #0D0E16;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "+";
    font-size: 38px;
    font-weight: 300;
}
/* contact us  */
.contact-form {
    box-shadow: 0px 0px 23.1px 0px #0000001A;
    padding: 30px 40px;
    border-radius: 10px;
}
.contact-form .form-control {
    border-radius: 10px;
    border: 1.15px solid #828282;
    background: #F9F9F9;
    padding: 11px 14px;
}
.cta-email-icon, .cta-phone-icon{
    width: 28px;
}
.cta-desc{
font-size: 22.3px;
}
.work-day{
    background-color: #EAF2FF;
    display: inline-block;
    padding: 10px 28px;
    font-size: 20px;
    border-radius: 48px;
}
.contact-map iframe{
    border-radius: 20px;
}
/*booking pages*/
.booking-section{
    background-image: url(/images/booking-bg.png);
    min-height: 370px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -106px;
    z-index: 0;
    position: relative;
}
.booking-form-section{
    margin-top: -100px;
    z-index: 0;
    position: relative;
}
.card-wrapper{
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 15px;
}
.booking-form-section .card-wrapper{
    padding: 30px 20px;
}
.booking-form-section .form-control,
.booking-form-section .form-select{
    padding: 10px;
    border: 1px solid #EDEDED;
}
.booking-form button{
 padding: 12px;
}
.booking-status {
    color: #fff;
    border-radius: 15px;
    padding: 30px 25px;
}
.pmt-icon-group{
    list-style: none;
}
.pmt-icon {
    background-color: #252525;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 28.97px 0px #00000033;
}
.pmt-icon img {
    width: 39px;
}
.time-status{
    color: #DDDDDD;
}
.stauts-text {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px 15px;
    color: #0b3c85;
    font-weight: 500;
}
.booking-track{
    position: relative;
    margin: 55px 0px 0 0px;
}
.booking-track::after {
    border-bottom: 1px dashed #fff;
    content: "";
    top: -50%;
    width: 96%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
}
.booking-status ul{
    list-style: none;
    width: 100%;
}
.book-step p i {
    z-index: 1;
    background-color: #0ED551;
    height: 22px;
    width: 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.book-step p{
    /* content: ""; */
    position: absolute;
    top: 0;
    background-color: #77AAFF;
    border-radius: 50px;
    width: 21px;
    z-index: 1;
    height: 21px;
    left: 50%;
    transform: translate(-50%, -100%);
}
.back-btn{
    background-color: #fff;
    border-radius: 50px;
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
}
/* booking-step-2 */
.booking-category, .booking-left{
    background-color: #F8FAFF;
border-radius: 11px;
padding: 26px 18px;
}
.pmt-section-wrapper{
    background-color: #F8FAFF;
    border-radius: 11px;
    padding-bottom: 27px;
}
.booking-category li {
    background-color: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px #00000008;
margin: 25px 0;
}
.booking-category li:last-child{
    margin-bottom: 0;
}
.booking-category li:first-child{
    margin-top: 0;
}
.booking-input{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    /* display: none; */
    opacity: 0;
    z-index: 1;
cursor: pointer;
}
.booking-category li label.label-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid black;
    padding: 5px;
    border-radius: 50px;
}
.booking-category li label.label-text i{
    color: #fff;
}
li .booking-input:checked ~ div label{
    background: var(--primary);
    border-color: var(--primary);
}
li .booking-input:checked ~ div label i{
    color: rgb(255, 255, 255);
}
.booking-bg-icon{
    background-color: #d4e0ec;
    width: 60px;
    height: 60px;
    padding: 11px;
    border-radius: 50px;
    box-shadow: 0px 0px 6.87px 0px #0000001A;
}
.gender-tabs .nav-tabs{
    column-gap: 30px;
}
.gender-list {
    padding: 10px 0;
    margin: 0;
}
.gender-list li{
    box-shadow: 0px 0px 10px 0px #00000017;
    padding: 17px 16px;
    margin: 15px 0;
    border-radius: 8px;
}
.gender-tabs .nav-tabs button {
    padding: 10px 55px;
    background-color: #E9F1FF;
    width: 31%;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
}
.gender-tabs .nav-tabs button.active{
    background-color: var(--primary);
    color: #fff;
}
.qty-btn{
    background-color: var(--primary);
    border-radius: 50px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    border: none;
    height: 26px;
}
.qty-btn i{
    color: #fff;
}
.qty-text{
    width: 30px;
    text-align: center;
}
.confirm-btn {
    width: 60%;
    padding: 15px 17px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}
.pmt-section-wrapper .pmt-details{
    padding: 24px;
    border-bottom: 1px solid #D1D1D1;
}
.pmt-section-wrapper .pmt-details li{
    padding: 8px 0;
}
.content-sub{
    color: #818898;
    font-size: 19px;
}
.total-pmt{
    padding: 0 24px;
}
/*checkout page*/
.booking-left ul li{
    padding: 8px 0;
}
.edit-btn {
    border: 1.18px solid #2B7FFF;
    background-color: #F3F8FF;
    padding: 6px;
    border-radius: 5px;
}
.edit-btn i{
   color: var(--primary);
}
/*signup*/
.auth-form {
    padding: 50px 0;
    margin-right: 50px;
}
.submit-btn{
    padding: 15px 10px;
    margin-top: 15px;
}
.alert-sign, .alert{
    color: #FF2B24;
}
.upload-file-text {
    width: 110px;
    height: 110px;
    background-color: #EAF2FF;
    border: 1px dotted #BDA7BA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.upload-file-text input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-file-icon {
    width: 40px;
}

.label-text {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    color: #000;
margin-bottom: 10px;
}

.auth-form form .form-group {
    margin: 15px 0;
}

.auth-form form input,
.auth-form form select {
    border: 1px solid #EDEDED;
    padding: 10px 15px;
}

.auth-bg-ing{
    background-color: #FFFFFF1F;
    border-radius: 15px;
    width: 70%;
    margin: 0 auto;
    padding: 15px 15px 0 15px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
}
.auth-form{
    max-width: 570px;
    margin: 0 auto;
    width: 100%;
}
.auth-bg {
    background-image: url(/images/auth-bg-img.webp);
    background-position: center;
    /* width: 100%; */
    height: 100vh;
    background-size: cover;
    position: sticky;
    right: 0;
    top: 0;
    bottom: 0;
}
.auth-right{
    z-index: 2;
    position: relative;
}
.eye-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    color: #8391A1;
}
.other-way{
    position: relative;
    text-align: center;
}
.other-way span{
    background-color: #fff;
    z-index: 1;
}
.other-way::after{
    width: 70%;
    height: 1px;
    background-color: #DDDDDD;
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    z-index: 0;
}
.outline-link {
    border: 1px solid black;
    border-radius: 34px;
    padding: 8px 27px;
    cursor: pointer;
    text-decoration: none;
}
/*start*/
.upload-profile{
    width: max-content;
}
.light-gary{
    color: #8790A9;
}
.auth-form form input::placeholder{
    color: #B3BCC5;
}
.f-13{
    font-size: 14px;
}
.pass-view{
    cursor: pointer;
}
.outline-link{
    max-width: 100%;
    width: 200px;
}
/*verify otp*/
.verify-modal{
    background: #00000070;
}
.otp-check-img {
    display: block;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 50%;
    margin: 0 auto;
}
.otp-check-img{
    background-image: linear-gradient(to bottom, #60d8a662, #60d8a662);
    -webkit-animation: spin-one 1s infinite;
    -moz-animation: spin-one 1s infinite;
    -o-animation: spin-one 1s infinite;
    animation: spin-one 1s infinite;
}
.spin-two{
    background-image: linear-gradient(to bottom, #60d8a600, #60d8a600);
    -webkit-animation: spin-two 2s infinite;
    -moz-animation: spin-two 2s infinite;
    -o-animation: spin-two 2s infinite;
    animation: spin-two 2s infinite;
    border-radius: 50%;
}
.verify-modal .modal-body {
    padding: 40px 45px;
}
.verify-modal .desc{
    color: #8391A1;
}
.verify-modal .modal-content{
    border-radius: 25px;
}
/* Yellow Shadow */
  @-webkit-keyframes spin-one {
    0%, 100% {
      -webkit-box-shadow: 0px 0px 0px 4px #18c07a54, inset 0px 0px 10px rgba(255, 255, 255, 0.5);
      box-shadow: 0px 0px 0px 4px #18c07a54, inset 0px 0px 10px rgba(255, 255, 255, 0.5); }
  
    50% {
      -webkit-box-shadow: 0px 0px 0px 0px #18c07a54, inset 0px 0px 0px rgba(255, 255, 255, 0);
      box-shadow: 0px 0px 0px 0px #18c07a54, inset 0px 0px 0px rgba(255, 255, 255, 0); } 
    }
  @keyframes spin-one {
    0%, 100% {
      box-shadow: 0px 0px 0px 5px #18c07a54, inset 0px 0px 10px rgba(255, 255, 255, 0.5); }
  
    50% {
      box-shadow: 0px 0px 0px 0px #18c07a54, inset 0px 0px 0px #ffffff00; } }
      
    @-webkit-keyframes spin-two {
    0%, 100% {
        -webkit-box-shadow: 0px 0px 0px 10px #D1FADF, inset 0px 0px 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0px 0px 0px 10px #D1FADF, inset 0px 0px 10px rgba(255, 255, 255, 0.5); }
    
    50% {
        -webkit-box-shadow: 0px 0px 0px 40px rgba(255, 245, 3, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);
        box-shadow: 0px 0px 0px 10px rgba(255, 245, 3, 0), inset 0px 0px 0px rgba(255, 255, 255, 0); } 
    }
    @keyframes spin-two {
    0%, 100% {
        box-shadow: 0px 0px 0px 10px #D1FADF, inset 0px 0px 10px rgba(255, 255, 255, 0.5); }
    
    50% {
        box-shadow: 0px 0px 0px 10px rgba(255, 245, 3, 0), inset 0px 0px 0px rgba(255, 255, 255, 0); } }
    
        /*login form*/
        .tab-login-step .nav-tabs {
            display: inline-flex;
            border: 1px solid #E5E7EB;
            padding: 5px;
            border-radius: 47px;
        }
        .tab-login-step .nav-tabs button.nav-link{
            border: none;
            border-radius: 40px;
            color: #8391A1;
            padding: 10px 42px;
        }
        .tab-login-step .nav-tabs button.nav-link.active{
            background-color: var(--primary);
            color: #fff;
            border-radius: 25px;
        }
/*end*/
/*sidebar*/.sidebar.active {
    right: 0;
}
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    overflow-y: scroll;
    height: 100%;
    background-color: #33333378;
    transition: right 0.3s;
    z-index: 1000;
    backdrop-filter: blur(16px);
}
.sidebar-content {
    padding: 20px;
    color: white;
}
.sidebar .close-btn.btn {
    border: 1px solid #fff;
    color: #fff;
}
.overlay.active {
    display: block;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000006b;
    display: none;
    z-index: 999;
    /* filter: blur(16px); */
}
.sidebar-logo img{
    width: 50px;
}
.sidebar-content .custom-navbar .nav-item a {
    font-size: 20px;
    padding: 10px 7px;
}
.sidebar-content .custom-navbar .nav-item{
    border-bottom: 1px solid #555555;
}
.sidebar-content .custom-navbar .nav-item:last-child{
    border: none;
}
.sidebar-header-btn{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-top: 15px;
}
.sidebar-header-btn button, .sidebar-header-btn select {
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 15px;
}
/*our price*/
.price-section{
    background-image: url("/images/price-bg-img.webp");
}
.price-list .accordion-item{
    /* border: 1px solid red; */
    border: none;
    margin: 10px 0;
}
.price-list .accordion-item button.accordion-button{
    border: 1px solid #ECECEC;
    box-shadow: 0px 4px 8px 0px #0000000D;
    background-color: unset;
    color: var(--primary);
    font-size: 21px;
    font-weight: 500;
    padding: 19px 26px;
}
.price-list .accordion-button::after{
    background-image: none;
    content: "\2b";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: #666666;
}
.price-list .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: "\f068";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: #666666;
}
.price-list .accordion-item button.accordion-button:focus{
    box-shadow: 0px 4px 8px 0px #0000000D;
    border: 1px solid #ECECEC
}
.price-list-body{
    margin-top: 15px;
    border: 1px solid #F7F7F7
}
.price-list-body tbody{
    /* border: 1px solid red !important; */
    border-top: 1px solid red !important;
}
@media screen and (max-width:1366px) {
    .container{
        max-width: 1236px !important;
    }
    .auth-right {
        width: 408px;
    }
    .auth-form {
        max-width: 495px;
    }
    .f-21{
        font-size: 18px;
    }
    .outline-link img{
        width: 21px;
    }
    .hero-heading{
        font-size: 55px;
    }
    .hero-desc {
        font-size: 25px;
        line-height: 33px;
    }
    .f-60 {
        font-size: 42px;
    }
    .f-52 {
        font-size: 45px;
    }

}
@media screen and (max-width:1296) {
    .hero-heading {
        font-size: 50px;
    }
}
@media screen and (max-width:1080px) {
    .web-text{
        display: none;
    }
    .mob-icon{
        display: block;
    }
    .hero-heading {
        font-size: 50px;
    }
    .f-22{
        font-size: 18px;
    }
    .work-img {
        width: 54px;
    }
    .header-wrapper {
        font-size: 30px;
    }
    .f-52 {
        font-size: 38px;
    }
    .know-more-list img {
        width: 42px;
    }
    .know-more-list p {
        font-size: 13px;
    }
    .f-24 {
        font-size: 20px;
    }
    .f-30 {
        font-size: 25px;
    }
    .customer-section .client-img {
        width: 90px;
        height: 90px;
    }
    .f-46 {
        font-size: 41px;
    }
    .cta-desc {
        font-size: 20.3px;
    }
    .work-day {
        font-size: 17px;
    }
}
@media screen and (max-width:992px) {
    .header-auth-btn{
        display: none;
    }
    .navbar.navbar-expand-lg.navbar-light{
        justify-content: end;
    }
    .faq-accordtion .accordion{
        grid-template-columns: repeat(1, 1fr);
    }
    .mid-section {
        padding: 40px 0;
    }
    
}
@media screen and (max-width:767px) {
    .auth-bg{
        position: relative;
        height: 60vh;
    }
    .auth-bg-ing{
        bottom: 15px;
    }
    .auth-right {
        width: 219px;
    }
    .hero-heading {
        font-size: 35px;
    }
    .hero-desc {
        font-size: 18px;
        line-height: 23px;
    }
    .laundary-img{
        margin: 0 auto;
        margin-bottom: 20px;
        width: 62%;
    }
    .know-more-img {
        width: 50%;
    }
    .app-img {
        width: 43%;
        margin-top: 20px;
    }
    .shirt{
        display: none;
    }
    .contact-form-content{
        max-width: 500px;
        margin: 0 auto;
    }
    .how-it-work{
        z-index: 0;
    }
    .card-testmonial>.testmonial-body{
        padding: 20px;
        width: 100%;
    }
    .customer-section .client-img{
        width: 80px;
        height: 80px;
    }
    .f-34{
        font-size: 26px;
    }
    .booking-track {
        margin: 44px 0px 0 0px;
    }
    .booking-track::after{
        width: 90%;
    }
    .gender-tabs{
        margin-top: 20px;
    }
}
@media screen and (max-width:430px) {
    .hero-heading {
        font-size: 39px;
    }
    .mid-section {
        padding: 30px 0;
    }
    .hero-desc {
        font-size: 18px;
        line-height: 23px;
    }
    .hero-section {
        height: 82vh;
    }
    .other-pages{
        height: 52vh;
    }
    .cta-input .btn-input {
        padding: 5px 21px;
    }
    .work-setps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }
    .app-section h3,
    .app-section p{
        text-align: center;
    }
    .header-wrapper {
        font-size: 27px;
        text-align: center;
    }
    .app-list img {
        width: 34px;
    }
    .f-20 {
        font-size: 15px;
    }
    .f-52 {
        font-size: 32px;
    }
    .app-img{
        margin-top: 27px;
    }
    .f-24 {
        font-size: 13px;
    }
    .f-30 {
        font-size: 18px;
    }
    .card-testmonial {
        padding: 23px;
        column-gap: 10px;
    }
   
    .customer-section{
        padding-bottom: 50px;
    }
    .secondary-btn {
        padding: 8px 21px;
    }
    .footer-section .head-footer{
        font-size: 20px;
        font-weight: 600;
    }
    .footer-section {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
}