.about-body{
    background-color: #000000;
}

#about{
    padding: 40px;
    color: #ababab;

}


.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 img{
  flex-basis: 35%;
  border-radius: 15px;
  width: 400px;
  height: 700;
  padding-top: 100px;
}

.about-col-2{
    flex-basis: 50%;
}

.sub-title{
    font-size: 60px;
    font-weight: 600;
    font-family: 'cabin', sans-serif;
    padding-bottom: 15px;


}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
  content: '';
  width: 0;
  height: 6px;
  background: #5034d4;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.tab-links.active-link::after{
    width: 95%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span{
    color: #00c0f9;
    font-size: 15px;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display: block;
}

@media only screen and (max-width: 600px) {
    .sub-title {
        font-size: 40px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-2 {
        font-size: 14px;
    }

    .tab-links {
        font-size: 16px;
        margin-right: 20px;
    }
}
