.sc_hero_section {
    background: #112031;
}

.sc_hero_section__wrapper {
    position: relative;
    padding: 128px 0 80px;
}

.sc_hero_section__wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 130px;
    background-image: url('../img/hero_top_full.png');
    background-repeat: repeat;
    opacity: 0.5;
}

.sc_hero_section__wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 61px;
    background-image: url('../img/hero_bottom_full.png');
    background-repeat: repeat;
    opacity: 0.5;
}

.sc_hero_section__title {
    color: #fff;
    text-align: center;
    font-family: 'Aeonik';
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 11px;
}

.sc_hero_section__subtitle {
    margin-top: 5px;
    color: #fff;
    text-align: center;
    font-family: 'Inter';
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: -0.24px;
}

.sc_hero_description {
    margin: 0 0 80px;
}

.sc_hero_description__wrapper {
    position: relative;
    padding-top: 86px;
}

.sc_hero_description__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 61px;
    background-image: url('../img/description_top_full.png');
    background-repeat: repeat;
}

.sc_hero_description__content {
    text-align: center;
    /*margin-top: 15px;*/
}

.html_content.sc_hero_description__content,
.html_content.sc_hero_description__content p {
    font-weight: 500;
    letter-spacing: -0.36px;
}

/* tabs_cart_with_content */
.tabs_cart_with_content {
    margin: 80px 0;
}

.tabs_cart_with_content__description_container {
    margin-bottom: 58px;
}

.tabs_cart_with_content__header {
    margin-bottom: 19px;
}

.tabs_cart_with_content__title {
    color: #112031;
    text-align: center;
    font-family: 'Aeonik';
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin: 0;
}

.tabs_cart {
    position: relative;
}

.tabs_cart:before {
    content: '';
    display: block;
    position: absolute;
    width: 200vw;
    height: 75%;
    max-height: 100%;
    background: #ebfbff;
    top: 37px;
    right: 0;
    left: -50vw;
    z-index: 1;
    -webkit-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.tabs_cart_with_content__content,
.tabs_cart_with_content__content p {
    text-align: center;
    letter-spacing: -0.36px;
    position: relative;
}

.tabs_cart__container {
    max-width: 1150px;
    position: relative;
    z-index: 2;
}

.tabs_cart__main_wrapper {
    background-color: #fff;
    -webkit-box-shadow: -5px 7px 35px 0px rgba(116, 126, 142, 0.15);
    box-shadow: -5px 7px 35px 0px rgba(116, 126, 142, 0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.tabs_cart__header {
    background-color: #112031;

    padding: 21px 15px 22px;
    /*margin: 0 -15px;*/
}

.tabs_cart__title {
    color: #fff;
    text-align: center;
    font-family: 'Aeonik';
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.3px;
    margin: 0;
}

.tabs_cart__wrapper {
    padding: 44px 30px 50px;
    max-width: 980px;
    margin: auto;
}

.tabs_cart__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -19px 6px;
}

.tabs_cart__button_wrapper {
    width: 33.33%;
    padding: 0 19px;
    margin-bottom: 30px;
    text-align: center;
}

.tabs_cart__nav_item {
    border-radius: 12px;
    display: block;
    width: 100%;
    padding: 16px 10px 17px;
    background-color: #F5F5F5;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    outline: none !important;
    cursor: pointer;
}

.tabs_cart__nav_item.active,
.tabs_cart__nav_item:hover {
    background-color: #EBFBFF;
    -webkit-box-shadow: -5px 7px 30px 0 rgba(116, 126, 142, 0.15);
    box-shadow: -5px 7px 30px 0 rgba(116, 126, 142, 0.15);
}

.tabs_cart__nav_item span {
    display: block;
}

.tabs_cart__nav_item_image {
    margin-bottom: 9px;
    position: relative;
    height: 56px;
}

.tabs_cart__nav_item_image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.tabs_cart__nav_item_image .hover {
    opacity: 0;
}

.tabs_cart__nav_item.active .tabs_cart__nav_item_image .hover,
.tabs_cart__nav_item:hover .tabs_cart__nav_item_image .hover {
    opacity: 1;
}

.tabs_cart__nav_item.active .tabs_cart__nav_item_image .origin,
.tabs_cart__nav_item:hover .tabs_cart__nav_item_image .origin {
    opacity: 0;
}

.tabs_cart__nav_item_title {
    color: #112031;
    text-align: center;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
}

.tabs_cart__content_wrapper {
    max-width: 785px;
    margin: auto;
}

.tabs_cart__content_wrapper .html_content p {
    margin-bottom: 29px;
}

.tabs_cart__content_wrapper .html_content p:last-child {
    margin-bottom: 0;
}

.tabs_cart__dots {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabs_cart__dot {
    margin: 0 6px;
}

.tabs_cart__dot button {
    cursor: pointer;
    display: block;
    width: 7px;
    height: 7px;
    background-color: #112031;
    opacity: 0.3;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    border-radius: 100%;
    outline: none !important;
    border: none;
    font-size: 0 !important;
    padding: 0;
}

.tabs_cart__dot button.active {
    background-color: #BBF0FF;
    opacity: 1;
}

@media (max-width: 991px) {
    .tabs_cart_with_content__content br {
        display: none;
    }
}

@media (max-width: 768px) {
    .tabs_cart_with_content__title {
        font-size: 38px;
        line-height: 1.2;
    }

    .tabs_cart__button_wrapper {
        width: 100%;
    }
}
/* END tabs_cart_with_content */