.h-reset-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.c-tabs {
    color: #191919;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 0 10px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-tabs {
        padding-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .c-tabs__container {
        background-color: #e8e8e8;
        padding: 0;
    }
}

.c-tabs__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    font-size: 12px;
    margin-top: 20px;
    background-color: #fff;
    position: relative;
}

.c-tabs__nav_fx {
    position: relative;
    z-index: 100;
    padding: 0 15px 0 20px;
}

@media screen and (max-width: 992px) {
    .c-tabs__nav_fx {
        padding-left: 5px;
    }
}

@media screen and (max-width: 768px) {
    .c-tabs__nav_fx {
        padding: 0;
    }
}

.c-tabs__nav_fx.fixed {
    position: fixed;
    top: 70px;
}

@media screen and (max-width: 768px) {
    .c-tabs__nav_fx.fixed {
        -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.25);
    }
}

.c-tabs__nav_fx.bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0 !important;
}

@media screen and (max-width: 992px) {
    .c-tabs__nav {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }
}

@media screen and (max-width: 768px) {
    .c-tabs__nav {
        margin-top: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.c-tabs__nav li, .c-tabs__nav_toggle {
    position: relative;
    padding: 26px 0;
    font-weight: 800;
    background-color: #fff;
}

.c-tabs__nav li a, .c-tabs__nav_toggle a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
}

.c-tabs__nav li a:hover, .c-tabs__nav_toggle a:hover {
    color: #b18f41;
}

.c-tabs__nav li {
    border-bottom: 1px solid #e8e8e8;
}

.c-tabs__nav li span {
    cursor: pointer;
}

.c-tabs__nav li:first-child {
    border-top: 1px solid #e8e8e8;
}

@media screen and (max-width: 768px) {
    .c-tabs__nav li:first-child {
        border-top: none;
    }
}

.c-tabs__nav li.active a, .c-tabs__nav li.active span {
    color: #b18f41;
}

.c-tabs__nav li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #b18f41;
}

@media screen and (max-width: 768px) {
    .c-tabs__nav li.active {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .c-tabs__nav li {
        margin: 0 10px 0 50px;
        padding: 20px 0;
    }
}

.c-tabs__nav_toggle {
    display: none;
    color: #b18f41;
    position: relative;
}

.c-tabs__nav_toggle .burger-t {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
}

.c-tabs__nav_toggle .burger-t span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b18f41;
}

.c-tabs__nav_toggle .burger-t::before, .c-tabs__nav_toggle .burger-t::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #b18f41;
}

.c-tabs__nav_toggle .burger-t::before {
    top: 4px;
    width: 100%;
    left: 0;
}

.c-tabs__nav_toggle .burger-t::after {
    width: 80%;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .c-tabs__nav_toggle {
        display: block;
        padding: 22px 20px;
    }

    .c-tabs__nav_toggle a {
        display: inline-block;
        position: relative;
        padding-left: 30px;
    }

    .c-tabs__nav_toggle::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background-color: #b18f41;
        -webkit-transition: width 0.3s;
        transition: width 0.3s;
    }

    .c-tabs__nav_toggle.opened::after {
        width: calc(100% - 50px);
    }
}

.c-tabs__list {
    background-color: #fff;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .c-tabs__list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        font-weight: 400;
        -webkit-transition: max-height 0.4s;
        transition: max-height 0.4s;
    }

    .c-tabs__list.minimized {
        max-height: 220px;
        overflow-y: auto;
        -webkit-transition: max-height 0.4s;
        transition: max-height 0.4s;
        border-bottom: 3px solid #e8e8e8;
    }
}

.c-tabs__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 74%;
    flex: 0 0 74%;
    padding: 0 5% 0 15px;
    background-color: #fff;
}

@media screen and (max-width: 992px) {
    .c-tabs__content {
        padding-right: 5px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
    }
}

@media screen and (max-width: 768px) {
    .c-tabs__content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 10px;
        margin-top: 10px;
    }
}

.c-tabs__item {
    padding: 22px 0;
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .c-tabs__item {
        font-size: 16px;
        padding: 12px 0;
    }
}

.c-tabs__item_short {
    font-weight: 200;
    padding: 7px 0;
}

.c-tabs__item_head {
    display: inline-block;
    text-decoration: none;
    position: relative;
    color: #b18f41;
    font-weight: 800;
}

.c-tabs__item_head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #b18f41;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.c-tabs__item_head:hover::after {
    width: 0;
}

.c-tabs__item_text {
    line-height: 1.6;
    padding-top: 5px;
}

.c-tabs__tab {
    /*display: none;*/
}

.c-tabs__tab.active {
    display: block;
}

.c-tabs__tab_short {
    padding-top: 8px;
}

@media screen and (max-width: 768px) {
    .c-tabs__tab_short {
        font-size: 16px;
        padding: 0;
    }
}

.c-first-sec {
    color: #fff;
    background-size: cover;
    background-position: center;
}

.c-first-sec__content {
    min-height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .c-first-sec__content {
        min-height: 200px;
    }
}

.c-first-sec__head {
    font-size: 102px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    margin: 0 0 10px;
    font-family: 'ProximaNovaExCn', sans-serif;
}

@media screen and (max-width: 992px) {
    .c-first-sec__head {
        font-size: 80px;
    }
}

@media screen and (max-width: 768px) {
    .c-first-sec__head {
        font-size: 48px;
    }
}