*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
a{
    color: rgb(137,112,124);
}
a:hover {
    color: whitesmoke;
  }
.item1 { grid-area: desc; }
.item2 { grid-area: exeb; }
/*.item3 { grid-area: edu; }
.item4 { grid-area: ctc; }*/

.desc{
    display: grid;
    grid-template-areas: 
    'desc desc desc desc'
    'exeb exeb exeb exeb';
    row-gap: 25px;
    padding-left: 10px;
    padding-right: 10px;
}
.desc p{
    font-size: 15px;
    padding:20px;
    padding-top: 5px;
    line-height: 2;
}
.desc h3{
    color:rgb(15, 15, 15);
    font-size: 13px;
    font-style: italic;
    letter-spacing: 3px;
    font-weight: normal;
}
.desc h2{
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: normal;
}
.desc h1{
    color:rgb(39, 39, 39);
    font-size: 15px;
    font-weight: normal;
    padding-bottom: 20px;
}
.item1 h4{
    height: 1px;
    background: #3b3b3b;
    width: 30%;
    margin: auto;
}
.title{
    padding-top: 20px;
    letter-spacing: 4px;
    padding-bottom: 20px;
    /*text-transform: uppercase;*/
}
.abt-wrap{
    padding-top: 12vh;
    padding-bottom: 5vh;
    width: 80%;
    height: 100%;
    min-height: 85vh;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.abt-in{
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.abt-in img{
    object-fit: cover;
    border-radius: 15px;
    width:100%;
    height:100%;
}
.abt-in:nth-child(1){
    flex: 25%;
    /*background-color: rgb(171, 154, 162);*/
	background-color: rgb(165, 165, 165);
    border-radius: 10px 0px 0px 10px;
}
.abt-in:nth-child(2){
    flex: 45%;
    margin-left:10px;
    background-color: rgb(197, 197, 197);
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #dddddd;

}
@media only screen and (max-width: 1150px){
    .abt-wrap{
        width:90%
    } 
}
@media only screen and (max-width: 650px){
    .abt-in:nth-child(1){
        flex: 100%;
        border-radius: 10px 10px 0px 0px;
    }
    .abt-in:nth-child(2){
        margin-left:0;
        margin-top: 10px;
        flex: 50%;
    }  
    .abt-wrap{
        width:95%
    }
}
