.tabs {
    margin: 30px 0;
}
.tabs-tags {
    display: flex;
}
.tabs-tags__tag {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    color: #12141d;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 700;
}
.tabs-tags__tag img {
  margin-bottom: 10px;
}
.tabs-tags__tag:hover {
    border-bottom: 1px solid #12141d;
}
.tabs-tags__tag.active {
   border-bottom: 1px solid #12141d;
}
.tabs-content {
    padding: 20px;
    padding-top: 40px;
    border-top: 1px solid #008095;
}
.tabs-tags img {
    max-width: 30px!important;
}  
.tabs-tags__tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tabs-content__text {
   display: flex;
}
.tabs-content-left {
    width: 50%;
}
.tabs-content-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabs-content-right img {
    max-width: 100%;
}
.tabs-content a {
    text-decoration: none;
    font-weight: 700;
    position: relative;
}
.tabs-content h3 {
    font-size: 18px;
}
.tabs-content a::after {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    background-image: url(../images/arrow-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    top: 1px;
    right: -20px;
}

@media only screen and (max-width: 768px) {
    .tabs-tags {
        flex-direction: column!important;
    }
}
