body{
    width: 100%;
    height: fit-content;
    margin: 0;
    padding: 0;
    
}

h1{
    text-align: center;
    margin: 1% auto;
    color: #174c4d;
    font-size: 32px;
    font-weight: 600;
    border-radius: 26px;
    border: 1px dashed lightgrey;
    width: fit-content;
    padding: 10px 20px;
}

.about{
    width: 100%;
    height: 100vh;
    padding: 10px 20px;
    align-items: center;
    background : linear-gradient(87deg, #264a87 0, #1a174d 100%);
    display: flex;
    justify-content: center;
}


.about .about-inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    width: 90%;
    
    border-radius: 5px;
    padding: 10px 15px;
    justify-content: center;
    height: fit-content;
    align-items: center;

}

#ab2{
    background: mediumaquamarine;
}

.about-inner-l{
    min-width: 20%;
    max-height: 300px;
}

.about-inner-l img{
    width: 250px;
    height: 250px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        border-radius: 50%;
}

.about-inner-r{
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 0 1%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        border-radius: 5px;
    padding: 10px 15px;
}

.about-inner-r h2{
    color: darkslategray;
    font-size: 25px;
    margin-bottom: 1rem;
    width: fit-content;
    border-bottom: 1px dashed lightgrey;
    padding-bottom: 10px;
    
}

.about-inner-r p{
    color: lightslategrey;
    font-size: 14px;
    font-weight: 400;
}

.about-inner-r p::before{
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}


.about-inner-r button{
    border: 2px solid mediumseagreen;
    color: white;
    background: mediumseagreen;
    border-radius: 20px;
    padding: 7px 10px;
     width: 40%;
     margin-top: 2rem;
    content: "\f007";
    font-family: "Font Family 5 Free";
}


@media screen and (max-width: 600px){
	h1{
		margin-top: 4rem;
	}
	
	.about{
		padding: 10px;
		justify-content: center;
		width: 100%;
	}
   .about .about-inner{
	   width: 90%;
	   margin: 3% auto;
		flex-direction: column;
	   padding: 0px 0px;
	   margin-left: 2rem;
	}
	
	
   .about .about-inner .about-inner-r{
	   margin: auto;
		width: 100%;
	}
	
		
   .about .about-inner .about-inner-l{
	   margin: auto;
		width: 100%;
	}
	.about-inner-l img{
		width: 170px;
		height: 170px;
		margin: auto;
	}
	
	.about .about-inner .about-r{
		width: 100%;
	}
	
}