@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Proxima Nova", sans-serif;
    src: url(/assets/Fonts/Demo_Fonts/Fontspring-DEMO-proximanova-bold.otf);
    font-weight: 600;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}
:root{
    
    --Primary-color: #005FD8;
    --grey-scale-212529: #212529;
    --black-white-black: #1A1A1A;
    --grey-scale-6-c-757-d: #6C757D;
    --Gray-Gray-09 :#0F1106;
    --Text:#606A71;
    --grey-scale-f-6-f-7-f-8:#F6F7F8;
    --White-color: #FFF;
    --black-color: #000;
    --Font-inter: "Inter", sans-serif;
    --Font-Urbanist: "Urbanist", sans-serif;
    --Font-Red-Hat-Display: "Red Hat Display", sans-serif;
    --Font-Proxima-Nova: "Proxima Nova", sans-serif;
}
body{
    width: 100%;
    scroll-behavior: smooth;
    background-color: var(--White-color);
}
section{
    width: 100%;
    display: inline-block;
    overflow-x: hidden;
    position: relative;
}

.flex{ display: flex;}
.js{ justify-content: space-between;}
.jc{ justify-content: center;}
.al{ align-items: center;}

a, li, ul{
    list-style: none;
    text-decoration: none;
}
a{
    display: inline-block;
}

button{
    padding: 0px;
    border: none;
    text-decoration: none;
    cursor: pointer;
}
img{
    width: 100%;
    height: auto;
    display: block;
}
.Container{
    width: 100%;
    max-width: 1320px;
    padding: 0px 20px;
    margin: 0 auto;
}

.primary-btn{
    text-shadow: 3.469px 6.937px 20.811px rgba(88, 76, 244, 0.25);
    font-family: var(--Font-Urbanist);
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    border: 1px solid var(--Primary-color);
    letter-spacing: 0.173px;
    padding: 14px 45px;
    border-radius: 100px;
    background-color: var(--Primary-color);
    color: var(--White-color);
    transition: all 200ms;
    transition-timing-function:cubic-bezier(0.39, 0.575, 0.565, 1);
}
.primary-btn:hover{
    background-color: transparent;
    color: var(--Primary-color);
}

#wrapper{
    width: 100%;

}
#header{
    width: 100%;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    padding: 32px 0px;
    z-index: 9;
    transition: all 300ms;
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#header.active{
    background-color: var(--White-color);
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
	padding: 16px 0px;
}
#header.bottom-line{
    border-bottom: 1px solid rgba(33, 37, 41, 0.10);
}
.header-main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 20%;
    max-width: 240px;
}
.header-logo a{
    display: inline-block;
}
.hero-banner{
    width: 100%;
    padding: 140px 0px 40px 0px;
    background: radial-gradient(106.41% 99.51% at 104.76% 133.66%, #6CA7DA 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(79.2% 118.37% at -8.61% 162.88%, #6C94DA 0%, #F7FCFF 100%);
}
.hero-banner-main{
    width: 100%;
}
.h1-heading{
    color: var(--Gray-Gray-09);
    font-family: var(--Font-inter);
    font-size: 40px;
    font-weight: 600;
    line-height: 124%; 
}
.sub-heading{
    color: var(--Text);
    font-family: var(--Font-inter);
    font-size: 18px;
    font-weight: 500;
    line-height: 144%;
    margin-top: 8px;
}
#home-banner{
    width: 100%;
    padding-top: 140px;
    background: radial-gradient(113.49% 70.1% at 100% 100%, #6CA7DA 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, #6C94DA 0%, #F7FCFF 100%);
}
.top-banner-main{
    width: 100%;
    text-align: center;
}
.top-banner-main a.banner-btn{
    padding: 12px 16px;
    border: 1px solid var(--Primary-color);
    border-radius: 100px;
    color: var(--Primary-color);
    text-shadow: 3.469px 6.937px 20.811px rgba(88, 76, 244, 0.25);
    font-family: var(--Font-Urbanist);
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
    transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.top-banner-main a.banner-btn:hover{
    background-color: var(--Primary-color);
    color: var(--White-color);
}
.home-heading{
    color: var(--grey-scale-212529);
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 60px;
    font-weight: 600;
    line-height: 120%;
    margin: 20px 0px;
}
.home-heading span{
    color: var(--Primary-color);
    font-style: italic;
}
.top-banner-main p{
    color: var(--Text);
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 632px;
    margin: 0 auto;
}
.banner-btn-holder{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.banner-btn-holder a{
    max-width: 170px;
    transition: all 200ms ease-in-out;
}
.banner-btn-holder a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.banner-img{
    padding-top: 65px;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}
#how-work{
    width: 100%;
    padding: 100px 0px;
}
.how-work-head{
    width: 100%;
}
.section-heading{
    color: var(--black-white-black);
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 40px;
    font-weight: 600;
    line-height: 115%;
}
.reviews-section-head .section-heading{
	font-family: var(--Font-Red-Hat-Display);
}
.section-heading span{
    color: var(--Primary-color);
}
.section-subheading{
    color: var(--Text);
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}
.time-section-right p{
    color: var(--Text);
    text-align: start;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.how-work-body{
    width: 100%;
    display: flex;
    gap: 16px;
    margin-top: 48px;
}
.how-work-item{
    flex-grow: 1;
    border-radius: 16px;
    background-color: var(--grey-scale-f-6-f-7-f-8);
    padding: 32px 24px;
}
.how-work-number{
    display: flex;
    width: 80px;
    height: 80px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    background-color: var(--Primary-color);
    border-radius: 100px;
    color: var(--White-color);
    font-family: var(--Font-Red-Hat-Display);
    font-size: 42px;
    font-weight: 550;
    line-height: 115%;
}
.how-work-item-heading{
    color: var(--black-white-black);
    font-family: var(--Font-inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 115%;
    margin-top: 24px;
}
.how-work-item-para{
    color: var(--Text);
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding-top: 10px;
}
#busy-owners{
    padding-bottom: 100px;
}
.busy-owners-body{
    margin-top: 48px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.busy-owners-item-holder{
    padding-top: 24px;
    max-width: 342px;
    width: 27%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.busy-owners-item{
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: var(--grey-scale-f-6-f-7-f-8);
}
.busy-owners-item .busy-owner-img{
    width: 56px;
    height: 56px;
    border: 1px solid var(--Primary-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
	
}
.busy-owners-item p{
    color: var(--black-white-black);
    font-family: var(--Font-inter);
    font-size: 20px;
    font-weight: 500;
    line-height: 134%;
    margin-top: 24px;
    max-width: 250px;
}
.busy-owners-center-holder{
    flex-grow: 1;

}
.center-image-main{
    padding: 60px 72px 0px 72px;
    text-align: center;
    border-radius: 24px;
    background-color: var(--Primary-color);
}
.banner-btn-holder.busy-owners-btn{
    margin-top: 48px;
}
#choose-plan{
    padding: 100px 0px;
    background: linear-gradient(180deg, #EAF1FF 0%, #F7FCFF 30.97%);
}
.show-choose-holder{
    display: flex;
    margin-top: 32px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.show-choose-holder:has(.active) .discount-text {
	color:var(--Primary-color);
}
.show-choose-holder:not(:has(.active)) .change-text {
	color:var(--Primary-color);
}
.show-choose-holder .change-text{
    color: var(--grey-scale-212529);
    font-family: var(--Font-Red-Hat-Display);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.show-choose-holder .discount-text{
    color: var(--grey-scale-212529);
    font-family: var(--Font-Red-Hat-Display);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.on-off-btn{
    cursor: pointer;
    padding: 2px;
    background-color: var(--Primary-color);
    border-radius: 20px;
    width: 40px;
    height: 20px;
    position: relative;
    transition: all 200ms ease-in-out;
}
.on-off-btn .button-icon{
    display: inline-block;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background-color: var(--White-color);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 5%;
    transition: all 200ms ease-in-out;
    pointer-events: none;
}

.on-off-btn.active .button-icon{
    left: 55%;
}
.choose-plan-body{
    width: 100%;
    margin-top: 48px;
    display: flex;
    gap: 16px;
	justify-content: center;
}
.choose-plan-item{
    width: 31%;
    max-width: 416px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    border-radius: 16px;
    background: var(--White-color);
    box-shadow: 0 0 60px 6px rgba(5, 31, 43, 0.08);
	transition: all 300ms ease-out;
}
.choose-plan-item-head{
    padding: 24px 24px 14px 24px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, rgba(0, 122, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%);
	position: relative;
}
.choose-plan-heading{
    color: var(--grey-scale-212529);
    font-family: var(--Font-inter);
    font-size: 24px;
    font-weight: 600;
    position: relative;
}
.choose-plan-subheading{
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 12px;
}
.choose-plan-subheading span{
    color: var(--Primary-color);
    font-weight: 600;
}
.choose-plan-item-body{
    padding: 20px 24px 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.choose-plan-b-text{
    color: var(--grey-scale-212529);
    font-family: var(--Font-inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E9ECEF;
}
.includes-main{
    width: 100%;
}
.includes-main>:last-child{
    margin-bottom: 0px;
}
.includes-main li{
    display: flex;
    gap: 8px;
    margin-bottom: 19px;
	align-items: center;
}
.includes-text{
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}
.includes-text.bold{
    color: var(--grey-scale-212529);
}
.buy-btn-main{
    margin-top: 24px;
}
.buy-plan-btn {
    color: var(--Primary-color);
    text-shadow: 3.469px 6.937px 20.811px rgba(88, 76, 244, 0.25);
    font-family: var(--Font-Urbanist);
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.173px;
    padding: 7.5px 14px;
    border-radius: 86px;
    background: rgba(0, 95, 216, 0.12);
    transition: all 200ms 
ease-in;
	width: 48.4%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.buy-btn-main {
    display: flex;
    justify-content: space-between;
} 

.buy-plan-btn:hover {
    box-shadow: 0px 5px 4px -4px lab(0 0 0 / 0.5);
    background: #005FD8;
    color: #FFF;
}
.flex-wrapper{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.choose-plan-item:hover {
    box-shadow: 1px 0px 60px 4px rgba(5, 31, 43, 0.40);
}
.icon-image {
    flex-shrink: 0;
}
#time-section{
    padding: 100px 0px 110px 0px;
}
.time-section-main{
    display: flex;
    align-items: center;
    gap: 48px;
}
.time-section-left{
    width: 50%;
    max-width: 632px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}
.time-section-right{
    width: 50%;
    max-width: 495px;
}
.time-section-right .time-icon{
    max-width: 168px;
}
.section-heading.time-heading{
    margin-top: 24px;
    text-align: start;
}
.section-subheading.time-sub{
    text-align: start;
}
.time-section-btn{
    margin-top: 32px;
}
#reviews-section{
    padding-bottom: 100px;
}
.reviews-section-head{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.reviews-arrow-wrapper{
    display: flex;
    gap: 12px;   
}
.arrow-btn{
    width: 56px;
    height: 56px;
    border-radius: 100px;
    border: 1px solid var(--Primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--White-color);
}
.arrow-btn img{
    width: 16px;
}
.arrow-btn img.rotate{
    transform: rotate(180deg);
}
.review-wrapper{
    width: 100%;
  
    margin: 0 auto;
   
}
.review-wrapper .review-slider{
    cursor: grab;
}
.review-item{
    min-height: 277px;
    border-radius: 20px;
    background: var(--grey-scale-f-6-f-7-f-8);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: default;
}
.review-item .review-item-heading{
    color: var(--grey-scale-212529);
    font-family: var(--Font-Proxima-Nova);
    font-size: 24px;
    line-height: normal;
}
.review-item .review-text{
    color: var(--Text);
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}
.review-item-bottom{
    margin-top: 10px;
}
.review-item-bottom .reviewer-name{
    color: var(--grey-scale-212529);
    font-family: var(--Font-Proxima-Nova);
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 8px;
}
.verify-wrapper{
    display: flex;
    align-items: center;
    gap: 4px;
}
.verify-wrapper p{
    color: var(--Primary-color);
    font-family: var(--Font-Proxima-Nova);
    font-size: 12px;
    line-height: 160%;
    font-weight: 600;
}
.verify-icon{
    width: 16px;
}
#contact-section{
    padding: 80px 0px;
    background-color: var(--White-color);
}
#contact-form{
    padding: 32px;
    border-radius: 16px;
    background: var(--grey-scale-f-6-f-7-f-8);
}
.contact-form-heading{
    color: var(--black-white-black);
    font-family: var(--Font-inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 115%;
}
.contact-field-wrapper{
    margin-top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.field-main-flex{
    display: flex;
    gap: 16px;
}
.field-main-flex .field-wrapper{
    flex-grow: 1;
}
.field-wrapper{
    width: 100%;
}
.field-wrapper label{
    color: var(--grey-scale-212529);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}
/* .field-wrapper label::before{
    content: '*';
    position: absolute;
    top: 0px;
    right: -8px;
    color: var(--Primary-color);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
} */
 span.required {
    color: var(--Primary-color);
}
.field-wrapper input{
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    background: var(--White-color);
    outline: none;
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
}

.field-wrapper input::placeholder{
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
}

input[type="number"] {
    appearance: none !important;
}

.field-wrapper select{
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    background: var(--White-color);
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    outline: 0;
    margin-top: 8px;
}

select::-ms-expand {
   display: none;
}
.field-wrapper textarea{
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    background: var(--White-color);
    color: var(--grey-scale-6-c-757-d);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    outline: 0;
    margin-top: 8px;
    resize: none;
    height: 50px;
    overflow: hidden;
}
.contact-submit-btn{
    text-align: right;
}
.contact-submit-btn button{
    display: inline;
}
.tab {
  display: none;
}
.tab.active {
  display: block;
}
#Privacy-content {
    margin-top: 80px;
}

.small-container {
    width: 100%;
    max-width: 1130px;
    padding: 0px 20px;
    margin: 0px auto;
}

.small-container ul {
    margin-top: 25px;
}

.Privacy-content-main-div {
    margin-bottom: 32px;
}

.Privacy-flex li {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.information-h2 {
    color: #1A1A1A;
    font-family: var(--Font-inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
}

.Privacy-flex li p {
    color: #6C757D;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.Privacy-content-para {
    color: #6C757D;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 24px;
}

#footer {
    padding-top: 100px;
    padding-bottom: 20px;
    background: radial-gradient(106.41% 99.51% at 104.76% 133.66%, #6CA7DA 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(79.2% 118.37% at -8.61% 162.88%, #6C94DA 0%, #F7FCFF 100%);
}

.footer-main {
    width: 100%;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}

.footer-logo {
    max-width: 238px;
}

.footer-heading {
    color: #1A1A1A;
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    margin-top: 45px;
}

.footer-text {
    color: #606A71;
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}

.footer-images-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 80px;
    border-top: 1px solid rgba(33, 37, 41, 0.12);

}

.footer-bottom p {
    color: #212529;
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-bottom-flex {
    color: #212529;
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    gap: 56px;
}
.footer-bottom-flex a {
    color: #212529;
    text-align: center;
    font-family: var(--Font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
	transition: all 200ms linear;
}
.footer-bottom-flex a:hover {
    color: #005FD8;
}
span.wpcf7-not-valid-tip {
    font-family: 'Inter';
    font-size: 12px;
    margin-top: 6px;
    padding-left: 7px;
}

.contact-submit-btn p {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.wpcf7-response-output {
    border: none !important;
    font-family: 'Urbanist';
    margin: 20px 0 0 0 !important;
    padding: 0px !important;
    color: #ff0000c9;
}

.not-found-main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.not-found-main h1 {
    text-align: center;
    font-size: 60px;
    font-family: 'Urbanist';
    line-height: 130%;
}

section#not-found {
    padding-top: 80px;
}
.return-btn {
    text-align: center;
    padding-top: 20px;
}

.popular-tag{
    position: absolute;
    top: 30px;
    right: 0px;
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 24px 0 0 24px;
    background: var(--Primary-color);
}
.popular-tag p{
    color: var(--White-color);
    font-family: var(--Font-inter);
    font-size: 14px;
    font-weight: 600;
    line-height: 128%;
}

.busy-owners-item {
    transition: all 250ms ease-in;
}
.busy-owners-item:hover {
    background: #005FD8;
}
.busy-owners-item p {
    transition: all 250ms ease-in-out;
}
.busy-owners-item:hover p {
    color: #FFF;
}
.busy-owner-img{
    transition: all 250ms ease-in-out;
}
.busy-owners-item:hover .busy-owner-img {
    background: #FFF;
}

.how-work-item {
    transition: all 200ms linear;
}
.how-work-item:hover {
    box-shadow: 0px 0px 30px -7px color(prophoto-rgb 0 0 0 / 0.5);
}
.buy-btn-main button:hover path {
    fill: #fff;
}

.includes-icon {
    width: 24px;
    height: 24px;
	object-fit: scale-down;
}

@media only screen and (min-width: 1920px) {
	.review-wrapper{
	    max-width: 1320px;
        padding:0 20px !Important;
	}
}
@media only screen and (max-width:1280px) {
    .how-work-number {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    .review-wrapper{
        padding-left: 20px;
    }
}

@media only screen and (max-width:991px) {
    .not-found-main h1 {
        font-size: 42px;
    }
    #reviews-section{
        padding-bottom: 80px;
    }
    #choose-plan {
        padding: 80px 0px;
    }
    .header-logo {
        width: 40%;
        max-width: 180px;
    }
    #header {
        padding: 24px 0px;
    }
    .primary-btn {
        padding: 13px 32px;
    }
    .h1-heading, .footer-heading, .section-heading {
        font-size: 32px;
    }
    .sub-heading {
        font-size: 16px;
    }
    .footer-bottom-flex {
        gap: 18px;
    }
    .footer-bottom-flex a, .footer-bottom p {
        font-size: 14px;
    }
    #footer {
        padding-top: 80px;
    }
    .footer-images-flex {
        margin-top: 32px;
    }
    .footer-heading {
        margin-top: 32px;
    }
    #contact-section {
        padding: 60px 0px;
    }
    .contact-field-wrapper {
        margin-top: 28px;
        gap: 28px;
    }
    .home-heading {
        font-size: 50px;
        margin: 18px 0px;
    }
    .banner-btn-holder {
        margin-top: 28px;
    }
    .banner-btn-holder a {
        max-width: 150px;
    }
    .top-banner-main a.banner-btn {
        padding: 11px 15px;
    }
    #how-work {
        padding: 80px 0px;
    }
    .how-work-body, .busy-owners-body, .choose-plan-body {
        margin-top: 40px;
    }
    .how-work-number {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    .how-work-item-heading {
        font-size: 22px;
    }
    .how-work-item-para {
        font-size: 14px;
    }
    .how-work-body {
        gap: 12px;
    }
    .how-work-item {
        padding: 28px 20px;
    }
    .center-image-main {
        padding: 60px 20px 0px 20px;
    }
    .busy-owners-item p {
        font-size: 18px;
        margin-top: 20px;
        max-width: 230px;
    }
    .busy-owners-item .busy-owner-img {
        width: 50px;
        height: 50px;
    }
    .busy-owner-img span {
        width: 27px;
        justify-content: center;
        align-items: center;
    }
    .busy-owners-body {
        gap: 12px;
    }
    #busy-owners {
        padding-bottom: 80px;
    }
    .show-choose-holder {
        margin-top: 24px;
        gap: 8px;
    }
    .choose-plan-heading {
        font-size: 22px;
    }
    #time-section{
        padding: 80px 0px;
    }
    .time-section-main {
        gap: 32px;
    }
    .time-section-btn {
        margin-top: 24px;
    }
    .time-section-right .time-icon {
        max-width: 140px;
    }
    .arrow-btn {
        width: 50px;
        height: 50px;
    }
    .reviews-section-head {
        margin-bottom: 40px;
    }
	    .busy-owners-item-holder {
        padding: 0px;
    }
    .busy-owners-item {
        width: 48%;
        padding: 24px;
        flex-grow: 1;
    }
    .choose-plan-body {
        flex-wrap: wrap;
        justify-content: center;
    }
    .choose-plan-item {
        width: 47%;
        max-width: 416px;
    }
	    .busy-owners-item-holder {
        padding-top: 24px;
        gap: 18px;
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: row;
    }
	.busy-owners-body {
        flex-direction: column;
    }
	.center-image-main img {
		max-width: 420px;
		margin: 0 auto;
	}
}

@media only screen and (max-width:767px) {
    .not-found-main h1 {
        font-size: 36px;
    }
    .reviews-section-head {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        margin-bottom: 28px;
    }
    .reviews-section-head h2 {
        text-align: start;
    }
    .reviews-arrow-wrapper {
        align-self: end;
    }
    #reviews-section{
        padding-bottom: 60px;
    }
    .time-section-main {
        flex-direction: column;
    }
    .time-section-left {
        width: 100%;
        max-width: 100%;
    }
    .time-section-right {
        width: 100%;
        max-width: 100%;
    }
    #time-section{
        padding: 60px 0px;
    }
    .choose-plan-item {
        width: 47%;
        max-width: 416px;
    }
    .choose-plan-body {
        flex-wrap: wrap;
        justify-content: center;
    }
    #choose-plan {
        padding: 60px 0px;
    }
    #busy-owners {
        padding-bottom: 60px;
    }
    .busy-owners-body {
        flex-direction: column;
    }
    .how-work-body {
        flex-wrap: wrap;
    }
    .how-work-item {
        width: 40%;
    }
    .how-work-body, .busy-owners-body, .choose-plan-body {
        margin-top: 32px;
    }
    #how-work {
        padding: 60px 0px;
    }
    .home-heading {
        font-size: 42px;
        margin: 18px 0px;
    }
    .top-banner-main p {
        font-size: 15px;
    }
    .banner-btn-holder a {
        max-width: 140px;
    }
    #contact-form {
        padding: 26px;
    }
    #contact-section {
        padding: 50px 0px;
    }
    .header-logo {
        width: 60%;
        max-width: 160px;
    }
    .h1-heading, .footer-heading, .section-heading {
        font-size: 28px;
    }
    .hero-banner {
        padding: 170px 0px 40px 0px;
    }
    .footer-img-flex a {
        max-width: 150px;
    }
    .footer-bottom {
        margin-top: 60px;
        flex-direction: column;
        gap: 14px;
    }
    .footer-logo {
        max-width: 200px;
    }
    .footer-text {
        font-size: 14px;
    }
    .contact-form-heading {
        font-size: 22px;
    }
    .section-subheading {
        font-size: 15px;
        margin-top: 16px;
    }
    .busy-owners-item-holder {
        padding-top: 24px;
        gap: 18px;
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .busy-owners-item {
        width: 48%;
        padding: 24px;
        flex-grow: 1;
    }
    .center-image-main {
        padding: 50px 70px 0px 70px;
    }
    .banner-btn-holder.busy-owners-btn {
        margin-top: 32px;
    }
    .busy-owners-item-holder{
        padding: 0px;
    }
    .review-item .review-item-heading {
        font-size: 22px;
    }
    .review-item .review-text {
        font-size: 15px;
    }
    .review-item-bottom .reviewer-name {
        font-size: 16px;
    }
    .review-item{
        margin-right: 12px;
    }
    .not-found-main {
        min-height: 50vh;
    }
}

@media only screen and (max-width:480px) {
    .not-found-main h1 {
        font-size: 32px;
    }
    .reviews-section-head {
        margin-bottom: 24px;
    }
    #reviews-section{
        padding-bottom: 50px;
    }
    .time-section-right .time-icon {
        max-width: 110px;
    }

    #time-section{
        padding: 50px 0px;
    }
    .choose-plan-item {
        width: 100%;
        max-width: 100%;
    }
    .show-choose-holder .discount-text, .show-choose-holder .change-text {
        font-size: 12px;
    }
    #choose-plan {
        padding: 50px 0px;
    }
    .center-image-main {
        padding: 40px 20px 0px 20px;
    }
    .how-work-item {
        width: 100%;
    }
    .how-work-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .how-work-body, .busy-owners-body, .choose-plan-body {
        margin-top: 28px;
    }
    #how-work {
        padding: 50px 0px;
    }
    .section-subheading {
        font-size: 14px;
    }
    .home-heading {
        font-size: 28px;
        margin: 16px 0px;
    }
    .banner-btn-holder a {
        max-width: 110px;
    }
	.top-banner-main p {
        font-size: 14px;
    }
    .banner-btn-holder {
        gap: 8px;
    }
    .banner-img {
        padding-top: 40px;
    }
    .contact-form-heading {
        font-size: 18px;
    }
    .contact-field-wrapper {
        margin-top: 24px;
        gap: 24px;
    }
    #contact-form {
        padding: 24px 15px;
    }
    .Container, .small-container {
        padding: 0px 15px;
    }
    #footer {
        padding-top: 60px;
    }
    .footer-bottom {
        margin-top: 50px;
    }
    .h1-heading, .footer-heading, .section-heading {
        font-size: 24px;
    }
    .sub-heading {
        font-size: 15px;
    }
    .header-logo {
        width: 100%;
        max-width: 120px;
    }
    #header {
        padding: 15px 0px;
    }
    .primary-btn {
        padding: 10px 24px;
		font-size: 13px;
    }
    .information-h2 {
        font-size: 22px;
    }

    .footer-heading {
        font-size: 25px;
        margin-top: 25px;
    }

    .footer-text {
        font-size: 15px;
    }

    .footer-images-flex {
        margin-top: 25px;
        flex-wrap: wrap;
    }
    .footer-img-flex a {
        max-width: 120px;
    }
    .footer-logo {
        width: 140px;
    }
    .footer-bottom-flex {
        font-size: 8px;
        gap: 10px;
    }
    .footer-bottom p {
        font-size: 13px;
    }
    .footer-bottom-flex a, .footer-bottom p {
        font-size: 13px;
    }
    #busy-owners {
        padding-bottom: 50px;
    }
    .busy-owners-item p {
        font-size: 16px;
        max-width: 100%;
    }
    .review-item {
        padding: 24px 20px;
    }
    .review-wrapper {
        padding-left: 15px;
    }
    .reviews-section-head {
        gap: 12px;
    }
    .field-main-flex {
        gap: 8px;
    }
	.banner-img img {
		min-height: 320px;
		object-fit: cover;
	}
	section#home-banner .Container {
		padding: 0px;
	}
	.top-banner-main {
		padding: 0px 15px;
	}
	.top-banner-main a.banner-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
	.popular-tag p {
		font-size: 12px;
	}
	.popular-tag span {
		width: 14px;
		top: 20px;
	}
	.popular-tag {
		top: 20px;
	}
	.center-image-main img {
        max-width: 260px;
        margin: 0 auto;
    }
	.includes-text {
		font-size: 14px;
	}
}

@media only screen and (max-width:375px){
	.home-heading{
		font-size: 23px;
	}
}