*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
}

:focus,
:focus-visible,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

a, a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

a,
button,
input,
select,
textarea {
    background: none;
    color: inherit;
    border: none;
    text-transform: none;
    text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

ul {
    list-style: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.breadcrumbs {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 10px;
    overflow: auto;
}
.breadcrumbs__item {
    flex-shrink: 0;
    margin-right: 16px;
}
.breadcrumbs__item:last-child {
    margin-right: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__link::after {
    content: "";
    background: none;
}
.breadcrumbs__link {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: #181818;
    position: relative;
    padding-right: 20px;
}
.breadcrumbs__link::after {
    content: "";
    display: block;
    background: url("../../../../image/arrow_right_black.svg") 100% 0/contain no-repeat;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media screen and (max-width: 575px) {
    .breadcrumbs {
        padding-top: 20px;
    }
}
.accordion-main {
    background: #F9F9F9;
    padding: 60px 0;
}
.accordion-main__wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .accordion-main__wrapper {
        max-width: 90%;
    }
}
.accordion-main__item {
    margin-bottom: 20px;
}
.accordion-main__item_active > .accordion-main__content {
    height: auto;
    overflow: visible;
    opacity: 1;
}
.accordion-main__item_active > .accordion-main__header::before {
    transform: rotate(180deg);
}
.accordion-main__header {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #181818;
    background: #fff;
    padding: 20px 30px;
    position: relative;
    pointer-events: none;
}
.accordion-main__header::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.accordion-main__content {
    background: #fff;
    transition: all 0.4s linear;
    position: relative;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.accordion-main__content::before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 1px;
    background: #E3E3E3;
}
.accordion-main__content-inner {
    padding: 20px 30px;
}
.accordion-main__content-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 20px;
}
.accordion-main__content-text_bold {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.accordion__item {
    margin-bottom: 34px;
}
.accordion__item:last-child {
    margin-bottom: 0;
}
.accordion__item_active .accordion__content {
    opacity: 1;
    height: auto;
    overflow: auto;
}
.accordion__item_active .accordion__header::before {
    transform: rotate(180deg);
}
.accordion__header {
    background: #F9F9F9;
    padding: 40px 36px 40px 66px;
    position: relative;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #100F0F;
    pointer-events: none;
}
.accordion__header::before {
    content: "";
    position: absolute;
    display: block;
    top: 40px;
    left: 36px;
    width: 16px;
    height: 16px;
    background: url("../../../../image/array_down_red.svg") center/contain no-repeat;
    transition: all 0.4s linear;
}
.accordion__header_right {
    padding-left: 32px;
}
.accordion__header_right::before {
    left: calc(100% - 50px);
}
.accordion__header_subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    margin-top: 10px;
}
.accordion__content {
    background: #fff;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s linear;
}
.accordion__content_grey {
    background-color: #F9F9F9;
    position: relative;
}
.accordion__content_grey::before {
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 1px;
    background: #E3E3E3;
}

@media screen and (max-width: 575px) {
    .accordion__item {
        margin-bottom: 14px;
    }
    .accordion__header {
        padding: 17px 17px 17px 54px;
        font-size: 14px;
    }
    .accordion__header::before {
        left: 22px;
        top: 20px;
    }
    .accordion__header_right {
        padding-left: 32px;
    }
    .accordion__header_right::before {
        left: calc(100% - 50px);
    }
    .accordion-main {
        padding: 30px 0 10px 0;
    }
}
.button-main {
    width: 202px;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    padding: 16px;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s linear;
}
.button-main:hover {
    color: #fff;
}
.button-main_disabled {
    background: #E3E3E3;
    border-color: #E3E3E3;
    color: #8E8E8E;
}
.button-main_disabled:hover {
    color: #8E8E8E;
}

.button-white {
    width: 202px;
    background: #fff;
    border: 1px solid #ED1C24;
    padding: 16px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #ED1C24;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s linear;
}
.button-white__img {
    margin-right: 10px;
}
.button-white_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-white_disabled {
    border-color: #C6C6C6;
    color: #C6C6C6;
}
.button-white_disabled:hover {
    background: #fff;
}
.button-white_active {
    color: #fff;
    background: #ED1C24;
}

.button-left {
    width: 60px;
    height: 18px;
    background: url("../../../../image/arrow-left.svg") 0 0/cover no-repeat;
    cursor: pointer;
    display: block;
}

@media screen and (max-width: 575px) {
    .button-main {
        width: 100%;
    }
    .button-white {
        width: 100%;
    }
}
@media screen and (min-width: 576px) {
    .button-white:hover {
        background: #F8A4A7;
    }
    .button-white_disabled:hover {
        background: #fff;
    }
}
.container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}

.container-md {
    width: 100%;
    max-width: 834px;
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: 90%;
    }
}
@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.panel-info {
    background: #F9F9F9;
    padding: 40px 47px 40px 40px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr 2fr 202px;
    grid-gap: 20px;
}
.panel-info__column-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #100F0F;
    margin-bottom: 14px;
}
.panel-info__column-info {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #100F0F;
}
.panel-info__column-inner:not(:last-child) {
    margin-bottom: 8px;
}

@media screen and (max-width: 1200px) {
    .panel-info {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width: 1024px) {
    .panel-info {
        grid-template-columns: none;
        grid-template-areas: "header header" "col1 col2" "address address" "button button";
    }
    .grid-header {
        grid-area: header;
    }
    .grid-col1 {
        grid-area: col1;
    }
    .grid-col2 {
        grid-area: col2;
    }
    .grid-address {
        grid-area: address;
    }
    .grid-button {
        grid-area: button;
    }
}
@media screen and (max-width: 575px) {
    .panel-info {
        grid-gap: 0;
        grid-column-gap: 10px;
    }
}
.title-main {
    font-family: "Oswald", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
}

.text-main {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
}

.title-section {
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 65px;
    color: #ED1C24;
}

.title-nav {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #181818;
}

.slider-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #E77E82;
}

.page-title {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 68px;
}

.filter-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #181818;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #C6C6C6;
}

.textarea-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #181818;
    display: block;
}

.title-main-mobile {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    color: #181818;
}

.page-subtitle-grey {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    color: #C6C6C6;
}

.bold-600 {
    font-weight: 600;
}

.colored {
    color: #ED1C24;
}

@media screen and (max-width: 575px) {
    .code-title {
        font-size: 40px;
    }
}
.footer {
    background: #181818;
}
.footer__top {
    padding: 55px 0 106px 0;
    border-bottom: 1px solid #ED1C24;
}
.footer__top-wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .footer__top-wrapper {
        max-width: 90%;
    }
}
.footer__top-inner {
    display: flex;
}
.footer__nav {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}
.footer__column {
    flex-grow: 1;
}
.footer__column-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s linear;
}
.footer__column-title_contacts {
    font-size: 14px;
}
.footer__column-title:hover {
    color: #ED1C24;
}
.footer__logo {
    margin-right: 88px;
}
.footer__logo-img {
    width: 183px;
}
.footer__link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.4s linear;
}
.footer__link:hover {
    color: #ED1C24;
}
.footer__contacts {
    max-width: 263px;
    margin-bottom: 24px;
}
.footer__contacts-info {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
}
.footer__contacts-info:not(:last-child) {
    margin-bottom: 10px;
}
.footer__button {
    margin-bottom: 30px;
}
.footer__icons {
    display: flex;
    align-items: center;
}
.footer__icon-link:not(:last-child) {
    margin-right: 17px;
}
.footer__bottom {
    padding: 34px 0;
}
.footer__bottom-wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .footer__bottom-wrapper {
        max-width: 90%;
    }
}
.footer__bottom-inner {
    display: flex;
}
.footer__bottom-item {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    margin-bottom: 14px;
}
.footer__bottom-column_mod {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    max-width: 734px;
}
.footer__bottom-column:not(:last-child) {
    margin-right: 113px;
}
.footer__mobile-nav {
    display: none;
}
.footer__column_contacts_hide {
    display: none;
}
.footer__mobile-nav-footer {
    display: none;
}

.mobile-nav-footer__item {
    padding: 20px 0 8px;
    border-bottom: 1px solid rgba(237, 28, 36, 0.15);
    position: relative;
}
.mobile-nav-footer__item_dropdown::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 20px;
    right: 30px;
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.mobile-nav-footer__item_dropdown_active::before {
    transform: rotate(180deg);
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__link {
    color: #ED1C24;
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__list {
    height: auto;
    overflow: auto;
    opacity: 1;
}
.mobile-nav-footer__link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    transition: all 0.4s linear;
}
.mobile-nav-footer__list {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s linear;
}
.mobile-nav-footer__list-inner {
    padding: 30px 0 10px 0;
}
.mobile-nav-footer__list-item {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #fff;
    margin-bottom: 23px;
}
.mobile-nav-footer__list-item:active, .mobile-nav-footer__list-item:hover {
    color: #fff;
}
.mobile-nav-footer__list-item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .footer__nav {
        flex-wrap: wrap;
    }
    .footer__column {
        width: 48%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 575px) {
    .footer__column_contacts_hide {
        display: block;
        margin-top: 30px;
    }
    .footer__logo-img {
        min-width: 120px;
    }
    .footer__logo {
        margin-right: 0;
    }
    .footer__top {
        padding: 30px 0 10px 0;
    }
    .footer__top-inner {
        flex-direction: column;
    }
    .footer__bottom-column_mod {
        font-size: 9px;
    }
    .footer__bottom-column_hide {
        display: none;
    }
    .footer__nav {
        display: none;
    }
    .footer__mobile-nav {
        display: block;
    }
    .footer__column {
        width: 100%;
    }
    .footer__icons {
        justify-content: center;
    }
    .footer__icon {
        width: 28px;
    }
    .footer__icon-link:not(:last-child) {
        margin-right: 28px;
    }
    .footer__mobile-nav-footer {
        display: block;
    }
}
.header {
    position: relative;
}
.header__logo {
    max-width: 183px;
}
.header__burger {
    display: none;
    width: 24px;
    height: 16px;
    position: relative;
}
.header__burger::before, .header__burger:after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: #ED1C24;
    position: absolute;
    left: 0;
    transition: all 0.4s linear;
}
.header__burger::before {
    top: 0;
}
.header__burger:after {
    bottom: 0;
}
.header__burger_active .header__burger-line {
    display: none;
}
.header__burger_active::before, .header__burger_active:after {
    top: 50%;
}
.header__burger_active::before {
    transform: translateY(-50%) rotate(45deg);
}
.header__burger_active:after {
    transform: translateY(-50%) rotate(-45deg);
}
.header__burger-line {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    width: 100%;
    background: #ED1C24;
}
.header__bottom-panel {
    position: relative;
    z-index: 101;
    box-shadow: 0 4px 6px rgba(24, 24, 24, 0.1);
}
.header__mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}
.header__mobile-nav_active {
    height: 100vh;
    overflow: auto;
}

.top-panel {
    background: #181818;
    padding: 18px 0 17px 0;
}
.top-panel__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-panel__item {
    display: flex;
    align-items: center;
}
.top-panel__item:hover > .top-panel__title {
    color: #ED1C24;
}
.top-panel__item:hover > .top-panel__icon path {
    stroke: #ED1C24;
}
.top-panel__icon {
    margin-right: 13px;
}
.top-panel__icon path {
    stroke: #fff;
    transition: all 0.4s linear;
}
.top-panel__title {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    transition: all 0.4s linear;
}

.bottom-panel {
    padding: 21px 0 20px 0;
}
.bottom-panel__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 60px;
}
.nav__link {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #181818;
    padding-bottom: 6px;
    transition: all 0.4s linear;
    border-bottom: 1px solid transparent;
}
.nav__link_active {
    border-bottom: 1px solid #ED1C24;
}
.nav__link:hover {
    border-bottom: 1px solid #ED1C24;
}

.mobile-nav {
    background: #fff;
}
.mobile-nav__panel {
    margin-bottom: 40px;
}
.mobile-nav__dropdown-list {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}
.mobile-nav__list-item {
    padding: 24px 0 8px 0;
    border-bottom: 1px solid #E3E3E3;
}
.mobile-nav__list-item_dropdown {
    position: relative;
}
.mobile-nav__list-item_dropdown::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 20px;
    right: 30px;
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.mobile-nav__list-item_dropdown_active::before {
    transform: rotate(180deg);
}
.mobile-nav__list-item_dropdown_active .mobile-nav__link {
    color: #ED1C24;
}
.mobile-nav__list-item_dropdown_active .mobile-nav__dropdown-list {
    height: auto;
    overflow: auto;
    opacity: 1;
}
.mobile-nav__dropdown-list-item {
    display: block;
    padding: 24px 0 8px 0;
}
.mobile-nav__button {
    margin: 0 auto;
}
.mobile-nav__button:not(:last-child) {
    margin-bottom: 20px;
}
.mobile-nav__icons {
    margin: 36px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-nav__icon-link {
    margin-right: 28px;
}

@media screen and (max-width: 991px) {
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__logo-img {
        max-width: 120px;
    }
}
@media screen and (max-width: 575px) {
    .top-panel__inner {
        justify-content: center;
    }
    .top-panel__item_hide {
        display: none;
    }
    .bottom-panel {
        padding: 10px 0 10px 0;
    }
}
.oils-page__breadcrumbs {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .oils-page__breadcrumbs {
        max-width: 90%;
    }
}
.oils-page__wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .oils-page__wrapper {
        max-width: 90%;
    }
}
.oils-page__block-oil {
    padding-bottom: 100px;
}
.oils-page__block {
    padding: 100px 0;
}
.oils-page__block-bordered {
    border-bottom: 1px solid #C6C6C6;
}
.oils-page__main-info {
    display: flex;
    justify-content: space-between;
}
.oils-page__image-block {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.oils-page__image {
    max-width: 540px;
}
.oils-page__image-text {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -35px;
    color: #000;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    right: 20px;
}
.oils-page__info-block {
    max-width: 500px;
}
.oils-page__title_type_mobile {
    display: none;
}
.oils-page__title_type_desktop {
    font-family: Oswald;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.oils-page__text {
    text-indent: 15px;
    margin-top: 20px;
    color: #585858;
    text-align: justify;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}
.oils-page__characteristics {
    margin-top: 20px;
}
.oils-page__characteristics-title {
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.oils-page__characteristics-text {
    margin-top: 10px;
    color: #585858;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    white-space: pre-wrap;
}
.oils-page__about {
    margin-top: 110px;
}
.oils-page__about-title {
    width: -moz-fit-content;
    width: fit-content;
    color: #000;
    font-family: Oswald;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 5px;
    border-bottom: 1px solid #ED1C24;
}
.oils-page__text-container {
    margin-top: 36px;
}
.oils-page__about-text {
    text-indent: 15px;
    max-width: 810px;
    color: #585858;
    text-align: justify;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.oils-page__list-title {
    margin-top: 40px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Inter";
}
.oils-page__list {
    margin-top: 25px;
    max-width: 515px;
    color: #585858;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-left: 25px;
}
.oils-page__list li {
    list-style-type: disc;
    color: #585858;
}
.oils-page__link-block {
    margin-top: 40px;
    font-family: "Inter";
    font-size: 14px;
    color: #585858;
}
.oils-page__link {
    border-bottom: 1px solid #585858;
}

@media screen and (max-width: 1025px) {
    .oils-page__block {
        padding: 70px 0;
    }
    .oils-page__image {
        max-width: 400px;
    }
    .oils-page__image-text {
        right: 17px;
    }
}
@media screen and (max-width: 769px) {
    .oils-page__image {
        max-width: 300px;
    }
    .oils-page__image-text {
        right: 11px;
    }
    .oils-page__title_type_desktop {
        font-size: 32px;
    }
    .oils-page__about-title {
        font-size: 30px;
    }
    .oils-page__about {
        margin-top: 60px;
    }
}
@media screen and (max-width: 590px) {
    .oils-page__block-oil {
        padding-bottom: 120px;
    }
    .oils-page__block {
        padding: 40px 0;
    }
    .oils-page__main-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .oils-page__title_type_mobile {
        display: block;
        font-family: Oswald;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
		text-align: center;
    }
    .oils-page__title_type_desktop {
        display: none;
    }
    .oils-page__image {
        margin: auto;
    }
    .oils-page__image-text {
        font-size: 14px;
    }
    .oils-page__text {
        margin-top: 55px;
    }
    .oils-page__characteristics {
        margin-top: 10px;
    }
    .oils-page__about {
        margin-top: 35px;
    }
    .oils-page__about-title {
        font-size: 28px;
    }
    .oils-page__text-container {
        margin-top: 20px;
    }
    .oils-page__list-title {
        font-size: 14px;
        margin-top: 50px;
    }
    .oils-page__list {
        margin-top: 25px;
    }
    .oils-page__link-block {
        margin-top: 30px;
    }
}

/* buttons */

@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.button-main {
    width: 202px;
    border-radius: 4px;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    padding: 16px;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
}
.button-main:hover {
    color: #fff;
}
.button-main_disabled {
    background: #E3E3E3;
    border-color: #E3E3E3;
    color: #8E8E8E;
}
.button-main_disabled:hover {
    color: #8E8E8E;
}
.button-main_type_filter {
    min-width: 208px;
    width: auto;
    padding: 14px;
    border: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    background: #F9F8F8;
    color: #585858;
}
.button-main_type_filter:hover {
    background: #E3E3E3;
    color: inherit;
}
.button-main_type_filter.active {
    background: #ED1C24;
    color: #fff;
}
.button-main_type_inverted {
    width: auto;
    background: #F9F8F8;
    color: #ED1C24;
}
.button-main_type_inverted:hover {
    background: #ED1C24;
    color: #fff;
}

.button-white {
    border-radius: 4px;
    width: 202px;
    background: #fff;
    border: 1px solid #ED1C24;
    padding: 16px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #ED1C24;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
}
.button-white__img {
    margin-right: 10px;
}
.button-white_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-white_disabled {
    border-color: #C6C6C6;
    color: #C6C6C6;
}
.button-white_disabled:hover {
    background: #fff;
}
.button-white_active {
    color: #fff;
    background: #ED1C24;
}

.button-left {
    width: 60px;
    height: 18px;
    background: url("../image/arrow-left.svg") 0 0/cover no-repeat;
    cursor: pointer;
    display: block;
}

@media screen and (max-width: 575px) {
    .button-main {
        width: 100%;
    }
    .button-white {
        width: 100%;
    }
}
@media screen and (min-width: 576px) {
    .button-white:hover {
        background: #F8A4A7;
    }
    .button-white_disabled:hover {
        background: #fff;
    }
}
.button__toggle {
    font-weight: 500;
    margin-top: 12px;
    color: #181818;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #F9F8F8;
    border: none;
    width: 100%;
    padding: 14px;
}
.button__toggle img {
    width: 12px;
    height: 6px;
}
.button__toggle.opened img {
    transform: rotate(-180deg);
}

/* oild page */
@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.oils-page__breadcrumbs {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .oils-page__breadcrumbs {
        max-width: 90%;
    }
}
.oils-page__wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .oils-page__wrapper {
        max-width: 90%;
    }
}
.oils-page__block {
    padding: 100px 0;
}
.oils-page__block-bordered {
    border-bottom: 1px solid #C6C6C6;
}
.oils-page__main-info {
    display: flex;
    justify-content: space-between;
}
.oils-page__image-block {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.oils-page__image {
    max-width: 540px;
}
.oils-page__image-text {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -35px;
    color: #000;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    right: 20px;
}
.oils-page__info-block {
    max-width: 500px;
}
.oils-page__title_type_mobile {
    display: none;
}
.oils-page__title_type_desktop {
    font-family: Oswald;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.oils-page__text {
    text-indent: 15px;
    margin-top: 20px;
    color: #585858;
    text-align: justify;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}
.oils-page__characteristics {
    margin-top: 20px;
}
.oils-page__characteristics-title {
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.oils-page__characteristics-text {
    margin-top: 10px;
    color: #585858;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    white-space: pre-wrap;
}
.oils-page__about {
    margin-top: 110px;
}
.oils-page__about-title {
    width: -moz-fit-content;
    width: fit-content;
    color: #000;
    font-family: Oswald;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 5px;
    border-bottom: 1px solid #ED1C24;
}
.oils-page__text-container {
    margin-top: 36px;
}
.oils-page__about-text {
    text-indent: 15px;
    max-width: 810px;
    color: #585858;
    text-align: justify;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.oils-page__list-title {
    margin-top: 40px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Inter";
}
.oils-page__list {
    margin-top: 25px;
    max-width: 515px;
    color: #585858;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-left: 25px;
}
.oils-page__list li {
    list-style-type: disc;
    color: #585858;
}
.oils-page__link-block {
    margin-top: 40px;
    font-family: "Inter";
    font-size: 14px;
    color: #585858;
}
.oils-page__link {
    color: #3148C1;
    border-bottom: 1px solid #3148C1;
}
.oils-page__catalog-btn {
    margin-top: 30px;
}
.oils-page__btn-toggle {
    display: none;
}

@media screen and (max-width: 1025px) {
    .oils-page__block {
        padding: 70px 0;
    }
    .oils-page__image {
        max-width: 400px;
    }
    .oils-page__image-text {
        right: 17px;
    }
}
@media screen and (max-width: 769px) {
    .oils-page__image {
        max-width: 300px;
    }
    .oils-page__image-text {
        right: 11px;
    }
    .oils-page__title_type_desktop {
        font-size: 32px;
    }
    .oils-page__about-title {
        font-size: 30px;
    }
    .oils-page__about {
        margin-top: 60px;
    }
}
@media screen and (max-width: 600px) {
    .oils-page__block {
        padding: 40px 0 80px;
    }
    .oils-page__main-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .oils-page__title_type_mobile {
        display: block;
        font-family: Oswald;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
    }
    .oils-page__title_type_desktop {
        display: none;
    }
    .oils-page__image {
        margin: auto;
    }
    .oils-page__image-text {
        font-size: 14px;
    }
    .oils-page__text {
        margin-top: 55px;
    }
    .oils-page__characteristics {
        margin-top: 10px;
    }
    .oils-page__about {
        margin-top: 35px;
    }
    .oils-page__about-title {
        font-size: 28px;
    }
    .oils-page__text-container {
        margin-top: 20px;
        height: 260px;
        overflow: hidden;
        transition: height 0.4s ease;
    }
    .oils-page__list-title {
        font-size: 14px;
        margin-top: 50px;
    }
    .oils-page__list {
        margin-top: 25px;
        height: 260px;
        overflow: hidden;
        transition: height 0.4s ease;
    }
    .oils-page__link-block {
        margin-top: 30px;
    }
    .oils-page__btn-toggle {
        display: flex;
    }
}

/* ###################### OIL CARD CSS */

@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.oil-card {
    background-color: #F9F8F8;
    padding: 20px;
    max-width: 255px;
}
.oil-card__title {
    margin-top: 16px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.oil-card__block-img {
    height: 220px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.oil-card__button {
    margin-top: 46px;
}

@media screen and (max-width: 575px) {
    .oil-card {
        max-width: initial;
        width: 100%;
    }
}

/* ############# OIL PAGE CSS */

@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.catalog-page__breadcrumbs-wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .catalog-page__breadcrumbs-wrapper {
        max-width: 90%;
    }
}
.catalog-page__breadcrumbs {
    margin-bottom: 60px;
}
.catalog-page__wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .catalog-page__wrapper {
        max-width: 90%;
    }
}
.catalog-page__section {
    margin-bottom: 80px;
}
.catalog-page__filters {
    display: flex;
    gap: 17px;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 5px;
}
.catalog-page__filters::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}
.catalog-page__filters::-webkit-scrollbar-track {
    background: transparent;
}
.catalog-page__filters::-webkit-scrollbar-thumb {
    background-color: #aeaeae;
    border-radius: 20px;
}
.catalog-page__catalog {
    margin: 40px 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.catalog-page__links {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 15px;
}
.catalog-page__link-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.catalog-page__link-text a {
    color: #3148C1;
    padding-bottom: 1px;
    border-bottom: 1px solid #3148C1;
}

@media screen and (max-width: 630px) {
    .catalog-page__breadcrumbs {
        margin-bottom: 34px;
    }
}


.oils-page__block-oil{
  margin-bottom: 10px;
  padding-bottom: 0px;
}

.oils-page__block{
 padding-bottom: 0px;
}

.oils-page__block{
padding-bottom: 100px;
}
