#Vitrin{
    padding: 80px 20px;
    color: #E6E6E6;
    padding-bottom: 30px;
}

.row{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 45%; 
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 45%;
}
.about-col-2 p{
    font-size: 22px;

}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: white;
}
.tab-titles{
    display: flex;
    margin: 30px 0 40px;
}
.tab-titles p{
    font-size: 25px;
}
.tab-links{
    margin-right: 50px;
    font-size: 50px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: goldenrod;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
    font-size: 20px;
}
.tab-contents ul li span{
    color: goldenrod;
    font-size: 25px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

