body {
    background-color: #E0D6C8;
    font-family: 'CenturyGothic', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.favorite-item {
    position: relative;
}

.fav-remove-btn {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.main-favorite-preview .main-catalog-item--btn {
    margin-left: auto;
}

.fav-remove-btn.fav-remove-btn-static {
    position: static;
    border: 1px solid #ccc;
    min-width: 40px;
}

.fav-remove-btn svg {
    display: block;
}

.fav-remove-btn:hover {
    background-color: red;
}

.fav-remove-btn svg path {
    transition: all 0.3s;
}
.fav-remove-btn:hover svg path {
    stroke: #fff !important;
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 500px;
    }
}

@media (max-width: 500px) {
    .container {
        max-width: 425px;
    }
}

@media (max-width: 425px) {
    .container {
        max-width: 375px;
    }
}

@media (max-width: 375px) {
    .container {
        max-width: 320px;
    }
}

.anim {
    transition: transform .5s ease-in-out;
}

.title {
    text-transform: uppercase;
    color: #262121;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 33px;
}

@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }
}

.anim:hover{
    transform: scale(.95);
}

.anim:active {
    background: #006e8f81;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 50px 12px 50px;
    box-shadow: 0px 9px 32px rgba(0, 0, 0, 0.16);
}

.header__inner.fixed {
    position: fixed;
    z-index: 20;
    width: 100%;
    background: #E0D6C8;
    top: 0;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__btn {
    display: flex;
    align-items: center;
    gap: 17px;
}

.menu__list {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu__link {
    color: #262121;
    font-size: 14px;
}

.header__btn {
    display: flex;
    align-items: center;
    gap: 17px;
}

.header__btn-favourite a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__btn-favourite a span {
    font-size: 12px;
    color: #636363;
}

.header__feedback {
    width: 236px;
    height: 44px;
    background: #0086AE;
    color: #fff;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__burger {
    position: relative;
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    max-width: 24px;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: #262121;
    transition: all .5s ease-in-out;
}

.header__burger.active {
    width: 24px;
    position: relative;
}

.header__burger.active span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}

.header__burger.active span:nth-child(3){
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}
.header__burger.active span:nth-child(2){
    display: none
}

.header__content {
    width: 61vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1640px) {
    .header__content {
        width: 70vw;
    }
}
@media (max-width: 1440px) {
    .header__content {
        width: 75vw;
    }
}


@media (max-width: 1340px) {
    .header__burger {
        display: flex;
    }

    .header__content {
        width: auto;
        position: absolute;
        z-index: 15;
        flex-direction: column;
        top: 3.84rem;
        padding: 2rem 2rem 0 2rem;
        background: #E0D6C8;
        height: 100vh;
        justify-content: start;
        gap: 2rem;
        left: calc(-100% - 120px);
        transition: left .5s ease-in-out;
    }

    .header__content.active {
        left: 0;
    }

    .header__menu {
        width: 100%;

    }

    .menu__list {
        flex-direction: column;
        align-items: start;
        width: 100%;
    }

    .header__btn {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 500px) {
    .header__inner {
        padding: 25px 20px;
    }
}

main{
    margin: 25px 0 77px 0;
}

.main-banner__inner{
    display: flex;  
    align-items: center;
    justify-content: space-between;
    gap: 19px;
}

.main-banner__item {
    height: 452px;
    border-radius: 21px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.main-banner__item:first-child {
    width: 70%;
}

.main-banner__item:last-child {
    width: 30%;
    display: flex;
    align-items: end;
    padding-bottom: 33px;
    justify-content: center;
}

.main-banner__item .outline {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(38, 33, 33, 0.33);
    width: 100%;
    height: 100%;
    border-radius: 21px;
}

.main-banner__item-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    padding: 143px 0 0 68px;
    position: relative;
    z-index: 2;
}

.main-banner__item-text h1, 
.main-banner__item-text h2 {
    line-height: 100%;
}

.main-banner__item-text h2 {
    padding-left: 78px;
}

.main-banner__item-btn {
    width: 302px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: #0086AE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.main-banner__item-btn span {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.main-banner__mobile {
    display: none;
}

@media (max-width: 1024px) {
    .main-banner__inner {
        justify-content: center;
    }
    .main-banner__item {
        height: auto;
    }
    .main-banner__item:nth-child(2) {
        display: none;
    }
    .main-banner__item:first-child {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-banner__item {
        padding: 53px 0 53px 20px;
    }
    .main-banner__mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 10;
        gap: 66px;
    }

    .main-banner__item-text {
        display: none;
    }

    .main-banner__mobile--container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .main-banner__mobile--container h1 {
        max-width: 300px;
        color: #fff;
        font-family: 'Benzin', sans-serif;
        font-weight: 700;
        font-size: 18px;
    }
    .main-banner__mobile--container p {
        max-width: 450px;
        font-size: 16px;
        line-height: 120%;
        color: #fff;
    }
    .main-banner__mobile--faq {
        width: 190px;
        height: 36px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0086AE;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
    }
}

@media (max-width: 500px) {
    .main-banner__mobile--container p {
        max-width: 350px;
        font-size: 10px;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
    }
}

@media (max-width: 425px) {
    .main-banner__item {
        border-radius: 12px;
    }
    .main-banner__mobile--container p {
        font-size: 8px;
        max-width: 300px;
    }
}

.about__inner {
    margin: 81px 0 103px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about__inner-title {
    font-weight: 700;
    font-size: 28px;
    color: #262121;
    margin-bottom: 27px;
}

.about__video-wrap {
    width: 579px;
    border-radius: 21px;
    background: #FFF6E9;
    overflow: hidden;
}
.about__video {
    width: 100%;
}
.about-btn {
    width: 279px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0086AE;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;    
    color: #fff;
}

.about__inner-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 29px;
}

.about__inner-text  {
    color: #262121;
    font-size: 16px;
}

.about__inner-text--left p, .about__inner-text--left {
    max-width: 525px;
}

.about__inner-text--right p {
    max-width: 470px;
}

.horeka-banner img {
    display: block;
}

.horeka-banner {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .about__inner {
        flex-direction: column;
        justify-content: center;
    }
    .about__inner-right {
        align-items: start;
    }
}

@media (max-width: 768px) {
    .about__video-wrap {
        width: 100%;
    }
}

.about-btn.mobile {
    display: none;
}

@media (max-width: 500px) {
    .about__inner-title {
        font-size: 16px;
    }
    .about__inner-text {
        font-size: 14px;
    }
    .about-btn.desktop {
        display: none;
    }
    .about-btn {
        width: auto;
        height: auto;
    }
    .about-btn.mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 21px;
        padding: 43px 53px;
        width: 100%;
        background-size: cover !important;
    }
    .about-btn.mobile div {
        background: #0086AE;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 81px;
        border-radius: 21px;
    }
}

@media (max-width: 425px) {
    .about__inner {
        margin: 37px 0 51px 0;
    }
    .about__inner-text {
        font-size: 10px;
    }

    .about-btn.mobile div {
        padding: 15px 50px;
        border-radius: 10px;
    }
}

@media (max-width: 375px) {

    .about-btn.mobile div {
        padding: 15px 35px;
    }
}

.category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.category__item {
    width: 220px;
    height: 207px;
    border-radius: 13px;
    display: flex;
    align-items: end;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    box-shadow: 0px 2px 26.3px rgba(0, 0, 0, 0.10);
    position: relative;
}

.category__item-gradient {
    position: absolute;
    width: 100%;
    height: 80%;
    left: 0;
    bottom: 0;
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(0,0,0,0), #00546D);
}

.category__text {
    padding-left: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    color: #fff;
    position: relative;
    z-index: 2;
    line-height: 120%;
}

.category__item-box{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.category__item-text {
    max-width: 157px;
    color: #262121;
    font-size: 14px;
    font-weight: 700;
}

.category__item-btn {
    width: 221px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    gap: 10px;
    border-radius: 6px;
    background-color: #0086AE;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .category__item-box {
        width: 100%;
    }
    .category__item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 500px) {
    .category__text {
        font-size: 12px;
        padding-left: 10px;
    }
    .category__item {
        height: 173px;
    }
}

@media (max-width: 375px) {
    .category .container {
        max-width: 350px;
    }
}

.naturalness {
    margin-top: 76px;
    margin-bottom: 76px;
}

.naturalness .title {
    max-width: 850px;
    font-size: 40px;
    color: #232323;
    font-weight: 700;   
    line-height: 120%;
}

@media (max-width: 500px) {
    .naturalness .title {
        font-size: 24px;
    }
}

.naturalness_box {
    max-width: 1265px;
    margin: 0 auto;
    background: #040303;
    border-radius: 21px;
    height: auto;
    position: relative;
}

.naturalness_box .overlay-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 21px;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.82) 50%,
        rgba(0, 0, 0, 1) 100%
    );
}

.naturalness__inner {
    display: flex;
    justify-content: space-between;
}

.naturalness__inner img {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
}

.naturalness__title {
    position: absolute;
    top: 76px;
    left: 50px;
    color: #fff;
    font-size: 50px;
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
}

.naturalness__container {
    width: 580px;
    padding: 100px 50px 0 0;
    position: relative;
}

.naturalness__lighttext {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 20px #00C4FF;
    color: #fff;
}

.naturalness__subtext {
    width: 400px;
    height: 53px;
    border-radius: 26.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .85);
    font-size: 20px;
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    margin-top: 1rem;
}

.naturalness__text {
    color: #fff;
    font-size: 16px;
    line-height: 150%;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .naturalness img {
        width: 50%;
    }
    .naturalness__container {
        padding-top: 50px;
        width: 450px;
    }
}

@media (max-width: 820px) {
    .naturalness__container {
        width: auto;
        padding-right: 0 !important;
    }
    .naturalness__inner {
        padding-bottom: 2rem;
    }
    .naturalness__title {
        top: 30px;
        left: 30px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .naturalness__lighttext {
        font-size: 10px;
    }
    .naturalness__subtext {
        width: 200px;
        height: 30px;
        font-size: 10px;
    }
    .naturalness__text {
        font-size: 12px;
        max-width: 350px;
    }
    .naturalness__container {
        padding: 30px 30px 0 0;
        max-width: 350px;
    }
}

@media (max-width: 500px) {
    .naturalness__text {
        font-size: 8px;
        max-width: 200px;
        margin-top: 15px;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
    }
    .naturalness__title {
        font-size: 10px;
    }
    .naturalness__container {
        max-width: 235px;
    }
}

@media (max-width: 425px) {
    .naturalness__inner {
        overflow: hidden;
        padding-bottom: 1rem;
    }
    .naturalness__lighttext {
        font-size: 8px;
    }
    .naturalness__subtext {
        font-size: 6px;
        width: 113px;
        height: 20px;
    }
    .naturalness__text {
        font-size: 6px;
        max-width: 150px;
    }
    .naturalness__container {
        padding-right: 0;
        max-width: 12.5rem;
    }
}

@media (max-width: 425px) {
    .naturalness {
        margin: 50px 0 40px 0;
    }
}

.recipe__list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.recipe__item {
    min-width: 280px;
    height: 410px;
    border-radius: 21px;
    padding: 34px 0 34px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .5s ease-in-out;
    background-size: cover !important;
}

.recipe__item-title {
    max-width: 240px;
    padding-left: 25px;
    color: #fff;
    font-size: 18px;
}

.recipe__btn-box{
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 25px;
}

.recipe__btn-box a {
    color: #fff;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .recipe__item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .recipe__item {
        min-width: auto;
    }
    .recipe__btn-box {
        padding-left: 0;
        justify-content: center;
    }
    .recipe__btn-box svg {
        width: 65px;
    }
    .recipe__btn-box a {
        font-size: 14px;
    }
    .recipe__item-title {
        max-width: 200px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .recipe__btn-box {
        gap: 15px;
    }
    .recipe__btn-box a {
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .recipe__item-title {
        font-size: 12px;
    }
    .recipe__item {
        height: 280px;
    }
    .recipe__btn-box svg {
        width: 45px;
    }
}

@media (max-width: 375px) {
    .recipe .container {
        max-width: 350px;
    }
}

.faq__inner {
    margin: 109px 0 68px 0;
}

.faq__title {
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}

.faq__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq__item {
    display: flex;
    flex-direction: column;
    gap: 23px;
    padding: 31px 0;
    border-bottom: 1px solid rgba(0,0,0,.42);
    width: calc(50% - 10px);
}

.faq__item-top--title {
    font-size: 20px;
    font-weight: 700;
    color: #262121;
    max-width: 530px;
}

.faq__item-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.faq__item-body {
    display: none;
}

.faq__item-body.active {
    display: block;
}


.faq__item-body--text {
    max-width: 475px;
    font-size: 16px;
    color: #262121;
}

.faq__item-top--button {
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.faq__item-top--button.active {
    transform: rotate(45deg);
}
.bx-breadcrumb .bx-breadcrumb-item > span {
    color: #000;
}

.c-about-info-title-wrap {
    margin-bottom: 30px;
}

.c-about-info-title {
    font-weight: bold;
    font-size: 40px;
    max-width: 670px;
    color: #d50000;
    line-height: 1.2;
    position: relative;
}

.c-about-info-title:after {
    content: '';
    width: 2px;
    height: 100px;
    position: absolute;
    background: #d50000;
    transform: rotate(-45deg);
    top: 69px;
    right: 230px;
}

.c-about-info-title:before {
    content: '';
    width: 2px;
    height: 100px;
    position: absolute;
    background: #d50000;
    transform: rotate(45deg);
    top: 69px;
    left: 69px;
}

.c-about-info-row {
    display: flex;
    gap: 60px;
}

.c-about-info-left {
    width: calc(50% - 30px);
}
.c-about-info-right {
    width: calc(50% - 30px);
}

.c-about-info-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.c-about-info-item {
    width: calc(50% - 10px);
    height: auto;
    min-height: 100px;
    position: relative;
    padding-left: 30px;
    display: flex;
}

.c-about-info-item:before {
    content: '';
    border: 2px dashed #d50000;
    height: 100%;
    position: absolute;
    left: 0;
    top: -15px;
}

.c-about-info-item:nth-child(-n+2):before {
    top: 0;
}

.c-about-info-item:nth-last-child(-n+2) {
    align-items: flex-end;
}
.c-about-info-item:nth-last-child(-n+2):before {
    top: -30px;
    height: calc(100% + 30px);
}
.c-about-info-item:nth-child(3),
.c-about-info-item:nth-child(4){
    align-items: center;
}

.c-about-info-item-circle {
    position: absolute;
    left: -13px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d50000;
    display: flex;
}
.c-about-info-item:nth-last-child(-n+2) .c-about-info-item-circle {
    top: auto;
    bottom: 0;
}
.c-about-info-item-circle:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d50000;
    border: 2px solid #fff;
    margin: auto;
}


.c-about-info-item:nth-child(3) .c-about-info-item-circle,
.c-about-info-item:nth-child(4) .c-about-info-item-circle {
    top: 0;
    bottom: 0;
    margin: auto;
}
.c-about-info-authors-title {
    text-align: center;
}
.c-about-info-authors-title span {
    text-decoration: underline;
}

.c-about-info-authors-desc {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.c-about-info-authors-desc span {
    color: #d50000;
}

.c-about-info-authors-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.c-about-info-authors-item {
    max-width: 150px;
    text-align: center;
}

.c-about-info-authors-item-img img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.c-about-info-authors-item-img {
    padding: 5px;
    background: #fff;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px #0000004a;
}

.c-about-info-authors-item-title {
    text-transform: uppercase;
    font-weight: bold;
}
.c-about-plashka-wrap {
    position: relative;
    padding: 7px 8px;
    border-radius: 10px;
    background: #ababab;
    margin: auto;
    margin-bottom: 25px;
    max-width: 96%;
}
.c-about-plashka {
    background: #ababab;
    padding: 7px 8px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffff;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .faq__item {
        max-width: none;
        width: 100%;
    }
    .c-about-info-row {
        flex-direction: column;
    }
    .c-about-info-title:after {
        left: 137px;
        right: auto;
    }
    .c-about-info-right {
        width: 100%;
    }
    .c-about-info-left {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .c-about-info-title {
        font-size: 24px;
    }
    .c-about-plashka-wrap {
        max-width: 100%;
    }
    .c-about-plashka {
        font-size: 18px;
    }
    .c-about-info-title {
        font-size: 30px;
    }
    .c-about-info-title:after {
        display: none;
    }

    .c-about-info-title:before {
        display: none;
    }
    .faq__list {
        gap: 15px;
    }
    .faq__item {
        padding: 18px 0;
        gap: 10px;
    }
    .faq__item-top--title {
        font-size: 18px;
    }
    .faq__item-body--text {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .faq__item-top--title {
        font-size: 14px;
    }
    .faq__item-body--text {
        font-size: 12px;
        max-width: 80%;
    }
}

@media (max-width: 425px) {
    .faq__inner {
        margin: 40px 0;
    }
}

@media (max-width: 375px) {
    .faq__item-top--title {
        font-size: 10px;
    }
    .faq__item-top--button svg {
        width: 15px;
        height: 15px;
    }
    .faq__item-body--text {
        font-size: 8px;
    }
}

.spices {
    overflow: hidden;
}

.spices__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.spices__inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spices__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spices__title {
    margin-bottom: 0;
}

.spices__subtitle {
    color: #000;
    font-size: 20px;
}

.spices__slider-btn {
    display: flex;
    align-items: center;
    gap: 26px;
    cursor: pointer;
}

.spices__slider-btn--prev,
.spices__slider-btn--next {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #006E8F;
}

.spices__slider-btn--prev:active,
.spices__slider-btn--next:active {
    background: #006e8f81;
}

.spices-slide {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.spices-slide .text {
    font-size: 12px;
    color: #393232;
    max-width: 287px;
    line-height: 120%;
    margin-top: 10px;
}

.spices-slide img {
    width: 380px;
    height: 357px;
    border-radius: 12px;
    object-fit: cover;
}

.spices-slide__text {
    font-size: 20px;
    color: #000;
    margin-top: 21px;
}

@media (max-width: 1024px) {
    .spices-slide img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .spices-slide img {
        height: 180px;
    }
    .spices-slide__text {
        font-size: 16px;
    }
    .spices-slide .text {
        font-size: 10px;
    }
    .spices__slider-btn--prev, .spices__slider-btn--next {
        width: 50px;
        height: 50px;
    }
    .spices__slider-btn {
        gap: 12px;
    }
}

@media (max-width: 500px) {
    .spices__slider-btn--prev, .spices__slider-btn--next {
        width: 29px;
        height: 29px;
    }
    .spices__slider-btn--prev svg, .spices__slider-btn--next svg {
        width: 10px;
    }
    .spices__text {
        gap: 4px;
    }
    .spices-slide img {
        height: 128px;
    }
    .spices-slide__text {
        font-size: 10px;
    }
    .spices-slide .text {
        font-size: 6px;
    }
    .spices__subtitle {
        font-size: 10px;
    }
    .spices__title.title {
        font-size: 12px;
    }
}


.news {
    margin-top: 81px;
}

.news__list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news__list .news__item:first-child,
.news__list .news__item:nth-child(3) {
    width: 780px;
    max-width: 780px;
    height: 286px;
}

.news__list .news__item .outline {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 21px;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(38,33,33,1), rgba(0,0,0,0));
}

.news__list .news__item:nth-child(2) {
    width: 379px;
    max-width: 379px;
    height: 286px;
}

.news__item {
    border-radius: 21px;
    background-size: cover;
    position: relative;
}

.news__item-box {
    width: fit-content;
    height: 253px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    padding: 32px 0 15px 22px;
    position: relative;
    z-index: 3;
    margin: 17px 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news__item-box-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news__item-box__title {
    max-width: 365px;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 120%;
}

.news__item-box__text {
    max-width: 440px;
    font-size: 12px;
    color: #fff;
}

.news__list .news__item:nth-child(2) .news__item-box__text {
    max-width: 300px;
}

.news__item-box--btn {
    display: flex;
    align-items: center;
    gap: 24px;
}

.news__item-box--btn a {
    color: #fff;
    font-size: 18px;
}

.news-contact {
    display: flex;
    flex-direction: column;
    padding: 79px 0 0 0;
}

.news-contact__title {
    font-weight: 700;
    font-size: 24px;
    color: #262121;
}

.news-contact__subtitle {
    margin: 8px 0 18px 0;
    font-size: 16px;
    color: #262121;
}

.news-contact--social__item:hover {
    transform: scale(.95);
}

.news-contact--social {
    display: flex;
    align-items: center;
    gap: 19px;
}

.news-contact--social__item img {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

@media (max-width: 1024px) {
    .news__list .news__item:nth-child(2) {
        width: 780px;
        max-width: 780px;
        height: 286px;
    }
    .news__list .news__item:nth-child(2) .news__item-box__text {
        max-width: 440px;
    }
    .news-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .news__item-box__text {
        font-size: 10px !important;
        max-width: 300px !important;
    }
    .news__item-box--btn svg {
        width: 50px;
    }
    .news__item-box--btn a {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .news__item-box {
        max-width: 500px;
    }
    .news__item-box__title {
        max-width: 250px;
        font-size: 12px;
        font-family: 'Gilroy', sans-serif;  
    }
    .news__item-box__text {
        font-size: 8px;
        font-family: 'Gilroy', sans-serif;
        font-weight: 500;
    }
}

.footer {
    background: #262121;
    border-radius: 21px 21px 0 0;
}

.footer__inner {
    padding: 50px 50px 35px 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer__menu-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.footer__content {
    display: flex;
    gap: 100px;
}

.footer__menu-container {
    display: flex;
    gap: 20px;
}

.footer__menu-container nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__menu-title{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 11px;
    line-height: 100%;
}

.nav__link-footer {
    color: #fff;
    font-size: 12px;
}

.footer__social {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__social--title {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.footer__social-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__social-item img {
    width: 21px;
    height: 22px;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.footer__social-item img:hover {
    transform: scale(.95);
}

.footer__contact{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__contact-item__title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.footer__contact-item--content {
    display: flex;
    /* align-items: center; */
    gap: 9px;
}

.footer__contact-item:last-child .footer__contact-item--content {
    align-items: flex-start;
}

.mailto {
    text-decoration: underline;
}

.footer__contact-item--content a,
.footer__contact-item--content p {
    color: #fff;
    font-size: 12px;
    max-width: 262px;
}

.no-copyright {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.42);
}

.no-copyright {
    font-size: 9px;
    color: rgba(255, 255, 255, .36);
}

@media (max-width: 1024px) {
    .footer__content {
        flex-direction: column;
        gap: 25px;
    }
    .footer__menu-box {
        flex-direction: row-reverse;
    }
    .footer__menu-container {
        flex-wrap: wrap;
    }
    .footer__social {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer__inner {
        padding: 50px 0 35px 0;
    }
    .footer__contact-item:last-child .footer__contact-item--content svg {
        width: 50px;
    }
    .footer__contact-item:last-child .footer__contact-item--content a, .footer__contact-item:last-child .footer__contact-item--content p {
        font-size: 12px;
        max-width: 200px;
    }
}

@media (max-width: 500px) {
    .footer .container {
        max-width: 90%;
    }
    .footer__contact-item__title {
        font-family: 'Gilroy', sans-serif;
    }
    .footer__contact-item:last-child .footer__contact-item--content a, .footer__contact-item:last-child .footer__contact-item--content p {
        font-family: 'Gilroy', sans-serif;
        font-weight: 300;
        font-size: 8px;
    }
    .footer__menu-title, .footer__social--title {
        font-family: 'Gilroy', sans-serif;
        font-size: 12px;
    }
    .footer__menu li a {
        font-family: 'Gilroy', sans-serif;
        font-weight: 300;
        font-size: 10px;
    }
    .footer__contact-item--content a, .footer__contact-item--content p {
        font-size: 10px;
    }
    .footer__contact .footer__contact-item:last-child {
        max-width: 80px;
    }
    .footer__menu-container {
        max-width: 270px;
    }
    .footer__menu-container nav {
        width: 75px;
    }
    .no-copyright {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 425px) {
    .footer__menu-container {
        gap: 10px;
        max-width: 245px;
    }
    .footer__menu {
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .footer__menu-container {
        max-width: 200px;
    }
}

/* 404 */

.error .container {
    max-width: 1083px;
}

@media (max-width: 1083px) {
    .error .container {
        max-width: 90% !important;
    }
}

.error__inner {
    width: 100%;
    height: 455px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.32);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 630px) {
    .error__inner {
        padding: 2rem;
        height: auto;
    }
}

.error__top {
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: center;
}

.error__top-text {
    display: flex;
    align-items: center;
}

.error__top-text p {
    font-size: 60px;
    color: #3A3434;
    font-family: 'Benzin', sans-serif;
    font-weight: 500;
}

.error__top-text span {
    font-size: 150px;
    font-family: 'Benzin', sans-serif;
    font-weight: 400;
    line-height: 100%;
}

.error__top-text img {
    padding-top: 2rem;
}

.error__top .text {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    max-width: 500px;
    text-align: center;
}

.error__bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 55px;
}

@media (max-width: 630px) {
    .error__bottom {
        flex-direction: column;
    }
}

.error__bottom .btn {
    width: 236px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error__bottom .btn-update {
    background: #0086AE;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.error__bottom .btn-back {
    background: transparent;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #333;
}

@media (max-width: 500px) {
    .error__top-text span {
        font-size: 120px;
    }
    .error__top p {
        font-size: 12px;
    }
    .error__top-text img {
        width: 128px;
        padding-top: 1rem;
    }
    .error__top {
        gap: 20px;
    }
    .error__bottom {
        margin-top: 23px;
    }
}

@media (max-width: 400px) {
    .error__top-text span {
        font-size: 100px;
    }
    .error__top p {
        font-size: 10px;
    }
    .error__top-text img {
        width: 90px;
        padding-top: 1rem;
    }
}


@media (max-width: 340px) {
    .error__top-text span {
        font-size: 90px;
    }
    .error__top-text img {
        width: 80px;
    }
}

.news__banner{
    width: 100%;
    height: 452px;
    border-radius: 21px;
    position: relative;
    display: flex;
    align-items: center;
}

.news__banner-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(38, 33, 33, 0.54);
    border-radius: 21px;
    z-index: 2;
}

@media (max-width: 768px) {
    .news__banner {
        display: none;
    }
}

.news__title {
    max-width: 430px;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 3;
    margin-left: 61px;
    line-height: 120%;
}

.news__list {
    display: flex;
    flex-direction: column;
}

.news__list li:nth-child(2n) .news__list-item--title {
    text-align: right;
}

.news__list li:nth-child(2n) .news__list-item--top {
    display: flex;
    justify-content: right;
}

.news__list li:nth-child(2n) .news__list-item--body {
    flex-direction: row-reverse;
}

.news__list li:nth-child(2n) .news__list-item--content {
    text-align: start;
}

.news__list li:nth-child(2n) .news__list-item--body---container {
    align-items: start;
}

.news__list-item {
    margin: 60px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
    position: relative;
}

.news__list-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1180' height='1' viewBox='0 0 1180 1' fill='none'%3E%3Cline y1='0.5' x2='1180' y2='0.5' stroke='%23B2B2B2' stroke-dasharray='18 18'/%3E%3C/svg%3E");
}

.news__list-item--top {
    width: 100%;
}

.news__list-item--title {
    max-width: 610px;
    color: #232323;
    font-weight: 700;
    font-size: 24px;
    text-align: left;
}

.news__list-item--body {
    display: flex;
    justify-content: space-between;
}

.news__list-item--image {
    width: 480px;
    height: 286px;
    border-radius: 21px;
    object-fit: cover;
}

.news__list-item--body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news__list-item--body---container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: end;
}

.news__list-item--content {
    display: flex;
    flex-direction: column;
}

.news__list-item--content {
    max-width: 580px;
    color: #232323;
    line-height: 120%;
    text-align: end;
}

.news__list-item--btn {
    width: fit-content;
    padding: 15px 58px;
    border-radius: 6px;
    background: #0086AE;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .news__list-item--body {
        flex-direction: column !important;
        gap: 17px;
    }
    .news__list-item {
        margin-top: 30px;
    }
    .news__list-item--content {
        text-align: start;
    }
    .news__list-item--body---container {
        align-items: start;
    }
    .news__list-item--title {
        text-align: left !important;
    }
}

/* form */

.form__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-top h2 {
    font-size: 40px;
    color: #262121;
    font-weight: 700;
    max-width: 680px;
}

.form-top p {
    max-width: 680px;
    font-size: 20px;

}

.form-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-body__cont {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-body__cont form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-body__cont form input, .form-body__cont form select {
    width: 480px;
    height: 50px;
    border-radius: 8px;
    padding-left: 35px;
    font-size: 13px;
    color: rgba(27, 35, 64, 0.65);
}

.form-body__cont form select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-body__cont form input[type="submit"] {
    width: 386px;
    height: 50px;
    padding: 0 103px;
    width: fit-content;
    margin-top: 10px;
    color: #fff;
    background: #0086AE;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.form-body__cont form input:focus, .form-body__cont form select:focus {
    outline: none;
}

.form-body__cont a {
    font-size: 10px;
    color: rgba(27, 35, 64, 0.65);
}

.form__image {
    width: 579px;
    height: 285px;
    border-radius: 21px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .form-body__image {
        display: none;
    }

    .form-body__cont {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .form-body__cont form input, .form-body__cont form select {
        width: 100%;
        font-size: 13px;
        padding-left: 28px;
    }
    .form-body__cont form input[type="submit"] {
        font-size: 13px;
        padding: 0 57px;
    }
    .form__inner {
        gap: 28px;
    }
    .form-top {
        gap: 10px;
    }
    .form-top h2 {
        font-size: 20px;
    }
    .form-top p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .form-top h2 {
        font-size: 16px;
    }
    .form-top p {
        font-size: 10px;
    }
}

/* articles */ 
 
.articles__list { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap; 
} 
 
.articles__item { 
    width: 380px; 
    height: 419px; 
    border-radius: 21px; 
    background-color: #FFF6E9; 
    padding: 20px 16px 16px 16px; 
    display: flex; 
    flex-direction: column; 
} 
 
.articles__item-image { 
    width: 348px; 
    height: 242px; 
    border-radius: 18px; 
} 
 
.articles__item-date { 
    color: #7B7B7B; 
    font-size: 7px; 
    margin: 13px 0 14px 0; 
} 
 
.articles__item-title { 
    color: #262121; 
    font-weight: 700; 
    font-size: 12px; 
    margin-bottom: 6px; 
} 
 
.articles__item-text { 
    font-size: 10px; 
    color: #262121; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    height: 30px;  
} 
 
.articles__item-link { 
    border-radius: 4px; 
    background: #0086AE; 
    width: 164px; 
    height: 26px; 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
 
    text-transform: uppercase; 
    font-weight: 700; 
    font-size: 8px; 
    margin-top: 20px; 
} 
 
/* learning */ 
 
.learning__inner { 
    margin-top: 83px; 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
} 
 
.learning__title { 
    max-width: 622px; 
    line-height: 120%; 
} 
 
.learning__list { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    align-items: center; 
} 
 
.learning__item { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
} 
 
.learning .about__video-wrap {
    width: 380px;
} 
 
.learning__text { 
    color: #262121; 
    font-size: 12px; 
    font-weight: 700; 
} 
 
@media (max-width: 1024px) { 
    .articles__item { 
        width: 36vw; 
    } 
    .articles__item-image { 
        height: 220px; 
    } 
 
    .learning .about__video-wrap {
        width: 360px; 
    } 
} 
 
@media (max-width: 768px) { 
    .articles__list { 
        flex-direction: column; 
        align-items: center; 
    } 
    .articles__item { 
        width: 380px; 
    } 
    .articles__item-image { 
        width: 348px; 
        height: 242px; 
    } 
    .learning__inner { 
        gap: 20px; 
    } 
    .learning__list { 
        flex-direction: column; 
        align-items: center; 
    } 
} 
 
@media (max-width: 500px) { 
    .learning__title { 
        max-width: 286px; 
        font-size: 24px; 
    } 
} 
 
@media (max-width: 380px) { 
    .articles__item { 
        width: 320px; 
        height: 380px; 
    } 
    .articles__item-image { 
        width: 100%; 
        height: 200px; 
    } 
}

.catalog {
    display: flex;
    gap: 67px;
    margin-top: 34px;
}

.search-result-wrap {
    margin-top: 40px;
}

.catalog__aside-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.catalog__aside-item {
    width: 280px;
    height: 50px;
    border-radius: 7px;
    padding: 10px 0 9px 22px;
    background: #FFF6E9;
    color: #262121;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    line-height: normal;
}

@media (min-width: 1024px) {
    .catalog__aside-item p {
        max-width: 203px;
    }
}

.catalog__aside-item img {
    border-radius: 5px;
}

.catalog__aside-item.active {
    background: #0086AE;
    color: #fff;
    font-weight: 700;
}

.catalog-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.catalog-search {
    width: 533px;
    height: 50px;
    position: relative;
}

.catalog-search input {
    width: 100%;
    height: 50px;
    padding-left: 37px;
    background: #FFF6E9;
    border-radius: 7px;
    outline: none;
    color: #A3A3A3;
    font-size: 14px;
    font-weight: 300;
}

.catalog-search span {
    position: absolute;
    left: 21px;
    top: 21px;
}

.catalog-search button {
    width: 87px;
    height: 29px;
    background: #0086AE;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    right: 13px;
    top: 11px;
    font-weight: 500;
    font-size: 12px;
}

.catalog-content {
    display: flex;  
    flex-direction: column;
    gap: 27px;
}

.catalog-compl p {
    color: #262121;
    font-size: 14px;
}

.catalog-list{
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(33.33333333333333% - 20px);
}

.catalog-item img {
    width: 263px;
    height: 251px;
    border-radius: 12px;
    object-fit: cover;
}

.catalog-item--name {
    font-size: 14px;
    color: #262121;
}

.dotted-list a {
    text-decoration: underline;
}

.dotted-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dotted-list li:last-child {
    margin-bottom: 0;
}

.dotted-list li:before {
    content: '';
    width: 10px;
    min-width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d50000;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .catalog {
        flex-direction: column;
        gap: 18px;
        overflow: hidden;
    }

    .catalog__aside-list {
        flex-direction: row;
        overflow-x: scroll;
    }
    .catalog__aside-item {
        flex-shrink: 0;
        width: auto;
        white-space: nowrap;
        padding-right: 24px;
    }

    .catalog-item {

        width: calc(50% - 10px);
    }

    .catalog-item img {
        width: 230px;
    }
}

@media (max-width: 800px) {
    .catalog-search {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .catalog-list {
        gap: 20px;
    }
    .catalog-item img {
        width: 40vw;
        height: 40vw;
    }
}

.breakdown {
    color: #BCBCBC !important;
    font-size: 10px !important;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.catalog-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.catalog-detail--top {
    display: flex;  
    gap: 21px;
}

.catalog-detail--top img {
    width: 580px;
    height: 405px;
    border-radius: 12px;
}

.catalog-detail--top_content {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.catalog-detail--body {
    width: 100%;
    display: flex;
    gap: 60px;
}

.catalog-detail--top_content-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 35px;
}

.catalog-detail--top_content-top__title {
    font-size: 24px;
    color: #000;
    font-weight: 700;
}

.material {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.material h2, .technology h2 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 21px;
    width: 100%;
    border-bottom: 1px solid #909090;
}

.material-content--box {
    display: flex;
    gap: 23px;
}

.material-content--box .material-content {
    font-size: 14px;
    line-height: 129%;
}

.material-content--box .material-content:nth-child(1) {
    max-width: 240px;
}

.material-content--box .material-content:nth-child(2) {
    max-width: 280px;
}

.catalog-btn {
    width: 283px;
    height: 50px;
    background: #0086AE;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.technology {
    width: 100%;
    max-width: 544px;
}

.technology-body {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
}

.technology-err {
    font-size: 10px;
    line-height: normal;
    margin-top: 50px;
    font-style: italic;
    max-width: 493px;
}

.faq-form {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(38,33,33,.29);
    border-radius: 10px;
    padding: 29px 50px 48px 27px;
}

.faq-form a {
    font-size: 10px;
    color: rgba(27, 35, 64, 0.65);
    margin-top: 10px;
}

.faq-title {
    font-weight: 700;
    font-size: 19px;
    color: #262121;
}

.faq-num {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-num a {
    color: #262121;
    font-size: 27px;
    margin: 22px 0;
}

@media (max-width: 400px) {
    .faq-num a {
        font-size: 24px;
    }
}

.faq-form p {
    max-width: 300px;
    font-size: 16px;
    color: #262121;
}

.faq-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
}

.faq-form form input {
    width: 283px;
    height: 50px;
    text-align: center;
    outline: none;
    border: 1px solid #909090;
    border-radius: 7px;
    color: #9C9C9C;
    font-size: 16px;
    background: transparent;
}

.faq-form form input[type="submit"] {
    width: 283px;
    height: 50px;
    text-align: center;
    border-radius: 7px;
    background: #0086AE;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .catalog-detail--top, .catalog-detail--body {
        flex-wrap: wrap;
    }
    .catalog-detail--top_content-top {
        padding-left: 0;
    }
}

@media (max-width: 519px) {
    .faq-form {
        width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 500px) {
    .catalog-detail--top img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 400px) {
    .material-content--box {
        flex-wrap: wrap;
    }

    .faq-form {
        padding-left: 20px !important;
    }
}

.share__inner {
    display: flex;
    justify-content: space-between;
}

.share-content {
    display: flex;
    flex-direction: column;

}

.share__title {
    max-width: 404px;
    color: #3A3434;
    font-size: 40px;
    font-weight: 700;
}

.share__text {
    font-size: 24px;
    color: #262121;
    margin-top: 20px;
    margin-bottom: 30px;
} 

.share-social {
    display: flex;
    align-items: center;
    gap: 23px;
}

.share-social a img {
    width: 59px;
    height: 59px;
    border-radius: 7px;
}

.share-img {
    width: 580px;
    height: 284px;
    border-radius: 21px;
    object-fit: cover;
}

.share .call {
    display: none;
}

@media (max-width: 1024px) {
    .share-img {
       display: none;
    }
    .share .call {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 51px;
        border-radius: 7px;
        background: #0086AE;
        color: #fff;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 700;
    }
    .share-social a img {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 500px) {
    .share__title {
        font-size: 20px;
    }
    .share__text {
        font-size: 10px;
    }
    .social-social {
        gap: 15px;
    }
    .share .news-contact--social {
        gap: 15px;
    }
}

@media (max-width: 400px) {
    .social-social {
        gap: 15px;
    }
    .share-social a  {
        width: 50px !important;
        height: 50px !important;
    }
    .share-social a img {
        width: 50px !important;
        height: 50px !important;
    }

}

.seoCatalog {
    margin-top: 120px;
}

.seoCatalog__inner {
    display: flex;
    gap: 21px;
}

.seoCatalog__inner img {
    width: 80px;
    height: 65px;
}

.seoCatalog__text {
    max-width: 979px;
    font-size: 16px;
    color: #262121;
    font-size: 16px;
    line-height: 129%;
}

.main-catalog_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
}

.main-catalog__title {
    font-size: 24px;
    color: #262121;
}

.main-catalog__allcategory, .main-catalog__hiddencategory {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.main-catalog__allcategory span {
    font-size: 18px;
    color: #262121;
}

.main-catalog__hiddencategory {
    margin-top: 18px;
}

.main-catalog__hiddencategory.active {
    margin-top: 0;
}

.main-catalog__hiddencategory.active svg {
    transform: rotate(180deg);
}

.main-catalog__hiddencategory span {
    color: #9F9F9F;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .main-catalog__hiddencategory, .main-catalog__allcategory {
        display: none;
    }
}

.features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.features__title {
    font-size: 18px;
    color: #262121;
    font-weight: 700;
}

.features-checkbox {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrapper input[type="radio"] {
    display: none;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.custom-radio {
    width: 13px;
    height: 13px;
    border: 1.5px solid #262121;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.checkbox-wrapper input[type="radio"]:checked + .custom-radio::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 9px;
    height: 9px;
    background-color: #262121;
    border-radius: 50%;
}


.checkbox-wrapper input[type="checkbox"]:checked + .custom-radio::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 9px;
    height: 9px;
    background-color: #262121;
    border-radius: 50%;
}
.bx-filter-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}
.bx-filter-actions .btn {
    background: #0086AE;
    color: #fff;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 13px;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s;
    outline: none;
}

.bx-filter-actions .btn:hover {
    opacity: 0.6;
}

.bx-filter-popup-result.left {
    display: none !important;
}

.bx-filter-actions .btn.btn-link {
    background-color: red;
}

.label-text {
    font-size: 16px;
    color: #262121;
}

.download-catalog {
    width: 180px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #007294;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    margin-top: 50px;
}

.catalog-download--btn.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .catalog-download--btn.mobile {
        display: flex;
        justify-content: center;
    }
    .download-catalog {
        margin-top: 34px;
    }
    .catalog-download--btn.desktop {
        display: none;
    }
}

.catalog-content__banners{
    display: flex;
    align-items: center;
    gap: 20px;
}

.catalog-content__banners.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .catalog-content__banners.desktop {
        display: none;
    }
    .catalog-content__banners.mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .catalog-content__banners.mobile div:nth-child(2) {
        display: none;
    }
}

.catalog-special {
    width: 580px;
    height: 315px;
    border-radius: 21px;
    background-size: cover;
    position: relative;
}

.catalog-special__title {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    padding-top: 31px;
    padding-left: 28px;
}

.catalog-special__subtitle {
    color: #FF0018;
    font-weight: 700;
    font-size: 50px;
    position: absolute;
    top: 73px;
    right: 44px;
    text-transform: uppercase;
    line-height: normal;
    font-family: 'Nozhik', sans-serif;
}

.catalog-special a {
    background-color: #FF0018;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.catalog-recipe {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-recipe__image {
    border-radius: 21px;
    background-size: cover;
    position: relative;
    width: 280px;
    height: 254px;
}

.catalog-recipe__image p {
    position: absolute;
    top: 37px;
    left: 23px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.catalog-recipe a {
    width: 280px;
    height: 40px;
    border-radius: 10px;
    background-color: #0086AE;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.catalog-list__container {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.catalog-list--box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-list__title {
    font-size: 24px;
    color: #262121;
}

.catalog-list--sublist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-list--sublist_item {
    padding: 10px 20px;
    border-radius: 6px;
    background: #FFF6E9;
    color: #545454;
    font-size: 12px;
}

.catalog-list--sublist_item {
    white-space: nowrap;
}

.catalog-list--sublist_item.active {
    font-weight: 700;
    color: #343434;
}

.catalog-list--box_active{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-list__title-active {
    font-size: 18px;
    color: #262121;
    width: 100%;
}

.catalog-list--box_active-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-list--box_active-list img {
    height: 251px;
    border-radius: 21px;
    background-size: cover;
}

.catalog-list--box_active-list img:nth-child(1) {
    width: 280px;
}
.catalog-list--box_active-list img:nth-child(2) {
    width: 580px;
}

@media (max-width: 500px) {
    .catalog-special {
        height: 210px;
    }
    .catalog-special__title {
        font-size: 18px;
        padding-top: 21px;
        padding-left: 18px;
    }
    .catalog-special__subtitle {
        font-size: 30px;
        top: 49px;
        right: 30px;
    }
    .catalog-special a {
        width: 135px;
        height: 30px;
        font-size: 18px;
        font-size: 12px;
    }
}

.main-catalog-item {
    width: calc(50% - 40px);
    border-radius: 7px;
    background: #fff;
    padding: 14px 15px;
    position: relative;
}


.main-catalog-item--name {
    font-size: 14px;
    font-weight: 700;
    color: #262121;
    line-height: normal;
}



@media (max-width: 768px) {
    .main-catalog-item {
        width: 100% !important;
    }
}

@media (max-width: 500px) {
    .main-catalog-item--name {
        font-size: 10px;
    }
}



.main-catalog-item--article {
    font-size: 10px;
    color: #938C8C;   
    line-height: normal;
    margin-top: 5px;
}

.main-catalog-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    height: 100%;
}

.main-catalog-item--btn {
    width: 132px;
    height: 32px;
    border-radius: 4px;
    background: #0086AE;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*position: absolute;*/
    /*top: 14px;*/
    /*right: 15px;*/
}

.main-catalog__list {
    display: flex;  
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 20px;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .main-catalog__list {
        column-gap: 0;
        justify-content: space-between;
    }
    .main-catalog-item {
        width: calc(50% - 40px);
        height: auto;
    }
    /*.main-catalog-item--btn {*/
    /*    top: 18%;*/
    /*}*/
}

@media (max-width: 500px) {
    .main-catalog-item--btn {
        width: 127px;
        height: 32px;
        /*top: 10%;*/
    }
}


.main-catalog__list-d {
    display: flex;
    flex-direction: column;
}

.main-caltalog__aside {
    display: flex;
    flex-direction: column;
}

.main-catalog--detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-catalog-detail {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.main-catalog__container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-catalog--box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 540px;
    max-width: 540px;
}

.main-catalog--box__title {
    font-size: 18px;
    padding-bottom: 16px;
    color: #000;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid #909090;
}

.main-catalog--box__text {
    font-size: 14px;
    color: #000;
    max-width: 444px;
}

.main-catalog--btn {
    background: #0086AE;
    color: #fff;
    border-radius: 7px;
    width: 283px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-catalog--detail .faq-form {
    padding: 38px 57px 39px 40px;
    background: rgba(255, 255, 255, .25);
}

@media (max-width: 1024px) {
    .main-catalog--detail {
        flex-direction: column;
        gap: 2rem;
        align-items: start;
    }
}

@media (max-width: 580px) {
    .main-catalog--box {
        width: 100%;
    }
}

.main-catalog__subtitile-active__title {
    font-size: 18px;
    color: #262121;
    margin-top: 34px;
    margin-bottom: 20px;
}

.price {
    min-height: 40vh;
}

.price__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price__item {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    background-color: #FDF4E7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price__download-wrap {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    background-color: #FDF4E7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price__item-btn {
    padding: .6rem 2rem;
    background: #0086AE;
    color: #fff;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-table-wrap {
    max-width: 100%;
    overflow: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}
.price-table {
    width: 100%;
}
.price-table td,
.price-table th {
    border: 1px solid #979797;
    padding: 10px 20px;
    text-align: left;
}

.price-table th {
    font-weight: bold;
}

@media (max-width: 500px) {
    .price__item {
        flex-direction: column;
        align-items: normal;
        gap: 1rem;
    }
}