body{
    background-color: #F8F1F1;
}

.navigation{
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    
}

/* .logo{
    color: #DB6400;
} */

.navlinks > a{
    color: #16697A;
    text-decoration: none;
    margin: 16px;
    font-size: 20px;
}

.navlinks > button {
    padding: 10px;
    border-radius: 9999px;
    background-color: #16697A;
    color: #F8F1F1;
}

.navlinks > button:hover{
    background-color: #FFA62B;
}

.hero{
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
}
.hero img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFA62B;
}

.hero-content h1 {
    font-size: 50px;
    margin: 0;
}

.hero-content h2 {
    color: #F8F1F1;
}

.mission{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    margin-top: 4rem;
}
.mission h2{
 color: #16697A;
 text-align: center;
}
.mission p {
    color: #F8F1F1;

}
.vision {
    background-color: #DB6400;
    width: 25%;
    padding: 15px;
    border-radius: 15px;
}

.ourteam{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    margin-top: 4rem;
    font-family: 'Baloo Paaji 2', cursive;

}

.team {
    background-color: #DB6400;
    width: 25%;
    padding: 10px;
    border-radius: 15px;
}

.team > img {
    /* width: 200px; */
    border-radius: 50%;

}

  .card {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.7);
    color: white;
    
  }
  
  .card__name {
    margin-top: 15px;
    font-size: 1.5em;
  }
  
  .card__image {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    border: 5px solid #272133;
    margin-top: 20px;
    box-shadow: 0 10px 50px rgba(235, 25, 110, 1);
  }
  
  
  .draw-border {
    box-shadow: inset 0 0 0 4px #58cdd1;
    color: #58afd1;
    -webkit-transition: color 0.25s 0.0833333333s;
    transition: color 0.25s 0.0833333333s;
    position: relative;
  }
  
  .draw-border::before,
  .draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0rem;
    height: 0;
    bottom: 0;
    right: 0;
  }
  
  .draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
  }
  
  .draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
  }
  
  .draw-border:hover {
    color: #ffe593;
  }
  
  .draw-border:hover::before,
  .draw-border:hover::after {
    border-color: #eb196e;
    -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
  }
  
  .draw-border:hover::before {
    -webkit-transition-delay: 0s, 0s, 0.25s;
    transition-delay: 0s, 0s, 0.25s;
  }
  
  .draw-border:hover::after {
    -webkit-transition-delay: 0s, 0.25s, 0s;
    transition-delay: 0s, 0.25s, 0s;
  }
  
  .btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    padding: 0.75em 2em;
    letter-spacing: 0.05rem;
    margin: 1em;
    width: 13rem;
  }
  
  .btn:focus {
    outline: 2px dotted #55d7dc;
  }
  
  
  .social-icons {
    padding: 0;
    list-style: none;
    margin: 1em;
  }
  
  .social-icons li {
    display: inline-block;
    margin: 0.15em;
    position: relative;
    font-size: 1em;
  }
  
  .social-icons i {
    color: #fff;
    position: absolute;
    top: 0.95em;
    left: 0.96em;
    transition: all 265ms ease-out;
  }
  
  .social-icons a {
    display: inline-block;
  }
  
  .social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: block;
    background: linear-gradient(45deg, #ff003c, #c648c8);
    transition: all 265ms ease-out;
  }
  
  .social-icons a:hover:before {
    transform: scale(0);
    transition: all 265ms ease-in;
  }
  
  .social-icons a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: #ff003c;
    background: -webkit-linear-gradient(45deg, #ff003c, #c648c8);
    -webkit-background-clip : text;
    -webkit-text-fill-color: transparent;
    transition: all 265ms ease-in;
  }
  
  


footer {
    margin: auto;
    margin-top: 5rem;
    background-color: #DB6400;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

