*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;

}
.header{
min-height: 80vh;
width: 100;
background-image: url(images/banner.JPG);
background-position: center;
background-size: cover;
position: relative;
padding-top: 0;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.name{
    width: 90%;
    color:white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.name h1{
    font-size: 62px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .name h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #ede3e3;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: right;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display: block;
        color: rgb(17, 16, 16);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: relative;
    }
    .nav-links ul{
        padding: 30px;
    }
    
}


.whoWeAre{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: black;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.visionMission{
    flex-basis: 45%;
    background: #fff3f3;
    border-radius: 50px;
    margin-bottom: 5%;
    padding: 40px 40px;
    box-sizing: border-box;
    transition: 00.5s;

}

h2{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: black;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
h3{
    font-size: 36px;
    font-weight: 600;   
}
p{
    color: black;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.visionMission:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

.leadersMembers{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.leadersMembers-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;

}
.leadersMembers-col img{
    width: 100%;
    display: block;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 00.5s;
}
.layer:hover{
    background: rgba(128, 0, 226, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 00.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.whatWeDo{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h7{
    font-size: 50px;
    font-weight: 700;
}
.whatWeDo ul li{
    list-style: none;
    display: list-item;
    padding: 8px 12px;
    position: relative;
    text-align: center;
}

.objectives-list ul li a{
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
}
.container{
    width: 100%;
    height: 100vh;
    background: rgb(233, 211, 211);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper {
    width: 80%;
    height: 100vh;
  }
.swiper-slide img{
    width: 100%;

}
.swiper .swiper-button-prev, .swiper .swiper-button-next{
    color: black;
}
.swiper .swiper-pagination-bullet-active{
    background: #f44336;
}
.footer{
    margin-top: 80px;
    width: 100%;
    padding: 80px 15%;
    background: #333;
    color: #efefef;
    display: flex;
}
footer div{
    text-align: center;
}
.col-1 ul li{
    display: block;
}
.col-1{
    flex-grow: 7;
}
.col-2{
    flex-grow: 7;
}
.footer div h2{
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
form input{
    width: 400px;
    height: 45px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    outline: none;
    border: none;
}
form button{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px;
    cursor: pointer;
}
iframe{
    width: 20%;
    height: 100px;
}
h2{
    margin-top: 20px;

}
@media(max-width: 700px){
    .footer{
        flex-direction: column;
    }

}