
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    background: #393a3a;
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c2c9d2;
    
  }
  
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.5;
    /* font-weight: 300; */
    font-family: "Nunito", sans-serif;
    background-color: #fff7f9;
    font-size: 22px;
    color: #393a3a;
    width: 100%;
  }


  a {
    color: #ba6081;
    text-decoration: none;
  }
  a:hover{
    color: #b84b73;
  }

  p{
    text-align: justify;
    line-height: 2.5rem;
    padding-top: 30px;

  }


h1{
    color: #ba6081;
    font-weight: 900;
    font-size: 43px;
    padding: 10px 0;

}


.color_pink{
    color: #ba6081;
}
.color_dark{
    color:#00234B
}

.landing_page{
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 1% auto;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);
    border-radius: 10px;
}
.header{
    padding: 10px 0 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header img{
    width: 100%;
    max-width: 180px;
    position: relative;
}



.hero{
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
 margin-top: -13px;
}
.line-seperator{
    margin-bottom: 0;
}

.hero > .column{
padding: 0px 30px;
}
.hero > .column:first-of-type{
    position: relative;
}
.circle{
    position: absolute;
    content: "";
    background-color: #fff7f9;
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.circle2{
    position: absolute;
    content: "";
    background-color: #ba6081;
    background:linear-gradient(45deg,#ba6081,#fff);
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: 20px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
    animation: spin 10s linear infinite;
}

.hero > .column:nth-of-type(2){
    padding: 0px 50px;
}
.hero .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.border-top{
    border-top: 1px solid #e9e7e7;
}
.hero h2{
    font-weight: 700;
    font-size: 30px; 
    padding: 10px 0;
    color: #77777b;
}
.hero img{
    border-radius: 30px;
    border: 5px solid #fff;
    transform: rotate(3deg);
}
.content{
    margin-top: -20px;
    padding: 0px 90px 20px 90px;
}
.booking{
    padding: 20px 90px;
}

.button{
    padding: 10px 20px;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    background-color: #ba6081;
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease-in;
    text-align: center;
    margin-right: 10px;

    outline: none;
    border: none;
    cursor: pointer;
}
.button:hover{
    background-color: #d46890;
    color: #fff;
    transform: translateY(-2px);
}
.button i{
    margin-right: 7px;
}



.booking{
    display: flex;
    align-items: stretch;
}
.card {
  width: 50%; 
  border: 1px solid #eee;
  border-radius: 10px;
  margin-right: 10px;
  padding: 0 0 30px 0;
  overflow: hidden;
}
.card h3{
    border-bottom: 1px solid #eee;
    color: #ba6081;
     padding: 30px;
     font-size: 24px;
}

.card_header{
   
    padding: 0px 0px 20px 0px;
}
.card_footer{
    padding: 15px 30px;
}

ul{
    list-style-position: inside; 
  list-style-type:disc;
  padding: 5px 30px;
 }
 ul li{

     padding-left: 10px;
 }


.frmlead{
    width: 50%;
    border: 1px solid #eee;
    padding: 0 0 30px 0;
    border-radius: 10px;
    overflow: hidden;
}
.frmlead h3{
    background-color: #fff7f9;
    background: linear-gradient(90deg,#fff,#fff7f9);
    border-bottom: 1px solid #eee;
    color: #ba6081;
     padding: 30px;
     font-size: 18px;
}
.form-input,.form-control{
    padding: 5px 30px;

}
.form-input label{
    display: block;
    font-size: 1.2rem;
    display: none;
}
.form-input input,.form-input select{
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    outline: none;
    border: 1px dashed #ba6081;
    font-size: 16px;
}
.form-input input:hover,.form-input select:hover,.form-input input::selection,.form-input input:focus{
    border: 1px solid #ba6081;
    cursor: pointer;
}
.spacer-10{
    display: block;
    height: 10px;
}
.margin-left-10{
    margin-left: 10px;
}

@media screen and (max-width:1080px) {
    body {
        font-size: 20px;
    }
    .landing_page{
        width: 100%;
        max-width: unset;
        margin: 0 auto;
    }
    .header{
        padding: 10px 0 30px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
  

    .hero{
        display: flex;
        align-items: center;
        background-color: #f7f7f7;
        padding: 0px 0px 20px 0;
        flex-direction: column;
     
    }

    .hero > .column:first-of-type{
        padding: 0px;
    }
    .hero img{
        width: 100vw;
        max-width: 100%;
        border-radius: 0px;
        border: none;
    }

    .hero > .column:nth-of-type(2){
        margin-top: 30px;
    }
  
    .content{
        padding: 0px 30px 20px 30px;
    }
    .booking{
        padding: 20px 30px;
    }

    .booking{
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }
    .booking .card, .booking .frmlead{
        width: 100%;
    }
    .booking .frmlead{
        margin-top: 20px;
    }
}

@media screen and (max-width:550px) {
    h1{
        font-size: 35px;
    }
    .hero h2{
        font-weight: 700;
        font-size: 25px; 
        padding: 10px 0;
        color: #77777b;
    }
    .hero > .column:last-of-type{
        padding: 10px 20px;
        text-align: center;
    }
    .hero > .column:nth-of-type(2) .row{
        display: block;
        padding: 10px 0;
    }
    .hero > .column:nth-of-type(2) .row .button{
        width: 100%;
        margin-top: 10px;
    }
}

/* footer{
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
    background-color: #ba6081;
}
footer p{
    display: block;
    text-align: center;
    color: #fff;
} */
