@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* <!-- font-family: 'Poppins', sans-serif; --> */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
/* <!-- font-family: 'Montserrat', sans-serif; --> */

*::before,*::after,*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.burger{
    display: none;
    padding: 0 20px;
    cursor: pointer;
  }
  
  .burger div{
    height: 2px;
    width: 25px;
    margin: 4px;
    background-color: #d7cccc;
    transition: 0.5s ease-in-out;
  }
  
  .toggle{
    position: fixed;
    top: -100vh;
    width: 100%;
    height: 60vh;
    background-color: black;
    z-index: 5; 
    transition: 0.5s;
  }
  
  .toggle ul{
    padding-top: 7vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    
  }
  
  .toggle ul li{
    list-style: none;
    margin: 25px;
  }
  
  .toggle ul li a{
    color: #d7cccc;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: none;
    transition-delay: 2sec;
    transition: 0.5s ;
  }
  
  
  .burger.active .line1{
    transform: rotate(-45deg) translate(-5px,6px);
  }
  .burger.active .line2{
    opacity: 0;
  }
  .burger.active .line3{
    transform: rotate(45deg) translate(-2px,-4px);
  }


body{
background-color: #fdfbfb;
height: 100vh;
padding-top: 150px;
}

.navbar{
position: fixed;
width: 100%;
top: 0;
transition: 0.5s ease-in-out;
z-index: 1000;
}

.nav--hidden{
top: -150px;
}


.header{
    background-color: hsl(204, 64%, 23% );
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
}

.heading {
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 1rem;
}

.heading a{
    color: white;
}

.menus{
    margin: auto 0;
}

.menu-list{
    display: flex;
    justify-content: space-between;
}

.menu-list li{
    margin: .8rem 1.8rem;
    
}

.menu-list a{
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.menu-list li,a{
    list-style: none;
    text-decoration: none;
}

.list{
    display: flex;
    justify-content: space-evenly;
    padding: 1rem;
    background-color:#e8f0f0;
    -webkit-box-shadow: -2px 6px 27px -3px rgba(0,0,0,0.31);
-moz-box-shadow: -2px 6px 27px -3px rgba(0,0,0,0.31);
box-shadow: -2px 6px 27px -3px rgba(0,0,0,0.31);
}

.list a,li{
    list-style: none;
    text-decoration: none;
}

.list a{
    color:rgba(0, 0, 0, 0.733);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
  }
  
  .container .heading{
    width: 50%;
    padding-bottom: 50px;
  }
  .container .heading h3{
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
  }
  
  .container .heading h3 span{
    font-weight: 100;
  }
  .container .box{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
  }
  
  .container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;
  }
  
  .container .box .dream img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
  }
  
  .container .btn{
    margin: 40px 0 70px 0;
    background: #222;
    padding: 15px 40px ;
    border-radius: 5px;
  }
  
  .container .btn a{
   color: #fff;
   font-size: 1.2em;
   text-decoration: none;
   font-weight: bolder;
   letter-spacing: 3px;
  }
  
.gallery-main{
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    padding: 3rem;
}

.gallery-img img{
    margin: 0 auto;
    width: 45%;
    height: 45%;
}

.gallery-img{
    text-align: center;
    margin: 0 auto;
    padding-top:1rem ;
}

.gallery-text  {
    margin: 0 auto;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}