body{
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #222
}

/* Header */
#navbar-toggle-icon {
    color: white;
}

.nav-link:hover{
    background-color: transparent;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.dropdown-item{
    position: relative;
    right: 0;
    transition: right, ease, 0.5s;
    border: 1px solid transparent;
}

.dropdown-item:hover{
    right: -10px;
    background-color: #212529;
    color: white;
}

.dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.dropdown-toggle:after {
    transition: 0.3s;
}

/* Landing page */
.big-heading h1, h5{
    color: white;
}


.two-image img{
    width: 100%;
    height: 70%;
}

.section-title h1 {
    height: calc(3.5rem + 5px);
}

.section-title h1:before {
    position: absolute;
    top: 3.5rem;
    content: "";
    width: 125px;
    height: 3px;
    background-color: dodgerblue;
}

.section-title h1:after {
    position: absolute;
    top: calc(3.5rem - 1px);
    left: 0;
    content: "";
    width: 15px;
    height: 5px;
    background-color: #ffffff;
    animation: moveLeftBounces 10s linear infinite;
}

@keyframes moveLeftBounces {
	0% {
		transform: translateX(0px) scaleX(5%);
	}
	50% {

		transform: translateX(125px);
	}
    100% {
        transform: translateX(0px) scaleX(100%);
    }
}

.mission{
    line-height: 20%;
}

.mission h2{
    margin-bottom: 23px;
}

.description{
    position: relative;
    padding-left: 80px;
}
.mission p{
    position: relative;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 0;
}

.mission h4{
    font-weight: 500;
    padding-bottom: 10px;
    margin: 0;
    height: 30%;
    padding-top: 20px;
}

.mission-icon{
    float: left;
    font-size: 38px;
    color: #0c1239;
    line-height: 70px;
    width: 70px;
    height: 70px;
    position: relative;
    display: block;
}

.button-about button{
    float:left;
}

.logos{
    width: 60%;
}

.bg-color{
    background-color: #F3F3F3;
}

.mse{
    height: 80vh;
    width: 90%;
}
/*---Media Queries --*/
@media (max-width: 1200px){

}

@media (max-width: 992px) {
}

@media (max-width: 768px) {

}

@media (max-width: 576px) {

    .mission p{
        font-size:16px;
    }


}