@import url('https://fonts.googleapis.com/css?family=Muli:300,400,500,600,700,800&display=swap');

.main-content{
    margin-top: 58px;
    display: block;
    z-index: 1;
    font-family: Muli;
}


.a-container{
    display: block;
    position: relative;
    height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    animation: fadein 2.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#about{background-image: url("images/about-1.jpg");}
#mission{background-image: url("images/about-2.jpg");}
#founder{background-image: url("images/about-3.jpg");}

#background-overlay{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 400px;
    width: 100%;
    background: #474747;
    opacity: 0.81;
}

.heading-container{
    position: absolute;
    display: block;
    width: 100%;
    top: 150px;
    text-align: center;
    z-index: 2;
}

.a-header{
    font-weight: 600;
    font-size: 36.5px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
    animation: textAnimate .7s ease-in;
}

@keyframes textAnimate {
    from {
          color: #FFCCCC;
          opacity: 0;
          transform: scale(3);
    }
    to {
          color: #fff;
          opacity: 1;
          transform: scale(1);
    }
}


.b-container{
    margin: 0;
    display: block;
    text-align: center;
    overflow: hidden;
}

.b-content{
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.b-mobile{
    display: none;
}

.b-left{
    width: 70%;
    text-align: left;
    font-size: 17px;
    font-weight: 400;
    background: #0587FF;
}

.b-text-container{
    margin: 0 auto;
    width: 60%;
    padding: 35px 0;
}

.b-text{
    font-weight: 400;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,.05);
    margin: 12.5px 0;
    color: #fff;
    line-height: 32.5px;
}

#nottio-link{
    color: #7aff65;
    text-decoration: none;
    font-weight: 700;
}

#nottio-link:hover{
    text-decoration: underline;
}

.b-right{
    width: 30%;
    background: #F5F5F5;
    border: 1px solid #D7D7D7;
    box-sizing: border-box;
}

.b-button-container{
    margin: 0 auto;
    padding: 15px 0;
    width: 60%;
}

.b-button{
    width: 100%;
    margin: 15px 0;
    background: linear-gradient(90deg, #2FE4B8 3.94%, #2AE88D 100%);
    border: 1px solid #53B083;
    border-radius: 50px;
    color: #516D48;
    font-size: 24px;
    padding: 15px 0;
    font-style: normal;
    font-weight: 600;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
    transition: 0.12s;
}

.b-button:hover, .b-button:focus{
    filter: hue-rotate(-15deg);
    transform: translateY(1px);
    transform: scale(1.02);
    color: #404F3C;
    opacity: .85;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}


@media (max-width: 1200px) {
    
.b-text-container{
    width: 75%;
} 
    
}

@media (max-width: 1000px) {
    
.b-text-container{
    width: 70%;
} 

.b-button-container{
    width: 80%;
}

.b-button{
    margin: 20px 0;
}
    
}

@media (max-width: 800px) {
    
.b-text-container{
    width: 80%;
} 

.b-button-container{
    width: 90%;
}

.b-button{
    margin: 25px 0;
}
    
}

@media (max-width: 650px) {
   
.a-container{
    height: 300px;
}

#background-overlay{
    height: 300px;
}

.heading-container{
    top: 100px;
}

#header-about{
    left: 38%;
}

.b-content{
    display: block;
}

.b-mobile{
    display: block;
    width: 100%;
}

.b-left{
    display: block;
    width: 100%;
}

.b-right{
    display: none;
}

.b-button{
    display: inline-block;
    width: 45%;
    margin: 0 5px;
    font-size: 20px;
}

    
}


@media (max-width: 525px) {

.b-button-container{
    width: 92.5%;
}

.b-button{
    display: inline-block;
    width: 27.5%;
}

}