@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}


:root {
    --blue: #046BFB;
    --orange: #EF6239;
    --gray: #525252;
    --light-gray: #636363;
    --white: #fff;
    --black: #000;
    --light-blue: #EFF6FF;
    --light-white: #FAFBFE;
}

body {
   
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-white);
    scroll-behavior: smooth;

}

html {
    font-family: 'Poppins', sans-serif;
    font-size: 62.5%;
    /* scroll-behavior: smooth; */
}

@media only screen and (max-width: 998px) {
    html {
        font-size: 55%;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 45%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    /* letter-spacing: 0.3px; */
}

h1,
.h1 {
    font-size: 4.5rem;
}

h2,
.h2 {
    font-size: 4rem;
}

h3,
.h3 {
    font-size: 3.5rem;
}

h4,
.h4 {
    font-size: 3rem;
}

h5,
.h5 {
    font-size: 2.5rem;
}

h6,
.h6 {
    font-size: 2rem;
}

p {
    font-size: 2rem;
}

/* --------------------------scroll top-------------------------  */
.scroll-top {
    bottom: 22px;
    cursor: pointer;
    height: 50px;
    position: fixed;
    right: 22px;
    text-align: center;
    width: 50px;
    z-index: 9999;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-radius: 30%;
    background-color: var(--orange);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5)
}

.scroll-top i {
    line-height: 50px;
    color: #fff;
    font-size: 25px;
}

.scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}

.scroll-top:hover {
    background-color: var(--blue);
}

.btn-blue-small,
.btn-blue-medium {
    background-color: var(--blue);
    font-size: 14px;
    color: var(--white);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-blue-medium {
    font-size: 16px;
}

.btn-blue-small:hover,
.btn-blue-medium:hover {
    background-color: var(--orange);
    color: var(--white);
}

.slick-dots li button:before {
    height: 10px;
    width: 10px;
    background-color: var(--gray);
    border-radius: 100px;
}

.slick-dots li.slick-active button:before {
    background-color: var(--blue);
}

section{
    padding : 50px 20px
}

/* Header */

.navbar .img-logo{
    height: 35px;
    
}
.navbar{
    background-color: var(--light-blue);
}
.navbar li{
    font-size: 18px;
    margin: auto;
    padding-right: 20px;
}
.navbar a{
    color: var(--blue);
    font-weight: 600;
}
.navbar a:hover{
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
}

.navbar .btn{
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 25px;
}
.navbar .btn:hover{
    background-color: var(--orange);
    color: var(--white);
}
.navbar-toggler{
    font-size: 20px;
    background-color: #efefef;
    border-color: var(--light-gray);
}
/* end header */


/* hero section */
.rentalspool-hero {
    background-color: var(--blue);
    padding: 100px 0;
    position: relative;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 115px;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

.rentalspool-hero .hero-tag {
    background-color: var(--white);
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 100px;
    position: relative;
}

.rentalspool-hero .hero-tag::after {
    content: "";
    background-image: url(../images/tag-bg.png);
    height: 50px;
    width: 50px;
    position: absolute;
    top: -29px;
    z-index: 0;
    right: 0;
    background-position: center;
    background-size: contain;
}

.rentalspool-hero .hero-tag {
    background-color: var(--white);
    width: fit-content;
    display: flex;
    padding: 10px 12px;
    border-radius: 100px;

}

.rentalspool-hero .hero-tag p.tag-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
    line-height: normal;
}

.rentalspool-hero .hero-tag-icon {
    background-color: var(--orange);
    padding: 4px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.rentalspool-hero .hero-tag-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.rentalspool-hero .hero-text h1 {
    color: var(--light-blue);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 30px 0 0 0;
}

.rentalspool-hero .hero-text p {
    color: var(--light-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.download-app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-rotating{
    color: #e97653;
}

/* end hero section */

/* About Section  */

.about-rentalspool{
    position: relative;
  }
  .about-rentalspool ul {
      list-style-type: none;
      padding-left: 20px;
    }
    
   .about-rentalspool li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      font-size: 18px;
    }
    
   .about-rentalspool li:before {
      position: absolute;
      top: 0;
      left: 0;
      font-family: FontAwesome;
      content: "\f00c";
      color: var(--blue);
    }
   

.about-rentalspool {
background-color: #FFF;}

.rentalspool-title {
    color: var(--blue);
    /* font-size: 4.4rem; */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-rentalspool-details p {
    color: var(--light-gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* End About Section  */


/* Why Choose RentalsPool  */
.title-rentalspool-box h2 {
    color: var(--blue);
    text-align: center;
    /* font-size: 32px; */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title-rentalspool-box p {
    color: var(--gray);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    max-width: 840px;
    margin: 0 auto;
}

.title-rentalspool-box .sub-text {
    color: var(--orange);
    font-size: 20px;
}

.why-choose-rentalspool {
    /* padding: 100px 0; */
    background-color: var(--light-blue);
    background-image: url(../images/why-choose-rentalspool.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-choose-rentalspool .row.why-choose-card-list {
    justify-content: center;
}

.why-choose-rentalspool .why-choose-card {
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    min-height: 331px;
    margin-bottom: 25px;

}

.why-choose-icon svg * {
    transition: all 0.3s ease;
}

.why-choose-rentalspool .why-choose-card:hover .why-choose-icon svg * {
    fill: var(--orange);
}
.why-choose-rentalspool .why-choose-card:hover{
    background-color: #fcf3f1;
}


.why-choose-rentalspool .why-choose-icon {
    fill: var(--white);
    width: 84px;
    height: 84px;
    border-radius: 100px;
    background: var(--white);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.why-choose-rentalspool .why-choose-card h5,.how-it-works-card h5{
    color: var(--blue);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: normal;
    transition: all 0.3s;
}

.why-choose-rentalspool .why-choose-card:hover h5 {
    color: var(--orange);
}

.why-choose-rentalspool .why-choose-card p,.how-it-works-card p {
    color: var(--gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 137.5% */

}

/* End Why Choose RentalsPool  */


/* RentalPool’s Features  */
.rentalpool-features {
    position: relative;
    background-image: url(../images/rentalpool-features-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.rentalpool-features-card {
    margin-bottom: 40px;
    cursor: pointer;
    display: flex;
}

.features-card-details h5 {
    color: var(--blue);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.rentalpool-features-card:hover .features-card-details h5 {
    color: var(--orange);
}


.rentalpool-features .features-card-details p {
    color: var(--gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.rentalpool-features-card-list.left-features-card-list .rentalpool-features-card {
    text-align: right;
}


.features-card-icons {
    min-width: 74px;
    width: 74px;
    height: 74px;
    background-color: var(--blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.rentalpool-features-card:hover .features-card-icons {
    background-color: var(--orange);
}

.rentalpool-features-card-list.left-features-card-list .rentalpool-features-card .features-card-icons {
    margin-left: 20px;
}

.rentalpool-features-card-list.right-features-card-list .rentalpool-features-card .features-card-icons {
    margin-right: 20px;
}

/* End RentalPool’s Features  */



/* How it works */
.how-it-works {
    /* padding: 100px 0; */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    height: 150px;
    width: 150px;
    background-color: var(--blue);
    position: absolute;
    top: 25px;
    border-radius: 100px;
    left: -100px;
}

.how-it-works::after {
    content: "";
    height: 150px;
    width: 150px;
    background-color: var(--blue);
    position: absolute;
    right: -100px;
    bottom: 25px;
    border-radius: 100px;
    opacity: 0.1;
}

.how-it-works-card {
    border-radius: 20px;
    background: var(--light-blue);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 55px 15px 15px 15px;
    text-align: center;
    position: relative;
    min-height: 288px;
    margin-bottom: 15px;
    cursor: pointer;
}

.how-it-works-card .how-it-works-card-icon svg * {
    transition: all 0.3s;
}

.how-it-works-card:hover .how-it-works-card-icon svg * {
    fill: var(--orange);
}

.how-it-works-card:hover:hover h5 {
    color: var(--orange);
}

.how-it-works-card-icon {
    width: 80px;
    height: 80px;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .how-it-works-card h3 {
    color: #046BFB;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.how-it-works-card p {
    color: #525252;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
} */

.form-check.form-switch.how-it-works-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 60px 0;
}

.form-check.form-switch.how-it-works-switch p {
    margin: 0;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form-check.form-switch.how-it-works-switch p.renters {
    color: var(--orange);
}

.form-check.form-switch.how-it-works-switch p.owners {
    color: var(--blue);
}

.form-check.form-switch.how-it-works-switch input {
    margin: 0 15px;
    font-size: 25px;
}

/* End How it works */


/* A Visual Tour */

.visual-tour{
    background-color: var(--light-blue);
}

.visual-tour-slider .slider-box {
    scale: 0.7;
    transition: all 0.5s;
}

.slider-box.slick-slide.slick-current.slick-active.slick-center {
    scale: 1;
}

.visual-tour-slider .slider-box img {
    margin: 0 auto;
    /* width: 60%; */
}

/* End A Visual Tour  */

/* what-client-says */
.what-client-says {
    /* padding: 100px 0; */
    background-image: url(../images/review-bg.png);
    background-color: var(--white);
}

.client-review-list .client-review-box {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin: 10px 12px;
}

.client-review-list .client-details-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.client-review-list .client-details p {
    margin: 0;
}

.client-review-list .client-details h6 {
    margin: 0;
    color: var(--blue);
}

.client-position {
    color: #525252;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.client-rating i {
    color: #FFA033;
}

.review-details p{
color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* End what-client-says */


/* download-app */

/* .download-app-wrp {
    align-items: center;
} */
.download-app-text{
    margin-top: 50px;
}
.download-app-image {
    text-align: center;
}

.download-app h6 {
    color: #046BFB;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    /* 104.167% */
}

.download-app p {
    color: #525252;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
}

/* End download-app */

/* contact-us */
.contact-us {
    /* padding: 100px 0; */
    background-color: var(--white);
    /* background-image: url(../images/contact-bg.png); */
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}
label{
    font-size: 18px;
}
.form-control{
    font-size: 20px;
}

.inquiry-box {
    margin: 15px 0;
}

.inquiry-type {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.inquiry-type input{
    font-size: 18px;
}

.inquiry-box p {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-us .btn{
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 25px;
    margin-top: 10px;
}
.contact-us .btn:hover{
    background-color: var(--orange);
    color: var(--white);
}

/* end contact-us */


/* footer */
.footer{
    background-color: var(--light-blue);
    padding: 50px 20ox;
}

.footer .img-logo{
    /* height: 100px; */
   width: 40%;
}

.footer a{
    text-decoration: none;
}

.footer  ul{
    list-style-type: none;
     }
     
     .footer  li {
       position: relative;
       padding-left: 3rem;
       margin-bottom: .5rem;
       font-size: 18px;
       color: var(--black);
      
       text-align: start;
     }
     .footer  li:hover{
       color: var(--orange);
       text-decoration: underline;
       font-weight: bold;
     }
   
     
     .footer  li:before {
       position: absolute;
       top: 0;
       left: 0;
       font-family: FontAwesome;
       content: "\f105";
       color: var(--black);
     }
   
     .footer  i{
       color: #fff;
       width: 50px;
       height: 50px;
       background-color: var(--blue);
       border-radius: 22%;
       padding: 1rem;
       padding-left: 1.2rem;
       font-size: 30px;
   }
   .footer  i:hover{
       color: #fff;
       background-color: var(--orange);
       
   }
   .footer-col{
    margin: 20px 0px;
}

.footer h5{
    font-size: 25px;
    color: var(--blue);
}
.download-img-div{
    /* margin: 18px; */
    display: flex;
align-items: center;
gap: 10px;
justify-content: center;
}
/* end footer */


@media (max-width: 991px) {
    .rentalspool-header .navbar #rentalspoolHeaderWrp ul {
        text-align: left;
    }

    .rentalspool-header .navbar #rentalspoolHeaderWrp ul li {
        text-align: center;
        width: 100%;
    }

    .rentalspool-header .navbar #rentalspoolHeaderWrp ul li a {
        margin: 12px 0;
    }

    .rentalpool-features-mobile-image {
        display: none;
    }

    .left-features-card-list .rentalpool-features-card{
        flex-direction: row-reverse;
        text-align: left !important;
        
    }
    .rentalpool-features-card{
        margin-bottom: 25px !important;
    }

    .left-features-card-list .rentalpool-features-card .features-card-icons{
        margin-left: 0px !important;
        margin-right: 20px !important;
    }

    .rentalpool-features-card {
        min-height: 120px;
        margin-bottom: 40px;
    }

   

    .how-it-works::before,
    .how-it-works::after {
        height: 150px;
        width: 150px;
    }

    .how-it-works-card {
        margin-bottom: 55px;
        /* min-height: auto; */
    }

    .download-app {
        text-align: center;
    }

    .download-app .download-app-btn {
        justify-content: center;
    }

    .rentalspool-header .navbar #rentalspoolHeaderWrp ul li .header-btn {
        margin-left: 0;
    }

    .why-choose-rentalspool .why-choose-card {
        min-height: auto;
    }
    .footer{
        text-align: center;
    }
    .footer .footer-list{
        display: flex;
        flex-direction: column;
        align-items: center;
    
    }
    /* .footer-col{
        margin: 20px 0px;
    } */
    .download-img-div{
        margin: 18px;
        display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    }
    .footer-col-logo{
        margin-top: 0px;
    }
    .footer h5{
        font-size: 25px;
    }

}

@media (max-width: 767px) {
    .rentalspool-hero {
        padding: 70px 30px;
    }

    .waveWrapper {
        display: none;
    }

    .hero-image {
        text-align: center;
        margin-top: 50px;
    }

    .how-it-works::before {
        top: -31px;
        left: -37px;
    }

    .how-it-works::after {
        bottom: -30px;
        right: -35px;
    }

    .how-it-works::before,
    .how-it-works::after {
        height: 80px;
        width: 80px;
    }

    /* .footer{
        text-align: center;
    }
    .footer .footer-list{
        display: flex;
        flex-direction: column;
        align-items: center;
    } */
}

@media (max-width: 575px) {
    .rentalspool-hero {
        padding: 70px 30px;
    }

    .rentalspool-hero .hero-text h1 {
        font-size: 34px;
    }

    .rentalspool-hero .hero-text p {
        font-size: 20px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .rentalspool-title {
        /* font-size: 3.2rem; */
        text-align: center;
    }

}