:root {
  --font-family: "Nekst", sans-serif;
  --second-family: "Geometria", sans-serif;
  --third-family: "Times New Roman", sans-serif;
  --font3: "Times", sans-serif;
  --font4: "Open Sans", sans-serif;
  --font5: "Cormorant", sans-serif;
  --font6: "Inter", sans-serif;
}

body {
    overflow: auto;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-100 {
    margin-bottom: 100px;
}
.wrapper {
    overflow-x: hidden;
}
.gapy-8 {
    gap: 8px 0;
}
.gap-16 {
    gap: 16px;
}
.product-wrap.article {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.article .article-name {
    min-height: auto;
    flex: 1;
}
.article__details {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}
.article-list .row {
    gap: 12px 0;
}
.article__btn {
    max-width: 100%;
}
.article__media {
    position: relative;
}

.product-wrap.article .article__media img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter 0.3s ease; /* Smooth transition for the hover effect */
}

.product-wrap.article:hover .article__media img {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none; /* Remove grayscale on hover */
}
.lables-list {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
        align-items: flex-start;
}
.lable {
    padding: 14px 26px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    text-align: center;
}
.lable--small {
    font-size: 8px;
    padding: 5px 5px;
    min-width: 75px;
}
@media (max-width: 991px) {
    .lable:not(.lable--small) {
        padding: 8px 20px;
        font-size: 10px;
    }




}
@media (max-width: 576px) {
    .lable:not(.lable--small) {
        padding: 6px 12px;
        font-size: 8px;
    }
}
.blog_category_id-69 {
    background: #98ff02;
}
.blog_category_id-72 {
    background: #01fff4;
}
.blog_category_id-70 {
    background: #fcfd3f;
}
.blog_category_id-77 {
    background: #ff7be3;
    color: #fff;
}
.blog_category_id-73 {
    background: #f14cff;
    color: #fff;
}
.blog_category_id-74 {
    background: #ff532d;
    color: #fff;
}
.blog_category_id-76 {
    background: #000;
    color: #fff;
}
.blog_category_id-79 {
    background: #ffc700;
    color: #fff;
}
.blog_category_id-78 {
    background: #733aad;
    color: #fff;
    max-width: 246px;
    /* padding: 8px 10px; */
    text-align: center;
}
.blog_category_id-75 {
    background: #016ebd;
    color: #fff;
}



.author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author__img {
    border-radius: 50%;
}
.author__photo {
    flex: 0 0 30px;
    line-height: 0;
}
.article__date-added {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: var(--font-family);
}
.article__date {
    display: flex;
    align-items: center;
    gap: 6px;
}
.author__name {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    color: #101010;
    margin: 0;
}
.article__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article .article__info-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    width: auto;
}
.article__info-block>div {
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 1024px) {
    .article__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .article .article__info-block {
        width: 100%;
        justify-content: center;
    }



   .week-article .article__info {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .week-article .article .article__info-block {
        width: auto;
        justify-content: center;
    }


}
@media (max-width: 576px) {
    .article__info-block .article__info-dislikes, .article__info-block .article__info-viewed {
        display: none;
    }
}

.catalog .btn-load-pagination {
    padding: 0px 16px;
    width: 294px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #101010;
    color: #fff;
    margin: 0 auto;
    transform: translate(0, 0);
    left: auto;
    top: auto;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.catalog .btn-load-pagination:hover {
    opacity: .7;
}
.catalog .btn-load-pagination .title-button {
    margin: 0;
    float: none;
}
@media (max-width: 991px) {
    .catalog .btn-load-pagination {
        font-size: 12px;
    }
}






.overview {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}
.overview-large {
    flex-direction: row;
    gap: 40px;
    padding: 19px 41px;
}
.overview__content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
.overview__name {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: #101010;
    margin: 0;
}
.overview-large .overview__name {
    font-size: 30px;
}
.overview__media {
    flex: 0 0 375px;
}
.overview__media img {
    height: 442px;
    width: 100%;
    object-fit: cover;
}

.overview__category {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
}
.overview__line {
    margin-left: -20px;
    margin-right: -20px;
    height: 1px;
    background: #eceaea;
}
.overview-aside {
    display: flex;
    gap: 4px;
    flex-direction: column;
    height: 100%;
}
.brand-photo {
    flex: 0 0 34px;
}
@media (min-width: 1200px) {
    .overview-large .brand-photo {
        flex: 0 0 50px;
    }
    .overview-large .author__name {
        font-size: 14px;
    }
}
@media (max-width: 1199px) {
    .overview__media {
        flex: 0 0 40%;
    }
    .overview-large .overview__name {
        font-size: 20px;
    }
    .overview-large {
        padding: 20px;
        gap: 20px;
    }

    .overview-large .article__info-viewed,
    .overview-large .article__info-dislikes {
        display: none;
    }
}
@media (max-width: 1024px) {
    .overview__footer .article__info {
        flex-direction: row;
        align-items: center;
    }
    .overview__footer .article__info-block {
        width: auto;
    }
}
@media (max-width: 991px) {
    .overview__name {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .overview__media img {
        height: 300px;
    }
}
@media (max-width: 576px) {
    .overview-large {
        flex-direction: column;
    }
    .overview__media {
        flex: 0 0 100%;
    }
}


.term {
    padding: 31px 20px 31px 19px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    
    gap: 40px;
    height: 100%;
}

.certificates_blog{
    flex-direction: column;
}


.term__top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}
.term__products {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    /* justify-content: space-between; */
}
.term__name {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: #101010;
    margin: 0;
}
.term__title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.term__subtitle {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.term__products-item {
    border: 1px solid #eceaea;
    padding: 7px;
    width: 80px;
    height: 80px;
    line-height: 0;
}
.term__more {
    text-decoration: underline;
    display: inline-flex;
    font-size: 18px;
    color: #555;
    line-height: 1.4;
}
.term__products-more {
    font-size: 12px;
}
@media (max-width: 1199px) {
    .term__products-item:nth-child(n+4) {
        display: none;
    }
}
@media (max-width: 991px) {
    .products.terms {
        padding-bottom: 0;
    }
    .term__name {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .term {
        padding: 20px;
        gap: 20px;
    }
}



.authors {
    background-color: #000;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

.authors__title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: #4aede3;
    margin: 0;
}
.authors__title>span {
    font-family: var(--third-family);
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    display: block;
    margin-left: 35px;
}
.authors__btn {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 12px;
}
.authors__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    margin-top: 10px;
}
.authors__description {
    max-width: 240px;
}
.author__position {
    font-size: 12px;
}
@media (max-width: 1199px) {
    .blogger__bottom .article__info-dislikes {
        display: none;
    }
    .blogger__bottom .article__info-viewed {
        display: none;
    }
}
@media (max-width: 1024px) {
    .authors__top {
        margin-bottom: 40px;
        text-align: center;
    }
    .authors__description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 991px) {
    .authors__bottom-arrows .arrows {
        position: relative;
    }
}

.blogger {
    background: #fff;
    padding: 40px 20px 21px 20px;;
}
.blogger__position {
    color: #101010;
}

.blogger__name {
    margin: 0;
    font-size: 16px;
}
.blogger__top {
    text-align: center;
}
.blogger__image {
    width: 140px;
    height: 140px;
    line-height: 0;
    margin: 0 auto 20px;
}
.blogger__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blogger__bottom .article__info-block {
    justify-content: center;
}
.blogger__line {
    background: #eceaea;
    height: 1px;
    margin: 30px -20px 20px;
}
@media (max-width: 576px) {
   

    .blogger__line {
        margin: 20px 0px 20px;
    }
    .authors__bottom {
        flex-direction: column-reverse;
        height: auto;
        gap: 30px;
        margin-top: 20px;
    }
}


.sale__date {
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid #ed4a6d;
    height: 48px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ed4a6d;
}
@media (max-width: 991px) {
    .sale__date img {
        max-width: 18px;
    }
}
.article__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.article__description {
    line-height: 1.5;
    color: #000;
}

.sale .article__media img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}
@media (min-width: 992px) {
    .article.sale .article-name {
        font-size: 18px;
        line-height: 1.1;
    }
}
@media (max-width: 991px) {
    .article__description {
        font-size: 12px;
    }
}


.article.news-item {
    background: #fff;
    padding: 20px;
}
.news-item .article__media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.news-item .article__info {
    border-top: 1px solid #eceaea;
    padding-top: 20px;
}
.article.news-item .article__info-block {
    gap: 8px;
}



.ceo__inner {
    max-width: 360px;
}
.mb-130 {
    margin-bottom: 130px;
}
@media (max-width: 991px) {
    .mb-130 {
        margin-bottom: 40px;
    }
    .ceo__inner {
        max-width: 100%;
        margin-bottom: 40px;
    }
}

.blog-banner {
    position: relative;
    line-height: 0;
    overflow: hidden;
}
.blog-banner__image {
    width: 100%;
    min-height: 481px;
    object-fit: cover;
}
.blog-banner__container {
    position: relative;
}

.week-article {
    width: 294px;
    position: absolute;
    right: 126px;
    bottom: 0;
    background: #fff;
}
.week-article .article__details {
    padding: 0 20px 20px;
}
.week-article .article-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 10px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #101010;
}

.week-article .product-wrap.article .article__media img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}
@media (max-width: 991px) {
    .week-article {
        right: 20px;
    }
    .week-article .article__info {
      /*  display: none;*/
    }
}
@media (max-width: 576px) {
    .week-article {
        /*display: none;*/
        width: 200px;
    }


    
    .week-article .article__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .week-article .article .article__info-block {
        width: 100%;
        justify-content: center;
    }


}

.blog-select {
    border: 1px solid #b2b0b0;
    padding: 10px 40px 10px 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #101010;
    background-image: url(/catalog/view/theme/OPC100246/assets/images/svg/codicon_arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    max-width: 177px;
}
.blog-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.blog-filter {
    gap: 38px;
}

@media (max-width: 767px) {
    .products .container-fluid {
        padding-right: 14px;
        padding-left: 14px;
    }
}
@media (max-width: 576px) {
    .products .container-fluid {
        padding-right: 10px;
        padding-left: 10px;
    }
}





.certificate {
    padding: 20px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}
.certificate__more {
    font-size: 22px;
    text-decoration: underline;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
}

.certificate-info__products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 9px 4px;
    text-align: center;
}
.certificate-info__products-item {
    border: 1px solid #eceaea;
    padding: 7px;
    line-height: 0;
}
.certificate-info__products-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
.certificate-info__name {
    font-weight: 700;
    line-height: 1.1;
    color: #101010;
}
.certificate-info__description {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 34px;
}
@media (min-width: 1200px) {
    .certificate-info__name {
        font-size: 30px;
    }
}


.brands-current-name {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.certificate-product {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 34px;
    justify-content: space-between;
    padding-top: 45px;
}
.certificate-product.product:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
}
.certificate-product__content {
    display: flex;
    flex-direction: column;
}
.product__image-wrap .product__image {
    position: static;
    transform: translate(0, 0);
}
.certificate-product .product__brand {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #101010;
}
.product__meta.article .article__info-block {
    justify-content: center;
}
.certificate-product .product__name {
    height: auto;
}
.certificate-product .product__inner {
    padding: 0 10px;
}
@media (max-width: 1199px) {
    .certificate__more {
        font-size: 20px;
    }

    .certificate-product {
        gap: 20px;
    }
    .certificate-product .product__brand {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .certificate-info__name {
        font-size: 20px;
    }
    .certificate-info__description {
        margin-bottom: 20px;
    }
    .certificate__more {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .brands__current {
        font-size: 20px;
    }
}




.blog-banner__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-banner__title {
    color: #97FF00;
    font-family: var(--second-family);
    text-transform: none;
}
.blog-banner__title-form, .blog-banner__title-partnership {
    letter-spacing: -0.03em;
}
.blog-banner__title>.offset {
    display: block;
    margin-left: 30px;
}

.blog-banner__subtitle {
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}
.btn-times {
    font-size: 18px;
    text-decoration: underline;
}
@media (min-width: 991px) {
    .blog-banner__inner-content {
        padding-left: 60px;
    }




}
@media (min-width: 1025px) {
    .blog-banner__title-about {
        font-size: 55px;
    }
    .blog-banner__title-form {
        font-size: 65px;
    }
    .blog-banner__subtitle {
        font-size: 25px;
    }
    .blog-banner__title-partnership {
        font-size: 55px;
    }
}

.sbout-sec__aside-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sbout-sec__aside-img {
    height: 100%;
    position: relative;
}


.form-wrap {
    padding: 35px 50px;
    background: #fff;
}
.form-wrap .form__btn {
    max-width: 100%;
}
@media (max-width: 567px) {
    .form-wrap {
        padding: 15px;
    }
}


@media (min-width: 768px) {
    .author-form__inner {
        height: 100%;
    }
}
.author-form__mail {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: underline;
}


.partners-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 9px;
}
.partners-list__item {
    line-height: 0;
    background: #fff;
    padding: 30px 40px;
    text-align: center;
}
@media (max-width: 991px) {
    .partners-list__item {
        padding: 20px;
    }



    .blog-banner__inner.cooperation__banner {
    top: 15%;
    left: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: inherit;
}

}
@media (max-width: 767px) {
    .partners-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .partnership__aside-img {
        text-align: center;
    }
}



.cooperation__inner {
    max-width: 930px;
    margin: 0 auto;
}
.cooperation__title {
    text-transform: uppercase;
    font-family: var(--font-family);
    line-height: 1.2;
    letter-spacing: 0.05em;
}


h2.cooperation__title{
	font-size: 24px;
	text-align: center;
}


@media (max-width: 576px) {
    .partners-list {
        grid-template-columns: repeat(2, 1fr);
    }


     .author-form__bottom {
    flex-wrap: wrap; /* Чтобы элементы могли переноситься на новую строку */
  }

  .author-form__bottom a:last-child {
    width: 100%; /* Занимаем всю ширину строки */
    text-align: left; /* Если нужно, выравнивание текста по левому краю */
  }

  h2.cooperation__title{
	font-size: 20px;
	text-align: center;
}



}





.tag-block{
    display: none;
}


.partnership__aside-img.text-right{
    display: none;
}


.select-box__dropdown .active{
   
    color: var(--red);
}