
html{
    scroll-behavior: smooth;
}
body{
    box-sizing: border-box;
    margin:0;
    padding:0;
    overflow-x: hidden;
}

header{
    height:150px;
    background-color: rgba(95, 157, 228, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100vw;
}

.logo-container img{
    height:75px;
    padding-left:40px;
    margin-bottom: 37.5px;
}

nav ul{
    display: flex;
    list-style: none;
    margin:0;
    margin-bottom: 10px;
}

nav ul li a{
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    margin-left: 35px;
    margin-right: 35px;
    text-decoration: none;
    color:white;
    font-weight: bold;
    display: inline-block;
    transition-duration: 1s;
}

nav ul li a:hover{
    transform: translateY(-10px);
    transition-duration: 1s;
}

.mob-nav{
    display: none;
}

/*-----------menu-icon------------------*/

#nav-icon2{
    width: 60px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
  }
  
  
  #nav-icon2 span {
    position: absolute;
    height: 9px;
    width: 50%;
    background: white;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
  }
  
  #nav-icon2 span:nth-child(odd) {
    left:0px;
    border-radius: 9px 0 0 9px;
  }
  
  #nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
    top: 0px;
  }
  
  #nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
    top: 18px;
  }
  
  #nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
    top: 36px;
  }
  
  #nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px;
  }
  
  #nav-icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
  }
  
  #nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }
  
  #nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  
  #nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 29px;
  }
  
  #nav-icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 29px;
  }


  
 
  
 /*-----------menu-icon--close------------*/

main{
    width:100vw;
    height:80vh;
    display: flex;
    justify-content: center;
    
}

.to-top{
    position: fixed;
    bottom:30px;
    right:30px;
    border: 5px solid rgba(95, 157, 228, 0.8);
    font-size: 3rem;
    color:rgba(95, 157, 228, 0.8);
    font-weight: bold;
    border-radius: 50%;
    height:50x;
    width:50px;
    display: flex;
    justify-content:center ;
    align-items: center;
}

.to-top a{
    text-decoration: none;
    color:white;
    display: inline-block;
    transform: translateY(5px);
    -webkit-text-stroke: 2px white;
}




.main-container{
    display:flex;
    justify-content: flex-end;
    height:100%;
    width:100%;
    background-image: url(../images/3.png);
    background-size: cover;
    background-repeat: no-repeat;

}



.main-right h1{
    margin:0;
    font-size: 4rem;
    color:white;
    font-family: 'Gothic A1', sans-serif;
    font-weight: 700;

}


.main-right h3{
    font-family: 'Libre Baskerville', serif;
    color:white;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
}




.main-right{
    background-color: rgba(95, 157, 228, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:40%;
}

.main-right h2{
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    color:white;
    font-size: 2rem;
    width:70%;
}

.main-right a{
    text-decoration: none;
}

.main-right span{
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    border:2px solid white;
    padding:10px 30px;
    color:White;
    cursor: pointer;
    transform: color ease;
    transition-duration: 1s;
}

.main-right span:hover{
    font-size: 1.7rem;
    transition-duration: 1s;
}

.seperator{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    flex-wrap: wrap;
    height:150px;
    width:100vw;
    font-size: 4rem;
    color:white;
    background-color: rgba(95, 157, 228, 0.8);

}

.seperator a {
    text-decoration: none;
    color:white;
}

.about{
    background-color: rgb(236, 236, 236);
    height:auto;
    display: flex;
    flex-wrap: wrap;
    width:100vw;

}


.about-left{
    width:40%;
    min-width:350px;
    height:auto;
    background-image: url(../images/1.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.about-right{
    width:60%;
    height:auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading{
    font-size:4rem;
    color:rgba(95, 157, 228, 0.8);
    font-family: 'poppins',sans-serif;
    font-weight: 700;
    text-align: center;
}

.heading h2{
    margin:0;
    margin-top: 40px;
}

.about-right p{
    font-family: 'poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color:rgb(48, 48, 48);
    width:80%;
    padding-bottom: 40px;
}

.about-right p span {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    color:rgba(95, 157, 228, 0.8);
}

.about-right p span a{
    text-decoration: none;
    color:rgba(95, 157, 228, 0.8);

}

.gallery{
    width:100vw;
    background-color:rgba(145, 182, 224, 0.8);
    height:auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery h2{
    margin:0;
    padding-top: 40px;
}

/*-----------------slideshow-----------------*/
.container {
    position: relative;
    width:50%;
    padding-bottom: 60px;
    padding-top: 40px;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  .caption-container {
    text-align: center;
    background-color: rgba(95, 157, 228, 0.8);
    padding: 2px 16px;
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
  }
  
.row{
    display: flex;
    flex-wrap: wrap;
}
  
  .column {
    float: left;
    width: 16.66%;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }


  /*------------slideshow end-------------------*/

  .mixed-content{
      height:auto;
      width:100vw;
      display: flex;
      flex-wrap: wrap;
      background-color: rgb(236, 236, 236);
  }

  .location{
      height:100%;
      width:50%;
      
  }

  .maps-responsive{
      width:100%;
      height:auto;
      
  }
  
  .maps-responsive iframe{
    margin-top: 40px;
    
  }

  .reviews{
      width:50%;
      height:auto;
      background-color:rgba(179, 206, 236, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

  }

  .reviews h3{
      font-size: 4rem;
      color:white;
      font-family: 'poppins',sans-serif;
      font-weight: 700;
      width:80%;
      text-align: center;
      margin-bottom: 30px;
  }

  /*----review slider------*/

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    width:90%;
    font-size: 1.5rem;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
  }
  
  .myReviews {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .myReviews h3{
      width:60%;
      font-size: 1.5rem;
      margin-bottom: 20px;
  }

  .stars{
      color:gold;
  }
  
  .myReviews h4{
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color:white;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -50px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(95, 157, 228, 0.8);
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /*------review slider end--------*/

  .contact{
      background-color: rgb(221, 236, 243);
      width:100vw;
      height:auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 60px;
  }

  .contact-text{
      width:50%;
      font-size: 1.5rem;
      font-family: 'poppins', sans-serif;
      font-weight: 400;
      color:rgb(29, 29, 29)
  }

  .contact-text a{
      text-decoration: none;
      color: rgba(95, 157, 228, 0.8);
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
        font-weight: 400;

  }

  form{
      width:50%;
      display: flex;
      flex-direction: column;
      align-items: center;
     
  }



  input{
      background-color: rgba( 255,255,255,.5);
      border:0;
      border-radius: 5px;
      margin-bottom: 10px;
      height:50px;
      width:100%;
      font-family: 'poppins', sans-serif;
      font-weight: 400;
      font-size: 1.5rem;
  }

 

  input::placeholder{
      padding-left:10px;
      color: rgba(95, 157, 228, 0.8);
  }

  textarea{
      width:100%;
      resize: none;
      height:300px;
      border:0;
      background-color:rgba( 255,255,255,.5);
      font-family: 'poppins', sans-serif;
      font-weight: 400;
      font-size: 1.5rem;
      border-radius: 5px;
      margin-bottom: 10px;
  }

  textarea::placeholder{
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    padding-left:10px;
    color: rgba(95, 157, 228, 0.8);
  }

  input[type="submit"]{
      background-color:rgba(95, 157, 228, 0.8);
      color:white;
      font-size: 1.6rem;
      font-weight: bold;
  }


  footer{
      height:300px;
      background-color:rgba(95, 157, 228, 0.8);
      width:100vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  footer img{
      height:50px;
  }

  footer h3{
      font-family: 'poppins', sans-serif;
      color:white;
      font-size: 1.4rem;
      margin:0;
      margin-top: 20px;
      font-weight: 400
  }

  footer a{
      text-decoration: none;
      color:white;
      font-family: 'poppins',sans-serif;
      font-weight: 400;
      font-size: 1.4rem;

  }


  @media only screen and (max-width: 1100px){
      nav{
          display: none;
      }

      header{
          display: flex;
          justify-content: space-between;
          align-items: center;
          position:unset;
      }

      

      .mob-nav{
        position:absolute;
        top:150px;
        width:100vw;
        background-color:rgba(95, 157, 228, 1);
        height:auto;
        display: flex;
        justify-content: center;
        z-index: 10000;
        transform: scaleY(0);
        transform-origin: top;
        transition-duration: 1s;
    }

    .active-nav{
        transform: scaleY(1);
        transform-origin: top;
        transition-duration: 1s;

    }

    .mob-nav ul{
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
    }

    .mob-nav ul li a{
      font-family: 'poppins', sans-serif;
      font-weight: 700;
      font-size: 1.7rem;
      margin-top: 20px;
      margin-bottom: 20px;
      text-decoration: none;
      color:white;
      font-weight: bold;
      display: inline-block;
      transition-duration: 1s;
  }


      .logo-container img{
          margin-bottom: 0;
      }

      #nav-icon2{
          display: block;
          margin-right: 60px;
      }

      .main-right{
          width:50%;
    
      }

      .main-right h1{
          font-size: 3rem;
      }


      .about{
          flex-direction: column;
          align-items: center;

      }

      .about-right{
          width:100%;
        
          
      }

      .about-left{
          width:100%;
          height:500px;
          background-size: cover;
          background-position: center;
          background-attachment: unset;
      }

      .gallery .container{
          width:80%;
      }

      .mixed-content{
          flex-direction: column;
          align-items: center;
      }
      .location{
          width:100%;
          display: flex;
          flex-direction: column;
          align-items: center;

      }
      .maps-responsive{
          width:100vw;
      }

      .reviews{
          width:100%;
        
      }

      .reviews h3{
          margin-bottom: 30px;
      }

      .myReviews h3{
          margin-top: 0;
          
      }

      form{
          width:75%;

      }

      input{
          width:100%;
      }

      .contact-text{
          font-size: 1.3rem;
          width:75%;
          margin-left: 5%;
      }

  }

  @media only screen and (max-width: 700px){

    
      .main-right{
          width:100%;
      }

    header{
          height:100px;
          display: flex;
          justify-content: space-between;
          align-items: center;

      }

      .mob-nav{
          position:absolute;
          top:100px;
          width:100vw;
          background-color:rgba(95, 157, 228, 1);
          height:auto;
          display: flex;
          justify-content: center;
          z-index: 10000
      }

      .mob-nav ul{
          display: flex;
          flex-direction: column;
          align-items: center;
          list-style: none;
      }

      .mob-nav ul li a{
        font-family: 'poppins', sans-serif;
        font-weight: 700;
        font-size: 1.7rem;
        margin-top: 20px;
        margin-bottom: 20px;
        text-decoration: none;
        color:white;
        font-weight: bold;
        display: inline-block;
        transition-duration: 1s;
    }


      

      .about-right p{
          font-size: 1.3rem;
      }

      #nav-icon2{
          transform: scale(0.8);
          margin-right: 30px;
      }

      .logo-container img{
          height:40px;
          margin-bottom: 0;
          margin-left: 0px;
          padding-left: 30px;
      }

      .heading{
          font-size: 3rem;
      }

      .reviews h3{
          font-size: 2.5rem;
      }

      .myReviews h3{
          font-size: 1.3rem;
      }



      footer{
          padding: 30px 0px;
      }

      footer h3, footer a{
          font-size: 1.2rem
      }
    }