@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;
}

.college-intro{
    margin:0 5rem 2rem 5rem;
    display: flex;
}

.intro-main{
    display: flex;
    flex-direction: column;
    margin: auto 10rem auto 1rem;

}

.intro-image {
    padding: 3.5rem;
    text-align: center;
}

.intro-image{
  animation: fadeInRight;
  animation-duration: 1s;
}

.intro-head{
    color: rgb(0, 0, 0);
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 1rem;
}


.intro-details{
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.637);
    font-weight: 500;
}

/* cards  */



.main h1{
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.main img{
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn{
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;

}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}


.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
    text-align: center;
  }
  
}

@media (min-width: 56rem) {

  .main{
    margin: 1rem 0 0 5rem;  
  }

  .cards_item {
    width: 33.3333%;
    text-align: center;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 65%;

}

.card_content {
  padding: 1rem;
  background-color: #154260c5;
  font-family: 'Poppins', sans-serif;
}

.card_title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;    
  font-weight: 400;
}

.card_image img{
  min-width: 100%;
}


