@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;
}
.build-main{
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    padding: 3rem;
}

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

.build-img{
    text-align: center;
    margin: 0 auto;

}

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

.build-items{
    display: flex;
    margin-bottom: 5rem;
}

.build-logo{
    margin: 0 0rem 0 8rem;
    padding-right: 5rem;
}

.build-logo img{
    max-width: 100%;
}

.build-info{
    display: flex;
    flex-direction: column;
    margin-right: 7rem;
}

.build-name{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: .6rem;
} 

.build-name p{
    font-size: 1.5rem;
    margin-bottom: .8rem;
}

.build-details{
    font-family: 'Poppins', sans-serif;
    margin-bottom: .8rem;
}

.schools{
    font-family: 'Montserrat', sans-serif;
    margin-bottom: .7rem;
}

.school-list{
    margin-left: 3rem;
}

.school-list ul li{
    font-size: 1.2rem;
    list-style-type: square ;
    font-family: 'Poppins', sans-serif;

}

