.tabs {
    margin-bottom: 130px;
}
.tabs-nav {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tabs-nav::-webkit-scrollbar {
    height: 5px;
    background-color: rgba(255,217,15,.1);
}
.tabs-nav::-webkit-scrollbar-thumb {
    background-color: rgba(226, 34, 21, 0.5);
}
.tabs-nav::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

.tabs-content {
    padding: 45px 0 0;
}
.tabs-nav__item {
    width: 100%;
    min-width: 274px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    text-align: center;
}
.tabs-nav__item:not(:last-child) {
    margin-right: 35px;
}
.tabs-nav__item:hover {
    border: 1px solid #F83F49;
}
.tabs-nav__item.active {
    border: 1px solid #F83F49;
}
.tabs-content__box {
    position: relative;
    padding-top: 11px;
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 12px 4px 24px rgba(0, 0, 0, 0.08);
}
.tabs-content__box:before {
    content: '';
    position: absolute;
    width: 275px;
    height: 263px;
    background: #F83F49;
    top: 0;
    left: 0;
}
.tabs-content__box-img {
    display: flex;
    width: 272px;
    height: 252px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
.tabs-content__box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tabs-content__box-text {
    padding: 37px 25px 43px 10px;
}
.tabs-content__box-title {
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    color: #000;
    margin-bottom: 22px;
    display: block;
}
.tabs-content__box-desc {
    font-family: 'Lato';
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #434343;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.tabs-content__item {
    display: none !important;
}
.tabs-content__item.active {
    display: block !important;
}

.tabs-content__item .owl-stage-outer {
    padding-bottom: 25px;
}
.tabs-title {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    color: #434343;
    margin-bottom: 56px;
}





.tabs-content .owl-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 49%;
    transform: translateY(-50%);
}
.tabs-content .owl-nav button.owl-prev,
.tabs-content .owl-nav button.owl-next {
    position: relative;
    font-size: 28px !important;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #E0E0E0 !important;
    color: #434343;
    transition: all .2s linear;
}
.tabs-content .owl-nav button.owl-prev span,
.tabs-content .owl-nav button.owl-next span {
    height: 100%;
    display: flex;
    align-items: center;
}

.tabs-content .owl-nav button.owl-prev:hover,
.tabs-content .owl-nav button.owl-next:hover {
    border: 1px solid #000 !important;
}
.tabs-content .owl-nav button.owl-prev {
    left: -60px;
}
.tabs-content .owl-nav button.owl-next {
    right: -60px;
}


@media (max-width: 767px) {

    .tabs-nav__item:not(:last-child) {
        margin-right: 0;
    }
    .tabs-nav__item {
        padding: 0 20px;
        height: 64px;
    }
    .tabs {
        margin-bottom: 100px;
    }
    .tabs-title {
        font-size: 28px;
        line-height: 36px;
        /* margin-bottom: 60px; */
    }
}