:root {
    --green: #3DB845;
    --gray: #999999;
    --gray-light: #8C8C8C;
    --nunito: 'Nunito Sans', sans-serif;
    --inter: 'Nunito Sans', sans-serif;
    --monts: 'Montserrat', sans-serif;
}

*::before,
*::after {
    box-sizing: inherit;
}

* {
    box-sizing: border-box;
}

button {
    outline: none;
    border: none;
}

img {
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

select {
    appearance: none;
}

input,
button {
    font-family: var(--inter);
}

textarea {
    font-family: var(--inter);
    outline: none;
    min-height: 100px;
    resize: none;
    transition: 200ms ease all;
    padding: 15px 24px;
    border: 2px solid #E6E6E6;
    border-radius: 14px;
    width: 100%;
    color: #3E3E3E;
    font-size: 16px;

}

input {
    font-size: 14px;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="submit"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #BFBFBF;
    font-size: 16px;
}

textarea:hover,
textarea:focus {
    border-color: var(--green);
}

html {
    touch-action: manipulation;
}

body {
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    color: #3E3E3E;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

main {
    flex: 1;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header__top {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    transition: 200ms ease all;
}

.header__center {
    margin-top: 60px;
}

.header--hidden {
    transform: translateY(-200px);
}

.header__top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #616161;
    font-family: var(--inter);
    font-weight: 500;
}

.header__top-nav {
    display: flex;
    align-items: center;
}

.header__nav-item-group {
    margin-right: 19px;
}

.header__nav-item-group:last-child {
    margin-right: 0;
}

.header__current-location {
    transition: 200ms ease all;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header__current-location::before {
    content: url('/local/templates/gofromir/assets/images/loc.svg');
    margin-right: 8px;
}

.header__nav-item-group {
    display: inline-flex;
    align-items: center;
    transition: 200ms ease all;
    position: relative;
}

.header__nav-item-group--dropdown::after {
    content: url('/local/templates/gofromir/assets/images/down-arrow-nav.svg');
    transition: 200ms ease all;
    margin-left: 2px;
}

.dropdown {
    position: absolute;
    top: 0;
    padding-top: 38px;
    font-family: var(--inter);
    left: -10px;
    color: #616161;
    font-size: 14px;
    font-weight: 500;
    /* z-index: 6; */
    display: none;
}

.dropdown__container {
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.06), 2px 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 24px;
    width: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 55;
    align-items: flex-start;
}

.dropdown__item {
    transition: 200ms ease all;
    line-height: 24px;
    margin-bottom: 12px;
}

.dropdown__item:hover {
    color: var(--green);
}

.dropdown__item:last-child {
    margin-bottom: 0;
}

.header__nav-item-group--dropdown:hover .dropdown {
    display: block;
}

.header__bottom .header__nav-item {
    position: relative;
    z-index: 5;
}

.header__nav-item--icon-before {
    display: inline-flex;
    align-items: center;
}

.header__nav-item--icon-before::before {
    content: url('/local/templates/gofromir/assets/images/calc-icon.svg');
    margin-right: 8px;
}

.header__timework-title {
    margin-right: 16px;
}

.header__timework-weekdays {
    margin-right: 16px;
}

.header__current-location:hover {
    color: var(--green)
}

.header__nav-item {
    transition: 200ms ease all;
}

.header__nav-item-group:hover .header__nav-item {
    color: var(--green);
}

.header__nav-item-group--dropdown:hover::after {
    transform: rotate(180deg);
}

.header__top {
    padding: 19px 0;
    background: #F2F2F2;
}

.header__top .header__nav-item {
    position: relative;
    z-index: 10;
}

.dropdown--big {
    font-size: 16px;
}

.dropdown__item-parent {
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 25;
}

.dropdown__item-parent::after {
    content: url('/local/templates/gofromir/assets/images/right-header-nav.svg');
}

.dropdown__item-parent:last-child {
    margin-bottom: 0;
}

.dropdown__item-parent .dropdown__item {
    width: 100%;
    margin-bottom: 0;
    z-index: 30;
}

.dropdown--big .dropdown__container {
    width: 280px;
}

.dropdown__categories {
    display: none;
    max-width: 1060px;
    position: absolute;
    left: 245px;
    top: 0;
    padding-left: 55px;
}

.dropdown__categories-container {
    min-width: 720px;
}

.dropdown__categories-container--big {
    min-width: 1060px;
}

.show-all-nav {
    display: inline-flex;
    align-items: center;
}

.show-all-nav-icon {
    margin-left: 6px;
}

.dropdown__show-more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--inter);
    transition: 200ms ease all;
}

.show-all-nav:hover {
    color: var(--green);
}


.dropdown__show-more-image {
    max-height: 300px;
    margin-bottom: 25px;
}

.dropdown__item-parent:hover .dropdown__item:first-child {
    /* color: var(--green); */
}

.dropdown__item-parent:hover .dropdown__categories {
    display: block;
}

.dropdown__categories-container {
    overflow: auto;
    background: #FFFFFF;
    border-radius: 12px;
    max-height: 605px;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 6%), 2px 8px 32px rgb(0 0 0 / 12%);
    padding: 40px;
    display: flex;
    align-items: flex-start;
}

.dropdown__categories-container .os-content {
    display: flex;
    align-items: flex-start;
}

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-vertical {
    background: #F2F2F2;
    border-radius: 21px;
    right: 20px;
    top: 40px;
    bottom: 40px;
    padding: 0;
}

.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: var(--green);
}

.dropdown__column {
    flex: 1;
    margin-right: 30px;
}

.dropdown__column:last-child {
    margin-right: 0;
}

.dropdown-category__header {
    display: flex;
    font-weight: 800;
    font-size: 16px;
    align-items: center;
    color: #3E3E3E;
    margin-bottom: 10px;
    transition: 200ms ease all;
}

.dropdown-category__header img {
    margin-right: 10px;
}

.dropdown-category__header:hover {
    color: var(--green);
}

.dropdown__category .dropdown__item {
    color: #616161;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    transition: 200ms ease all;
    margin-bottom: 5px;
    width: auto;
}

.dropdown__category {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.dropdown__category .dropdown__item:hover {
    color: var(--green);
}

.dropdown__categories-container--dp {
    flex-wrap: wrap;
}

.dropdown__categories-container--dp .os-content {
    flex-wrap: wrap;
}

.dropdown__categories-container--dp .show-all-nav {
    margin-top: 15px;
}

.dropdown__categories--dp {
    max-width: 720px;
}

.dp-item {
    width: calc(25% - 10px);
    margin-right: 10px;
}

.os-content .dp-item:last-of-type {
    margin-right: 0;
}

.dp-item__holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 15px;
    background: #F8F8F8;
}

.dp-item__text {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.dp-item:hover .dp-item__text {
    color: var(--green);
}

.dp-item__image {
    object-fit: contain;
}

.custom-input {
    position: relative;
}

.custom-input__field {
    transition: 200ms ease all;
    padding: 15px 24px;
    border: 2px solid #E6E6E6;
    border-radius: 14px;
    color: #3E3E3E;
}

.custom-input__field:focus,
.custom-input__field:active {
    outline: 0;
    border-color: var(--green);
    color: #3E3E3E;
}

.custom-input__field:hover {
    border-color: var(--green)
}

.search-input__submit {
    display: none;
}

.header__center-container {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--inter);
    font-weight: 500;
}

.header__company-desc {
    max-width: 205px;
    display: inline-block;
    font-size: 14px;
    margin-left: 36px;
    color: #8C8C8C;
    line-height: 16.8px;
}

.header__logo-holder {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 100%;
    max-width: 250px;
}

.main-tel {
    font-weight: 700;
    font-size: 16px;
    transition: 200ms ease all;
}

.email-link {
    font-weight: 600;
    transition: 200ms ease all;
}

.main-tel:hover,
.email-link:hover {
    color: var(--green);
}

.main-link {
    transition: 200ms ease all;
    font-size: 14px;
    color: var(--green);
    border-bottom: 1px solid transparent;
}

.main-link:hover {
    border-color: var(--green);
}

.header__email {
    display: inline-flex;
    align-items: flex-end;
    margin: 6px 0;
	gap: 8px;
}

.header__email-copy-icon {
    margin-left: 9px;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header__email-copy-icon path {
    transition: 200ms ease all;
}

.header__email-copy-icon:hover path {
    fill: var(--green);
}

.search-input {
    flex: 1;
    margin-left: 36px;
    margin-right: 30px;
}

.custom-input__search {
    position: relative;
}

.search-input__link {
    position: absolute;
    z-index: 3;
    top: 13px;
    right: 20px;
}

.search-input__field {
    width: 100%;
    padding-right: 50px;
}

.header__group {
    display: flex;
    align-items: center;
}

.header__cart {
    margin-left: 15px;
    position: relative;
}

.header__cart-count {
    font-family: var(--inter);
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    min-width: 60px;
    padding: 2px;
    right: -34px;
    top: -11px;
}

.header__cart svg path {
    transition: 200ms ease all;
}

.header__cart:hover svg path {
    stroke: var(--green);
}

.add-nav {
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    font-family: var(--inter);
    font-weight: 500;
    justify-content: space-between;
    color: #3E3E3E;
    /* border-bottom: 1px solid #E6E6E6; */
}

.add-nav .header__nav-item-group {
    margin-right: 40px;
}

.add-nav .header__nav-item-group:last-child {
    margin-right: 0;
}

.footer {
    background: #F5F5F5;
}

.social__link {
    width: 42px;
    min-width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social__icon {
    transition: 200ms ease all;
    filter: grayscale(100%);
}

.social__link:hover .social__icon {
    filter: grayscale(0);
}

.footer__container {
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__info {
    width: 100%;
    max-width: 306px;
    margin-right: 150px;
}

.footer__desc {
    margin: 40px 0 24px 0;
    font-weight: 500;
    color: #8C8C8C;
    font-family: var(--inter);
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-tel--footer {
    font-size: 24px;
    font-family: var(--inter);
}

.footer__callback {
    font-family: var(--inter);
    font-size: 16px;
    margin-top: 10px;
}

.footer__addresses {
    margin-top: 15px;
}

.footer__address,
.email-link--footer {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--inter);
    margin-bottom: 7px;
    display: inline-flex;
    align-items: center;
}

.footer__address::before {
    content: url('/local/templates/gofromir/assets/images/address.svg');
    position: relative;
    top: 2.5px;
    margin-right: 12px;
}

.email-link--footer::before {
    margin-right: 12px;
    content: url('/local/templates/gofromir/assets/images/message.svg');
    position: relative;
    top: 2.5px;
}

.socials {
    margin: 30px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__payments {
    display: flex;
    align-items: center;
}

.footer__payments-item {
    margin-right: 23px;
}

.footer__payments-item:last-child {
    margin-right: 0;
}

.footer__items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
}

.footer__nav-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
}

.footer__nav-group-title {
    margin-bottom: 16px;
    font-family: var(--inter);
    font-weight: 500;
    font-size: 18px;
    transition: 200ms ease all;
}

.footer__nav-group-title--link:hover {
    color: var(--green);
}

.footer__nav-group--one {
    margin-bottom: 12px;
}

.footer__nav-item {
    transition: 200ms ease all;
    color: #7A7A7A;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--inter);
    line-height: 220%;
}

.footer__nav-item:hover {
    color: var(--green);
}

.main-slider {
    margin-top: 16px;
    margin-bottom: 80px;
    margin-bottom: 40px;
}

.main-slider__container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.main-slider__swiper {
    border-radius: 60px;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
}

.main-slider__swiper--main {
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F9EDED 109.95%);
}

.main-slider__swiper--main .main-slider__image {
    max-height: 410px;
}

.main-slider__swiper--main .main-slider__slide {
    padding: 15px 80px;
}

.main-slider__swiper--main .main-slider__desc {
    margin: 16px 0 25px 0;
}

.button {
    text-align: center;
    transition: 200ms ease all;
    color: #ffffff;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 500;
    border: 2px solid var(--green);
    font-family: var(--inter);
    padding: 18px 32px;
    background: var(--green);
}

.button:hover {
    background: #ffffff;
    color: var(--green);
}

.button--transparent {
    color: var(--gray);
    background: transparent;
    border-color: #B3B3B3;
}

.button--transparent:hover {
    color: var(--gray);
}

.button--transparent--green {
    color: var(--green);
    background: transparent;
    border-color: var(--green);
}

.button--transparent--green:hover {
    color: #fff;
    background: var(--green);
}

.main-slider__slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-slider__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
	margin: 0;
}

.main-slider__desc {
    color: var(--gray-light);
    font-family: var(--inter);
    font-weight: 500;
    line-height: 22.4px;
    max-width: 710px;
    margin: 30px 0 40px 0;
}

.main-slider__groups {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.main-slider__group-title {
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 33.6px;
}

.main-slider__group {
    max-width: 300px;
    margin-right: 90px;
}

.footer__nav-group:last-child {
    margin-right: 0;
}

.main-slider__group-desc {
    font-family: var(--inter);
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    line-height: 145%;
}

.main-slider__buttons .button:first-child {
    margin-right: 36px;
}

.main-slider__image {
    max-width: 100%;
    margin-left: 20px;
}

.main-slider__swiper-wrapper {
    /* overflow: hidden; */
}

.main-slider__slide {
    padding: 80px;
}

.main-slider__pagination {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.main-slider__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--gray);
    transition: 200ms ease all;
    margin: 0 6px !important;
    opacity: 1;
}

.main-slider__pagination .swiper-pagination-bullet-active {
    border: 3px solid var(--green);
    width: 22px;
    height: 22px;
}

.title {
    font-size: 36px;
    font-weight: 500;
    line-height: 43px;
    margin-top: 0;
    margin-bottom: 24px;
}

.categories-preview__title {
    max-width: 1100px;
}

.desc {
    color: var(--gray-light);
    font-family: var(--inter);
    line-height: 23px;
}

.categories-preview__desc {
    max-width: 800px;
}

.categories-preview__container {
    margin-top: 54px;
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.product-thumbs {
    background: #F2F2F2;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 34px;
    transition: 200ms ease all;
}

.product-thumbs--category {
    border: 3px solid #F2F2F2;
}

.product-thumbs--category:hover {
    border-color: var(--green);
    background: #ffffff;
    transform: scale(1.05);
}

.product-thumbs__title {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-align: center;
    transition: 200ms ease all;
}

.product-thumbs--category .product-thumbs__title {
    max-width: 222px;
}

.product-thumbs__title:hover {
    color: var(--green);
}

.images__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.images__nav-item {
    cursor: pointer;
    transition: 200ms ease all;
    height: 3px;
    width: 10px;
    background: var(--gray);
    border-radius: 4px;
    margin: 0 4px;
}

.images__nav-item--active {
    width: 20px;
    background: var(--green);
}

.image-holder {
    height: 235px;
    position: relative;
    width: 100%;
}

.nav-thumbs {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    top: 0;
    z-index: 10;
}

.nav-thumb {
    flex: 1 1 auto;
    height: 100%;
    display: inline-block;
}

.image-holder__src {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-more {
    border: 3px solid #3DB845;
    border-radius: 24px;
    padding: 46px;
    background: var(--green);
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    transition: 200ms ease all;
}

.category-more:hover {
    background: #ffffff;
    border-color: var(--green);
    color: var(--green);
    transform: scale(1.05);
}

.category-more__title {
    font-size: 28px;
    font-weight: 600;
}

.category-more__desc {
    margin-top: 16px;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--inter);
    opacity: 0.8;
}

.category-more:hover .category-more__desc {
    color: var(--gray-light);
}

.category-more__arrow path {
    transition: 200ms ease all;
}

.category-more:hover .category-more__arrow path {
    fill: var(--green);
}

.main-page__categories-preview {
    margin-bottom: 100px;
}

.sms-calc__desc {
    font-size: 20px;
    font-family: var(--inter);
    padding-bottom: 57px;
}

.sms-calc {
    padding: 60px 160px 0 100px;
    background: linear-gradient(98.64deg, #314F86 1.29%, #BAC8E0 96.86%);
    border-radius: 60px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sms-calc__consultation-button {
    color: #fff;
    border-color: #fff;
}

.sms-calc__main-button {
    margin-right: 36px;
}

.sms-calc__image {
    width: 334px;
    max-width: 100%;
    height: 419px;
    /* background: url('/local/templates/gofromir/assets/images/sms-tel.png') no-repeat; */
    background-position: center;
    background-size: contain;
}

.boxes {
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 5;
    position: relative;
    /* overflow-x: hidden; */
}

.boxes__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.boxes__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.show-all {
    display: inline-flex;
    align-items: center;
    transition: 200ms ease all;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03), 2px 6px 30px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    font-family: var(--inter);
    padding: 18px 24px;
    border-radius: 14px;
    font-weight: 600;
}

.show-all__count {
    font-weight: 400;
    color: var(--gray-light);
    margin-right: 4px;
    margin-left: 6px;
}

.show-all__arrow path {
    transition: 200ms ease;
}

.show-all:hover {
    color: var(--green);
}

.show-all:hover .show-all__arrow path {
    fill: var(--green);
}

.product-thumbs--product .image-holder {
    height: 260px;
}

.product-thumbs--product .images__nav {
    margin-top: 22px;
    margin-bottom: 24px;
}

.product-thumbs--product .product-thumbs__title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--inter);
    line-height: 25.2px;
    text-align: left;
    margin-bottom: 24px;
}

.product-thumbs--product .image-holder__src {
    border-radius: 24px;
}

.product-thumbs--product .images__nav {
    width: 100%;
}

.product-thumbs--product .images__nav-item {
    flex: 1;
}

.product-thumbs__desc {
    color: #BFBFBF;
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: #FF9966;
    margin-bottom: 6px;
    min-height: 16px;
}

.product-thumbs--product {
    align-items: flex-start;
    padding: 0;
    background: none;
    border-radius: 0;
}

.product-preview__price {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 18px;
    font-family: var(--inter);
    display: inline-flex;
    align-items: center;
}

.price-discount {
    font-weight: 700;
    font-family: var(--inter);
    font-size: 16px;
    margin-left: 12px;
    background: #FF9966;
    border-radius: 5px;
    color: #ffffff;
    padding: 8px 6px 6px;
}

.product-preview {
    border-radius: 24px;
    padding: 33px 20px 33px;
    border: 1px solid #E6E6E6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.product-preview__controls {
    margin-top: 13px;
    position: relative;
}

.button-cart {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    font-family: var(--inter);
    background: var(--green);
    padding: 18px 25px;
    border-radius: 14px;
    text-align: center;
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
}

.button-cart--icon {
    min-width: 220px;
}

.button-cart--icon::before {
    content: url('/local/templates/gofromir/assets/images/cart.svg');
    margin-right: 10px;
    position: relative;
    bottom: 1px;
}

.product-cart .button-cart--icon {
    min-width: auto;
}

/* .button-cart::before {
    content: url('/local/templates/gofromir/assets/images/cart.svg');
    margin-right: 10px;
    position: relative;
    bottom: 1px;
} */


.button-one-click {
    font-weight: 600;
    color: #FF9966;
    font-size: 16px;
    font-family: var(--inter);
    background: #FCF7EB;
    padding: 12px 17px;
    line-height: 0;
    border-radius: 14px;
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
}

.button-one-click::before {
    content: url('/local/templates/gofromir/assets/images/click.svg');
    margin-right: 10px;
    position: relative;
    bottom: 1px;
}

.button-one-click:hover {
    background: #FF9966;
    color: #fff;
}

.button-one-click:hover::before {
    content: url('/local/templates/gofromir/assets/images/click-w.svg');
}

.button-cart:hover {
    background: #2BAB33;
}

.button-cart--icon:hover {
    background: #2BAB33;
    color: #fff;
}

.product-preview__button {
    min-width: 135px;
    position: relative;
    z-index: 10;
}

.product-preview__count-and-button {
    display: flex;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    justify-content: space-between;
}

.product-preview__custom-input {
    position: relative;
    z-index: 10;
}

.input-control {
    position: absolute;
    top: 14px;
    z-index: 3;
}

.product-preview__custom-input__field {
    width: 100%;
    height: 100%;
    border-color: transparent;
    border: none;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--inter);
}

.input-plus {
    right: 18px;
}

.input-minus {
    left: 18px;
}


.product-preview__add-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 200ms ease all;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--inter);
    padding: 4px 0;
}

.product-preview__add-link:hover {
    color: var(--gray-light);
}

/* .products-preview-slider {
    overflow: visible;
    position: relative;
} */

.boxes-swiper-container {
    position: relative;
}

.boxes-overflow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/* .boxes-overflow::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    z-index: 2;
    top: 0;
    background: #fff;
}

.boxes-overflow::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    z-index: 2;
    top: 0;
    background: #fff;
} */

.slider-arrow {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03), 2px 6px 30px rgba(0, 0, 0, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 200ms ease all;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: calc(50% - 30px);
}

.slider-arrow:hover {
    box-shadow: none;
}

.slider-arrow:hover svg path {
    fill: var(--green);
}

.slider-prev {
    left: -30px;
}

.slider-next {
    right: -30px;
}

.swiper-button-disabled {
    display: none;
}

.input-control svg path {
    transition: 200ms ease all;
}

.input-control:hover svg path {
    fill: var(--green);
}

.box__desc {
    font-size: 18px;
    padding-top: 15px;
}

.custom-placeholder {
    color: #C4C4C4;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--inter);
}

.custom-input--custom-placeholder {
    position: relative;
}

.custom-placeholder {
    position: absolute;
    left: 24px;
    top: 23px;
    transition: 200ms ease all;
    z-index: 2;
}

.custom-input--custom-placeholder .custom-input__field {
    font-size: 20px;
    font-weight: 600;
}

.custom-input--active .custom-placeholder {
    font-size: 14px;
    top: 10px;
}

.custom-input--active .custom-input__field {
    padding-top: 20px;
}

.custom-input--active .custom-input__field {
    padding-top: 23px;
    padding-bottom: 7px;
}

.box {
    display: flex;
    align-items: flex-start;
}

.box__form {
    width: 732px;
    padding: 100px 80px 110px;
    border-radius: 60px;
    border: 2px solid #F2F2F2;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.2);
}

.box__form-groups {
    margin-top: 16px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.custom-input__box .custom-input__field {
    max-width: 100%;
    width: 100%;
}

.custom-input__box {
    margin-right: 24px;
}

.custom-input__box:last-child {
    margin-right: 0;
}

.box__image {
    width: 750px;
    margin-top: 102px;
    margin-left: -45px;
}

.banner {
    margin-top: 50px;
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F8F2EA 109.95%);
    border-radius: 60px;
}

.banner .main-slider__title {
    font-size: 36px;
    font-weight: 500;
}

.main-slider__group-image {
    margin-right: 16px;
}

.custom-design {
    margin-top: 100px;
}

.custom-design__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.custom-design__main-info {
    width: 100%;
    max-width: 348px;
}

.custom-design__item {
    font-weight: 500;
    font-family: var(--inter);
    color: var(--gray-light);
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 32px;
}

.custom-design__item::before {
    content: url('/local/templates/gofromir/assets/images/arrow-top-right.svg');
    position: absolute;
    left: 0;
    top: 0;
}

.product-thumbs--design {
    background: none;
    border-radius: 0;
    padding: 0 !important;
}

.product-thumbs--design .image-holder {
    height: 550px;
    width: 100%;
}

.custom-design__images {
    max-width: 460px;
    width: 100%;
}

.product-thumbs--design .image-holder__src {
    object-fit: cover;
    border-radius: 36px;
    position: relative;
    z-index: 6;
}

.product-thumbs--design .images__nav {
    width: 100%;
    padding: 0 40px;
    margin-top: 16px;
}

.product-thumbs--design .images__nav-item {
    flex: 1;
}

.product-thumbs--design .image-holder {
    position: relative;
}

.effects {
    position: absolute;
    width: 100%;
    height: 100%;
}

.effects::before {
    content: url('/local/templates/gofromir/assets/images/design-item.webp');
    position: absolute;
    left: 30px;
    top: -25px;
    z-index: 4;
    transition: 200ms ease all;
}

.effects::after {
    content: url('/local/templates/gofromir/assets/images/design-item-2.webp');
    position: absolute;
    left: 70px;
    top: -50px;
    z-index: 3;
    transition: 200ms ease all;
}

.custom-design__tabs {
    width: 100%;
    max-width: 352px;
}

.product-thumbs--design .images__nav-item {
    height: 4px;
}

.custom-design__tab {
    padding: 36px 36px 4px;
    border-radius: 36px;
    border: 2px solid transparent;
}

.custom-design__tab-title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--inter);
    font-weight: 500;
    /* transition: 400ms ease all; */
    color: #C4C4C4;
}

.custom-design__tab-title:hover {
    color: #3E3E3E;
}

.custom-design__tab--active .custom-design__tab-title {
    margin-bottom: 24px;
    font-family: var(--monts);
    font-weight: 600;
    color: #3E3E3E;
}

.custom-design__tab-desc {
    color: var(--gray-light);
    font-family: var(--inter);
    font-weight: 500;
    line-height: 22.4px;
    display: none;
}

.custom-design__tab--active {
    border-color: #E6E6E6;
    padding: 36px 30px;
    margin: 35px 0 15px
}

.custom-design__tab--active .custom-design__tab-desc {
    display: block;
}

.print-button {
    margin: 40px 36px 0;
}

.button--orange {
    background: #FF9966;
    border-color: #FF9966;
}

.button--orange:hover {
    color: #ffffff;
    background: #FE7632;
    border-color: #FE7632;
}

.product-cart__not-aviability {
    font-weight: 600;
    font-size: 16px;
    color: #FE7632;
    font-family: var(--inter);
    padding: 18px 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #FE7632;
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
}

.product-cart__not-aviability:hover {
    color: #fff;
    background: #FE7632;
}

.product-cart .product-cart__not-aviability {
    display: none;
}

.product-cart--not-aviability .product-cart__add {
    display: none;
}

.product-cart--not-aviability .product-cart__one-click {
    display: none;
}

.product-cart--not-aviability .product-cart__one-click {
    display: none;
}

.product-cart--not-aviability .product-cart__not-aviability {
    display: inline-flex;
}

.product-cart--not-aviability .product-cart__city {
    display: none;
}

.product-cart--not-aviability .product-cart__delivery-info .product-cart__tabs-header {
    display: none;
}

.product-cart--not-aviability .product-cart__delivery-info .product-cart__tab {
    display: none;
}

.advantages {
    padding-top: 50px;
}

.advantages__items {
    margin-top: 55px;
}

.advantages__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 25px;
}

.advantages__item {
    padding: 35px 30px;
    border-radius: 36px;
    transition: 300ms ease all;
}

.advantages__item:hover {
    transform: scale(1.08);
}

.advantages__item-title {
    font-weight: 600;
    font-size: 21px;
    margin: 24px 0 20px;
    line-height: 29px;
}

.advantages__item-desc {
    font-family: var(--inter);
    line-height: 23px;
}

.advantages__item {
    background: linear-gradient(102.28deg, #F9F2F4 -9.18%, #F7F9EC 375.89%);
}

.advantages__item--1 {
    background: linear-gradient(102.28deg, #F9F2F4 -9.18%, #F7F9EC 375.89%);
}

.advantages__item--2 {
    background: linear-gradient(102.28deg, #F9F2F4 -98.24%, #F7F9EC 286.83%);
}

.advantages__item--3 {
    background: linear-gradient(102.28deg, #F9F2F4 -187.29%, #F7F9EC 197.78%);
}

.advantages__item--4 {
    background: linear-gradient(102.28deg, #F9F2F4 -276.09%, #F7F9EC 108.98%);
}

.portfolio-previews__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-previews__header .show-all {
    margin-top: 15px;
}

.portfolio-previews__text {
    width: 100%;
    max-width: 880px;
}

.portfolio-previews {
    padding-top: 50px;
}

.email-subscribe {
    margin-top: 50px;
    padding: 70px 100px 56px;
    background: linear-gradient(90deg, #6A85B6 0%, #BAC8E0 100%);
    border-radius: 60px;
    color: #fff;
}

.email__subscribe-desc {
    color: #fff;
    max-width: 350px;
}

.email__subscribe-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.email-subscribe__form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.email-subscribe__text {
    width: 100%;
    max-width: 490px;
}

.email-subscribe__groups {
    display: flex;
    align-items: flex-start;
}

.email-subscribe__custom-input input {
    width: 100%;
}

.email-subscribe__custom-input {
    margin-bottom: 20px;
}

.email-subscribe__custom-input input {
    border: 2px solid #fff;
    background: transparent;
    color: #fff !important;
    font-size: 18px;
}

.email-subscribe__custom-input input:hover, .email-subscribe__custom-input input:focus, .email-subscribe__custom-input input:active {
    border-color: #fff;
}

.email-subscribe__custom-input input::placeholder {
    color: rgba(255, 255, 255, .6);
}

.custom-checkbox {
    display: inline-flex;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--inter);
    font-size: 14px;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox__field {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    left: 4px;
    top: 4px;
    z-index: 3;
}

.custom-checkbox__checkmark {
    position: relative;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: 200ms ease all;
    min-width: 20px;
    width: 20px;
    bottom: 0;
}

.email__subscribe-fields {
    margin-right: 36px;
}

.email-subscribe__submit {
    position: relative;
    bottom: 6px;
}

.custom-checkbox:hover .custom-checkbox__field~.custom-checkbox__checkmark {
    /* border-color: #FFB700; */
}

.custom-checkbox__field:checked~.custom-checkbox__checkmark {
    /* border-color: #FFDA00;
    background: #FFDA00; */
}

.custom-checkbox__checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox__field:checked~.custom-checkbox__checkmark:after {
    display: block;
}

.custom-checkbox__checkmark:after {
    content: url('/local/templates/gofromir/assets/images/check.png');
    left: 3px;
    top: 3px;
}

.custom-checkbox__text {
    padding-left: 10px;
    max-width: 97%;
}

.custom-checkbox__text a {
    color: #fff;
    border-bottom: 1px solid #fff;
    transition: 200ms ease all;
}

.custom-checkbox__text a:hover {
    border-color: transparent;
}

.seo-text__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.seo-text {
    padding-top: 50px;
}

.main-page {
    padding-bottom: 80px;
}

.show-all--text {
    padding: 15px 20px;
}

.show-all--text svg {
    margin-left: 5px;
}

.seo-text__inner {
    max-height: 100px;
    position: relative;
    overflow: hidden;
    transition: 200ms ease all;
}

.seo-text__inner::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 97.92%);
    transition: 200ms ease all;
}

.seo-text--active .seo-text__inner {
    max-height: 100%;
}

.seo-text--active .seo-text__inner::after {
    background: transparent;
    z-index: -1;
}

.seo-text--active .seo-text__inner {
    margin-bottom: 30px;
}

.seo-text--active .show-all--text svg {
    transform: rotate(180deg);
}

.seo-text--active .show-all--text span {
    display: none;
}

.seo-text--active .show-all--text::before {
    content: 'Свернуть';
}

.to-up {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03), 2px 6px 30px rgba(0, 0, 0, 0.08);
    transition: 200ms ease all;
    position: fixed;
    right: 70px;
    bottom: 60px;
    z-index: -1;
    opacity: 0;
}

.to-up svg path {
    transition: 200ms ease all;
}

.to-up:hover {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03), 2px 6px 30px rgba(0, 0, 0, 0.08);
}

.to-up:hover svg path {
    fill: #fff;
}

.to-up--active {
    opacity: 1;
    z-index: 99;
}

.catalog-banner .main-slider__group {
    margin-right: 60px;
}

.catalog-banner .main-slider__group:last-child {
    margin-bottom: 0;
}

.main-slider__buttons {
    display: flex;
    align-items: center;
}

.catalog-banner .main-slider__title {
    max-width: 570px;
}

.catalog-banner .main-slider__desc {
    max-width: 570px;
}

.catalog-banner {
    background: url('/local/templates/gofromir/assets/images/catalog-banner.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 33px;
    padding-bottom: 97px;
}

.catalog-banner .main-slider__slide {
    padding: 0;
}

.breadcrumbs {
    margin-bottom: 56px;
    font-family: var(--inter);
    font-weight: 500;
    list-style: none;
    color: #616161;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
}

.breadcrumbs__item {
    margin-bottom: 4px;
}

.breadcrumbs__item-link {
    transition: 200ms ease all;
}

.breadcrumbs__item-link:hover {
    color: var(--green);
}

.breadcrumbs__item:last-child .breadcrumbs__item-link:hover {
    color: #616161;
}

.breadcrumbs__item::after {
    content: '—';
    padding: 0 5px;
}

.breadcrumbs__item:last-child::after {
    content: none;
}

.catalog-header-nav {
    margin-top: 105px;
    padding: 22px 30px 12px 30px;
    margin-bottom: 64px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 500;
    color: #8C8C8C;
}

.catalog-header-nav__item {
    display: inline-flex;
    align-items: center;
    transition: 200ms ease all;
    margin-right: 32px;
    margin-bottom: 10px;
}

.catalog-header-nav__item:last-child {
    margin-right: 0;
}

.catalog-header-nav__item span {
    transition: 200ms ease all;
    color: #BFBFBF;
    margin-left: 12px;
}

.catalog-header-nav__item:hover, .catalog-header-nav__item--active {
    color: var(--green);
}

.catalog-header-nav__item:hover span, .catalog-header-nav__item--active span {
    color: #3E3E3E;
}

.catalog-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.catalog-filter {
    padding-top: 20px;
    width: 100%;
    max-width: 256px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--inter);
}

.catalog__filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--inter);
    line-height: 24px;
    margin-bottom: 24px;
    transition: 200ms ease all;
    width: 100%;
}

.catalog-filter__title {
    font-weight: 600;
    font-size: 20px;
    font-family: var(--inter);
    margin-bottom: 44px;
}

.catalog__filter-item .catalog__filter-item-counter {
    transition: 200ms ease all;
    color: #C4C4C4;
}

.catalog__filter-item:hover, .catalog__filter-item--active {
    color: var(--green);
}

.catalog__filter-item:hover .catalog__filter-item-counter, .catalog__filter-item--active .catalog__filter-item-counter {
    color: #3E3E3E;
}

.catalog__filter-item-title {
    max-width: 220px;
}

.catalog-items-title {
    font-weight: 600;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    line-height: 130%;
}

.catalog-items-title::after {
    content: url('/local/templates/gofromir/assets/images/right-catalog.png');
    margin-left: 32px;
}

.catalog-items {
    flex: 1;
    margin-left: 80px;
}

.catalog-items__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}

.catalog-items__container--flex {
    display: flex;
    grid-gap: 0;
    margin: 50px -10px 0;
    flex-wrap: wrap;
}

.catalog-items__container--flex .product-preview {
    width: calc(33.3% - 20px);
    margin: 0 10px 20px;
}

.catalog-vertical-banner__image {
    max-width: 100%;
    width: 100%;
}

.catalog-items__container--flex .catalog-vertical-banner {
    width: calc(33.3% - 20px);
    margin: 0 10px 20px;
}

.catalog__fefco {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px 24px 32px;
    background: #F2F2F2;
    border-radius: 24px;
    transition: 200ms ease all;
}

.catalog__fefco:hover {
    transform: scale(1.05);
}

.catalog__fefco-image {
    height: 240px;
    object-fit: contain;
    max-width: 100%;
    object-position: center;
}

.catalog__fefco-title {
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    font-family: var(--inter);
    margin-bottom: 16px;
}

.catalog__fefco-desc {
    font-family: var(--inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}


.categories-preview__desc ul {
    padding-left: 20px;
}

.catalog-page .categories-preview {
    margin-top: 50px;
}

.catalog-page .custom-design {
    margin-top: 110px;
}

.offset-top-0 {
    padding-top: 0;
    margin-top: 0;
}

.catalog-page {
    padding-bottom: 120px;
}

.catalog-page .portfolio-previews {
    padding-top: 50px;
}

.categories-preview--catalog .image-holder__src {
    object-fit: none;
    object-position: center;
}

.categories-preview--catalog .image-holder {
    height: 200px;
}

.catalog-container--no-filter .catalog-items {
    margin-left: 0;
}

.catalog-container--no-filter .catalog-items__container {
    grid-template-columns: repeat(4, 1fr);
}

.catalog-page .boxes {
    padding-top: 50px;
}

.catalog-page .boxes {
    padding-bottom: 50px;
}

.catalog__filter-show-more {
    color: var(--green);
    transition: 200ms ease all;
    border-bottom: 1px solid var(--green);
    display: inline-block;
}

.catalog__filter-show-more:hover {
    border-color: transparent;
}

.services {
    margin-top: 32px;
}

.services__title.title {
    margin-bottom: 60px;
}

.services__group-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 33.6px;
    margin-bottom: 45px;
}

.services__group-desc {
    color: #3E3E3E;
    margin-bottom: 50px;
}

.services__items {
    display: grid;
    grid-row-gap: 46px;
    grid-column-gap: 54px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 50px;
}

.service__item {
    width: 100%;
    height: 240px;
    border-radius: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--inter);
    transition: 200ms ease all;
}

.service__item:hover {
    transform: scale(1.05);
}

.service__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 36px;
}

.services__item-title {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 30px;
}

.title--sm {
    font-size: 24px;
}

.services .email-subscribe {
    margin-top: 20px;
}

.services {
    padding-bottom: 120px;
}

.production {
    padding-top: 30px;
}

.production__group {
    margin-top: 55px;
    display: flex;
    margin-bottom: 90px;
    align-items: center;
}

.production__image {
    max-width: 100%;
    margin-right: 95px;
}

.production__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    margin-bottom: 22px;
}

.production__subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.production__desc {
    max-width: 630px;
    font-size: 16px;
    font-family: var(--inter);
    color: var(--gray-light);
    margin-bottom: 35px;
}

.production__list {
    padding-left: 0;
    font-family: var(--inter);
    color: var(--gray-light);
}

.production__list li {
    margin-bottom: 15px;
    list-style: none;
    position: relative;
    padding-left: 36px;
    line-height: 23.3px;
}

.production__list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
}

.production__video .production__desc {
    margin-bottom: 0;
    line-height: 23px;
}

.production__video {
    display: flex;
    margin-bottom: 50px;
    align-items: center;
}

.print .portfolio-previews {
    padding-top: 0;
}

.production__video-text {
    padding: 90px 85px;
    background: rgba(255, 255, 255, 0.2);
    mix-blend-mode: normal;
    border: 2px solid #F2F2F2;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    min-width: 732px;
    width: 732px;
    margin-right: -60px;
    position: relative;
    z-index: 2;
}

.production__video .production__title {
    margin-bottom: 30px;
}

.production__vedio-holder {
    min-width: 770px;
    width: 770px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 480px;
    border-radius: 36px;
}

.about .production__video {
    margin-bottom: 50px;
}

.about .portfolio-previews {
    padding-top: 30px;
}

.prodaction__video-holder-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
}

.production__video-play {
    width: 63px;
    height: 63px;
    display: inline-block;
    background: url('/local/templates/gofromir/assets/images/video-play.png') no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    transition: 200ms ease all;
    z-index: 2;
}

.production__video-play:hover {
    transform: scale(1.02);
}

.production__video-iframe {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.team {
    padding-bottom: 50px;
}

.team__title {
    font-size: 28px;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
}

.team__name {
    font-family: var(--inter);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.team__desc {
    font-family: var(--inter);
    font-size: 16px;
    color: var(--gray-light);
}

.team__image {
    width: 407px;
    height: 430px;
    border-radius: 24px;
    margin-bottom: 50px;
}

.team__slider {
    margin-top: 60px;
}

.team__container {
    position: relative;
}

.faq {
    padding-bottom: 50px;
}

.faq__title {
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 600;
}

.faq__item {
    margin-bottom: 20px;
}

.faq__header {
    display: flex;
    align-items: center;
    padding: 18px 28px 18px 52px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    justify-content: space-between;
    cursor: pointer;
}

.faq__item-title {
    font-weight: 600;
    font-size: 19px;
    line-height: 24px;
    color: #000000;
}

.faq__icon {
    min-width: 63px;
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DBFFDD;
    border-radius: 14px;
    margin-left: 20px;
    color: #3DB845;
    font-family: var(--inter);
    font-weight: 500;
    font-size: 20px;
    transition: 200ms ease all;
}

.faq__header:hover .faq__icon {
    background: var(--green);
    color: #fff;
}

.faq__icon::before {
    content: '+';
}

.faq__item--opened .faq__icon {
    background: #FCF7EB;
    color: #FF9966;
}

.faq__item--opened .faq__icon::before {
    content: '-';
}

.faq__item--opened .faq__header:hover .faq__icon {
    background: #FF9966;
    color: #fff;
}

.faq__answer {
    padding: 47px 0 45px 52px;
    max-width: 1200px;
    line-height: 23.5px;
    font-family: var(--inter);
    font-weight: 500;
    display: none;
}

.production .email-subscribe {
    margin-top: 0;
}

.production {
    padding-bottom: 130px;
}

.development-banner {
    max-width: 1520px;
    margin: 0 auto 50px;
    border-radius: 60px;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
    padding: 30px 80px 50px;
}

.development-banner .main-slider__slide {
    padding: 20px 0 0;
}

.production__num {
    font-family: var(--inter);
    font-size: 80px;
    font-weight: 700;
    color: #FF9966;
    margin-bottom: 15px;
    opacity: 0.3;
}

.development .production__group {
    margin-bottom: 50px;
}

.development .production__subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.production__group--reverse {
    flex-direction: row-reverse;
}

.production__group--reverse .production__image {
    margin-right: 0;
    margin-left: 95px;
}

.banner--2 {
    background: linear-gradient(101.73deg, #FEF3F8 28.94%, #EDE9F7 101.69%);
}

.banner--2 .main-slider {
    padding: 60px 25px 60px 100px;
}

.banner--2 .main-slider__title {
    margin-bottom: 46px;
}

.banner--2 .main-slider__info {
    min-width: 840px;
    margin-right: -120px;
    position: relative;
}

.banner--2 .main-slider__group-title {
    font-size: 20px;
    margin-bottom: 13px;
    line-height: 24px;
}

.print .main-slider__group-title {
    font-weight: 700;
    font-size: 19px;
    font-family: var(--inter);
    margin-bottom: 24px;
}

.print .main-slider__slide ul {
    padding-left: 20px;
    line-height: 24px;
}

.print .main-slider__group {
    max-width: 100%;
    margin-right: 0;
}

.banner--2 .main-slider__group-desc {
    color: var(--gray-light);
}

.banner--2 .main-slider__groups {
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.banner--2 .main-slider__group {
    max-width: calc(50% - 50px);
    margin-right: 50px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 48px;
}

.banner--2 .main-slider__group::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}

.banner--2 .main-slider__group:nth-child(1)::before {
    content: url('/local/templates/gofromir/assets/images/num1.svg');
}

.banner--2 .main-slider__group:nth-child(2)::before {
    content: url('/local/templates/gofromir/assets/images/num2.svg');
}

.banner--2 .main-slider__group:nth-child(3)::before {
    content: url('/local/templates/gofromir/assets/images/num3.svg');
}

.banner--2 .main-slider__group:nth-child(4)::before {
    content: url('/local/templates/gofromir/assets/images/num4.svg');
}

.development .team {
    padding-top: 50px;
}

.faq__subtitle {
    margin-bottom: 60px;
    font-family: var(--inter);
}

.development .faq__title {
    margin-bottom: 25px;
}

.development .advantages {
    padding-top: 0;
}

.development .advantages__items {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.development .advantages__item {
    padding: 60px 55px 30px;
}

.development .advantages__item-title {
    margin-top: 0;
}

.development .portfolio-previews {
    padding-top: 50px;
}

.blog {
    padding-top: 32px;
}

.blog__desc {
    margin-bottom: 60px;
    font-family: var(--inter);
    font-weight: 500;
}

.blog .catalog-header-nav {
    margin-top: 0;
    margin-bottom: 32px;
}

.blog__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
    padding-bottom: 50px;
}

.blog-item {
    transition: 200ms ease all;
}

.blog-item:hover {
    transform: scale(1.05);
}

.blog-item__image {
    width: 100%;
    height: 296px;
    border-radius: 36px;
    object-fit: cover;
    object-position: center;
}

.blog-item__title {
    line-height: 1.2;
    font-weight: 600;
    font-size: 19px;
    margin: 40px 0 20px;
    transition: 200ms ease all;
}

.blog-item__title:hover {
    color: var(--green);
}

.blog-item__desc {
    line-height: 23.2px;
    font-family: var(--inter);
    color: var(--gray-light);
    margin-bottom: 15px;
}

.blog-item__date {
    font-family: var(--inter);
    color: var(--gray-light);
    padding-bottom: 15px;
}

.show-more-holder {
    max-width: 1015px;
    width: 100%;
    margin: 0 auto 30px;
}

.show-more {
    padding: 20px 32px;
    background: #F5F5F5;
    border-radius: 12px;
    font-family: var(--inter);
    font-weight: 600;
    font-size: 18px;
    color: var(--green);
    width: 100%;
    text-align: center;
    transition: 200ms ease all;
}

.show-more:hover {
    background: var(--green);
    color: #fff;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 32px 0;
    list-style: none;
}

.pagination__item {
    margin: 0 12px;
    font-family: var(--inter);
    font-family: 600;
}

.pagination__link {
    transition: 200ms ease all;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination__item:hover .pagination__link {
    color: var(--green);
}

.pagination__item:hover .pagination__link-icon path {
    fill: var(--green);
}

.pagination__item--active .pagination__link {
    padding: 10px 18px;
    border: 1px solid #3DB845;
    border-radius: 12px;
    color: var(--green);
}

.blog .email-subscribe {
    margin-top: 50px;
}

.blog {
    padding-bottom: 120px;
}

.post__banner {
    padding-top: 30px;
    padding-bottom: 130px;
    position: relative;
}

.post__banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.post__banner-info {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumbs--w {
    position: relative;
    z-index: 2;
    color: #c4c4c4;
}

.breadcrumbs--w .breadcrumbs__item:last-child {
    color: #fff;
}

.breadcrumbs--w .breadcrumbs__item:last-child:hover .breadcrumbs__item-link {
    color: #fff;
}

.post__banner-info {
    padding-top: 230px;
}

.post__banner__title {
    font-size: 36px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
}

.post__banner-date {
    color: #c4c4c4;
    margin-bottom: 45px;
    font-family: var(--inter);
}

.post__banner-desc {
    max-width: 940px;
    line-height: 23.3px;
    font-weight: 500;
    font-family: var(--inter);
}

.post .production__subtitle {
    margin-bottom: 30px;
}

.post .production__desc {
    line-height: 23.2px;
}

.post__container {
    padding-top: 40px;
}

.production__video--reverse {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 30px;
}

.production__video--reverse .production__video-text {
    margin-right: 0;
    margin-left: -60px;
}

.production__video--reverse .production__video-text {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 60px;
}

.blog-previews__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 68px;
}

.blog-previews {
    padding-top: 50px;
}

.post {
    padding-bottom: 120px;
}

.about {
    padding-bottom: 120px;
}

.about__banner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 30px 0;
    background-image: url(/local/templates/gofromir/assets/images/about1.png), linear-gradient(101.79deg, #F1F0EF 13.98%, #E2D7CD 71.88%);
    background-repeat: no-repeat;
    background-position: center right;
    border-radius: 60px;
}

.about__banner-text {
    padding-top: 150px;
    padding-bottom: 170px;
}

.about__banner-title {
    max-width: 790px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
}

.about__banner-desc {
    font-family: var(--inter);
}

.about__clients {
    margin-top: 50px;
    margin-bottom: 50px;
}

.about__clients-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__clients-value {
    font-weight: 700;
    font-size: 100px;
    font-family: var(--inter);
    color: var(--green);
    margin: 10px 0;
}

.about__clients-title {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--inter);
}

.about__clients-desc {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--inter);
}

.about__clients {
    display: flex;
    align-items: center;
}

.about__client-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 120px;
}

.production__video--reverse--center {
    align-items: center;
}

.production__video--reverse--center .production__video-text {
    margin-top: 0;
}

.production__video-items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.production__video-item {
    width: 50%;
    margin-bottom: 45px;
}

.production__video-item-value {
    color: #FF9966;
    font-weight: 600;
    font-size: 40px;
    font-family: var(--inter);
    margin: 10px 0;
}

.production__video-item-title, .production__video-item-desc {
    font-family: var(--inter);
    color: var(--gray-light);
}

.production__video__about .production__video-text {
    padding-bottom: 40px;
}

.about__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about__group:last-child {
    margin-bottom: 50px;
}

.about__group--reverse {
    flex-direction: row-reverse;
}

.about__group--reverse--center {
    justify-content: flex-end;
}

.about__group--reverse--center .about__group-text {
    margin-left: 100px;
}

.about__group-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 43.2px;
}

.about__group-pre-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 22.5px;
    margin-bottom: 32px;
}

.about__group-desc {
    font-family: var(--inter);
    color: var(--gray-light);
    line-height: 23.2px;
}

.about__group-text {
    max-width: 635px;
}

.about__group-subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 33.6px;
    margin-bottom: 32px;
}

.about__main-group {
    padding-bottom: 50px;
}

.about__main-group-title {
    padding-bottom: 65px;
}

.about .services__items {
    padding-bottom: 0;
}

.about__group--center {
    justify-content: flex-start;
}

.about__group--center .about__group-text {
    margin-right: 100px;
}

.about .banner {
    margin-top: 0;
}

.about__education {
    padding-top: 50px;
    padding-bottom: 50px;
}

.production__video--top {
    align-items: flex-start;
}

.production__video--top .production__vedio-holder {
    margin-top: 70px;
}

.about .email-subscribe {
    margin-top: 40px;
}

.help {
    padding-top: 32px;
}

.help__desc {
    font-weight: 500;
    margin-bottom: 60px;
}

.help__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    margin-bottom: 50px;
}

.help__item {
    padding: 45px 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: 200ms ease all;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help__item:hover {
    transform: scale(1.03);
}

.help__item::after {
    content: url('/local/templates/gofromir/assets/images/help5.svg');
    transition: 200ms ease all;
}

.help__item-text {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
}

.help__item-icon {
    margin-right: 26px;
}

.help {
    padding-bottom: 120px;
}

.payment__desc {
    font-weight: 500;
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 40px;
}

.payment__subtitle {
    font-weight: 700;
    margin-bottom: 20px;
}

.list {
    padding-left: 0;
    font-family: var(--inter);
    color: var(--gray-light);
    margin-bottom: 34px;
}

.list__item {
    margin-bottom: 15px;
    list-style: none;
    position: relative;
    padding-left: 36px;
    line-height: 23.3px;
}

.list__item::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
}

.payment .list {
    max-width: 1000px;
}

.payment__predesc {
    max-width: 1000px;
    font-family: var(--inter);
    line-height: 22.4px;
    padding-bottom: 60px;
}

.payment {
    padding-bottom: 120px;
}

.faq-page .faq {
    padding-bottom: 0;
}

.faq-page .email-subscribe {
    margin-top: 50px;
}

.faq-page {
    padding-bottom: 120px;
}

.faq__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.faq__nav {
    width: 100%;
    max-width: 340px;
    margin-right: 30px;
}

.faq__body {
    flex: 1;
}

.faq__group {
    font-family: var(--inter);
    margin-bottom: 25px;
}

.faq__group-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.faq__group--active .faq__group-title {
    color: var(--green);
}

.faq__group-item {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.faq__group-item--active {
    color: var(--green);
}

.faq-page .select .select2-selection {
    height: 53px;
}

.faq-page .select .select2-selection__rendered {
    line-height: 53px !important;
}

.faq__group-item:hover {
    color: var(--green);
}

.faq__body-group-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq__body-group-item-answer {
    padding-left: 78px;
    line-height: 20px;
    font-size: 14px;
    color: var(--gray-light);
    display: none;
}

.faq__body-group {
    font-family: var(--inter);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq__body-group-item-header-title {
    line-height: 24px;
    font-weight: 700;
    transition: 200ms ease all;
}

.faq__body-group-item-header-icon {
    width: 63px;
    height: 63px;
    min-width: 63px;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    margin-right: 15px;
    transition: 200ms ease all;
    justify-content: center;
}

.faq__body-group-item {
    margin-bottom: 20px;
}

.faq__body-group-item-header:hover .faq__body-group-item-header-icon {
    background-color: #DBFFDD;
    border-color: #DBFFDD;
}

.faq__body-group-item-header:hover .faq__body-group-item-header-title {
    color: var(--green);
}

.faq__body-group-item--active .faq__body-group-item-header-icon {
    background-color: #DBFFDD;
    border-color: #DBFFDD;
}

.faq__body-group-item--active .faq-title-icon {
    transform: rotate(180deg);
}

.faq__body-group-item--active .faq__body-group-item-header-title {
    color: var(--green);
}

.faq__body-group--hidden {
    display: none;
}

.faq__body-group-item--active .faq__body-group-item-answer {
    display: block;
}

.faq-form__controls {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.faq-form__controls-item {
    display: flex;
    align-items: center;
}

.faq-form__submit {
    margin-right: 20px;
    min-width: 235px;
}

.faq-form {
    border: 2px solid #E1E1E1;
    border-radius: 60px;
    padding: 60px;
    margin-top: 30px;
}

.faq-form__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 30px;
}

.portfolio__desc {
    font-family: var(--inter);
    line-height: 22.4px;
    margin-bottom: 60px;
}

.portfolio .catalog-header-nav {
    margin-top: 0;
    margin-bottom: 77px;
}

.catalog-container--portfolio .catalog-filter {
    max-width: 270px;
    padding-top: 0;
}

.catalog-filter__group-title {
    margin-bottom: 44px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    font-family: var(--inter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 200ms ease all;
}

.catalog-filter__group-title:hover {
    color: var(--green);
}

.catalog-filter__group-icon {
    transition: 200ms ease all;
}

.catalog-filter__group-title:hover .catalog-filter__group-icon path {
    fill: var(--green);
}

.catalog-filter__group {
    width: 100%;
}

.catalog-filter__group--opened .catalog-filter__group-icon {
    transform: rotate(180deg);
}

.catalog-container--portfolio .catalog-items__container {
    margin-top: 0;
    grid-column-gap: 35px;
    grid-row-gap: 58px;
    padding-bottom: 70px;
    display: block;
}

.catalog__items-grid {
    display: grid;
    grid-column-gap: 35px;
    grid-row-gap: 58px;
    grid-template-columns: repeat(3, 1fr);
}

.catalog-filter .search-input {
    margin: 0 0 35px;
}

.catalog-filter__group-items {
    display: none;
    padding-bottom: 60px;
}

.catalog-filter__group-items--overflow {
    max-height: 240px;
    padding-bottom: 0 !important;
    margin-bottom: 30px;
}

.catalog-filter__group-items--overflow.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-vertical {
    right: 0 !important;
}

.catalog-filter__group--opened .catalog-filter__group-items {
    display: block;
}

.catalog-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select {
    width: 100%;
    font-family: var(--inter);
}

.select__field {
    width: 100%;
}

.select .select2 {
    width: 100% !important;
    min-width: 100%;
}

.select .select2-selection {
    height: 46px;
    border-radius: 14px;
    border-color: #E6E6E6;
}

.calculator .select .select2-selection {
    height: 51px;
    border-radius: 14px;
    border-color: #E6E6E6;
}


.select:hover .select2-selection {
    border-color: var(--green);

}

.select .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 16px !important;
}

.select .select2-selection__arrow {
    right: 8px !important;
    top: 8px !important;
}

.select .select2-selection.select2-selection--single {
    outline: none;
}

.select2-dropdown {
    border: none;
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.06), 2px 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    margin-top: 10px;
    padding: 16px;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 14px;
}

.select2-results__option {
    padding: 10px 0
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: var(--green)
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 14px;
}

.select__option {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}

.select__option-icon {
    margin-right: 15px;
}

.select-portfolio {
    max-width: 200px;
    width: 200px;
}

.product-thumbs--portfolio .image-holder {
    height: 215px;
}

.product-thumbs--portfolio {
    padding: 20px;
}

.portfolio-item__category {
    margin-top: 35px;
    font-weight: 500;
    color: #c4c4c4;
    font-family: var(--inter);
    margin-bottom: 13px;
}

.portfolio-item__link {
    font-weight: 600;
    font-size: 17px;
    line-height: 23.8px;
    transition: 200ms ease all;
}

.portfolio-item__link:hover {
    color: var(--green);
}

.catalog-container--portfolio .show-more-holder {
    max-width: 100%;
}

.portfolio .email-subscribe {
    margin-top: 50px;
}

.portfolio {
    padding-bottom: 120px;
}

.labaratory .post__banner {
    background: url('/local/templates/gofromir/assets/images/lab1.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 300px;
}

.labaratory .post__banner__title {
    font-size: 40px;
}

.labaratory__container {
    padding-top: 115px;
}

.labaratory .about__group {
    margin-bottom: 50px;
}

.production__video--bottom {
    align-items: flex-end;
}

.production__video--bottom .production__video-text {
    position: relative;
    top: 22px;
}

.labaratory .email-subscribe {
    margin-top: 50px;
}

.labaratory {
    padding-bottom: 120px;
}

.documents {
    padding-bottom: 120px;
}

.documents .email-subscribe {
    margin-top: 50px;
}

.documents__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 24px;
}

.documents-item {
    padding: 24px 28px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 16px;
    font-family: var(--inter);
    color: var(--gray-light);
    line-height: 23.2px;
    transition: 200ms ease all;
}

.documents-item:hover {
    transform: scale(1.04);
}

.documents-item__preview {
    height: 380px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
}

.documents-item__title {
    flex: 1;
    display: flex;
    align-items: center;
}

.main-slider__slide--no-offset {
    padding: 0 0 50px;
}

.waste-paper__banner {
    padding-top: 32px;
    background: linear-gradient(100.64deg, #DCE2ED 30.63%, #F3F5F8 97.55%);
    margin-bottom: 50px;
}

.print .waste-paper__banner {
    background: linear-gradient(100.62deg, #FEF3F8 30.55%, #EDE9F7 97.35%);
    margin-bottom: 50px;
}

.print .advantages--5 {
    padding-bottom: 50px;
}

.advantages__items--marks {
    grid-template-columns: repeat(3, 1fr);
}

.advantages__items--marks .advantages__item {
    padding: 55px 45px 45px;
    text-align: center;
}

.advantages__items--marks .advantages__item-title {
    color: var(--green);
    margin-top: 0;
    font-size: 18px;
}

.advantages__items--marks .advantages__item-desc {
    color: var(--gray-light);
}

.ecology {
    margin-top: 50px;
}

.ecology__title {
    margin-bottom: 60px;
}

.ecology__container {
    display: flex;
    align-items: flex-start;
}

.ecology__desc {
    width: 100%;
    max-width: 600px;
    margin-right: 50px;
    position: relative;
    padding-left: 51px;
}

.ecology__desc::before {
    content: url('/local/templates/gofromir/assets/images/eco-arrow.svg');
    position: absolute;
    left: 0;
    top: 0;
}

.ecology__desc:last-child {
    margin-right: 0;
}

.cooperation {
    margin-top: 50px;
    margin-bottom: 50px;
}

.advantages__items--cooperation .advantages__item {
    background: radial-gradient(122.22% 121.32% at 36.8% -71.32%, #E2F4E3 32.95%, rgba(253, 253, 236, 0) 100%), radial-gradient(70.51% 853.29% at 48.9% 63.09%, #F8F9F9 0%, #ECF1F6 100%);
    padding: 25px 35px;
}

.advantages__items--cooperation .advantages__item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    font-family: var(--inter);
    margin-top: 0;
    margin-bottom: 20px;
    color: #FF9966;
}

.cooperation__button-holder {
    margin-top: 80px;
    text-align: center;
}

.cooperation__button {
    width: 300px;
}

.production__video--waste {
    margin-bottom: 80px;
}

.production__video--waste .production__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 22.4px;
    padding-bottom: 25px;
}

.production__video--waste .list:last-child {
    margin-bottom: 0;
}

.production__video--waste .production__video-text {
    padding-top: 50px;
    padding-bottom: 50px;
}

.production__video--waste .production__vedio-holder {
    height: auto;
    width: 100%;
    min-width: auto;
    max-width: 640px;
}

.production__video--waste .prodaction__video-holder-image {
    position: static;
}

.production__video--reverse--center {
    align-items: center;
}

.production__video--reverse--center .production__video-text {
    margin-top: 0;
}

.production__video--waste .production__video-text {
    max-width: 100%;
    width: auto;
    flex: 1;
}

.waste-paper__main-info {
    padding-bottom: 40px;
}

.waste-paper .map-location {
    margin-bottom: 50px;
}

.waste-paper .faq {
    padding-bottom: 0;
}

.waste-paper .email-subscribe {
    margin-top: 30px;
}

.waste-paper {
    padding-bottom: 120px;
}

.map {
    min-height: 600px;
    position: relative;
    border-radius: 30px;
}

.location-info {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50px;
    background: rgba(255, 255, 255, 0.8);
    mix-blend-mode: normal;
    backdrop-filter: blur(14px);
    padding: 55px;
    border-radius: 60px;
    max-width: 480px;
}

.location-info__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 32px;
}

.location__info-item {
    font-family: var(--inter);
    line-height: 24px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.location__info-item::before {
    position: absolute;
    left: 0;
    top: 0;
}

.location-info__desc {
    font-weight: 600;
}

.location-info__button {
    margin-top: 27px;
    width: 100%;
}

.location__info-link:hover {
    color: var(--green);
}

.location__info-item--loc::before {
    content: url('/local/templates/gofromir/assets/images/loc-loc.svg');
}

.location__info-item--time::before {
    content: url('/local/templates/gofromir/assets/images/loc-time.svg');
}

.location__info-item--tel::before {
    content: url('/local/templates/gofromir/assets/images/loc-tel.svg');
}

.location__info-item--email::before {
    content: url('/local/templates/gofromir/assets/images/loc-email.svg');
}

.map-location>ymaps {
    border-radius: 30px;
}

.handbook {
    padding-top: 32px;
}

.handbook-header {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.handbook__title {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 24px;
}

.search-input__handbook {
    margin: 0;
    max-width: 495px;
}

.handbook-nav__item {
    font-weight: 600;
    font-size: 28px;
    transition: 200ms ease all;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background: #F2F2F2;
    border-radius: 16px;
    margin-right: 8px;
}

.handbook-nav__item:last-child {
    margin-right: 0;
}

.handbook-nav__container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.handbook-nav__item:hover {
    background: var(--green);
    color: #fff;
}

.handbook-nav__item--active {
    background: var(--green);
    color: #fff;
}

.handbook__items {
    margin-top: 48px;
}

.handbook-group__title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 16px;
}

.handbook-group__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 12px 24px 12px 16px;
    transition: 200ms ease all;
}

.handbook-group__item:hover {
    color: var(--green);
}

.handbook-group__item:hover .handbook-group__item-arrow path {
    fill: var(--green);
}

.handbook-group__items {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}

.handbook-group {
    margin-bottom: 48px;
}

.handbook {
    padding-bottom: 120px;
}

.handbook .email-subscribe {
    margin-top: 50px;
}

.handbook__search-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.handbook__search-items .handbook-group__title {
    margin-bottom: 0;
}

.handbook__back-link {
    font-family: var(--inter);
    color: var(--green);
    display: inline-flex;
    align-items: center;
}

.handbook__back-link::before {
    content: url('/local/templates/gofromir/assets/images/back.svg');
    margin-right: 13px;
    transition: 200ms ease all;
}

.handbook__back-link:hover::before {
    transform: translateX(-10px);
}

.handbook__back-link:hover {
    text-decoration: underline;
}

.handbook__text {
    line-height: 23.2px;
    font-family: var(--inter);
    max-width: 1100px;
}

.handbook__post {
    display: flex;
    align-items: flex-start;
}

.handbook__post-letter {
    margin-right: 25px;
    font-weight: 600;
    font-size: 110px;
    color: var(--green);
}

.price-list__title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 0;
}

.price-list__container {
    padding-top: 20px;
    padding-bottom: 80px;
    text-align: center;
}

.price-list__button {
    margin-top: 60px;
    width: 265px;
}

.error-page {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.error-page__title {
    font-weight: 600;
    font-size: 32px;
}

.error-page__desc {
    max-width: 520px;
    color: #595959;
    font-weight: 400;
    margin: 50px auto;
}

.development .email-subscribe {
    margin-top: 20px;
}

.development {
    padding-bottom: 120px;
}

.catalog-page--main {
    padding-top: 32px;
}

.catalog-page--main .catalog-filter {
    max-width: 294px;
    min-width: 294px;
    padding-top: 0;
}

.catalog-filter__nav {
    margin-bottom: 50px;
    background: #F2F2F2;
    opacity: 0.8;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 35px 22px;
    width: 100%;
    font-family: var(--inter);
}

.catalog-filter__nav-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.catalog-filter__nav-item:hover .catalog-filter__nav-item-title {
    color: var(--green);
}

.catalog-filter__nav-item--active .catalog-filter__nav-item-title {
    color: var(--green);
}

.catalog-filter__nav-item:last-child {
    margin-bottom: 0;
}

.catalog-filter__nav-item-counter {
    color: #C4C4C4;
}

.custom-input__filter {
    width: 100%;
    margin-bottom: 16px;
}

.custom-input__filter .custom-input__field {
    width: 100%;
}

.catalog-page--main .catalog-filter__group-items {
    padding-bottom: 30px;
}

.custom-checkbox__catalog-filter .custom-checkbox__checkmark {
    border: 2px solid #E6E6E6;
    border-radius: 7px;
}

.custom-checkbox__catalog-filter:hover .custom-checkbox__checkmark {
    border-color: var(--green);
}

.custom-checkbox__catalog-filter .custom-checkbox__checkmark:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    left: 3.5px;
    top: 3.8px;
}

.custom-checkbox__catalog-filter .custom-checkbox__field:checked~.custom-checkbox__checkmark {
    border-color: var(--green);
}

.custom-checkbox__catalog-filter {
    font-size: 16px;
}

.catalog-filter__check {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.catalog-filter__check-counter {
    margin-left: 15px;
    color: #c4c4c4;
}

.catalog-filter__reset {
    margin-top: 25px;
}

.button--reset {
    border: 1px solid #C4C4C4;
    background: #fff;
    width: 100%;
    color: #616161;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button__reset-icon {
    margin-right: 10px;
}

.button--reset:hover {
    color: #616161;
}

.button--reset:hover .button__reset-icon path {
    fill: var(--green);
}

.catalog-items-title--no-icon::after {
    content: none;
}

.catalog-items-title--no-icon {
    font-size: 36px;
}

.catalog-items__tags {
    font-family: var(--inter);
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px -10px 45px;
}

.catalog-items__tag {
    transition: 200ms ease all;
    padding: 10px 20px;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    margin: 0 5px 10px;
    font-weight: 700;
}

.catalog-items__tag span {
    font-weight: 500;
    color: #BFBFBF;
    display: inline-block;
    padding-left: 10px;
}

.catalog-items__tag:hover, .catalog-items__tag--active {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

.catalog-items__tag:hover span, .catalog-items__tag--active span {
    color: #ffffff;
    opacity: 0.5;
}

.catalog-items__tag-more {
    color: var(--green);
    font-family: var(--inter);
    margin-bottom: 15px;
    margin-left: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
    bottom: 3px;
}

.catalog-items__tag-more::after {
    content: url('/local/templates/gofromir/assets/images/arrow-right-green.svg');
    margin-left: 13px;
    transition: 200ms ease all;
}

.catalog-items__tag-more:hover::after {
    transform: translateX(10px);
}

.select-catalog {
    max-width: 205px;
    min-width: 205px;
}

.catalog-view__item-icon path {
    transition: 200ms ease all;
}

.catalog-view__item:hover .catalog-view__item-icon path {
    fill: var(--green);
}

.catalog-view__item--active .catalog-view__item-icon path {
    fill: var(--green);
}

.catalog-header__controls {
    display: flex;
    align-items: center;
}

.catalog-view {
    padding: 8.3px 16px;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    margin-left: 24px;
}

.catalog-view__item {
    margin-right: 5px;
}

.catalog-view__item:last-child {
    margin-right: 0;
}

.product-preview--gofro {
    background: #fff;
    border: 1px solid #EBEBEB;
}

.product-preview--gofro .product-preview__button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.product-preview--gofro .image-holder {
    height: 230px;
}

.product-preview--gofro .product-preview__note {
    display: none;
}

.product-preview__old-price {
    color: #BFBFBF;
    font-family: var(--inter);
    margin-bottom: 13px;
    text-decoration: line-through;
}

.product-preview__controls-holder {
    position: relative;
}

.product-preview__price-saving {
    color: #FF9966;
    font-family: var(--inter);
    font-weight: 700;
    margin-bottom: 20px;
}

.catalog-main-banner {
    padding: 64px;
    width: 100%;
    background: linear-gradient(85.14deg, #D3CDCB 3.92%, #E1DEE5 97.54%);
    border-radius: 60px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 40px;
}

.catalog-main-banner__title {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 32px;
}

.catalog-main-banner__desc {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 32px;
    font-family: var(--inter);
    line-height: 24px;
}

.catalog-main-banner__items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.catalog-main-banner__item {
    max-width: 230px;
}

.catalog-page--main .show-more-holder {
    margin: 40px 0 0 0;
    max-width: 100%;
}

.product-cart__gallery-and-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 50px;
}

.product-cart__gallery {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
}

.product-cart__gallery-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
    width: 20%;
    max-width: 70px;
}

.product-cart__main-info {
    flex: 1;
    max-width: 722px;
    margin-left: 48px;
}

.product-cart__gallery-nav-item {
    width: 70px;
    height: 70px;
    border: 2px solid #E6E6E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    transition: 200ms ease all;
}

.product-cart__gallery-nav-item:hover {
    border-color: var(--green);
}

.product-cart__gallery-nav-thumb {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

.product-cart__gallery-nav-item--active {
    border-color: var(--green);
}

.product-cart__gallery-holder {
    width: 100%;
    border-radius: 36px;
    border: 2px solid #E6E6E6;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    max-width: calc(100% - 90px);
}

.product-cart__gallery-main-photo {
    object-fit: contain;
    max-width: 100%;
}

.product-cart__video {
    display: none;
    width: 100%;
    height: 500px;
}

.product-cart__price-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 40px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03), 2px 6px 30px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.product-cart__articul-and-discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%;
}

.want-discount {
    font-family: var(--inter);
    position: relative;
}

.want-discount__title {
    font-family: 700;
    opacity: 0.4;
    border-bottom: 1px dashed #000;
    color: #000;
    cursor: pointer;
    transition: 200ms ease all;
}

.want-discount__desc {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(201, 200, 200, 0.25);
    border-radius: 10px;
    font-size: 14px;
    min-width: 210px;
    padding: 15px 20px;
    right: 0;
    top: 30px;
    z-index: 10;
    opacity: 0;
    transition: 200ms ease all;
}

.want-discount:hover .want-discount__title {
    opacity: 1;
}

/*.want-discount:hover .want-discount__desc {
    opacity: 1;
    z-index: 3;
}*/

.product-cart__price-desc {
    font-family: var(--inter);
    color: var(--gray-light);
    font-size: 14px;
    margin-top: 10px;
}

.product-cart__price-item {
    padding: 9px 48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 200ms ease all;
    font-size: 15px;
    font-family: var(--inter);
    font-weight: 700;
}

.product-cart__price-item:hover {
    background: rgba(61, 184, 69, 0.2);
}

.product-cart__price-item--active {
    background: rgba(61, 184, 69, 0.2);
}


.product-cart__controls-count {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 50%;
}

.calculator__form-groups--selects {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.calculator__form-groups--selects .calculator__form-group {
    flex: 1;
    margin-right: 30px;
}

.calculator__form-groups--selects .calculator__form-group:last-child {
    margin-right: 0;
}

.calculator__form-groups--selects .calculator__form-group-item {
    width: 100%;
}

.calculator__form-groups--d2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.calculator__form-groups--d2 .calculator__form-group {
    width: calc(33.3% - 15px);
}

.calculator__form-group-title--hidden {
    opacity: 0 !important;
}

.product-cart__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-cart__custom-input {
    max-width: 140px;
}

.product-cart__custom-input__field {
    width: 100%;
    text-align: center;
}

.product-cart__custom-input:hover .product-cart__custom-input__field {
    border-color: var(--green);
}

.product-cart__count-pre {
    margin: 0 22px;
    font-family: var(--inter);
}

.product-cart__count-price {
    font-weight: 600;
    font-size: 28px;
}

.product-cart__controls-buttons {
    display: flex;
    width: 65%;
    justify-content: flex-end;
}

.product-cart__add {
    margin-right: 19px;
}

.product-cart__city {
    margin-top: 40px;
    color: var(--green);
    font-family: var(--inter);
    font-weight: 700;
}

.product-cart__city-value {
    border-bottom: 1px solid var(--green);
    display: inline-flex;
    position: relative;
    align-items: center;
    transition: 200ms ease all;
}

.product-cart__city-value:hover {
    border-color: transparent;
}

.product-cart__city-value::after {
    position: absolute;
    right: -15px;
    content: url('/local/templates/gofromir/assets/images/down-green.svg');
}

.product-cart__tabs-header {
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 12px;
    font-family: var(--inter);
    color: var(--gray-light);
    font-weight: 700;
}

.product-cart__tabs-header-item {
    margin-right: 40px;
    transition: 200ms ease all;
    position: relative;
    font-size: 20px;
}

.product-cart__tabs-header-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--green);
    bottom: -12px;
    opacity: 0;
}

.product-cart__delivery-info {
    margin-top: 20px;
}

.product-cart__tabs-header-item--active {
    color: #3E3E3E;
}

.product-cart__tabs-header-item--active::before {
    opacity: 1;
}

.product-cart__tabs-header-item:hover {
    color: #3E3E3E;
}

.product-cart__tabs-header-item:hover::before {
    opacity: 1;
}

.product-cart__tab {
    padding-top: 20px;
}

.product-cart__availability {
    margin-bottom: 12px;
    font-family: var(--inter);
}

.product-cart__availability-count {
    font-weight: 700;
    color: var(--green);
}

.product-cart__total-availability {
    padding-top: 15px;
    font-family: var(--inter);
    font-weight: 700;
}

.product-cart__sizes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    margin-top: 36px;
    margin-bottom: 45px;
}

.product-cart__size {
    display: flex;
    align-items: center;
}

.product-cart__size:last-child {
    margin-right: 0;
}

.product-cart__size-icon {
    margin-right: 14px;
}

.product-cart__size-title {
    margin-bottom: 5px;
}

.product-cart__size-value {
    font-family: var(--inter);
    font-weight: 700;
}

.product-cart__mistake {
    display: flex;
    align-items: center;
    transition: 200ms ease all;
}

.product-cart__mistake:hover {
    color: var(--green);
}

.product-cart__mistake:hover .mistake-icon path {
    fill: var(--green);
}

.mistake-icon {
    margin-right: 8px;
}

.mistake-icon path {
    transition: 200ms ease all;
}

.product-cart__delivery-add-info {
    display: flex;
    align-items: center;
    font-family: var(--inter);
    margin-bottom: 12px;
}

.product-cart__delivery-add-info-value {
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
}

.product-cart__delivery-add-info-title {
    font-weight: 700;
    font-size: 14px;
    font-family: var(--inter);
    color: var(--green);
}

.product-cart__tab--hidden {
    display: none;
}

.product-cart__main-tabs {
    padding: 45px 80px 80px;
    background: #F5F5F5;
    border-radius: 30px;
    padding-bottom: 80px;
    margin-bottom: 50px;
}

.product-cart__tab-title {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 32px;
}

.product-cart__tab-advantages-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--inter);
    line-height: 25.6px;
}

.product-cart__tab-advantages-item {
    width: 100%;
    column-count: 2;
    column-gap: 72px;
}

.product-cart__main-tabs .product-cart__tab {
    padding-top: 57px;
}

.product-cart__tab-options-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 17px;
}

.product-cart__tab-option {
    padding: 16px 32px;
    font-family: var(--inter);
    background: #FEFEFE;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-cart__tab-option-title {
    padding-right: 40px;
}

.product-cart__tab-option-value {
    font-weight: 700;
}

.product-cart__tab-faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 15px;
}

.product-cart__tab-faq-item-title {
    padding: 27px 30px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    cursor: pointer;
}

.product-cart__tab-faq-item-title:hover {
    color: var(--green);
}

.product-cart__tab-faq-icon {
    transition: 200ms ease all;
}

.product-cart__tab-faq-answer {
    font-family: var(--inter);
    padding-left: 30px;
    padding-bottom: 10px;
    padding-top: 15px;
    display: none;
}

.product-cart__tab-faq-item-title--active {
    color: var(--green);
}

.product-cart__tab-faq-item-title--active .product-cart__tab-faq-icon {
    transform: rotate(180deg);
}

.product-cart__recommended .products-preview-slider .product-preview {
    min-height: auto;
}

.product-cart__recommended .product-thumbs--product .product-thumbs__title {
    margin-top: 30px;
    margin-bottom: 15px;
    min-height: 53px;
}

.product-cart__recommended {
    padding-bottom: 50px;
}

.product-cart__similar {
    padding-bottom: 50px;
}

.product-cart .banner--2 {
    margin-top: 0;
}

.product-cart {
    padding-bottom: 100px;
}

.production__video-about {
    margin-bottom: 120px;
}

.catalog__production-video {
    margin-top: 220px;
}

.products-preview-slider .product-preview--short {
    min-height: auto;
}

.product-preview--short .product-thumbs--product .product-thumbs__title {
    min-height: 55px;
    margin-bottom: 20px;
}

.product-preview--short .product-preview__button {
    width: 100%;
    text-align: center;
}

.offset-120 {
    margin-top: 50px;
}

.main-categories {
    margin-bottom: 50px;
}

.main-categories__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.main-category {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-category__image-holder {
    background: #EEE9EA;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    width: 100%;
    transition: 200ms ease all;
}

.main-category__image {
    max-width: 100%;
    max-height: 100%;
}

.main-category__title {
    margin-top: 20px;
    font-weight: 600;
    transition: 200ms ease all;
}

.main-category:hover .main-category__image-holder {
    transform: scale(1.05);
}

.main-category:hover .main-category__title {
    color: var(--green);
}

.button--md {
    min-width: 275px;
}

.production__video--otrasl .production__title {
    font-size: 36px;
}

.production__video--otrasl .production__video-text {
    padding: 65px 40px 65px 80px;
}

iframe {
    border: none;
}

.offset-margin-top-0 {
    margin-top: 0;
}

.delivery-pickup__title {
    margin-bottom: 48px;
}

.delivery-pickup__tab--hidden {
    display: none;
}

.pickup-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.delivery-pickup__info {
    width: 100%;
    max-width: 650px;
    margin-right: 30px;
    padding: 56px 53px 64px;
    background: #F5F5F5;
    border-radius: 30px;
}

.delivery-pickup__info-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 36px;
}

.delivery-pickup__info-subtitle {
    font-weight: 700;
    line-height: 22.4px;
    margin-bottom: 18px;
}

.delivery-pickup__info-items {
    font-family: var(--inter);
    line-height: 27px;
    color: #6B6B6B;
}

.delivery-pickup__address, .delivery-pickup__timework, .delivery-pickup__group {
    padding-bottom: 40px;
}

.delivery-pickup__group:last-child {
    padding-bottom: 0;
}

.delivery-pickup__info-desc {
    font-family: var(--inter);
    font-weight: 700;
    line-height: 26px;
}

.delivery-pickup__map {
    width: 100%;
    height: 540px;
    border-radius: 36px;
    background: #6B6B6B;
}

.pickup-location__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    margin-bottom: 80px;
}

.production__video--pickup .production__vedio-holder {
    height: 340px;
    width: 662px;
    min-width: 662px;
}

.production__video--pickup .production__video-text {
    font-size: 18px;
    font-family: var(--inter);
    line-height: 25.2px;
    width: 100%;
}

.production__video--pickup {
    margin-top: 0 !important;
    margin-bottom: 40px;
}

.production__video-text--center {
    text-align: center;
    font-size: 36px !important;
}

.delivery-pickup .email-subscribe {
    margin-top: 50px;
}

.delivery-pickup {
    padding-bottom: 120px;
}

.delivery-pickup__prices {
    display: flex;
    align-items: center;
    margin: 27px 0 20px;
}

.delivery-pickup__price {
    display: flex;
    align-items: center;
    margin-right: 33px;
    font-family: var(--inter);
    font-weight: 700;
}

.delivery-pickup__price:last-child {
    margin-right: 0;
}

.delivery-pickup__color {
    border-radius: 12px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-right: 14px;
}

.delivery-pickup__price--green .delivery-pickup__color {
    background: #CBF6B6;
}

.delivery-pickup__price--red .delivery-pickup__color {
    background: #F8A9B3;
}

.delivery-pickup__price--blue .delivery-pickup__color {
    background: #D6EAF1;
}

.delivery-pickup__info--main {
    max-width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.delivery-pickup__info--main .delivery-pickup__info-title {
    width: 100%;
}

.delivery-pickup__info-column {
    width: 48%;
}

.delivery-pickup__features {
    margin-bottom: 50px;
}

.delivery-pickup__features-title {
    font-weight: 600;
    margin-bottom: 55px;
    font-size: 28px;
}

.delivery-pickup__features-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

.delivery-pickup__features-item {
    display: flex;
    align-items: flex-start;
    padding-top: 37px;
    position: relative;
    width: 100%;
}

.delivery-pickup__features-item::before {
    content: '';
    width: 100%;
    height: 5px;
    border-radius: 13px;
    background: #FF9966;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.delivery-pickup__features-item-icon {
    margin-right: 22px;
}

.delivery-pickup__features-item-text {
    font-weight: 600;
    font-size: 21px;
    line-height: 29.4px;
    position: relative;
    z-index: 2;
}

.delivery-pickup__features-item-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    color: #F5F5F5;
    font-weight: 600;
    font-size: 96px;
    z-index: -1;
}

.delivery-pickup__features-item:nth-child(1) .delivery-pickup__features-item-text::before {
    content: '1';
}

.delivery-pickup__features-item:nth-child(2) .delivery-pickup__features-item-text::before {
    content: '2';
}

.delivery-pickup__features-item:nth-child(3) .delivery-pickup__features-item-text::before {
    content: '3';
}

.delivery-pickup .faq {
    padding-bottom: 0;
}

.custom-input-title {
    line-height: 24px;
    margin-bottom: 12px;
}

.custom-input--range {
    margin-top: 26px;
}

.irs--flat .irs-handle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #ffffff;
    border: 5px solid var(--green);
    cursor: pointer;
    top: auto !important;
    bottom: -10px;
}

.irs--flat .irs-handle>i:first-child {
    display: none;
}

.irs--flat .irs-min, .irs--flat .irs-max {
    display: none;
}

.irs--flat {
    height: 1px;
}

.irs-line, .irs--flat .irs-bar--single, .irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
    display: none !important;
}

.discount-check {
    font-weight: 700;
    width: 28px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF9966;
    border-radius: 5px;
    color: #fff;
    margin-left: 6px;
}

.product-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    z-index: 10;
    top: 33px;
    left: 20px;
}

.product-label {
    font-weight: 600;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 5px;
}

.product-label--new {
    background: #8FCB3E;
}

.product-label--stock {
    background: #FF5038;
}

.product-label--development {
    background: #FFBD3E;
}

.button-cart--orange {
    width: 100%;
    text-align: center;
    justify-content: center;
    height: 51px;
    color: #FF9966;
    border: 1px solid #E6E6E6;
    background: none;
}

.button-cart--orange:hover {
    background: #FE7632;
    border-color: #FE7632;
    color: #fff;
}

.catalog-container--list .catalog-items__container--flex {
    flex-direction: column;
    margin: 50px 0 0;
}

.catalog-container--list .catalog-items__container--flex .product-preview {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #E6E6E6;
    flex-direction: row;
    align-items: center;
}

.catalog-container--list .product-thumbs--product {
    flex-direction: row;
    align-items: center;
}

.catalog-container--list .product-thumbs--product .image-holder {
    height: 120px;
}

.catalog-container--list .product-thumbs--product .images__nav {
    margin-top: 20px;
    margin-bottom: 0;
}

.thumbs-container {
    width: 100%;
}

.catalog-container--list .thumbs-container {
    width: 130px;
    min-width: 130px;
    margin-right: 35px;
}

.catalog-container--list .product-labels {
    flex-direction: row;
    position: static;
    flex-wrap: wrap;
}

.catalog-container--list .product-label {
    margin-right: 5px;
}

.catalog-container--list .text-container {
    max-width: 255px;
    width: 100%;
    margin-right: 75px;
}

.catalog-container--list .product-preview__price {
    margin-bottom: 0;
}

.catalog-container--list .product-preview__add-info {
    max-width: 210px;
    margin-right: 45px;
    width: 100%;
}

.catalog-container--list .product-preview__add-link {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #E6E6E6;
}

.catalog-container--list .product-preview__controls {
    max-width: 260px;
    margin: 0;
}

.catalog-container--list .catalog-vertical-banner {
    display: none;
}

.catalog-container--list .product-preview:first-child {
    border-top: 1px solid #E6E6E6;
}

.calculator {
    padding-bottom: 120px;
}

.calculator__desc {
    margin-bottom: 63px;
}

.calculator__desc {
    font-family: var(--inter);
}

.calculator__design-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}

.calculator__design-items {
    display: flex;
    justify-content: space-between;
}

.calculator__design-item {
    width: calc(16.6% - 20px);
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #F2F2F2;
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 15px 25px 30px;
    transition: 200ms ease all;
}

.calculator__design-item:hover {
    background: #fff;
    border-color: var(--green);
}

.calculator__design-item--active {
    background: #fff;
    border-color: var(--green);
}

.calculator__design-item-title {
    font-weight: 600;
}

.calculator__design-item-image-holder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.calculator__design-item-image {
    object-fit: contain;
    max-height: 150px;
    max-width: 100%;
}

.calculator__container {
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.calculator__form:not(.faq-form) {
    width: 100%;
    /* max-width: 778px; */
    max-width: 880px;
    background: #F5F5F5;
    border-radius: 30px;
    margin-right: 30px;
    padding: 45px 40px 60px;
}

.calculator__form-group-item .custom-input__field {
    width: 100%;
}

.custom-radio {
    position: relative;
    font-family: var(--inter);
    user-select: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    cursor: pointer;
    transition: 200ms ease all;
    padding: 15px 24px;
    border: 2px solid #E6E6E6;
    border-radius: 14px;
    color: #3E3E3E;
    background: #ffffff;
}

.custom-radio__field {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-radio__checkmark {
    position: relative;
    height: 18px;
    min-width: 18px;
    width: 18px;
    margin-right: 15px;
    border: 2px solid #E6E6E6;
    box-sizing: border-box;
    border-radius: 50%;
    transition: 200ms ease all;
}

.custom-radio:hover .custom-radio__field~.custom-radio__checkmark {
    border-color: var(--green)
}

.custom-radio:hover {
    /* border-color: var(--green); */
}

.custom-radio .custom-radio__field:checked~.custom-radio__checkmark {
    background: var(--green);
}

.subscribe__checkbox .custom-checkbox__checkmark {
    border: 2px solid #CCCCCC;

}

.subscribe__checkbox .custom-checkbox__checkmark:after {
    content: url(/local/templates/gofromir/assets/images/check-green.png);
    left: 3px;
    top: 3px;
}

.subscribe__checkbox:hover .custom-checkbox__field~.custom-checkbox__checkmark {
    border-color: var(--green);
}

.subscribe__checkbox--consult .custom-checkbox__text {
    color: #8C8C8C;
}

.subscribe__checkbox--consult .custom-checkbox__text a {
    color: #8C8C8C;
    border-color: #8C8C8C;
}

.subscribe__checkbox--consult .custom-checkbox__text a:hover {
    border-color: transparent;
}

.calculator__aside {
    flex: 1;
    padding: 70px 30px;
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F9EDED 109.95%);
    border-radius: 30px;
}

.calculator-banner__title {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    line-height: 43px;
    margin-bottom: 50px;
}

.calculator-banner__image {
    max-width: 100%;
}

.button-holder {
    text-align: center;
}

.calculator-banner__button--hidden {
    display: none;
}

.calculator-banner__title span {
    color: var(--green);
    display: block;
}

.product-preview-short {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

.product-preview-short .image-holder {
    width: 123px;
    height: 123px;
    margin-right: 30px;
}

.product-preview-short .image-holder__src {
    border-radius: 24px;
}

.product-preview-short .product-thumbs__title {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 23.8px;
    max-width: 260px;
}

.product-preview-short .product-preview__price {
    font-size: 16px;
    margin-bottom: 15px;
}

.product-preview-short .product-preview__controls {
    max-width: 260px;
    width: 100%;
    margin-top: 0;
}

.calculator .catalog-filter__group-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    justify-content: flex-start;
}

.calculator .catalog-filter__group-icon {
    margin-left: 15px;
}

.calculator .catalog-filter__group-items {
    padding-bottom: 0;
}

.calculator__form-group-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #616161;
    margin-bottom: 12px;
    opacity: 0.6;
    font-family: var(--inter);
}

.calculator__form-group-items {
    display: flex;
    align-items: flex-start;
}

.calculator__form-group {
    margin-bottom: 20px;
}

.calculator__form-group--triple .calculator__form-group-items {
    justify-content: space-between;
}

.calculator__form-group--triple .calculator__form-group-item {
    width: calc(33.3% - 15px);
}

.calculator__form-groups--double {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.calculator__form-groups--double .calculator__form-group {
    width: calc(50% - 15px);
}

.calculator__form-groups--double .calculator__form-group-item {
    width: 100%;
}

.calculator__custom-input {
    max-width: 180px;
}

.calculator__form-group-item--print {
    width: 155px;
}

.calculator__form-group-item--print:first-child {
    margin-right: 30px;
}

.calculator__form-group--radios .calculator__form-group-items {
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 15px;
    align-items: inherit;
}

.calculator__form-group--radios .custom-radio {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    height: 95px;
}

.calculator__form-group--radios .custom-radio__text {
    /* margin-top: 23px; */
    text-align: center;
    width: 100%;
}

.calculator__form-group--radios .custom-radio__checkmark {
    position: absolute;
    z-index: 4;
    top: 4px;
    left: 9px;
}

.calculator__form-group--radios .calculator__form-group-item {
    /* width: calc(20% - 15px); */
    /* margin-bottom: 15px; */
    /* display: flex */
}

.add-file-button {
    opacity: 0.6;
    width: 100%;
}

.add-file-button:hover {
    opacity: 1;
}

.calculator__sms-error {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--inter);
    color: #FF9966;
}

.calculator__sms {
    margin-bottom: 15px;
}

.calculator__controls {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.calculator__submit {
    width: 100%;
    margin-right: 40px;
    max-width: 360px;
}

.help-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--green);
    transition: 200ms ease all;
    border-bottom: 1px solid transparent;
    font-family: var(--inter);
}

.help-button:hover {
    border-color: var(--green);
}

.calculator__note {
    display: flex;
    align-items: center;
}

.form-note {
    line-height: 21px;
    font-size: 14px;
    margin-right: 40px;
}

.politic {
    text-decoration: underline;
}

.politic:hover {
    text-decoration: none;
}

.custom-radio--disabled {
    opacity: 0.4;
}

.custom-radio--disabled:hover {
    border-color: #E6E6E6;

}

.custom-radio--disabled:hover .custom-radio__field~.custom-radio__checkmark {
    border-color: #E6E6E6;
}

.modal {
    position: relative;
    width: 100%;
    padding: 40px 60px;
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.06), 2px 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.arcticmodal-close:hover .modal-close__icon path {
    fill: var(--green);
}

.modal--hidden {
    display: none;
}

.calculator-config {
    width: 1120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calc-modal {
    max-height: 1000px;
    overflow: auto;
}

.calculator-config__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.calculator-config__icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    width: 63px;
    height: 63px;
    min-width: 63px;
    margin-right: 15px;
    transition: 200ms ease all;
}

.calculator-config__header:hover .calculator-config__icon-holder {
    background: #DBFFDD;
    border-color: #DBFFDD;
}

.calculator-config__header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calculator-config__header:hover .calculator-config__header-text {
    color: var(--green);
}

.calculator-config__header-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--inter);
}

.calculator-config__header-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--green);
    color: #616161;
}

.calculator-config__container {
    display: none;
    grid-template-columns: repeat(8, 1fr);
    grid-row-gap: 10px;
    margin-bottom: 20px;
    grid-column-gap: 20px;
}

.calculator-config-product {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 500;
    line-height: 20px;
    font-size: 12px;
    transition: 200ms ease all;
    color: #616161;
}

.calculator-config-product__image-holder {
    width: 100%;
    height: 125px;
    padding: 14px 8px;
    transition: 200ms ease all;
    border: 2px solid #E6E6E6;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.calculator-config-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.calculator-config-product:hover, .calculator-config-product--active {
    color: var(--green);
}

.calculator-config-product:hover .calculator-config-product__image-holder, .calculator-config-product--active .calculator-config-product__image-holder {
    border-color: var(--green);
}

.calculator-config__group--active .calculator-config__icon-holder {
    background: #DBFFDD;
    border-color: #DBFFDD;
}

.calculator-config__group--active .calculator-config__header-text {
    color: var(--green);
}

.calculator-config__icon {
    transition: 200ms ease all;
}

.calculator-config__group--active .calculator-config__icon {
    transform: rotate(180deg);
}

.calculator-config__group--active .calculator-config__container {
    display: grid;
}

.calculator__form-link {
    font-weight: 700;
    line-height: 19px;
    transition: 200ms ease all;
    font-family: var(--green);
    margin-bottom: 20px;
    color: var(--green);
    border-bottom: 1px solid var(--green);
}

.calculator__form-link:hover {
    border-color: transparent;
}

.cart__title {
    margin-bottom: 60px;
}

.cart__container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart__inner {
    width: 100%;
    max-width: 900px;
    margin-right: 64px;
}

.cart__search {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.custom-input-search {
    width: 100%;
    max-width: 685px;
    margin-right: 30px;
}

.custom-input-search input {
    width: 100%;
}

.cart__search-submit {
    flex: 1;
    padding: 11px 32px;
}

.cart {
    padding-bottom: 100px;
}

.cart__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart__control-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-light);
    font-family: var(--inter);
    transition: 200ms ease all;
    border-bottom: 1px solid transparent;
}

.cart__controls-items--first {
    display: flex;
    align-items: center;
}

.cart__controls-items--first .cart__control-link {
    position: relative;
    margin-right: 40px;
}

.cart__controls-items--first .cart__control-link::after {
    content: url('/local/templates/gofromir/assets/images/divider.png');
    position: absolute;
    right: -20px;
}

.cart__controls-items--first .cart__control-link:hover {
    color: var(--green);
    border-color: var(--green);
}

.cart__control-link--remove {
    font-family: var(--inter);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: var(--green);
}

.cart__control-link--remove::after {
    content: url('/local/templates/gofromir/assets/images/close-green.png');
    margin-left: 10px;
}

.cart__control-link--remove:hover {
    border-color: var(--green);
}

.product-preview-cart .product-labels {
    position: static;
}

.product-preview-cart {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
    margin-bottom: 25px;
    padding-bottom: 25px;
    justify-content: space-between;
}

.product-preview-cart__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 35px;
}

.product-preview-cart .image-holder__src {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    margin-right: 30px;
}

.product-preview-cart .product-label {
    font-size: 14px;
}

.product-preview-cart .product-thumbs__title {
    text-align: left;
    font-size: 18px;
    margin-top: 5px;
    line-height: 25.2px;
}

.product-preview-cart__text {
    max-width: 275px;
}

.product-preview-cart__articul {
    font-weight: 500;
    color: #C4C4C4;
    font-family: var(--inter);
    margin: 5px 0 10px;
}

.product-preview-cart__availability {
    font-weight: 500;
    font-family: var(--inter);
    color: var(--green);
}

.product-preview-cart .product-preview__controls {
    margin-top: 0;
    max-width: 150px;
    margin-right: 25px;
}

.product-preview-cart__counts-desc {
    font-weight: 500;
    font-size: 14px;
    font-family: var(--green);
    margin-top: 5px;
    color: #C4C4C4;
}

.product-preview-cart__old-price {
    text-decoration: line-through;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--inter);
    color: #8C8C8C;
    margin-bottom: 2px;
}

.product-preview-cart__price {
    font-weight: 700;
    font-size: 22px;
    font-family: var(--inter);
    margin-bottom: 2px;
}

.product-preview-cart__one-price {
    font-weight: 700;
    font-size: 15px;
    font-family: var(--inter);
}

.product-preview-cart__prices {
    margin-right: 20px;
    min-width: 90px;
}

.product-preview-cart__remove:hover svg path {
    stroke: var(--green);
    fill: var(--green);
}

.product-preview-cart__availability--order {
    color: #FF6E25;
}

.product-preview-cart:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cart__products {
    padding: 60px;
    border-radius: 60px;
    border: 2px solid #F2F2F2;
}

.cart__related {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cart__related-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
}

.cart__related-desc {
    line-height: 23px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.cart__related-desc span {
    color: var(--green);
    font-weight: 700;
}

.cart__aside {
    flex: 1;
    max-width: 395px;
    width: 100%;
}

.cart-form-aside {
    padding: 50px;
    background: #F5F5F5;
    border-radius: 30px;
    margin-bottom: 50px;
}

.cart-form-aside__title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
}

.cart-from__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--inter);
    margin-bottom: 14px;
}

.cart-form-aside__item-value {
    font-weight: 700;
}

.cart-form-aside__note {
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #FF9966;
    border-radius: 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    font-family: var(--inter);
    color: #FF9966;
}

.cart-form-aside__note-icon {
    min-width: 40px;
    width: 40px;
    margin-right: 16px;
}

.cart-form-aside__custom-input {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.cart-form-aside__custom-input input {
    padding-right: 120px;
}

.promo-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    font-family: var(--inter);
    color: #fff;
    background: var(--green);
    width: 120px;
    text-align: center;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 15px 0;
    opacity: 0;
    z-index: -1;
    transition: 200ms ease all;
}

.promo-button:hover {
    background: #2BAB33;
}

.custom-input--change .promo-button {
    opacity: 1;
    z-index: 2;
}

.remove-promo {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-family: var(--inter);
    margin-top: 10px;
}

.remove-promo:hover {
    color: var(--green);
}

.cart-form-aside__custom-input--active input {
    border-color: var(--green);
}

.remove-promo::before {
    content: url('/local/templates/gofromir/assets/images/close-green.png');
    margin-right: 5px;
}

.custom-input__help-block {
    margin-top: 8px;
    color: #CD3232;
    font-weight: 500;
    font-family: var(--inter);
    display: none;
}

.custom-input--has-error .custom-input__help-block {
    display: block;
}

.custom-input--has-error .custom-input__field {
    border-color: #CD3232;
}

.cart-form-aside__custom-input .custom-input__field {
    width: 100%;
}

.cart-from__item--total {
    margin-top: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
}

.cart-from__item--total .cart-form-aside__item-value {
    font-size: 18px;
}

.cart-form-aside__submit {
    width: 100%;
	cursor: pointer;
}

.profitable-products__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.product-preview-cart--column {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}

.product-preview-cart--column .product-preview-cart__info {
    margin-right: 0;
    order: 1;
}

.product-preview-cart--column .image-holder__src {
    margin-right: 15px;
}

.product-preview-cart--column .product-preview-cart__counts {
    padding-left: 125px;
    padding-top: 0;
    padding-bottom: 15px;
    order: 3;
}

.product-preview-cart--column .product-preview__controls {
    margin-right: 0;
}

.product-preview-cart--column .product-preview-cart__prices {
    padding-left: 125px;
    padding-top: 15px;
    order: 2;
}

.product-preview-cart--column .button-cart--icon {
    max-width: 100%;
    margin-left: 125px;
    order: 4;
}

.profitable-products__container {
    padding: 30px 20px;
    border-radius: 60px;
    border: 2px solid #F2F2F2;

}

.product-preview-cart--column .product-preview-cart__remove {
    position: absolute;
    top: 0;
    right: 0;
}

.order__title {
    margin-bottom: 30px;
}

.order-form__container {
    display: flex;
    align-items: flex-start;
}

.order-form__inner {
    width: 100%;
    max-width: 900px;
    margin-right: 64px;
}

.cart-form-aside__item-link {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--inter);
    color: var(--green);
    border-bottom: 1px solid var(--green);
}

.cart-form-aside__item-link:hover {
    border-color: transparent;
}

.order .cart-form-aside__custom-input {
    margin-top: 20px;
}

.custom-radio--easy {
    border: none;
    padding: 0;
}

.order__type {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.order__type .custom-radio:first-child {
    margin-right: 32px;
}

.order__group {
    border: 2px solid #E6E6E6;
    backdrop-filter: blur(7px);
    border-radius: 60px;
    padding: 55px 60px;
    margin-bottom: 42px;
}

.order__form-group-title {
    font-weight: 500;
    line-height: 24px;
    font-family: var(--inter);
    margin-bottom: 12px;
    display: block;
}

.order__form-group {
    margin-bottom: 25px;
}

.order__form-group .custom-input__field {
    width: 100%;
}

.order__form-groups {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.order__form-groups .order__form-group {
    width: calc(50% - 15px);
}

.order__form-group-title--required::after {
    content: '*';
    font-weight: 400;
    font-size: 14px;
    color: #CD3232;
}

.city-change {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--inter);
}

.city-change__link {
    font-weight: 600;
    font-size: 16px;
    font-family: var(--inter);
    color: var(--green);
    margin-left: 20px;
}

.city-change__link:hover {
    text-decoration: underline;
}

.custom-field-price {
    color: var(--green);
}

.delivery-type {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
    margin-bottom: 25px;
}

.delivery-type .custom-radio:first-child {
    margin-right: 40px;
}

.delivery-tab__text {
    font-family: var(--inter);
    line-height: 22px;
    color: #000;
    margin-bottom: 20px;
}

.order__skid {
    padding-top: 15px;
    margin-bottom: 50px;
}

.labaratory .banner {
    margin-top: 70px;
}

.banner--consult .main-slider__slide {
    padding-bottom: 0;
    padding-top: 50px;
}

.banner--consult .main-slider__desc {
    margin: 20px 0 40px;
}

.banner--consult .main-slider__group {
    margin-right: 30px;
    max-width: 100%;
}

.main-slider__form-group {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.custom-input__main-slider {
    flex: 1;
    max-width: 390px;
    margin-right: 36px;
}

.custom-input__main-slider input {
    width: 100%;
    background: transparent;
    font-size: 18px;
    border: 2px solid rgba(140, 140, 140, 0.6);
}

.order__group-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
}

.order__form-group--skid {
    padding: 45px 30px;
    border: 2px solid #E6E6E6;
    border-radius: 24px;
}

.order__form-group--floor--disabled .custom-checkbox:hover .custom-checkbox__field~.custom-checkbox__checkmark {
    border-color: #E6E6E6;
}

.order__form-group--floor--disabled .custom-checkbox {
    cursor: default;
}

.order__form-group--skid .custom-checkbox__text {
    line-height: 25px;
    font-size: 18px;
}

.order__form-group--floor--disabled {
    opacity: 0.4;
}

.custom-checkbox__order-politic {
    color: var(--gray-light);
    line-height: 21px;
    margin-top: 15px;
}

.custom-checkbox__order-politic .custom-checkbox__text a {
    color: var(--gray-light);
    border-color: var(--gray-light);
}

.custom-checkbox__order-politic .custom-checkbox__text a:hover {
    border-color: transparent;
}

.custom-checkbox__order-politic .custom-checkbox__checkmark {
    border-color: #E6E6E6;
}

.custom-checkbox__order-politic .custom-checkbox__checkmark:after {
    content: url('/local/templates/gofromir/assets/images/check-green.png');
    top: 1px;
}

.floor__custom-input {
    max-width: 135px;
}

.floor-count-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.floor-text {
    font-weight: 700;
    font-family: var(--inter);
    margin-left: 12px;
    color: #3E3E3E;
}

.order__form-group-text {
    margin-top: 20px;
    color: #7D7F84;
    line-height: 21px;
    display: none;
}

.order__form-group--active .order__form-group-text {
    display: block;
}

.floor__custom-input input {
    text-align: center;
}

.order__form-groups--payment {
    justify-content: flex-start;
}

.order__form-groups--payment .order__form-group {
    width: 240px;
    margin-right: 30px;
}

.payment-method__icon {
    width: 49px;
    height: 49px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: 200ms ease all;
    border: 2px solid #E6E6E6;
    border-radius: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-method:hover {
    border-color: var(--green);
}

.payment-method--active {
    border-color: var(--green);
}

.order {
    padding-bottom: 150px;
}

.cart-form-aside__errors {
    font-family: var(--inter);
    font-weight: 500;
    color: #CD3232;
    line-height: 21px;
}

.cart-form-aside__error {
    margin-bottom: 10px;
}

.order__tab--hidden {
    display: none;
}

.delivery-tab__title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--inter);
}

.delivary-tab__radios {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.delivary-tab__radios .custom-radio {
    width: calc(50% - 20px);
    padding: 30px;
    border-radius: 24px;
}

.delivery-tab__addresses {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.delivery-tab__address {
    width: calc(50% - 40px);
}

.delivery-tab__address-title {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--inter);
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.delivery-tab__address-title--address::before {
    content: url('/local/templates/gofromir/assets/images/d-loc.svg');
    position: absolute;
    left: 0;
    top: -2px;
}

.delivery-tab__address-title--timework::before {
    content: url('/local/templates/gofromir/assets/images/d-time.svg');
    position: absolute;
    left: 0;
    top: -2px;
}

.delivery-tab__address-text {
    color: #6B6B6B;
    font-family: var(--inter);
    line-height: 24px;
    margin-bottom: 15px;
    padding-left: 40px;
}

.delivery-tab__address-group {
    margin-bottom: 30px;
}

.delivery-tab__address-group:last-child {
    margin-bottom: 0;
}

.delivery-tab__address-desc {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    font-family: var(--inter);
    padding-left: 40px;
}

.delivery-tab__address--hidden {
    /*opacity: 0;*/
}

.delivery-tab--hidden {
    display: none;
}

.delivery-map {
    margin-top: 40px;
    height: 330px;
    width: 100%;
}

.delivery-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order__form-group--hidden {
    display: none;
}

.success-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    text-align: center;
}

.success-order__desc {
    max-width: 520px;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 55px;
}

.success-order__socials {
    margin: 100px 0 0;
}

.socials--gray .social__link {
    background: #F5F5F5;
    margin-right: 24px;
}

.socials--gray .social__link:last-child {
    margin-right: 0;
}

.cookie-note {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    /*border-radius: 60px;*/
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-note__icon {
    min-width: 70px;
    width: 70px;
    margin-right: 50px;
}

.cookie-note__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    /*margin-bottom: 20px;*/
    margin-right: 55px;
    color: #FFFFFF;
}

.cookie-note__desc {
    color: #FFFFFF;
    line-height: 18px;
    font-size: 14px;
    font-family: var(--inter);
	max-width: 700px;
}

.cookie-note__items {
    display: flex;
    align-items: center;
}

.cookie-note__text {
    /*max-width: 860px;*/
	display: flex;
	align-items: center;
}

.cookie-note__link {
    text-decoration: underline;
}

.cookie-note__link:hover {
    text-decoration: none;
}

.cookie-container {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99;
	background: #314F86;
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.06), 2px 8px 32px rgba(0, 0, 0, 0.12);
}

.catalog-items__tags-hidden {
    display: none;
}

.catalog-items__tags--visible {
    display: block;
}

.product-card__pickup {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: var(--inter);
}

.product-card__pickup-value {
    font-weight: 500;
    color: var(--green);
    padding: 12px;
    margin-left: 15px;
    border: 1px solid var(--green);
    border-radius: 10px;
}

.product-card__pickup-value--error {
    color: #FF9966;
    border: 1px solid #FF9966;
}

.product-cart--main .product-cart__gallery-and-info {
    flex-wrap: wrap;
}

.product-cart--main .product-cart__gallery {
    flex-wrap: wrap;
    width: 50%;
    max-width: 670px;
    flex: 1;
}

.product-cart--main .product-cart__gallery-holder {
    width: 80%;
    flex: 1;
}

.product-cart--main .product-cart__title {
    width: 100%;
}


.product-cart__desc {
    width: 100%;
    font-family: var(--inter);
    line-height: 22px;
    margin-bottom: 50px;
}

.product-cart__gallery-desc {
    margin-top: 60px;
    line-height: 26px;
    font-family: var(--inter);
}

.product-cart--main .calculator__form {
    max-width: 100%;
    flex: 1;
    padding: 0;
    background: none;
}

.calculator__form-groups--d2 .calculator__form-group-item--print:first-child {
    margin-right: 0;
}

.calculator__form-groups--d2 .calculator__form-group-item--print {
    width: 100%;
}

.calculator__form-groups--d2 .calculator__custom-input {
    max-width: 100%;
}

.calculator__form-groups--d2 .product-preview__custom-input__field {
    border: 2px solid #E6E6E6;
}

.calculator__form-help-block {
    font-family: var(--inter);
    color: var(--green);
    line-height: 22px;
    margin-bottom: 20px;
}

.button--orange-disabled {
    cursor: default;
}

.button--orange-disabled:hover {
    opacity: 0.6;
    background: #FF9966;
    border-color: #FF9966;
}

.button--orange-active {
    opacity: 1;
}

.help-item {
    position: absolute;
    right: 20px;
    top: 15px;
    /* z-index: 2; */
}

.help-item__text {
    position: absolute;
    display: none;
    z-index: 3;
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.06), 2px 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 15px 30px;
    right: -15px;
    top: 40px;
    width: 230px;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--inter);
}

.help-item__icon {
    cursor: pointer;
}

.help-item:hover .help-item__text {
    display: block;
}

.offset-top {
    margin-top: 50px;
}

.advantages--5 {
    padding-bottom: 0;
}

.advantages--5 .advantages__items {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    margin-top: 0;
}

.product-cart .shtanc {
    margin-bottom: 50px;
}

.calculator__form-aviability {
    color: var(--green);
    font-family: var(--inter);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
}

.calculator__form-aviability-link {
    border-bottom: 1px dashed var(--green);
}

.calculator__form-aviability-link:hover {
    border-color: transparent;
}

.product-cart .portfolio-previews {
    padding-top: 50px;
}



.not-aviability {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--inter);
    color: #FF9966;
    margin-top: 10px;
}

.modal-callback {
    padding: 55px 35px;
}

.modal-admission {
    padding: 55px 35px;
}

.modal-consultation {
    padding: 55px 35px;
}

.modal-sms, .modal-universal {
    padding: 55px 35px;
}

.modal-city {
    padding: 55px 35px;
}

.modal-form__title, .modal-title {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 26px;
}

.modal-form {
    width: 400px;
}

.modal-from__custom-input {
    margin-bottom: 12px;
}

.modal-from__custom-input input {
    width: 100%;
}

.modal-from__custom-input-submit {
    margin-top: 20px;
    margin-bottom: 27px;
}

.modal-form .form-note {
    margin: 0;
}

.modal-form__submit {
    padding-top: 12px;
    padding-bottom: 12px;
}

.modal-thanks {
    padding: 40px;
}

.modal-thanks .modal__body {
    width: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-thanks__title {
    margin: 10px 0 15px;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
}

.modal-thanks__desc {
    color: #595959;
    font-family: var(--inter);
    line-height: 26px;
}

.modal-city .modal__body {
    width: 400px;
}

.modal-city .search-input {
    margin: 0 0 25px;
}

.modal-city__items {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    font-weight: 600;
    font-size: 16px;
}

.modal-city__item {
    margin-bottom: 15px;
    transition: 200ms ease all;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.modal-city__item:hover {
    color: var(--green);
}

.modal-city__item::after {
    opacity: 0;
    transition: 200ms ease all;
    content: url('/local/templates/gofromir/assets/images/modal-check.svg');
}

.modal-city__item--active {
    color: var(--green);
}

.modal-city__item--active::after {
    opacity: 1;
}

.copy-text {
    padding: 13px 20px;
    color: #FFFFFF;
    font-family: var(--inter);
    font-size: 14px;
    background: #3E3E3E;
    border-radius: 14px;
    right: 0;
    top: 20px;
    transition: 200ms ease all;
    opacity: 0;
    z-index: -99;
    position: absolute;
}

.header__email-copy {
    position: relative;
}

.header__email-copy:hover .copy-text {
    opacity: 1;
    z-index: 3;
}

.portfolio-page__title {
    margin-bottom: 50px;
}

.portfolio-page {
    padding-bottom: 120px;
}

.portfolio-page__header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.portfolio-page__header-text {
    padding: 85px 60px 85px 120px;
    font-size: 18px;
    color: var(--gray-light);
    font-family: var(--inter);
    line-height: 25px;
    background: rgba(255, 255, 255, 0.2);
    mix-blend-mode: normal;
    border: 2px solid #F2F2F2;
    backdrop-filter: blur(7px);
    min-width: 732px;
    width: 732px;
    margin-left: -50px;
    border-radius: 60px;
}

.product-thumbs--portfolio-page {
    min-width: 700px;
    width: 700px;
    height: 480px;
}

.product-thumbs--portfolio-page .image-holder {
    flex: 1;
}

.product-thumbs--portfolio-page {
    border-radius: 36px;
}

.portfolio-page__info-title {
    margin-bottom: 55px;
    font-weight: 500;
    font-size: 36px;
    line-height: 43px;
}

.portfolio-page__info-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.portfolio-page__info-item {
    font-family: var(--inter);
    background: linear-gradient(102.28deg, #F9F2F4 -276.09%, #F7F9EC 108.98%);
    padding: 35px 25px;
    border-radius: 25px;
}

.portfolio-page__info-item-title {
    font-size: 18px;
    color: var(--gray-light);
    padding-bottom: 10px;
}

.portfolio-page__info-item-value {
    font-weight: 500;
    font-size: 22px;
}

.portfolio-page__info {
    margin-bottom: 80px;
}

.production__desc p {
    line-height: 23px;
}

.production__title--quote {
    position: relative;
}

.production__title--quote::before {
    content: url('/local/templates/gofromir/assets/images/quote.png');
    position: absolute;
    left: -80px;
    top: -70px;
    z-index: -1;
}

.portfolio-page-categories {
    padding-bottom: 50px;
}

.offset-bottom {
    margin-bottom: 50px;
}

.categories-preview-portfolio .product-thumbs {
    padding: 20px;
}

.category-preview-portfolio__title {
    margin-top: 40px;
    transition: 200ms ease all;
    font-weight: 500;
    font-size: 17px;
    color: #000;
    line-height: 21px;
}

.category-preview-portfolio__title:hover {
    color: var(--green);
}

.contacts {
    padding-bottom: 120px;
}

.contacts__tel .main-tel {
    font-size: 28px;
    line-height: 24px;
}

.contacts__tel .header__callback {
    font-size: 16px;
    margin-top: 8px;
    font-weight: 600;
}

.contacts__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 50px;
}

.contacts__desc {
    margin-bottom: 45px;
    font-family: var(--inter);
    margin-top: 50px;
    font-weight: 700;
}

.contacts__header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.contacts__header .email-link {
    margin-right: 45px;
    margin-bottom: 0;
}

.contacts-nav {
    margin-top: 0;
    margin-bottom: 45px;
}

.contacts__tab {
    /*height: 1000px;*/
    margin-bottom: 80px;
}

.contacts__tab .contacts__map {
	height: 1000px;
}

.contacts__map {
    width: 100%;
    height: 100%;
    position: relative;
}

.contacts__info {
    padding: 45px 55px;
    background: rgba(255, 255, 255, 0.8);
    mix-blend-mode: normal;
    backdrop-filter: blur(7px);
    border-radius: 60px;
    font-family: var(--inter);
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50px;
    width: 100%;
    max-width: 420px;
}

.contacts__info-title {
    font-family: var(--monts);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
}

.contacts__loc {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.contacts__loc::before {
    content: url('/local/templates/gofromir/assets/images/contacts-loc.svg');
    margin-right: 12px;
}

.contacts__map-tel {
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.contacts__info-group {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.contacts__map-tel:hover {
    color: var(--green);
}

.contacts__map-tel::before {
    content: url('/local/templates/gofromir/assets/images/contacts-tel.svg');
    margin-right: 12px;
}

.contacts__timework {
    margin-top: 23px;
    position: relative;
    padding-left: 36px;
    line-height: 24px;
}

.contacts__timework::before {
    content: url('/local/templates/gofromir/assets/images/contacts-time.svg');
    margin-right: 12px;
    position: absolute;
    left: 0;
}

.contacts__tab--hidden {
    display: none;
}

.header__rate {
    margin-right: 20px;
}

.team .swiper-slide {
    display: block;
}


.header__burger {
    display: none;
    width: 24px;
    margin-left: 30px;
}

.header__burger-part {
    display: inline-block;
    background: #3E3E3E;
    border-radius: 2px;
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    transition: all .2s ease;
}

.header__burger-part:last-child {
    margin-bottom: 0;
}

.header__burger--active .header__burger-part:first-child {
    transform: rotate(45deg);
    top: 8px;
}

.header__burger--active .header__burger-part:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-part:last-child {
    transform: rotate(-45deg);
    bottom: 6px;
}

.header__mobile {
    display: none;
}

.main-slider__image--mob {
    display: none;
}

.footer-nav-group-arrow {
    display: none;
}

.port-container {
    margin: 0 -10px;
}

.port-item {
    width: calc(33.3% - 40px);
    margin: 0 20px 40px;
    transition: 200ms ease all;
}

.port-item:hover {
    transform: scale(1.05);
}

.dropdown__show-more-items {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-top: 5px;
    font-size: 14px;
    font-family: var(--inter);
    color: #3E3E3E;
}

.dropdown__show-more-items::before {
    content: 'Еще';
}

.dropdown__show-more-items::after {
    content: url('/local/templates/gofromir/assets/images/down-green.svg');
    margin-left: 5px;
}

.dropdown__show-more-items:hover {
    color: var(--green);
}

.dropdown__show-more-items span {
    color: #BFBFBF;
    margin-left: 5px;
}

.hidden-items {
    display: none;
}

.dropdown__show-more-item--active::before {
    content: 'Скрыть';
}

.dropdown__show-more-item--active::after {
    transform: rotate(180deg);
}

.print-tech__title {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 17px;
}

.print-tech__desc {
    font-weight: 600;
    font-size: 18px;
}

.print-items {
    padding-bottom: 50px;
}

.print-tech__subtitle {
    font-family: var(--inter);
    color: var(--gray-light);
    max-width: 870px;
    line-height: 23.2px;
    font-weight: 400;
    font-size: 16px;
    padding-top: 15px;
}

.print-item {
    display: flex;
    align-items: center;
    margin-top: 85px;
    justify-content: center;
}

.print-item__images {
    width: 590px;
    margin-right: 90px;
}

.product-thumbs--print {
    border-radius: 16px;
    padding: 50px;
}

.product-thumbs--print .images__nav-item {
    height: 4px;
    width: 120px;
}

.print-item__info-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 25px;
}

.print-item__info-subtitle {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 25px;
}

.print-item__info-desc {
    max-width: 635px;
}

.print-item__buttons {
    margin-top: 30px;
}

.print-item__buttons {
    display: flex;
    align-items: center;
}

.print-item__button-more {
    font-weight: 500;
    font-size: 20px;
    color: var(--green);
    font-family: var(--inter);
    margin-right: 30px;
}

.print-item__button-more:hover {
    text-decoration: underline;
}

.print-item--reverse {
    flex-direction: row-reverse;
}

.print-item--reverse .print-item__images {
    margin-right: 0;
    margin-left: 90px;
}

.print-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.print-advantage {
    padding: 40px 55px;
    background: linear-gradient(92.93deg, #F9F2F4 -2.5%, #F7F9EC 102.45%);
    border-radius: 26px;
}

.print-advantage__title {
    font-weight: 500;
    font-size: 22px;
    padding: 30px 0 24px;
}

.print-advantage__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    font-family: var(--inter);
}

.print-callback-info {
    text-align: center;
    padding-bottom: 150px;
}

.production__items p strong {
    display: block;
}

.production__video--print .production__vedio-holder {
    margin-top: -230px;
}

.print-callback-info-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 40px;
}

.print .portfolio-previews {
    padding-bottom: 0;
}

.print-tech__subtitle--offset {
    margin-bottom: 60px;
}

.print .categories-preview {
    margin-bottom: 50px;
}

.production__video--sm .production__vedio-holder {
    height: 380px;
    width: 650px;
    min-width: 650px;
}

.production__video--sm {
    align-items: center;
}

.production__video--sm .production__video-text {
    margin-top: 0;
    padding-top: 45px;
    padding-bottom: 40px;
}

.production__video--sm .list {
    margin-bottom: 0;
}

.print .email-subscribe {
    margin-top: 50px;
}

.print {
    padding-bottom: 120px;
}

.print .sms-calc {
    margin-top: 50px;
}

.print-galleries {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 50px;
}

.print-gallery-part {
    width: calc(50% - 30px);
}

.print-gallery-part-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 38px;
}

.gallery .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-thumb .swiper-slide img {
    height: 93px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.gallery-thumb .swiper-slide {
    border-radius: 15px;
    border: 3px solid transparent;
    transition: 200ms ease all;
    cursor: pointer;
}

.gallery-thumb {
    margin-top: 15px;
}

.swiper-slide-thumb-active {
    border-color: var(--green) !important;
}

.swiper-button-next img {
    transform: rotate(180deg);
}

.gallery .swiper-button-next:after, .gallery .swiper-button-prev:after {
    content: none;
}

.gallery .swiper-button-next {
    right: 20px;
}

.gallery .swiper-button-prev {
    left: 20px;
}

.show-all-mob-container {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.template-block {
    display: none;
}

.hidden-filter-items {
    display: none;
    width: 100%;
}

.modal-form__desc {
    font-size: 16px;
    line-height: 21px;
    font-family: var(--inter);
    margin-bottom: 22px;
}

.calculator__form--modal .calculator-add-file {
    font-size: 16px;
}

.calculator__form--modal .added-file {
    padding: 20px 20px 30px;
}

.calculator__form--modal {
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.documents .catalog-header-nav {
    margin-top: 10px;
}

.blog__tags {
    margin-bottom: 65px;
}

.blog__tag {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-family: var(--inter);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: 1px solid #F5F5F5;
    border-radius: 14px;
    transition: 200ms ease all;
}

.blog__tag--active::after {
    content: '';
    width: 13px;
    height: 13px;
    background: url('/local/templates/gofromir/assets/images/tag-close.svg');
    margin-left: 10px;
}

.blog__tag--active {
    background: #F5F5F5;
}

.blog__tag:hover {
    background: #F5F5F5;
}

.blog__tags-hidden {
    display: none;
}

.blog__tags-hidden--visible {
    display: inline;
}

.catalog-items__tag-hide {
    color: var(--green);
    font-weight: 500;
    font-family: var(--inter);
    text-decoration: underline;
    display: none;
}

.catalog-items__tag-hide:hover {
    text-decoration: none;
}

.catalog-items__tag-hide--visible {
    display: inline;
    margin-bottom: 10px;
    margin-left: 10px;
}

.calculator__form-group-item--required {
    position: relative;
}

.calculator__form-group-item--required::after {
    content: '*';
    font-size: 22px;
    position: absolute;
    z-index: 2;
    top: 8px;
    color: #FF9966;
    font-weight: 500;
    right: 10px;
}

.catalog-items__tag-more--hidden {
    display: none
}

.back-link {
    text-align: right;
}

.error-page .main-categories {
    margin-top: 150px;
}

.error-page .boxes__title {
    text-align: left;
}

.error-page .boxes {
    text-align: left;
    padding-bottom: 0;
}

.select-cart {
    max-width: 220px;
}

@media screen and (max-width: 1499px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .slider-next {
        right: 0;
    }

    .slider-prev {
        left: 0;
    }

    .sms-calc {
        padding: 60px 70px 0;
    }

    .email-subscribe {
        padding: 70px 50px 35px;
    }

    .calculator__aside {
        padding: 20px 50px;
    }

    .catalog-banner .main-slider__slide {
        padding-left: 15px;
        padding-right: 15px;
    }

    .handbook-nav__item {
        font-size: 24px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0 8px 8px;
    }

    .banner--2 .main-slider__info {
        min-width: 750px;
    }

    .banner--2 .main-slider__image {
        max-width: 350px;
    }

    .production__vedio-holder {
        min-width: 50%;
        width: 50%;
    }

    .production .production__video-text {
        min-width: 50%;
        width: 50%;
    }
}

.catalog-filter-button {
    display: none;
}

.catalog-filter-button::before {
    content: url('/local/templates/gofromir/assets/images/filter.svg');
    margin-right: 10px;
}

@media screen and (max-width: 1365px) {
    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .header__top {
        display: none;
    }

    .header__center {
        margin-top: 0;
        z-index: 999;
        position: fixed;
        width: 100%;
        background: #fff;
        top: 0;
        flex-wrap: wrap;
        left: 0;
    }

    .header__center .header__company-desc {
        display: none;
    }

    .header__center .search-input {
        display: none;
    }

    /* .header__center .header__contacts {
        display: none;
    } */
     .header__center .header__rate {
        display: none;
    }

    .header__bottom {
        display: none;
    }

    .header .logo-image {
        max-width: 200px;
    }

    main {
        margin-top: 85px;
    }

    .header__mobile {
        width: 100%;
        max-height: 90vh;
        overflow: auto;
        padding-bottom: 60px;
    }

    .add-nav-mobile {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
        padding-bottom: 0;
    }

    .add-nav-mobile .header__nav-item-group {
        margin-right: 0;
        width: 100%;
        border-bottom: 1px solid #E6E6E6;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .add-nav-mobile .header__nav-item-group .header__nav-item {
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .add-nav-mobile .header__nav-item-group:last-child {
        border: none;
    }

    .add-nav-mobile .header__nav-item-group--dropdown::after {
        content: none;
    }

    .dropdown__button {
        padding: 14px;
        transition: 200ms ease all;
    }

    .header__nav-item-group--dropdown:hover .dropdown {
        display: none;
    }

    .header__nav-item-group--active .dropdown__button {
        transform: rotate(180deg);
    }

    .dropdown-mobile {
        width: 100%;
        position: static;
        padding-top: 0;
        left: 0;
    }

    .dropdown-mobile .dropdown__container {
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        padding-bottom: 20px;
        padding-left: 20px;
        width: 100%;
    }

    .dropdown__item-parent::after {
        content: none;
    }

    .dropdown__item-parent {
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .dropdown__item-parent .dropdown__item {
        padding: 7.5px 0;
        width: auto;
    }

    .dropdown__item-parent .dropdown__item:last-child {
        padding-bottom: 15px;
    }

    .dropdown__category-button {
        padding: 14px;
        transition: 200ms ease all;
    }

    .dropdown__item-parent:hover .dropdown__categories {
        display: none;
    }

    .dropdown__item-parent--active .dropdown__category-button {
        transform: rotate(180deg);
    }

    .dropdown__categories {
        position: static;
        width: 100%;
        padding-left: 0;
        max-width: 100%;
        padding-bottom: 15px;
    }

    .show-all-nav {
        font-size: 12px;
    }

    .dp-item__holder {
        display: none;
    }

    .dropdown__categories-container {
        padding: 0;
        padding-top: 15px;
        border-radius: 0;
        box-shadow: none;
        max-height: 400px;
        min-width: 100%;
        width: 100%;
    }

    .dp-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .dropdown__categories-container--column .dropdown__column {
        width: 100%;
        margin-right: 0;
        flex: auto;
    }

    .dropdown__categories-container--column .os-content {
        flex-wrap: wrap;
    }

    .dropdown__categories-container--column .dropdown__category {
        margin-bottom: 0;
    }

    .dropdown__category {
        margin-bottom: 0;
    }

    .dropdown__item-parent:hover .dropdown__item:first-child, .header__nav-item-group:hover .header__nav-item {
        color: #616161;
    }

    .header__mobile .search-input {
        display: flex;
        margin: 0;
        width: 100%;
        padding: 0 15px 15px;
    }

    .header__mobile .custom-input__search {
        width: 100%;
    }

    .header__center-container {
        border-bottom: none;
    }

    .header__mobile .header__top-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        background: #F2F2F2;
    }

    .header__top-nav .header__nav-item {
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        font-family: var(--inter);
    }

    .header__top-nav .header__nav-item-group {
        margin-right: 0;
        border-bottom: 1px solid #E6E6E6;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header__top-nav .header__nav-item-group .dropdown {
        width: 100%;
        position: relative;
        width: 100%;
        padding-top: 0;
    }

    .header__top-nav .header__nav-item-group .dropdown__container {
        width: 100%;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding-top: 0;
    }

    .header__top-nav .header__nav-item-group:last-child {
        border-bottom: none;
    }

    .header__top-nav .header__nav-item-group::after {
        content: none;
    }

    .dropdown__button-sub {
        padding: 14px;
        transition: 200ms ease all;
    }

    .header__nav-item-group--active .dropdown__button-sub {
        transform: rotate(180deg);
    }

    .header__mobile .header__contacts {
        display: flex;
    }

    .header__mobile-contacts {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        background: #fff;
        padding: 25px 15px;
    }

    .header__mobile-contacts .header__rate {
        margin-right: 0;
        margin-bottom: 15px;
        display: inline-block;
    }

    .header__mobile-contacts .header__timework {
        flex-direction: column;
        align-items: flex-start;
        display: flex;
    }

    .header__mobile-contacts .header__timework-title {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .header__mobile-contacts .header__timework-weekdays {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .main-slider__title {
        font-size: 30px;
        line-height: 1.3;
    }

    .main-slider__title br {
        display: none;
    }

    .main-slider__swiper--main .main-slider__image {
        max-height: 350px;
    }

    /* .box {
        flex-direction: column-reverse;
        align-items: center;
    } */

    /* .box__image {
        margin: 0;
        width: 100%;
        object-fit: cover;
        border-radius: 30px;
        height: 450px;
    } */

    /* .box__form {
        top: -50px;
    } */
    .box {
        align-items: initial;
    }

    .box__image {
        width: 25%;
        min-width: 180px;
        margin-top: 0;
        border-radius: 13px;
        object-fit: cover;
        object-position: left;
        margin-left: -20px;
    }

    .box__form {
        width: 75%;
        padding: 40px 20px 40px 40px;
    }

    .banner .main-slider__title {
        font-size: 30px;
    }

    .main-slider__group-desc br {
        display: none;
    }

    .main-slider__group {
        margin-right: 30px;
    }

    .custom-design__main-info {
        margin-right: 25px;
    }

    .custom-design__tabs {
        margin-left: 25px;
    }

    .effects::before {
        content: '';
        width: calc(100% - 40px);
        left: 20px;
        height: 100%;
        background: url('/local/templates/gofromir/assets/images/design-item.webp');
        background-size: contain;
    }

    .effects::after {
        content: '';
        width: calc(100% - 80px);
        height: 100%;
        left: 40px;
        background: url('/local/templates/gofromir/assets/images/design-item-2.webp');
        background-size: contain;
    }

    .product-preview-short .product-preview__button {
        font-size: 0;
        min-width: auto;
        background-image: url('/local/templates/gofromir/assets/images/cart.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

    .calc-modal {
        width: 1000px;
    }

    .calculator-config__container {
        grid-template-columns: repeat(6, 1fr);
    }

    .calculator-config {
        width: 100%;
    }

    .catalog-view {
        display: none;
    }

    .catalog-items .product-preview__button {
        font-size: 0;
        min-width: auto;
        background-image: url('/local/templates/gofromir/assets/images/cart.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

    .catalog-items .button-cart--orange {
        background-image: none;
        font-size: initial;
    }

    .catalog-items .button-cart--orange:hover {
        background-image: none;
    }

    .production__video--pickup .production__vedio-holder {
        width: 100%;
        height: 280px;
        min-width: 100%;
    }


    .production__video--pickup {
        align-items: center;
    }

    .handbook__items {
        margin-top: 20px;
    }

    .faq-form__controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-form__controls .subscribe__checkbox {
        margin-top: 20px;
    }

    .product-cart__gallery-and-info {
        flex-direction: column;
    }

    .product-cart--main .product-cart__gallery {
        width: 100%;
        max-width: 100%;
    }

    .product-cart__gallery-holder {
        height: 300px;
    }

    .product-cart__gallery-main-photo {
        height: 100%;
    }

    .product-cart__gallery {
        align-items: center;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .product-cart__gallery-holder {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .product-cart--main .product-cart__gallery-holder {
        width: 100%;
        max-width: 100%;
    }

    .product-cart__gallery-nav {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-right: 0;
        margin-top: 20px;
    }

    .product-cart__gallery-nav-item {
        margin: 0 5px;
    }

    .product-cart__gallery-desc {
        order: 3;
        margin-top: 30px;
    }

    .product-cart__desc {
        margin-bottom: 30px;
    }

    .product-cart__main-info {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }

    .product-cart__price-desc {
        width: 100%;
    }

    .cart__container {
        flex-direction: column;
    }

    .cart__inner {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .custom-input-search {
        max-width: 80%;
    }

    .cart__aside {
        max-width: 100%;
    }

    .cart-form-aside__note {
        max-width: 300px;
    }

    .profitable-products {
        margin-bottom: 40px;
        max-width: 450px;
    }

    .button-cart--icon {
        min-width: auto;
    }

    .post__banner-info {
        padding-top: 100px;
    }

    .labaratory .post__banner {
        padding-bottom: 200px;
    }

    .about .production__video-text {
        min-width: 50%;
        width: 50%;
    }

    .about__banner-text {
        padding: 80px 0;
    }

    .about__banner-title {
        max-width: 650px;
        font-size: 30px;
        line-height: 1.2;
    }

    .about__client-items {
        margin-left: 50px;
    }

    .portfolio-page__header-text {
        min-width: 50%;
        width: 50%;
    }

    .product-thumbs--portfolio-page {
        min-width: 50%;
        width: 50%;
    }

    .post .production__video-text {
        min-width: 50%;
        width: 50%;
    }

    .post .production__group--reverse .production__image {
        display: none;
    }

    .post .production__desc {
        max-width: 100%;
    }

    .team__image {
        width: 100%;
        /* max-height: 320px; */
        height: auto;
        object-fit: cover;
        object-position: top;
        margin-bottom: 25px;
    }

    .order-form__container {
        flex-direction: column;
    }

    .order-form__inner {
        max-width: 100%;
        margin-right: 0;
    }

    .dropdown__show-more-image {
        display: none;
    }

    .print .production__video-text {
        min-width: 50%;
        width: 50%;
    }

    .production__video--sm .production__vedio-holder {
        min-width: 50%;
        width: 50%;
    }

    .production__video--print {
        justify-content: center;
    }
	
    .header__center .header__contacts .header__email {
        display: flex;
    }
}

.calculator-input-file {
    display: none;
}

.catalog-filter__nav--mob {
    display: none;
}

.added-file {
    display: none;
}

.calculator--added-file .calculator-add-file {
    display: none;
}

.added-file {
    background: #FCF7EB;
    border-radius: 14px;
    padding: 20px 60px 30px;
}

.calculator--added-file .added-file {
    display: block;
}

.added-file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #FF9966;
}

.added-file-title {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    font-family: var(--inter);
    color: #FF9966;
    margin-bottom: 16px;
}

.added-file-name {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--inter);
    display: flex;
    align-items: center;
    flex: 1;
    word-break: break-all;
}

.added-file-name::before {
    content: url('/local/templates/gofromir/assets/images/check-orange.svg');
    margin-right: 13px;
    position: relative;
    top: 2px;
}

.added-file-size-and-control {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding-left: 20px;
    color: #BFBFBF;
}

.added-file-remove {
    margin-left: 15px;
}

.catalog-close img {
    width: 30px;
}

.catalog-close {
    display: none;
}

@media screen and (max-width: 1199px) {
    
    body {
        font-size: 14px;
    }

    .main-slider__desc {
        font-size: 14px;
        margin: 20px 0;
        line-height: 20px;
    }

    .main-slider__swiper--main .main-slider__desc {
        margin: 20px 0;
    }

    .main-slider__desc br {
        display: none;
    }

    .main-slider__swiper--main .main-slider__slide {
        padding: 40px;
    }

    .main-slider__swiper--main .main-slider__image {
        max-height: 320px;
        max-width: 300px;
    }

    .button {
        font-size: 14px;
    }

    .category-more__title {
        line-height: 20px;
        font-size: 15px;
    }

    .image-holder {
        height: 120px;
    }

    .product-thumbs__title {
        font-size: 14px;
    }

    .sms-calc__image {
        background-position: bottom;
    }

    .main-slider__image {
        max-width: 350px;
    }

    .main-slider__slide {
        padding: 40px;
    }



    .waste-paper .main-slider__slide {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0;
    }

    .custom-design__title {
        font-size: 20px;
        line-height: 26px;
    }

    .custom-design__tab:first-child {
        margin-top: 0;
    }

    .custom-design__tab-title {
        font-size: 18px;
    }

    .advantages__item-title {
        font-size: 16px;
        line-height: 20px;
    }

    .email-subscribe__form {
        flex-direction: column;
    }

    .email__subscribe-desc {
        max-width: 100%;
    }

    .email-subscribe__groups {
        margin-top: 20px;
        width: 100%;
    }

    .email__subscribe-fields {
        flex: 1;
    }

    .email-subscribe__submit {
        bottom: 0;
    }

    .footer__container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__info {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 520px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        display: flex;
    }

    .footer__contacts {
        width: 50%;
    }

    .footer__addresses {
        width: 50%;
        margin-top: 0;
    }

    .footer .socials {
        width: 100%;
        max-width: 290px;
        justify-content: center;
        display: flex;
        justify-content: space-between;
    }

    .footer__payments {
        width: 100%;
        justify-content: center;
    }

    .main-tel--footer {
        font-size: 18px;
    }

    .footer__desc {
        margin: 0 0 8px 0;
    }

    .footer .logo {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer__items {
        width: 100%;
    }

    .footer__container {
        padding-bottom: 40px;
    }

    .blog-item__image {
        height: 190px;
        border-radius: 30px;
    }

    .calculator__container {
        flex-direction: column;
    }

    .calculator__form {
        max-width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .calculator-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calculator__aside {
        width: 100%;
    }

    .calculator-banner__title {
        text-align: left;
        margin-bottom: 20px;
    }

    .calculator-banner__button--hidden {
        display: inline-block;
    }

    .calculator-banner .button-holder {
        display: none;
    }

    .calculator__design-item-image-holder {
        height: 100px;
    }

    .calculator__design-item {
        width: calc(16.6% - 10px);
    }

    .calc-modal {
        width: 800px;
        padding: 40px 20px;
    }

    .calculator-config__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .calculator-config {
        padding-right: 40px;
    }

    .catalog-container {
        flex-direction: column;
    }

    .catalog-filter {
        display: none;
    }

    .catalog-items {
        margin-left: 0;
        width: 100%;
    }

    .catalog-header-nav {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .portfolio .catalog-header-nav {
        margin-bottom: 30px;
    }

    .catalog-filter__nav--mob {
        display: block;
        max-width: 300px;
        margin-bottom: 0;
        margin-top: 15px;
    }

    .catalog-filter-button {
        min-width: 140px;
        display: inline-flex;
        padding-top: 14px;
        padding-bottom: 10px;
    }

    .catalog-items__tags {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .catalog-header {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .catalog-header__controls {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .catalog-header__show {
        width: 100%;
        margin-top: 20px;
    }

    .catalog-items__container--flex {
        margin-top: 20px;
    }

    .catalog-filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100%;
        max-width: 100% !important;
        background: #fff !important;
        padding: 55px 25px 25px !important;
        z-index: 999;
        overflow-x: auto;
    }

    .catalog-filter .catalog-filter__nav {
        display: none;
    }

    .catalog-close {
        display: block;
        padding: 15px;
        z-index: 999;
        position: fixed;
        top: 10px;
        right: 5px;
        background: #fff;
    }

    .catalog-page .boxes {
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .catalog-page .categories-preview {
        margin-top: 40px;
    }

    .documents {
        padding-bottom: 40px;
    }

    .documents-item__preview {
        height: 230px;
    }

    .documents .email-subscribe {
        margin-top: 40px;
    }

    .banner--2 .main-slider__image {
        display: none;
    }

    .banner--2 .main-slider__info {
        min-width: 100%;
        margin-right: 0;
    }

    .production__video-text {
        min-width: 50%;
        width: 50%;
        border-radius: 30px;
    }

    .catalog__production-video {
        margin-top: 0;
    }

    .prodaction__video-holder-image {
        object-fit: cover;
        border-radius: 30px;
    }

    .production__video--otrasl .production__video-text {
        padding: 40px;
    }

    .production__video--otrasl {
        margin-top: 40px;
    }

    .contacts__desc {
        margin: 20px 0 15px;
    }

    .contacts__header {
        margin-bottom: 20px;
    }

    .contacts__tab {
        height: auto;
        min-height: 400px;
    }

    .contacts__tab ymaps {
        max-height: 400px !important;
    }

    .contacts__info {
        position: static;
        margin: 0 auto;
    }

    .labaratory .about__group {
        margin-bottom: 40px;
    }

    .about__group {
        flex-direction: column;
    }

    .about__group-text {
        max-width: 100%;
    }

    .labaratory__container {
        padding-top: 40px;
    }

    .about__group-image {
        margin-top: 15px;
        max-height: 350px;
        object-fit: cover;
        border-radius: 20px;
        width: 100%;
    }

    .labaratory .production__video {
        flex-direction: column;
        align-items: flex-start;
    }

    .labaratory .production__video-text {
        margin: 0;
        position: static;
        max-width: 100%;
        width: 100%;
        padding: 40px;
    }

    .labaratory .production__desc {
        max-width: 100%;
    }

    .labaratory .production__vedio-holder {
        width: 100%;
        margin-top: 40px;
        max-height: 350px;
        max-width: 100%;
    }

    .labaratory {
        padding-bottom: 40px;
    }

    .about__banner {
        border-radius: 30px;
        background-size: contain;
    }

    .about__clients {
        margin-top: 50px;
        margin-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    .about__client-items {
        margin-left: 0;
        margin-top: 20px;
    }

    .about__client {
        margin: 0 10px;
    }

    .about .production__video {
        margin-bottom: 40px;
    }

    .about__main-group {
        padding-bottom: 40px;
    }

    .about__main-group-title {
        padding-bottom: 40px;
    }

    .about__group-pre-title {
        margin-bottom: 15px;
    }

    .about__group--reverse--center .about__group-text {
        margin: 0;
    }

    .portfolio-page__header {
        margin-bottom: 40px;
    }

    .portfolio-page__info-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-page .production__group {
        flex-direction: column-reverse;
    }

    .portfolio-page .production__group--reverse .production__image {
        margin: 0;
    }

    .portfolio-page .production__image {
        margin: 0;
    }

    .portfolio-page .production__text {
        width: 100%;
    }

    .production__title br {
        display: none;
    }

    .portfolio-page .production__desc {
        max-width: 100%;
    }

    .production__title--quote::before {
        content: none;
    }

    .portfolio .banner {
        margin-top: 40px;
    }

    .portfolio .email-subscribe {
        margin-top: 40px;
    }

    .portfolio {
        padding-bottom: 40px;
    }

    .price-list__container {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .price-list__button {
        margin-top: 30px;
    }

    .production__video--waste {
        flex-direction: column;
        align-items: center;
    }

    .waste-paper .production__video-text {
        margin: 0;
    }

    .production__video--waste .production__vedio-holder {
        margin-top: -20px;
    }

    .production .production__group {
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }

    .production .production__text {
        width: 100%;
    }

    .production .production__desc {
        max-width: 100%;
    }

    .production .production__image {
        margin: 15px 0 0;
        width: 100%;
        object-fit: contain;
        max-height: 400px;
    }

    .production .production__video {
        flex-direction: column;
    }

    .production .production__video-text {
        width: 100%;
        border-radius: 30px;
    }

    .development .production__group {
        margin-bottom: 40px;
        flex-direction: column-reverse;
    }

    .development .production__image {
        margin: 15px 0 0;
        width: 100%;
        object-fit: contain;
        max-height: 400px
    }

    .services .services__items {
        grid-gap: 20px;
    }

    .cookie-note__text {
        margin-right: 20px;
    }

    .cookie-note {
        padding: 50px 30px;
    }

    /*.cookie-container {
        bottom: 20px;
    }*/

    .about__clients-text {
        align-items: center;
    }
}

.about__client-image {
    max-width: 100%;
}

@media screen and (max-width: 989px) {
    .main-slider__title {
        line-height: 36px;
    }

    .main-slider__swiper--main .main-slider__slide {
        position: relative;
    }

    .main-slider__swiper--main .main-slider__image {
        margin: 0;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .main-slider__swiper--main .main-slider__title {
        max-width: 440px;
    }

    .main-slider__swiper--main .main-slider__desc {
        max-width: 360px;
    }

    .main-slider__swiper--main .main-slider__buttons {
        margin-top: 50px;
    }

    .main-slider__buttons .button:first-child {
        margin-right: 25px;
    }

    .button {
        padding: 15px 16px;
        font-size: 13px;
    }

    .main-slider__container {
        position: relative;
    }

    .main-slider__pagination {
        position: absolute;
        z-index: 99;
        flex-direction: column;
        width: 30px !important;
        margin: 0;
        bottom: 30px !important;
        right: 50px;
        left: auto !important;
    }

    .main-slider__pagination .swiper-pagination-bullet {
        margin: 3px 0 !important;
        width: 13px;
        height: 13px;
    }

    .main-slider__pagination .swiper-pagination-bullet-active {
        width: 13px;
        height: 13px;
        border-width: 2px;
    }

    /* .main-slider__container {
        padding: 0 15px;
    } */

    .title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 22px;
    }

    .payment__desc {
        font-size: 18px;
        line-height: 1.2;
    }

    .main-category__image {
        object-fit: cover;
    }

    .main-categories__items {
        grid-gap: 10px;
    }

    .categories-preview__container {
        grid-gap: 10px;
    }

    .product-thumbs--category {
        border-width: 2px;
    }

    .product-thumbs {
        padding: 12px 20px;
    }

    .product-thumbs--category .product-thumbs__title {
        margin-top: 3px;
    }

    .product-thumbs__title {
        font-size: 12px;
    }

    .category-more {
        padding: 20px;
    }

    .category-more__arrow {
        width: 15px;
    }

    .category-more__desc {
        font-size: 12px;
    }

    .sms-calc__image {
        height: 250px;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .sms-calc {
        overflow-x: hidden;
        position: relative;
        padding-bottom: 60px;
        border-radius: 30px;
        padding: 60px 40px;
    }

    .sms-calc__text {
        max-width: 430px;
    }

    .sms-calc__title {
        font-size: 18px;
    }

    .sms-calc__desc {
        line-height: 18px;
        font-size: 14px;
        padding-bottom: 25px;
    }

    .sms-calc__main-button {
        margin-right: 18px;
    }

    .boxes__desc {
        max-width: 60%;
    }

    .banner .main-slider__title {
        font-size: 20px;
        line-height: 26px;
    }

    .banner .main-slider__image {
        max-width: 250px;
    }

    .main-slider__groups {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .main-slider__group {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .custom-design__images {
        max-width: 200px;
    }

    .product-thumbs--design .image-holder {
        height: 240px;
    }

    .effects::before {
        top: -12px;
    }

    .effects::after {
        top: -24px;
    }

    .custom-design__tab-title {
        margin-bottom: 0;
        font-size: 12px;
    }

    .custom-design__tab--active .custom-design__tab-title {
        margin-bottom: 10px;
    }

    .custom-design__tab-desc {
        font-size: 12px;
        line-height: 1.2;
    }

    .custom-design__tab {
        border-radius: 18px;
        padding: 18px 22px;
        padding-bottom: 0;
        margin: 0;
    }

    .custom-design__tab--active {
        padding-bottom: 22px;
        margin-top: 15px;
    }

    .print-button {
        margin-top: 20px;
        margin-left: 18px;
        margin-right: 0;
    }

    .custom-design__tab-desc {
        min-height: 50px;
    }

    .advantages__items {
        grid-gap: 10px;
    }

    .advantages__item {
        padding: 18px;
    }

    .advantages__item-icon {
        height: 22px;
    }

    .advantages__item-title {
        font-size: 14px;
        line-height: 1.2;
        margin: 12px 0;
    }

    .advantages__item-desc {
        font-size: 12px;
        line-height: 17px;
    }

    .email-subscribe {
        margin-top: 50px;
        padding: 35px 50px;
        border-radius: 30px;
    }

    .seo-text {
        padding-top: 70px;
    }

    .to-up {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 80px;
    }

    .footer-nav-group-arrow {
        display: inline-block;
        padding: 14px;
        transition: 200ms ease all;
    }

    .footer__items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .footer__nav-group-title {
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__nav-group-title--link {
        padding: 15.5px 0;
        margin-right: 15px;
    }

    .footer__nav {
        width: 100%;
    }

    .footer__nav-item {
        display: none;
    }

    .footer__nav-group {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        margin-bottom: 0;
    }

    .footer__nav:first-child .footer__nav-group:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .footer__nav-group--active .footer-nav-group-arrow {
        transform: rotate(180deg);
    }

    .footer__nav-group--active .footer__nav-item {
        display: block;
    }

    .footer__nav-group--active {
        margin-bottom: 10px;
    }

    .blog-item__title {
        margin: 20px 0;
    }

    .blog__items {
        padding-bottom: 40px;
    }

    .blog .email-subscribe {
        margin-top: 40px;
    }

    .blog {
        padding-bottom: 80px;
    }

    .blog__desc {
        margin-bottom: 30px;
    }

    .calculator__design-items {
        display: grid;
        /* grid-template-columns: repeat(3, 1fr); */
        grid-gap: 20px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .calculator__design-item {
        width: 100%;
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .calculator__desc {
        margin-bottom: 30px;
    }

    .calculator__design-title {
        margin-bottom: 20px;
    }

    .calculator {
        padding-bottom: 40px;
    }

    .calc-modal {
        width: 700px;
    }

    .calc-modal {
        max-height: 85vh;
    }

    .catalog-filter-button {
        padding-top: 14px !important;
        padding-bottom: 10px !important;
    }

    .product-thumbs--product .image-holder {
        height: 150px;
    }

    .documents__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .documents-item {
        padding: 20px 15px;
    }

    .pickup-items {
        flex-direction: column;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .delivery-pickup__info {
        max-width: 100%;
        margin: 0 0 30px;
    }

    .delivery-pickup__features-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .delivery-pickup__features-item::before {
        width: 120px;
    }

    .delivery-pickup__features {
        margin-bottom: 80px;
    }

    .delivery-pickup {
        padding-bottom: 40px;
    }

    .delivery-pickup .email-subscribe {
        margin-top: 40px;
    }

    .delivery-pickup__map {
        height: 350px;
    }

    .production__video--pickup {
        flex-direction: column-reverse;
    }

    .production__video--pickup .production__video-text {
        width: 100%;
        padding: 30px 20px;
        margin: -30px 0 0;
    }

    .handbook-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .handbook__title {
        margin: 0 0 20px;
    }

    .search-input__handbook {
        max-width: 100%;
        width: 100%;
    }

    .handbook-nav__item {
        font-size: 18px;
        min-width: 35px;
        width: 35px;
        height: 35px;
    }

    .faq__container {
        flex-direction: column;
    }

    .faq__nav {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        max-height: 40vh;
        overflow: auto;
    }

    .faq__group {
        margin-bottom: 15px;
    }

    .faq-page .email-subscribe {
        margin-top: 40px;
    }

    .faq-page {
        padding-bottom: 40px;
    }

    .faq__body {
        width: 100%;
        padding-top: 30px;
        border-top: 1px solid #000;
        margin-top: 20px;
    }

    .product-cart__gallery-and-info {
        padding-bottom: 50px;
    }

    .advantages--5 .advantages__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages--5 {
        padding-bottom: 40px;
    }

    .product-cart__main-info {
        width: 100%;
    }

    .product-cart--main .calculator__form-group-item {
        max-width: 100%;
    }

    .banner--2 .main-slider__groups {
        flex-direction: row;
    }

    .product-cart__main-tabs {
        padding: 45px 20px;
    }

    .product-cart__tab-options-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .product-cart__main-tabs .product-cart__tab {
        padding-top: 30px;
    }

    .product-cart__tab-title {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .product-cart__tab-advantages-item {
        column-gap: 20px;
    }

    .production__video--otrasl {
        flex-direction: column;
    }

    .production__video-text {
        width: 100%;
        margin: 0 0 -30px;
    }

    .production__vedio-holder {
        width: 80%;
    }

    .contacts__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contacts__tel .header__callback {
        margin: 10px 0;
    }

    .contacts .socials {
        margin-bottom: 0;
    }

    .contacts__info {
        margin: 0;
        padding-top: 0;
    }

    .contacts {
        padding-bottom: 40px;
    }

    .cart__products {
        padding: 30px;
        border-radius: 30px;
    }

    .product-preview-cart__info {
        margin-right: 15px;
    }

    .product-preview-cart__text {
        max-width: 200px;
    }

    .product-preview-cart .product-thumbs__title {
        font-size: 14px;
        line-height: 1.2;
    }

    .labaratory .post__banner__title {
        font-size: 30px;
    }

    .post__banner-info {
        padding-top: 50px;
    }

    .labaratory .post__banner {
        padding-bottom: 100px;
    }

    .about__group-image {
        max-height: 280px;
    }

    .labaratory .production__vedio-holder {
        max-height: 280px;
    }

    .labaratory .email-subscribe {
        margin-top: 40px;
    }

    .about__banner-text {
        padding: 40px 0;
    }

    .about__banner-title {
        max-width: 400px;
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .about__clients-value {
        font-size: 60px;
    }

    .about .production__video {
        flex-direction: column;
    }

    .about .production__video-text {
        margin-left: 0;
    }

    .about .production__video-text {
        width: 100%;
    }

    .about .production__vedio-holder {
        width: 100%;
        margin-top: -50px;
        height: 350px;
    }

    .about .about__group {
        margin-bottom: 30px;
    }

    .about__group-title {
        line-height: 1.2;
        font-size: 25px;
        margin-bottom: 15px;
    }

    .about__main-group-title {
        padding-bottom: 0;
    }

    .about .services__items {
        margin-top: 20px;
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    .about__education {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .payment .email-subscribe {
        margin-top: 0;
    }

    .payment {
        padding-bottom: 40px;
    }

    .help__items {
        margin-bottom: 40px;
    }

    .help {
        padding-bottom: 40px;
    }

    .help__item {
        padding: 30px;
    }

    .help__item-text {
        font-size: 16px;
    }

    .portfolio-page__header {
        flex-direction: column-reverse;
    }

    .portfolio-page__header-text {
        width: 100%;
        padding: 30px 30px 50px;
        margin: 0;
        border-radius: 20px;
    }

    .portfolio-page__info-title, .portfolio-page .production__title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .portfolio-page__info {
        margin-bottom: 40px;
    }

    .product-thumbs--portfolio-page {
        width: 100%;
    }

    .portfolio-page .production__group {
        margin-bottom: 40px;
    }

    .portfolio-page .production__video {
        flex-direction: column;
    }

    .category-preview-portfolio__title {
        margin-top: 15px;
        font-size: 12px;
    }

    .portfolio-page-categories {
        padding-bottom: 40px;
    }

    .portfolio-page .categories-preview__container {
        margin-top: 0;
    }

    .portfolio-page .email-subscribe {
        margin-top: 0;
    }

    .portfolio-page {
        padding-bottom: 40px;
    }

    .post .production__group {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .post .production__video--reverse {
        flex-direction: column;
        align-items: center;
    }

    .post .production__video-text {
        width: 100%;
        padding: 30px 15px 60px;
        margin-left: 0;
    }

    .post .production__vedio-holder {
        margin-top: -30px;
        height: 350px;
    }

    .post .banner {
        margin-top: 40px;
    }

    .post .blog-previews {
        padding-top: 40px;
    }

    .blog-previews__title {
        margin-bottom: 20px;
    }

    .post {
        padding-bottom: 40px;
    }

    .waste-paper__banner {
        margin-bottom: 40px;
    }

    .waste-paper .advantages__items {
        margin-top: 40px;
    }

    .waste-paper .ecology {
        margin-top: 40px;
    }

    .waste-paper .cooperation {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .waste-paper .advantages__items--cooperation {
        grid-template-columns: repeat(2, 1fr);
    }

    .waste-paper .cooperation__button-holder {
        margin-top: 40px;
    }

    .waste-paper .blog-previews {
        padding-top: 40px;
    }

    .production__title {
        font-size: 16px;
        line-height: 1.2;
    }

    .production__subtitle {
        font-size: 14px;
        line-height: 1.2;
    }

    .team__slider {
        margin-top: 40px;
    }

    .production .team {
        padding-bottom: 40px;
    }

    .production {
        padding-bottom: 40px;
    }

    .production .faq {
        padding-bottom: 50px;
    }

    .production .production__group {
        margin-top: 0;
    }

    .team__image {
        /* max-height: 500px; */
    }

    .development .advantages__items {
        grid-gap: 10px;
    }

    .development .advantages__item {
        padding: 20px 25px;
        border-radius: 20px;
    }

    .order {
        padding-bottom: 40px;
    }

    .order__form-group--skid {
        padding: 30px 20px;
    }

    .port-container {
        margin: 0 -10px;
    }

    .port-item {
        width: calc(33.3% - 20px);
        margin: 0 10px 20px;
    }

    .cookie-note__icon {
        margin-right: 20px;
    }

    .cookie-note__title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .cookie-note {
        border-radius: 30px;
        padding: 30px;
    }

    .print-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .print-item__images {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .product-thumbs--print {
        padding: 40px;
    }

    .print-item--reverse .print-item__images {
        margin-left: 0;
    }

    .print-advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .production__video--print .production__vedio-holder {
        margin-top: 0;
    }

    .print-callback-info {
        padding-bottom: 80px;
    }

    .production__video--print {
        flex-direction: column-reverse;
    }

    .print .production__video-text {
        width: 100%;
        min-width: 100%;
    }

    .print .production__video-text {
        margin-top: -70px;
        margin-left: 0;
    }

    .print .production__vedio-holder {
        min-width: 100%;
        width: 100%;
    }

    .print .production__video {
        flex-direction: column-reverse;
    }

    .print .production__video {
        margin-bottom: 40px;
    }

    .gallery .swiper-slide img {
        height: 250px;
    }

    .gallery-thumb .swiper-slide img {
        height: 45px;
    }

    .print-galleries {
        padding-bottom: 60px;
    }

    .print .email-subscribe {
        margin-top: 60px;
    }

    .print {
        padding-bottom: 60px;
    }

    .error-page {
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .error-page .main-categories {
        margin-top: 50px;
        margin-bottom: 0;
    }

    .error-page .boxes {
        padding-top: 50px;
    }

    .error-page__desc {
        margin: 25px auto;
    }

    .handbook-nav--poisk {
        display: none;
    }

    .production__video-text {
        background: rgba(255, 255, 255, 0.8);
    }

    .calculator-banner__image {
        max-width: 300px;
    }

    .calculator-banner__title {
        font-size: 22px;
        line-height: 26.4px;
    }

    .banner--consult .main-slider__slide {
        padding-bottom: 40px;
        position: relative;
    }

    .banner .main-slider__image {
        position: absolute;
        right: 0;
        bottom: 0;
    }

}

@media screen and (max-width:767px) {
    .main-slider__image {
        display: none;
    }

    .main-slider__image--mob {
        display: block;
        position: static !important;
        max-width: 275px !important;
        margin: 0;
    }

    .main-slider__swiper--main .main-slider__title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .main-slider__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-slider__swiper--main .main-slider__buttons {
        margin-top: 10px;
        flex-direction: column;
        align-items: initial;
        width: 100%;
    }

    .main-slider__buttons .button:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .main-slider__pagination {
        display: none;
    }

    .main-categories__items {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 30px;
    }

    .main-category__title {
        margin-top: 10px;
    }

    .categories-preview__container {
        margin-top: 35px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sms-calc {
        flex-direction: column;
        padding: 40px 15px 0;
    }

    .sms-calc__buttons {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .sms-calc__main-button {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .sms-calc__image {
        position: static;
    }

    .boxes__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .catalog-page .banner {
        margin-top: 0;
    }

    .boxes__desc {
        max-width: 100%;
        padding-bottom: 10px;
    }

    .boxes__header .show-all {
        display: none;
    }

    .show-all-mob-container {
        display: block;
    }

    .boxes__desc br {
        display: none;
    }

    .product-preview {
        padding: 10px;
        border-radius: 10px;
    }

    .product-thumbs--product {
        padding: 0;
    }

    .product-thumbs--product .product-thumbs__title {
        font-size: 13px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .product-preview__button {
        min-width: auto;
        font-size: 0;
        background-image: url('/local/templates/gofromir/assets/images/cart.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

    .product-preview__button:hover {
        background-image: url('/local/templates/gofromir/assets/images/cart.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-arrow svg {
        width: 20px;
    }

    .product-thumbs__desc {
        font-size: 13px;
    }

    .product-preview__price {
        font-size: 15px;
    }

    .price-discount {
        font-size: 15px;
    }

    .product-preview__add-link {
        font-size: 14px;
    }

    .product-preview__custom-input__field {
        font-size: 14px;
    }

    .main-slider {
        margin-bottom: 40px;
    }

    .box {
        flex-direction: column-reverse;
        align-items: center;
    }

    .box__image {
        margin-left: 0;
        width: 100%;
    }

    .box__form {
        width: 100%;
        padding: 25px 15px 20px;
        margin-top: -45px;
        border-radius: 27px;
    }

    .title {
        font-size: 18px;
        line-height: 1.2;
    }

    .box__title {
        margin-bottom: 18px;
    }

    .box__desc {
        padding-top: 0;
    }

    .payment__desc {
        font-size: 16px;
    }

    .payment__desc br {
        display: none;
    }

    .box__desc {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .custom-placeholder {
        font-size: 14px;
    }

    .box__form-submit {
        width: 100%;
    }

    .box__form-groups {
        margin-bottom: 15px;
    }

    .banner {
        margin-top: 40px;
    }

    .main-slider__groups {
        margin-top: 12px;
    }

    .custom-design {
        margin-top: 60px;
    }

    .custom-design__container {
        flex-direction: column;
    }

    .custom-design__tabs {
        margin-left: 0;
        order: 1;
    }

    .custom-design__images {
        order: 2;
        max-width: 100%;
    }

    .custom-design__main-info {
        margin-right: 0;
        order: 3;
        margin-top: 40px;
    }

    .product-thumbs--design .image-holder {
        height: 340px;
    }

    .custom-design__tab-desc {
        min-height: auto;
    }

    .custom-design__tab {
        margin: 0;
        margin-bottom: 5px;
        border-color: #E6E6E6;
        padding-bottom: 22px;
    }

    .custom-design__tab-title {
        color: #3E3E3E;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
    }

    .custom-design__tabs {
        width: 100%;
        max-width: 100%;
    }

    .custom-design__tab-title::after {
        content: url('/local/templates/gofromir/assets/images/down-arrow-nav.svg');
    }

    .custom-design__tab--active .custom-design__tab-title::after {
        transform: rotate(180deg);
    }

    .print-button {
        margin: 15px 0 22px 0;
    }

    .product-thumbs {
        padding: 0;
        /* margin-top: 25px; */
    }

    /* .effects::before {
        content: none;
    }

    .effects::after {
        content: none;
    } */

    .advantages {
        padding-top: 40px;
    }

    .advantages__items {
        margin-top: 17px;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 10px;
    }

    .email-subscribe {
        padding: 30px 15px;
    }

    .email__subscribe-title {
        font-size: 18px;
    }

    .email__subscribe-desc {
        font-size: 14px;
        line-height: 1.2;
    }

    .email-subscribe__groups {
        flex-direction: column;
    }

    .email-subscribe__submit {
        width: 100%;
        margin-top: 22px;
    }

    .seo-text {
        padding-top: 40px;
    }

    .seo-text__title {
        font-size: 18px;
        line-height: 1.2;
    }

    .seo-text__desc {
        font-size: 14px;
        line-height: 1.2;
    }

    .footer__info {
        flex-direction: column;
    }

    .footer__addresses {
        width: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .footer__contacts {
        width: auto;
        align-items: center;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .footer__container {
        padding-top: 40px;
    }

    .footer .logo-image {
        max-width: 180px;
    }

    .footer__nav-group-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .footer__nav-item {
        font-size: 14px;
        line-height: 28px;
    }

    .header .logo-image {
        max-width: 150px;
    }

    .dropdown__column {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        flex: auto;
        justify-content: space-between;
    }

    .dropdown__category {
        margin-bottom: 0;
    }

    .dropdown__categories-container .os-content {
        flex-wrap: wrap;
        padding-right: 40px !important;
    }

    .dropdown-category__header {
        font-size: 14px;
    }

    .dropdown__category .dropdown__item {
        font-size: 12px;
        line-height: 1.2;
    }

    .dropdown__item-parent .dropdown__item {
        font-size: 12px;
        padding: 0;
    }

    .dropdown__category-button {
        padding: 5px 15px;
    }

    .dropdown__category {
        /* padding-right: 40px; */
    }

    .dropdown__category .dropdown__item {
        margin-bottom: 10px;
    }

    .product-thumbs {
        padding-bottom: 10px;
    }

    .boxes {
        padding-bottom: 80px;
    }

    .blog__items {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 30px;
    }

    .blog-item__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .blog {
        padding-top: 0;
    }

    .calculator__design-items {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }


    .calculator__form-group--triple .calculator__form-group-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .calculator__form-groups--double {
        flex-direction: column;
    }

    .calculator__form-groups--double .calculator__form-group {
        width: 100%;
    }

    .calculator__form-group--triple .calculator__form-group-items {
        flex-direction: column;
    }

    .calculator__form-group-item--print:first-child {
        margin-right: 15px;
    }

    .calculator__form-group-item--print {
        width: 45%;
        max-width: 155px;
    }

    .calculator__form-group--radios .calculator__form-group-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .calculator__form-group--radios .custom-radio {
        height: auto;
    }

    .calculator__form-group--radios .custom-radio__checkmark {
        top: calc(50% - 10px);
    }

    .added-file {
        padding: 20px 15px;
    }

    .calculator__controls {
        margin-bottom: 15px;
        flex-direction: column;
    }

    .calculator__submit {
        margin-right: 0;
        width: 100%;
        margin-bottom: 15px;
    }

    .calculator__note {
        flex-direction: column-reverse;
    }

    .calculator__note .form-note {
        margin-right: 0;
        margin-top: 14px;
    }

    .calculator__form {
        padding: 30px 15px;
    }

    .calc-modal {
        width: 420px;
    }

    .calculator-config__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-slider__buttons {
        flex-direction: column;
        width: 100%;
        align-items: initial;
    }

    .catalog-banner {
        padding-bottom: 50px;
    }

    .catalog-items__container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    .catalog__fefco-image {
        height: 140px;
    }

    .catalog__fefco {
        padding: 15px;
    }

    .catalog-page .categories-preview {
        margin-top: 50px;
    }

    .catalog-page .custom-design {
        margin-top: 50px;
    }

    .catalog-page .seo-text {
        padding-top: 10px;
    }

    .catalog-page {
        padding-bottom: 40px;
    }

    .catalog-items__container--flex .product-preview {
        width: calc(50% - 5px);
        margin: 0 0 10px;
    }

    .catalog-items__container--flex .catalog-vertical-banner {
        width: calc(50% - 5px);
        margin: 0 0 10px;
    }

    .catalog-items__container--flex {
        justify-content: space-between;
        grid-gap: 0;
    }

    .catalog-main-banner {
        padding: 30px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .breadcrumbs {
        margin-bottom: 25px;
    }

    .catalog-container--no-filter .catalog-items__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .documents__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .documents-item {
        font-size: 13px;
        line-height: 1.2;
    }

    .documents-item__preview {
        height: 150px;
    }


    .production__video--pickup .production__video-text {
        padding: 40px 20px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 1.2;
    }

    .production__video-text--center {
        font-size: 18px !important;
    }

    .delivery-pickup__info {
        padding: 40px 15px;
    }

    .delivery-pickup__info-column {
        width: 100%;
    }

    .faq__title {
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 1.2;
    }

    .faq__item-title {
        font-size: 16px;
        line-height: 1.2;
    }

    .handbook-nav__item {
        font-size: 16px;
        min-width: 30px;
        width: 30px;
        height: 30px;
    }

    .handbook-group__items {
        grid-gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .handbook-group__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .handbook-group__item {
        padding: 8px 18px 8px 15px;
        font-size: 12px;
    }

    .handbook-group {
        margin-bottom: 15px;
    }

    .handbook {
        padding-bottom: 40px;
    }

    .handbook .email-subscribe {
        margin-top: 40px;
    }

    .handbook__search-items {
        flex-direction: column;
        align-items: flex-start;
    }

    .back-link {
        text-align: left;
        margin-bottom: 20px;
    }

    .handbook__back-link {
        margin-top: 15px;
    }

    .handbook__post-letter {
        font-size: 80px;
    }

    .faq__group-title {
        margin-bottom: 10px;
    }

    .faq__group-item {
        margin-bottom: 10px;
    }

    .faq__body-group-item-header-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-right: 10px;
    }

    .faq__body-group-item-header {
        margin-bottom: 10px;
    }

    .faq__body-group-item-answer {
        padding-left: 50px;
    }

    .faq__body-group-item {
        margin-bottom: 10px;
    }

    .faq-form {
        margin-top: 10px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .faq-form__title {
        font-size: 20px;
        line-height: 1.2;
    }

    .faq-form .order__form-groups {
        flex-direction: column;
    }

    .faq-form .order__form-groups .order__form-group {
        width: 100%;
    }

    .faq-form__controls-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-form__submit {
        margin: 0;
        width: 100%;
    }

    .faq-form .form-note {
        margin-right: 0;
        margin-top: 15px;
    }

    .product-cart__gallery-main-photo {
        min-height: auto;
        height: 200px;
    }

    .product-cart__gallery-nav-item {
        flex: 1;
        height: 60px;
    }

    .product-cart--main .calculator__form-groups--selects {
        flex-direction: column;
    }

    .product-cart--main .calculator__form-groups--selects .calculator__form-group {
        width: 100%;
        margin-right: 0;
    }

    .product-cart--main .calculator__form-groups--d2 {
        flex-direction: column;
    }

    .product-cart--main .calculator__form-groups--d2 .calculator__form-group {
        width: 100%;
        max-width: 100%;
    }

    .product-cart--main .calculator__form-group-item {
        width: 100%;
    }

    .product-cart--main .calculator__form-group-title--hidden {
        display: none;
    }

    .advantages--5 {
        padding-top: 0;
    }

    .banner--2 .main-slider__groups {
        flex-direction: column;
    }

    .banner--2 .main-slider__group {
        max-width: 100%;
        margin-right: 0;
    }

    .product-cart__controls {
        flex-direction: column;
    }

    .product-cart__controls-count {
        min-width: 100%;
        margin-bottom: 15px;
        justify-content: center;
        text-align: center;
    }

    .product-cart__controls-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .product-cart__tabs-header-item::before {
        left: 0;
    }

    .product-cart__tabs-header-item {
        margin-right: 10px;
        text-align: center;
    }

    .product-cart__tabs-header {
        display: flex;
    }

    .product-cart__main-tabs {
        border-radius: 20px;
    }

    .product-cart__tab-advantages-items {
        flex-direction: column;
    }

    .product-cart__tab-advantages-item {
        column-count: 1;
    }

    .product-cart__tab-options-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-cart__tab-faq-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }

    .product-cart__similar {
        padding-bottom: 40px;
    }

    .product-cart {
        padding-bottom: 40px;
    }

    .banner .main-slider__title br {
        display: none;
    }

    .banner .main-slider__title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .product-cart .shtanc {
        margin-bottom: 40px;
    }

    .offset-top {
        margin-top: 40px;
    }

    .production__video--otrasl .production__title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .production__vedio-holder {
        height: 300px;
    }

    .catalog-header-nav {
        padding: 20px 15px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .catalog-header-nav__item {
        margin: 0 0 8px;
    }

    .custom-input-search {
        margin-right: 10px;
    }

    .cart__search {
        margin-bottom: 20px;
    }

    .cart__control-link {
        font-size: 13px;
    }

    .cart__controls-items--first .cart__control-link {
        margin-right: 10px;
    }

    .cart__controls-items--first .cart__control-link::after {
        content: none;
    }

    .product-preview-cart {
        flex-direction: column;
    }

    .product-preview-cart__info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .product-preview-cart__prices {
        margin: 15px 0;
        text-align: center;
    }

    .product-preview-cart__remove {
        margin-top: 15px;
    }

    .product-preview-cart .product-preview__controls {
        margin-right: 0;
    }

    .cart {
        padding-bottom: 40px;
    }

    .cart .product-cart__recommended {
        padding-bottom: 30px;
    }

    .about__banner {
        background: linear-gradient(101.79deg, #F1F0EF 13.98%, #E2D7CD 71.88%);
    }

    .about__banner-title {
        max-width: 100%;
    }

    .about__banner-text {
        padding: 0 0 20px;
    }

    .about .production__video-text {
        padding: 30px;
    }

    .production__video-item {
        margin-bottom: 30px;
    }

    .about {
        padding-bottom: 40px;
    }

    .about__group--center .about__group-text {
        margin: 0;
    }

    .about__group-title br {
        display: none;
    }

    .help__items {
        grid-template-columns: repeat(1, 1fr);
    }

    .portfolio-page__info-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .portfolio-page .production__video-text {
        padding: 30px 30px 50px;
    }

    .portfolio__desc br {
        display: none;
    }

    .portfolio__desc {
        margin-bottom: 25px;
    }

    .portfolio .catalog__items-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .waste-paper .production__video-text {
        padding: 30px 30px 50px;
    }

    .waste-paper .map {
        height: auto;
        min-height: 300px;
    }

    .waste-paper ymaps {
        max-height: 400px !important;
    }

    .waste-paper .map-location {
        margin-bottom: 40px;
    }

    .waste-paper .location-info {
        position: static;
    }

    .waste-paper__main-info {
        padding-bottom: 0;
    }

    .waste-paper {
        padding-bottom: 40px;
    }

    .production .production__video-text {
        padding-left: 15px;
        padding-right: 15px;
    }

    .development-banner {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
        border-radius: 30px;
    }

    .development .team {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .development .advantages__items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    .development .faq {
        padding-bottom: 40px;
    }

    .development {
        padding-bottom: 40px;
    }

    .services__group-title {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .services .services__items {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 40px;
    }

    .services {
        padding-bottom: 40px;
    }

    .services__title.title {
        margin-bottom: 20px;
    }

    .order__group {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .order__form-groups {
        flex-direction: column;
    }

    .order__form-groups .order__form-group {
        width: 100%;
    }

    .order .delivery-type {
        flex-direction: column;
    }

    .delivery-type .custom-radio:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .delivary-tab__radios .custom-radio {
        width: calc(50% - 5px);
        padding: 20px 15px;
        flex-direction: column-reverse;
        text-align: center;
    }

    .delivary-tab__radios .custom-radio__checkmark {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .delivery-tab__address {
        width: 100%;
    }

    .delivery-tab__address--hidden {
        display: none;
    }

    .catalog-page .portfolio-previews {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .product-cart .portfolio-previews {
        padding-top: 40px;
    }

    .development .portfolio-previews {
        padding-top: 40px;
    }

    .modal-form {
        width: 100%;
    }

    .modal-form .form-note br {
        display: none;
    }

    .cookie-note {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .cookie-note__icon {
        min-width: 40px;
        width: 40px;
    }

    .cookie-note__desc {
        line-height: 1.2;
        font-size: 13px;
    }

    .print-item {
        margin-top: 40px;
    }

    .product-thumbs--print {
        padding: 20px;
    }

    .print-advantages {
        grid-template-columns: repeat(1, 1fr);
    }

    .print .production__video-text {
        padding: 40px;
    }

    .print .portfolio-previews {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .print .categories-preview {
        margin-bottom: 60px;
    }

    .print-galleries {
        flex-direction: column;
        padding-bottom: 25px;
    }

    .print-gallery-part {
        width: 100%;
        margin-bottom: 40px;
    }

    .gallery-thumb .swiper-slide img {
        height: 70px;
    }

    .print .sms-calc {
        margin-top: 80px;
    }

    .print-tech__desc {
        font-weight: 500;
        font-size: 16px;
    }

    .print-tech__title {
        margin-bottom: 10px;
    }

    .print-item__info-title {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .print-item__info-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .print-items {
        padding-bottom: 80px;
    }

    .print .main-slider__group-title {
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .print .main-slider__slide ul {
        margin-top: -10px;
        padding-top: 0;
    }

    .modal-call-manager {
        padding: 30px 20px;
    }

    .calculator__form--modal {
        padding: 0;
    }

    .production__video--waste .production__subtitle {
        font-size: 14px;
    }

    .services__group-title {
        font-size: 14px;
    }

    .main-categories {
        margin-bottom: 40px;
    }

    .main-page__categories-preview {
        margin-bottom: 40px;
    }

    .main-page .boxes {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .labaratory .production__video {
        margin-bottom: 0;
    }

    .calculator__note .form-note br {
        display: none;
    }

    .calculator-banner {
        flex-direction: column;
    }

    .calculator-banner__title {
        margin-bottom: 40px;
        text-align: center;
    }

    .calculator-banner__button--hidden {
        display: none;
    }

    .calculator__aside {
        padding: 40px 30px;
    }

    .calculator-banner .button-holder {
        display: block;
    }

    .pickup-location__title {
        margin-bottom: 25px;
    }

    .modal-city .modal__body {
        width: 100%;
    }

    .banner--consult .main-slider__info {
        width: 100%;
    }

    .email__subscribe-fields {
        margin-right: 0;
        width: 100%;
    }

    .custom-input__main-slider {
        margin-right: 15px;
    }

        .banner_in_header {
        height: 40px!important;
    }
        .header__center .header__contacts .header__email {
            gap: 4px!important;
            margin-left: 10px!important;
        }
}

@media screen and (max-width: 549px) {
    .main-slider__form-group {
        flex-direction: column;
    }

    .custom-input__main-slider {
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 100%;
        width: 100%;
    }

    .custom-input__main-slider input {
        text-align: center;
    }

    .main-slider__form-submit {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .catalog-items-title {
        font-size: 18px;
        line-height: 23px;
    }

    .product-label {
        font-size: 10px;
    }

    .product-thumbs--product .image-holder {
        height: 120px;
    }

    .product-labels {
        top: 5px;
        left: 5px;
    }

    .product-thumbs--product .images__nav {
        margin: 10px 0;
    }

    .product-thumbs--product .product-thumbs__title {
        margin-top: 0;
    }

    .product-preview__add-link {
        font-size: 10px;
    }

    .product-thumbs {
        padding-bottom: 0;
    }

    .product-thumbs--product .product-thumbs__title {
        font-size: 12px;
    }

    .product-preview__custom-input__field {
        padding: 0 15px;
        font-size: 11px;
    }

    /* .input-control svg {
        width: 15px;
    } */

    /* .input-control {
        top: 10px;
    } */

    .input-minus {
        left: 5px;
    }

    .input-plus {
        right: 5px;
    }

    .custom-input--custom-placeholder .custom-input__field {
        font-size: 11px;
    }

    .custom-input__field {
        padding: 15px 10px;
    }

    .search-input__field {
        padding-right: 50px;
    }

    .custom-placeholder {
        left: 10px;
        font-size: 11px;
    }

    .custom-input--active .custom-placeholder {
        font-size: 11px;
    }

    .product-thumbs--category {
        padding-bottom: 10px;
    }

    .blog-item__image {
        height: 120px;
    }

    .blog-item__title {
        font-size: 14px;
    }

    .blog-item__desc {
        font-size: 12px;
        line-height: 1.2;
    }

    .calc-modal {
        width: 320px;
    }

    .calculator-config__icon-holder {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    /* .calculator-config__container {
        grid-template-columns: repeat(2, 1fr);
    } */
    .delivery-pickup__prices {
        flex-direction: column;
        align-items: flex-start;
    }

    .delivery-pickup__price {
        width: 100%;
        margin: 0 0 15px;
    }

    .cart__controls {
        flex-direction: column;
    }

    .cart__control-link--remove {
        margin-top: 12px;
    }

    .cart__controls-items--first {
        flex-direction: column;
    }

    .cart__controls-items--first .cart__control-link {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .labaratory .post__banner__title {
        font-size: 26px;
    }

    .production__video-items {
        flex-direction: column;
    }

    .production__video-item {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .advantages__items--marks .advantages__item {
        padding: 40px 20px;
    }

    .ecology__container {
        flex-direction: column;
    }

    .ecology__desc {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .advantages__items--cooperation .advantages__item {
        padding: 18px;
    }

    .waste-paper .production__title {
        font-size: 16px;
        line-height: 1.2;
    }

    .waste-paper .map {
        /* height: 250px; */
    }

    .waste-paper .map-location {
        margin-bottom: 40px;
    }

    .services .services__items {
        grid-template-columns: repeat(1, 1fr);
    }

    .services .service__item {
        min-height: 190px;
        border-radius: 30px;
        height: auto;
    }

    .order__group-title {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .success-order {
        padding-top: 30px;
    }

    .port-container {
        margin: 0 -7px;
    }

    .port-item {
        width: calc(33.3% - 14px);
        margin: 0 7px 14px;
    }

    .portfolio-previews {
        padding-top: 40px;
    }

    .cookie-note {
        padding: 15px 10px;
    }

    .cookie-note__title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .cookie-note__desc {
        font-size: 12px;
    }

    .cookie-note__text {
        margin-right: 10px;
    }

    .cookie-note__icon {
        margin-right: 10px;
    }

    .main-slider__slide {
        padding: 40px 20px;
    }

    .product-cart__tabs-header-item {
        margin-right: 10px;
        font-size: 12px;
    }

    .gallery-thumb .swiper-slide img {
        height: 50px;
    }

    .box__image {
        max-height: 150px;
    }

    .box__form {
        margin-top: -30px;
    }

    .print-advantages {
        margin-bottom: 60px;
    }

    .production__video-item-title {
        color: #FF9966;
    }

    .advantages__items--marks .advantages__item-title {
        font-size: 14px;
    }

    .banner {
        border-radius: 40px;
    }

    .main-slider__title br {
        display: none;
    }

    .banner--2 .main-slider__group-title {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 8px;
    }

    .banner--2 .main-slider__group-desc {
        font-size: 12px;
    }

    .product-cart__tab-option-title {
        padding-right: 20px;
    }

    .print-items .images__nav {
        width: 100%;
    }

    .product-thumbs--print .images__nav-item {
        width: auto;
        flex: 1;
    }

    .modal-thanks .modal__body {
        width: 100%;
    }

    .modal-city {
        padding: 55px 20px;
    }

    .modal-form__title, .modal-title {
        font-size: 21px;
    }

    .cart-form-aside {
        padding: 50px 20px;
    }
}

.custom-input__promo-help {
    display: none;
}

@media screen and (max-width: 420px) {
    .custom-input__promo-help {
        display: block;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .custom-input__field--promo::placeholder {
        opacity: 0;
    }

    .portfolio .catalog-header__controls {
        flex-direction: column;
    }

    .select-portfolio {
        margin-top: 10px;
    }

    .product-cart__custom-input {
        margin-bottom: 10px;
    }

    .product-cart__count-pre {
        margin-bottom: 10px;
    }

    .product-cart__count-price {
        margin-bottom: 10px;
    }

    .custom-input__box {
        margin-right: 4px;
    }

}

@media screen and (max-width: 374px) {
    .product-cart .button-cart--icon {
        font-size: 11px;
        padding: 13px 20px;

    }

    .button-one-click {
        font-size: 11px;
        padding: 9px 20px;
    }

    .product-cart__tabs-header {
        flex-direction: column;
        align-items: center;
    }

    .product-cart__main-tabs {
        padding-top: 20px;
    }

    .product-cart__tabs-header-item {
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .product-cart__tabs-header-item:last-child {
        margin-bottom: 0;
    }

    .product-cart__tabs-header-item::before {
        bottom: -3px;
    }

    .print-item__button-price {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .calc-modal {
        margin: 0 -20px;
        width: 300px;
    }

    .button--md {
        min-width: auto;
    }

    .main-slider__image--mob {
        width: 100%;
    }

    .custom-checkbox__text a {
        border: none;
    }
}

.product-preview__button--not-image {
    font-size: initial !important;
    background-image: none !important;
}

/* .product-cart__controls-buttons {
	width: 70%;
} */


/*
Новая страница полиграфии 
*/

.right_hero img {
    max-width: 100%;
}
.hero_banner {
    display: flex
;
    flex-direction: row;
    /* background: url(/new_oso/images/banner.jpg); */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    border-radius: 65px;
    background: url(/images/poligrafia/hero_banner1.png);
    position: relative;
    background-position: 90% 80%;
    background-size: 50%;
    background-repeat: no-repeat;
}
.oso_container{
background: url(/images/poligrafia/banner.jpg);
    border-radius: 65px;
    background-size: cover;
}
/* .hero_banner:after {
    content: '';
    background: url(/new_oso/images/hero_banner.png);
    position: absolute;
} */
.left_hero {
    padding: 100px;
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 34px;
    line-height: 120%;
    color: white;
    margin-block-start: 0;
    margin-block-end: 0;
}
.hero_descr {
    max-width: 79%;
}
.hero_descr p {
    color: white;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}
.hero_descr p span {
    font-weight: bold;
}

section.oso_hero {
    margin-bottom: 80px;
}
.techno h2, .why_oso-header .h2, .etaps .h2 {
    color: #3E3E3E;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 16px;
    margin-top: 0;
}
.techno_header {
    margin-bottom: 24px;
}
.techno_descr {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}
.techno_list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.techno_item {
    display: flex;
    gap: 48px;
    flex-direction: row;
}
.techno_item:nth-child(2) {
    flex-direction: row-reverse;
    justify-content: space-between;
}
.techno_item:nth-child(2) .techno_item-descr,
.techno_item:nth-child(3) .techno_item-descr{
    margin-bottom: 16px;
}
.techo_img {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 16px;
    width: 591px;
    height: 473px;
    text-align: center;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.techno_adv-button {
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    background: #3db845;
    border-radius: 8px;
    display: inline-block;
    color: white;
    padding: 10px;
}
.techno_item-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #3e3e3e;
    margin-bottom: 8px;
}
.techno_item-descr {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 24px;
}
.techno_adv-colors {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #3e3e3e;
    display: flex
;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.techno_adv-info {
    gap: 10px;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #3e3e3e;
    padding: 11px 16px 11px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}
.techno_adv-info:after {
    content: url(/images/poligrafia/info.png);
    position: relative;
    width: 24px;
    height: 24px;
}
.techno ul {
    padding: 0;
    list-style: none;
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.techno_adv-list:last-child ul {
    margin: 16px 0 0 0;
}
.techno ul li {
    /* margin: 8px 0; */
    background: #F8F8F8;
    gap: 0;
    padding: 11px 16px;
    border-radius: 8px;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #3e3e3e;
    font-family: 'Inter';
}
.techno ul li:before {
    content: url(/images/poligrafia/tick.png);
    position: relative;
    width: 24px;
    height: 24px;
}
.techno_item:nth-child(3) .techo_img { 
    padding: 20px 0 20px 20px; 
    justify-content: flex-end;
}
section.techno {
    margin-bottom: 80px;
}

.why_oso-item {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 56px 64px;
    position: relative;
}
.why_oso-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    counter-reset: list 0;
}
.why_oso-item {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 56px 254px 56px 64px;
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.why_oso-item:after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 260px;
    line-height: 130%;
    color: #FF9966;
    opacity: 30%;
}
.why_oso-item:nth-child(1):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    right: 115px;
    top: -60px; 
}
.why_oso-item:nth-child(2):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: 100px;
    top: -95px;
}
.why_oso-item:nth-child(3):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    right: 95px;
    top: -105px;
}
.why_oso-item:nth-child(2) { 
    align-self: self-end;
    padding: 56px 64px 56px 300px;
}
.why_oso-item:nth-child(2) .why_oso-item--img {
    position: absolute;
    left: -70px;
    z-index: 2;
    top: -56px;
}
.why_oso-item:nth-child(3) .why_oso-item--img {
    position: absolute;
    right: -90px;
    z-index: 2;
    top: -56px;
}
.why_oso-item:nth-child(1) .why_oso-item--img {
    position: absolute;
    right: -225px;
    z-index: 2;
    top: -60px;
}
.why_oso-item--name {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #3e3e3e;
    margin-bottom: 16px;
}
.why_oso-item--descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #8C8C8C;
    font-family: 'Inter';
}

section.whyus_oso {
    margin-bottom: 70px;
    overflow: hidden;
    padding-bottom: 70px;
}
a.play_absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255 255 255 / 0%);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    width: 64px;
    height: 64px;
}
.know_container {
    display: flex
;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.absolute_video {
    position: relative;
}
.absolute_video img {
    border-radius: 24px;
    max-width: 854px;
}
.descr_absolute {
    color: #8C8C8C;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
}
.name_absolute {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #3e3e3e;
    margin-bottom: 24px;
}
.absolute_know {
    position: absolute;
    z-index: 1;
    padding: 64px 100px;
    max-width: 732px;
    border: 2px solid #F2F2F2;
    border-radius: 60px;
    backdrop-filter: blur(40px);
    left: 30%;
    transform: translateX(-50%);
}
.etaps_list {
    display: flex
;
    flex-direction: row;
    gap: 20px;
    counter-reset: list-etap 0;
}
.etaps_item {
    padding: 45px 40px;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
    border-radius: 32px;
    max-width: 345px;
    transition: 300ms all ease;
} 
.etaps_item:hover {
    transform: rotate(4deg);
}
.etaps_item-name:before {
    counter-increment: list-etap;
    content: counter(list-etap); 
}
.etaps_item-descr {
    color: #8C8C8C;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
}
.etaps_item-name {
    font-weight: 600;
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 140%;
    padding: 12px 14px;
    display: inline-flex;
    position: relative;
    border-radius: 8px;
    margin-left: 60px;
    align-items: center;
    text-transform: uppercase;
}

.etaps_item-name:before {
    counter-increment: list-etap;
    content: counter(list-etap);
    position: absolute;
    left: -60px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}  
.item-purple .etaps_item-name, .item-purple .etaps_item-name:before {
    background: #A489DD;
    color: white;
}
.item-red .etaps_item-name, .item-red .etaps_item-name:before {
    background: #F9978E;
    color: white;
}
.item-green .etaps_item-name, .item-green .etaps_item-name:before {
    background: #4DBD66;
    color: white;
}
.item-blue .etaps_item-name {
    background: #5E8CD9;
    color: white;
}
.item-blue .etaps_item-name:before {
    background: #5E8CD9;
    color: white;
}
.form_oso {
    margin-top: 80px;
}
.form_oso-container {
    background: url(/images/poligrafia/oso-form-fon.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 72px 64px;
    border-radius: 40px;
    position: relative;
}

.form_oso-container:after {
    content: url(/images/poligrafia/box.png);
    position: absolute;
    right: 80px;
    bottom: -3px;
}

.form_oso-name {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    color: white;
    max-width: 50%;
    margin-bottom: 32px;
}
.form_oso-list {
    gap: 16px;
    display: flex;
    flex-direction: row;
    max-width: 814px;
    justify-content: flex-start;
    margin-bottom: 32px;
}
.form_oso-item {
    color: white;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 252px;
}
.form_oso-item-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    max-width: 200px;
}
video {
    display: none;
    width: 800px;
    height: 516px;
    position: absolute;
    left: 0;
    top: -36px;
    z-index: 1;
}

.hideshow {
    opacity: 0;
}

.slider_oso .print-gallery-part-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 38px;
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F8F2EA 109.95%);
    border-radius: 20px;
    padding: 27px 32px;
    height: 100px;
    margin-bottom: -30px;
}
.slider_oso {
    margin-top: 80px;
}
.form_oso, .seo-text {
    margin-bottom: 80px;
}
.form_oso form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}
.form_oso .b24-form-btn-block {
    padding: 0;
}
.form_oso-form .b24-form-wrapper {
    background: initial;
}
.form_oso .b24-form-wrapper { 
    max-width: 60%;
    margin: 0;
}
.form_oso span.b24-form-control-desc {
    color: white;
}
.form_oso .b24-form-control-container.b24-form-control-icon-after {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    max-width: 425px;
}
.form_oso .b24-form-btn-container { 
    align-items: baseline;
    margin-left: 24px;
    max-width: 235px;
    order: 2;
}
.form_oso button.b24-form-btn {
    border-radius: 16px;
}
.form_oso form div:nth-child(2){
    order: 3;
    grid-column: span 2 / span 2;
}
.form_oso input.b24-form-control {
    background: transparent !important;
    background-color: transparent !important;
    padding: 16px 20px 0 !important;
    color: white;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
} 
.oso_hero .breadcrumbs {
    margin-bottom: 15px;
    margin-top: 40px;
}
.oso-cnt.container {
    max-width: 1520px;
}
.form_oso .b24-form-control-label {
    color: rgba(255, 255, 255, 0.8);
}


@media screen and (max-width: 1440px) {
    .form_oso-container:after {
    content: '';
    background: url(/images/poligrafia/box.png);
    width: 100%;
    height: 400px;
    position: absolute;
    right: 80px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 30%;
}
}
@media screen and (max-width: 1240px) {
    .etaps_item {
        padding: 35px 30px; 
        width: 49%; 
        max-width: 100%;
        justify-content: space-between;
    }
    .etaps_list {  
        flex-wrap: wrap;
        gap: 10px;
    }
    .absolute_know {
        position: relative;
        left: auto;
        transform: none;
        margin-top: -50px;
    }
    .know_container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: center;
    }
    .form_oso-container:after {
    content: '';
    background: url(/images/poligrafia/box.png);
    width: 100%;
    height: 400px;
    position: absolute;
    right: 30px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 25%;
}
}
@media screen and (max-width: 991px) {
    .form_oso .b24-form-wrapper { 
    max-width: 100%;
    margin: 0;
}
    
    .why_oso-item {
        background: #F5F5F5;
        border-radius: 16px;
        padding: 0;
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin-top: 80px;
    }
    .why_oso-item--name {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #3e3e3e;
    margin-bottom: 0;
    background: #f5f5f5;
    padding: 54px 200px 14px 54px;
    border-radius: 16px 16px 0 0;
}
.why_oso-item--descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #8C8C8C;
    background: #f5f5f5;
    padding: 0px 200px 54px 54px;
    border-radius: 0 0 16px 16px;
}
.why_oso-item:nth-child(1) .why_oso-item--img {
    position: absolute;
    right: unset;
    left: 150px;
    z-index: -1;
    top: -95px;
}
.why_oso-item:nth-child(1) .why_oso-item--img img {
    width: 300px;
    height: 300px;
}
.why_oso-item:nth-child(1):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    right: unset;
    left: 50px;
    top: -130px;
    z-index: -1;
}
.why_oso-item:nth-child(2) {
    align-self: self-end;
    padding: 0;
}
.why_oso-item:nth-child(2) .why_oso-item--img {
    position: absolute;
    left: 190px;
    z-index: -1;
    top: -126px;
}
.why_oso-item:nth-child(2) .why_oso-item--img img {
    width: 300px;
    height: 300px;
}
.why_oso-item:nth-child(3) .why_oso-item--img {
    position: absolute;
    right: unset;
    z-index: -1;
    top: -126px;
    left: 140px;
}
.why_oso-item:nth-child(3):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    right: unset;
    top: -205px;
    left: 10px;
    z-index: -1;
}
.why_oso-item:nth-child(2):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: 10px;
    top: -205px;
    z-index: -1;
}

    .form_oso-name {
        max-width: 100%;
    }
    .left_hero {
        padding: 50px;
        gap: 15px;
    }
    .hero_descr p {
        font-size: 14px; 
    }
    .techno_item {
        display: flex;
        gap: 28px;
        flex-direction: column;
    }
    .techno_item:nth-child(2) {
        flex-direction: column;
    }
    .techo_img {
        width: 100%;
        height: auto;
    }
    .techno_adv-info {
        justify-content: flex-end;
    }
    .etaps_item {
        width: 100%;
        max-width: 100%;
    }
    .techno h2, .why_oso-header .h2, .etaps .h2 { 
        font-size: 26px; 
    }
    .techno_descr { 
        font-size: 14px; 
    }
    .form_oso-container {
        padding: 42px 34px 0 42px;
    }
    .form_oso-container:after {
        content: '';
        background: url(/images/poligrafia/box.png);
        position: relative;
        display: block;
        right: auto;
        bottom: auto;
        width: 368px;
        height: 276px;
        background-size: cover;
        background-repeat: no-repeat;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero_banner {
        background: none;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
        .left_hero {
        padding: 50px 50px 0 50px;
        gap: 15px;
    }
        .hero_banner:after {
        content: '';
        background: url(/images/poligrafia/hero_banner1.png);
        position: relative;
        display: block;
        right: auto;
        bottom: auto;
        width: 80%;
        height: 286px;
        background-size: contain;
        background-repeat: no-repeat;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 800px) {
    video { 
        width: 100%;
        height: max-content;
        position: relative;
        left: 0;
        top: -20px;
        z-index: 1;
    }
    .hideshow { 
        display: none;
    }
}
@media screen and (max-width: 767px) { 
    .form_oso form {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.form_oso .b24-form-btn-container {
    align-items: baseline;
    margin-left: 0;
    max-width: 100%;
    order: 2;
}
    .why_oso-item--descr {
        padding: 0px 200px 34px 34px;
    }
    .why_oso-item--name { 
        padding: 34px 170px 14px 34px;
    }
        .why_oso-item--name {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        }
            .why_oso-item--descr {
        font-weight: 400;
        font-size: 12px;
            }
                .why_oso-item:nth-child(1) .why_oso-item--img img {
        width: 220px;
        height: 230px;
    }
        .why_oso-item:nth-child(2) .why_oso-item--img img {
        width: 190px;
        height: 240px;
    }
.why_oso-item:after {
    font-size: 160px;
}
.why_oso-item:nth-child(1):after {
    left: 10px;
}
.why_oso-item:nth-child(2):after,
.why_oso-item:nth-child(3):after {
    top: -130px

}
.why_oso-item--descr {
    padding: 0px 14px 34px 34px;
}
.why_oso-item--name {
    padding: 34px 14px 14px 34px;
}
    .hero_banner:after {
        width: 80%;
        height: 256px;
    }
    .form_oso-list {
        gap: 16px;
        display: flex;
        flex-direction: column;
        max-width: 814px;
        justify-content: flex-start;
        margin-bottom: 32px;
    }
    .form_oso-item {
        color: white;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        max-width: 100%;
    }
    .form_oso-item-name {
        font-weight: 500;
        font-size: 16px;
        line-height: 140%;
        max-width: 100%;
    }
    .form_oso-name {
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        color: white;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .absolute_know {
        padding: 44px;
        max-width: 100%;
        width: 100%;
    }
    .absolute_video img {
        border-radius: 24px;
        max-width: 100%;
    }
    .name_absolute { 
        font-size: 20px; 
        margin-bottom: 10px;
    }
    .techno_descr { 
        font-size: 10px; 
    }
    .techno h2, .why_oso-header .h2, .etaps .h2 { 
        font-size: 20px; 
    }
    .techo_img img {
        max-width: 100%;
    }
    .techno_list {
        gap: 20px;
    }
}

@media screen and (max-width: 575px) {
    video {
        top: -40px;
    }
    .slider_oso .print-gallery-part-title {
    font-weight: 600;
    font-size: 12px; 
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F8F2EA 109.95%);
    border-radius: 20px;
    padding: 17px 16px;
    height: 70px;
    margin-bottom: -30px;
}
    section.oso_hero,
    section.techno,
    .form_oso,
    .seo-text {
    margin-bottom: 48px;
}
.slider_oso .print-gallery-part {
        margin-bottom: 24px;
}
.slider_oso {
    margin-top: 48px;
}
section.whyus_oso {
    margin-bottom: 48px; 
    padding-bottom: 0;
}
.form_oso {
    margin-top: 48px;
}
    .hero_title {
        font-size: 24px;
    }
    .hero_descr p {
        font-size: 12px;
    }
    .techno h2, .why_oso-header .h2, .etaps .h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .techno_item-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #3e3e3e;
    margin-bottom: 4px;
}
.techno_item-descr {
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
    margin-bottom: 16px;
}
.techno ul { 
    margin: 16px 0 16px 0;
}
.techno_adv-button {
    font-size: 12px;
}
.techno ul li {
    font-size: 12px;
}
.techno_adv-colors { 
    font-size: 12px;
}
.techno_adv-info {
    font-size: 12px;
}
.etaps_item-name:before {
    counter-increment: list-etap;
    content: counter(list-etap);
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.etaps_item-name { 
    font-size: 12px; 
    margin-left: 40px;
    margin-bottom: 16px;
}
.etaps_item-descr {
    color: #8C8C8C;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
}
    .form_oso-name { 
        font-size: 20px;
    }

    .why_oso-item {
        margin-top: 156px;
    }
        .why_oso-item--name { 
        font-size: 12px; 
        padding: 32px 24px 8px 32px;
        }
        .why_oso-item--descr { 
        font-size: 12px; 
        padding: 0px 24px 32px 32px;
        }
        .why_oso-item:after {
            font-size: 140px;
        }
            .why_oso-item:nth-child(1) .why_oso-item--img img {
        width: 177px;
        height: 180px;
    }
        .why_oso-item:nth-child(1) .why_oso-item--img {
        position: absolute;
        right: unset;
        left: 80px;
        z-index: -1;
        top: -130px;
    }
    .why_oso-item:nth-child(2) .why_oso-item--img img {
        width: 118px;
        height: 180px;
    }
    .why_oso-item:nth-child(2):after {
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: 10px;
    top: -135px;
    z-index: -1;
}
.why_oso-item:nth-child(2) .why_oso-item--img {
        position: absolute;
        left: 120px;
        z-index: -1;
        top: -126px;
    }
    .why_oso-item:nth-child(3) .why_oso-item--img img {
    width: 135px;
    height: 180px;
}
.why_oso-item:nth-child(3) .why_oso-item--img {
    left: 120px;
}
.why_oso-item:nth-child(3):after {
    top: -135px;
}
    .why_oso-list {
        gap: 0;
    }
    .hero_banner:after {
        width: 120%;
        height: 206px;
    }
        .hero_banner:after {
        width: 120%;
        height: 266px;
    }
    .left_hero {
        padding: 24px 24px 0 24px;
        gap: 15px;
    }
    .oso_container { 
        border-radius: 40px; 
    }
    .form_oso-container:after {
        width: 268px;
        height: 206px;
    }
    .form_oso-item-name {
        font-weight: 400;
        font-size: 12px;
    }
    .absolute_know {
        padding: 24px;
        max-width: 100%;
        width: 100%;
        border-radius: 24px;
    }
    .name_absolute {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .descr_absolute {
        font-size: 14px;
        line-height: 145%;
    }
    .form_oso-container {
        padding: 24px 24px 0 24px;
    }
}

@media screen and (max-width: 425px) {
    .faq_oso .faq__header {
        padding: 14px 28px 14px 16px;
    }
    .faq_oso .faq__icon {
        min-width: 37px;
        width: 37px;
        height: 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #DBFFDD;
        border-radius: 8px;
        margin-left: 20px;
        color: #3DB845;
        font-family: var(--inter);
        font-weight: 500;
        font-size: 14px;
        transition: 200ms ease all;
    }
    .faq_oso .faq__item-title {
            font-size: 10px;
            line-height: 1.2;
        }
    .name_absolute, .descr_absolute {
        font-size: 12px;
    }
    .form_oso-item img {
        width: 20px;
        height: 20px;
    }
}
/* /vpp page */
.hero_vpp .container {
    max-width: 1520px;
}
/* .hero_vpp-container {
    background: url(/images/vpp/heroback.png);
    padding: 72px 85px 105px 85px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
} */
.hero_vpp-container {
    background: url(/images/vpp/heroback.png);
    padding: 72px 85px 95px 85px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 65px;
    position: relative;
    overflow: hidden;
}
.hero_vpp-header {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 34px;
    line-height: 120%;
    color: white;
    margin-bottom: 25px;
    max-width: 50%;
}
.hero_vpp-name {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: white;
    margin-bottom: 8px;
}
.hero_vpp-descr {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: white;
}
.hero_vpp-list {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 42px;
}
.hero_vpp-item {
    max-width: 177px;
    position: relative;
}
.hero_vpp-item:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    border-left: 2px solid #3DB845;
    left: -8px;
}
.hero_vpp-item:nth-child(3) .hero_vpp-name {
    max-width: 150px;
}
section.vpp_rulons {
    margin-bottom: 80px;
}
a.button.btn.hero_vpp-greenbtn {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    padding: 16px 24px;
}
.hero_vpp-buttons {
    display: flex;
    gap: 32px;
}
a.button.btn.hero_vpp-transparentbtn {
    background: transparent;
    border: 1px solid white;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    padding: 16px 24px;
}
.hero_vpp-container:after {
    content: url(/images/vpp/herobg.png);
    position: absolute;
    width: 779px;
    height: 555px;
    right: 50px;
    top: 0;
}
/* .hero_vpp-container:after {
    content: '';
    background: url(/images/vpp/herobg.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 779px;
    height: 555px;
    right: 50px;
    top: 0;
} */
section.vpp-ankors {
    margin-top: -15px;
    margin-bottom: 80px;
}
.vpp_ankors-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
    padding: 36px 26px 20px;
    border-radius: 0 0 20px 20px;
}
.utp_utp-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}
.vpp_utp-item {
    background: linear-gradient(100.92deg, #F5F7FA -1.81%, #F8F2EA 109.95%);
    padding: 10px 26px 40px 26px;
    display: flex;
    flex-direction: column;
    max-width: 453px;
    align-items: center;
    text-align: center;
    border-radius: 24px;
}
.vpp_utp-descr {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #3e3e3e;
}
.vpp_utp-descr span {
    font-weight: 700;
}
section.vpp_utp {
    margin-bottom: 80px;
}
.vpp_rulons-container {
    display: flex;
    flex-direction: row;
    gap: 56px;
}
.vpp_rulons-left {
    background: url(/images/vpp/rulonbg.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 48px;
    max-width: 443px;
}
.vpp_rulons-right {
    background: linear-gradient(138.2deg, #E9F0F8 55.51%, #80BDF6 135.42%);
    padding: 64px;
    border-radius: 32px;
    max-width: 941px;
}
.vpp_rulons-left-name {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    max-width: 350px;
    color: white;
}
.vpp_rulons-right-name {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: black;
    margin-bottom: 16px;
    max-width: 829px;
}
.vpp_rulons-right-descr {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #3e3e3e;
    max-width: 829px;
    margin-bottom: 24px;
}
.vpp_rulons-right-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 17px;
    justify-content: center;
}
.vpp_rulons-right-item {
    width: 48%;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.vpp_ankors-item {
    z-index: 111;
}
.vpp_ankors-item a {
    transition: 300ms all ease;
    border-bottom: 1px dashed transparent;
    padding-bottom: 2px;
}
.vpp_ankors-item a:hover {
    border-bottom: 1px dashed #3DB845;
}
.vpp_rulons-right-item-name {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    line-height: 145%;
    color: #3e3e3e;
}
.kachestvo_container {
    padding: 64px 48px;
    background: url(/images/vpp/kachbg.png);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 30px;
    height: 358px;
    position: relative;
}
.kach_header {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: white;
    margin-bottom: 32px;
    max-width: 49%;
}
.custom-kachestvo-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.custom-input_kachestvo input.custom-input__field {
    border: 1px solid white;
    background: transparent;
    width: 340px;
    padding: 17px 16px;
    font-size: 16px;
    color: white;
}
input.custom-input_kach-submit.button {
    padding: 16px 24px;
    font-size: 16px;
}
.kach-custom p {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 0 0;
}
.kach-custom p a {
    text-decoration: underline;
}
.kach-custom span {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: white;
}
.kach-custom span b {
    color: #FF9966;
    margin-right: 5px;
}
.kachestvo_form {
    position: relative;
    z-index: 10;
}
.kachestvo_container:after {
    content: url(/images/vpp/kachrulon.png);
    position: absolute;
    right: 0;
    bottom: -3px;
}
section.kachestvo {
    margin-bottom: 80px;
}
section.vpp_advantages {
    margin-bottom: 80px;
}
.vpp_adv-container {
    /* background: linear-gradient(138.2deg, #E9F0F8 55.51%, #80BDF6 135.42%); */
    background: linear-gradient(40deg, #80BDF6 9.51%, #E9F0F8 35.42%);
    padding: 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 35px;
    border-radius: 32px;
}
.vpp_adv-container:after {
    content: '';
    background: url(/images/vpp/advbg.png);
    position: absolute;
    width: 100%;
    height: 878px;
    top: 0;
    right: -130px;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
}
.vpp_adv-leftside,
.vpp_adv-rightside {
    position: relative;
    z-index: 11;
}
.vpp_adv-leftside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 416px;
}
.vpp_adv-header {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #3e3e3e;
}
.vpp_adv-footer-number {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #1E3D7B;
}
.vpp_adv-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vpp_adv-footer-descr {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3e3e3e;
}
.vpp_adv-footer-number {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #1E3D7B;
}
.vpp_adv-footer-number span {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 140px;
    line-height: 100%;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(180deg, #102D69 0%, rgba(24, 67, 155, 0.62) 100%);
}
.vpp_adv-listItems {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.vpp_avd-item {
    background: white;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
}
.vpp_adv-item-name {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #000;
}
.vpp_upak-header {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #3e3e3e;
    margin-bottom: 32px;
}
.vpp_upak-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
} 
.vpp_upak-item {
    background: #F2F2F2;
    border-radius: 24px;
    max-width: 345px;
    padding: 24px 45px 55px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}
.vpp_upak-name {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #000;
}

section.vpp_upak, .vpp_security {
    margin-bottom: 80px;
}
/* .vpp_security-container {
    background: url(/images/vpp/secbg.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 89px 80px;
} */
.vpp_security-container {
    background: url(/images/vpp/secbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 89px 80px;
    border-radius: 55px;
}
.vpp_security-header {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    color: white;
    margin-bottom: 16px;
    max-width: 70%;
}
.vpp_security-header span {
    font-weight: 600;
}
.vpp_security-descr {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    vertical-align: bottom;
    color: white;
    margin-bottom: 32px;
}
.vpp_bread .breadcrumbs {
    margin-top: 0;
    margin-bottom: 15px;
}
.vpp_etaps .stages_of_interaction > div{
    transition: 300ms all ease;
}
.vpp_etaps .stages_of_interaction > div:hover {
    transform: rotate(4deg);
}

.kachestvo .b24-form-wrapper {
    margin: 0;
    background: transparent;
}
.kachestvo .b24-form-header.b24-form-padding-side {
    display: none;
}
.kachestvo .b24-form-content.b24-form-padding-side {
    padding: 0;
}
.kachestvo form > div:nth-child(1) {
    display: flex;
    gap: 16px;
}
.kachestvo form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
    align-items: start;
}
.kachestvo form > div:nth-child(2){
    order: 3;
    grid-column: span 2 / span 2;
}
.kachestvo .b24-form-field input {
    border: 1px solid white;
    border-radius: 12px;
    color: white;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

.kachestvo .b24-form-control-string .b24-form-control:focus:not([readonly]) {
    background-color: transparent;
}

.kachestvo .b24-form-control-string .b24-form-control-label {
    color: white;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.kachestvo .b24-form-field-agreement .b24-form-field-agreement-link { 
    color: white;
}
.kachestvo .b24-form-wrapper {
    max-width: 65%;
    min-height: max-content;
    z-index: 1;
}
/* .kachestvo .b24-form-btn-container {
    margin-left: -100px;
} */
.kachestvo .b24-form-btn {
    border-radius: 12px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}
.kachestvo .b24-form-btn-block {
    padding: 0;
}

@media screen and (max-width: 1510px) {
    .vpp_ankors-list {
    display: flex
;
    gap: 20px;
    justify-content: center;
    background: linear-gradient(101.79deg, #F1F0EF 13.98%, #F9F3EE 71.88%);
    padding: 36px 26px 20px;
    border-radius: 0 0 20px 20px;
    max-width: 95%;
    margin: 0 auto;
}
}

@media screen and (max-width: 1440px) {
    .hero_vpp-container:after {
        width: 45%;
    }
    .vpp_upak-item {
    background: #F2F2F2;
    border-radius: 24px;
    max-width: 345px;
    padding: 24px 25px 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}
.vpp_ankors-item {
    z-index: 111;
    font-size: 14px;
}
.hero_vpp-header {
    max-width: 60%;
}
.kachestvo_container {
    padding: 64px 48px;
    background: url(/images/vpp/kachbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    height: auto;
    position: relative;
}
}

@media screen and (max-width: 1240px) { 
    .kach_header {
        max-width: 60%;
    }
    .vpp_ankors-item {
    z-index: 111;
    font-size: 16px;
}
    .hero_vpp-container {
        padding: 42px 45px 65px 55px;
    }
    .vpp_upak-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
        .vpp_ankors-list { 
        flex-direction: column;
    }
    .vpp_upak-item {
        background: #F2F2F2;
        border-radius: 24px;
        max-width: 335px;
        width: 100%;
    }

    .vpp_adv-footer-number span {
        font-family: 'Montserrat';
        font-weight: 600;
        font-size: 110px;
        }
        .vpp_adv-leftside {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 236px;
    }
    .kachestvo_container:after {
    content: url(/images/vpp/kachrulon.png);
    position: absolute;
    right: 0;
    top: auto;
    bottom: -2px;
}
.kachestvo_container {
    padding: 64px 48px;
    background: url(/images/vpp/kachbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    height: auto;
    position: relative;
}
.custom-kachestvo-group {
    display: flex
;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
section.vpp_advantages,
section.kachestvo,
section.vpp_upak, .vpp_security,
section.vpp_rulons, section.vpp_utp,
section.vpp-ankors {
    margin-bottom: 30px;
}
.vpp_etaps .stages_of_interaction {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.kachestvo .b24-form-wrapper {
    max-width: 80%;
    min-height: max-content;
    z-index: 1;
}
}
@media screen and (max-width: 991px) {
    .kachestvo .b24-form-wrapper {
    max-width: 100%;
    min-height: max-content;
    z-index: 1;
}
    .vpp_security-header {
        max-width: 100%;
    font-size: 26px;
    line-height: 120%;
    }
    .vpp_security-container {
    padding: 49px 40px;
    }
        .kach_header {
        max-width: 100%;
    }
    .kachestvo_container:after {
        opacity: 0.5;
    } 
    .hero_vpp-container:after {
        display: none;
    }
    .hero_vpp-header {
        max-width: 90%;
    }
    .vpp_adv-container {
    padding: 64px;
    position: relative;
    overflow: hidden;
    display: flex
;
    gap: 15px;
    border-radius: 32px;
    flex-wrap: wrap;
    flex-direction: column;
}
.vpp_adv-leftside {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
}
.vpp_adv-rightside {
    position: relative;
    z-index: 11;
    width: 100%;
}
    .vpp_rulons-container {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }
    .vpp_rulons-left {
        background: url(/images/vpp/rulonbg.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 48px;
        max-width: 100%;
        width: 100%;
        border-radius: 65px;
    }
    .vpp_rulons-left-name {
        font-family: 'Montserrat';
        font-weight: 500;
        font-size: 32px;
        line-height: 120%;
        max-width: 100%;
        color: white;
    }
    .vpp_rulons-right {
        background: linear-gradient(138.2deg, #E9F0F8 55.51%, #80BDF6 135.42%);
        padding: 34px;
        border-radius: 32px;
        max-width: 100%;
    }
    .vpp_rulons-right-name { 
        font-size: 30px;
        line-height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .kachestvo form {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
}
.kachestvo form > div:nth-child(1) {
    gap: 0;
    flex-direction: column;
}
.faq_oso .faq__answer {
    padding: 25px 0 25px 15px;
}
.kachestvo .b24-form-btn-container {
    margin-bottom: 15px;
}
    .vpp_etaps .stages_of_interaction {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
    .kach_header {
        font-size: 26px;
    }
    .kachestvo_container {
        padding: 34px 28px;
    }
    .hero_vpp-header {
        font-size: 24px;
    }
    .hero_vpp-item:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    border-left: 2px solid #3DB845;
    left: -15px;
}
.hero_vpp-item {
    max-width: 100%;
}
.hero_vpp-list {
    display: flex
;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 42px;
}

    .vpp_upak-list {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
}
.vpp_upak-item {
    background: #F2F2F2;
    border-radius: 24px;
    max-width: 100%;
    width: 100%;
        align-items: center;
}
    .vpp_adv-listItems {
    display: grid
;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}
    .vpp_rulons-right-list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 17px;
        justify-content: center;
    }
    .vpp_rulons-right-item {
        width: 100%;
        background: #fff;
        padding: 16px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .utp_utp-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .vpp_utp-item { 
        padding: 8px 18px 26px 18px; 
        max-width: 100%;
        width: 100%; 
    }
    .hero_vpp-buttons {
    display: flex
;
    gap: 12px;
    flex-direction: column;
}
.hero_vpp-container {
    background-position: center;
}
}
@media screen and (max-width: 610px) {
    .vpp_adv-container {
    background: linear-gradient(138.2deg, #E9F0F8 55.51%, #80BDF6 135.42%);
    padding: 34px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 15px;
    border-radius: 24px;
    flex-wrap: wrap;
    flex-direction: column;
}
.vpp_adv-header {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3e3e3e;
}
.vpp_adv-footer-number span {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 70px;
}
}
@media screen and (max-width: 545px) {
    .vpp_rulons-left {
        padding: 28px;
    }
    .vpp_rulons-left-name {
        font-size: 22px; 
        text-align: center;
    }
    .kachestvo_container:after {
        
        width: 100%;
    }
    .kachestvo_container {
        overflow: hidden;
    }
    section.hero_vpp {
        margin-bottom: 35px;
    }
    section.vpp-ankors {
        display: none;
    }
    a.button.btn.hero_vpp-transparentbtn {
        background: var(--green);
        border: 1px solid var(--green);
    }
    a.button.btn.hero_vpp-transparentbtn:hover {
        background: #ffffff;
        color: var(--green);
    }
}

@media screen and (max-width: 434px) {
    .custom-input.custom-input_kachestvo {
    max-width: 297px;
    width: 297px;
}
.custom-input_kachestvo input.custom-input__field {
    border: 1px solid white;
    background: transparent;
    width: 100%;
    max-width: 100%;
}
}

/* https://mehed.bitrix24.ru/company/personal/user/151/tasks/task/view/78655/ добавление представительства start */ 


.header__timework-title {
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}
.header__top {
    padding: 10px 0;
}

.header__center {
    margin-top: 20px;
}
.header__top .dropdown {
    padding-top: 28px;
}
.header__center .header__offices .dropdown__container {
    width: 180px;
}
.header__center .dropdown {
    padding-top: 28px;
}
.header__timework .dropdown__container { 
    width: 189px;
}
.header__timework .dropdown {
    left: -50px;
}
.header__timework-weekdays {
    display: flex;
    margin-right: 0px;
    gap: 0;
    margin-bottom: 0;
    flex-direction: column;
}
.header__timework-weekdays b,
.header__timework-weekends b {
    color: #3DB845;
    font-weight: 500;
}

.header__timework-weekdays,
.header__timework-weekends {
    font-family: var(--inter);
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;  
}

.header__nav-item-orange {
    background: #FF7836;
    border-radius: 4px;
    padding: 0px 8px;
    color: #FFFFFF;
    font-family: Inter;
    line-height: 24px;
    transition: 200ms ease all;
}
.header__nav-item-group:hover .header__nav-item.header__nav-item-orange {
    color: #FFFFFF;
    background: #DE5D1D;
}
.header__current-location::before {
    content: url(/images/loc.svg);
    margin-right: 8px;
}
.header__offices-title:before {
    content: url(/images/map.svg);
    margin-right: 8px;
}
span.header__offices-title {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.header__offices {
    position: relative;
}
.header__offices .dropdown__container {
    font-family: var(--inter);
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 240px;
} 

.header__center .header__contacts .header__contacts-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 20px;
}
.header__mobile-contacts .header__timework-title {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .select__option-i:hover .select__option-tooltip {
        z-index: 1;
    }
@media screen and (max-width: 1365px) {
    .header__center {
        margin-top: 0;
    }
}
@media screen and (max-width: 1365px) {
    .header__offices.header__nav-item-group--dropdown:hover .dropdown {
        display: block;
    }
}
/* https://mehed.bitrix24.ru/company/personal/user/151/tasks/task/view/78655/ добавление представительства end */

.lt_bonus_cont_success {
    display: none!important;
}


/* new css for delivery start */
.delivery-pickup__map.withimg {
    width: 100%;
    height: 540px;
    border-radius: 36px;
    background: #f5f5f5;
}
.delivery-pickup__map.withimg img {
    position: absolute; 
    top: 0;
    right: 0;
    max-width: 100%;
}
.padd40 {
    padding-bottom: 5px;
}
p.green-delivery-text {
    color: #3DB845;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
}
.slider_map-img {
    width: 100%; 
}
.slider_delivery {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    margin: 25px auto 13px;
    text-align: center;
    max-width: 95%;
}
.slider_delivery .swiper-slide { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.slider_delivery .swiper-slide img {
    padding: 32px 23px;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    height: 95px;
    max-width: 195px;
    object-fit: contain;
}
.slider_delivery .swiper-wrapper {
    justify-content: center;
}
@media screen and (max-width: 1280px) {
    .slider_delivery .swiper-slide img { 
        height: 85px;
        max-width: 155px;
    }
}

@media screen and (max-width: 991px) {
    .slider_delivery .swiper-slide img { 
        height: 80px;
        max-width: 110px;
    }
    .delivery-pickup__info-subtitle { 
        font-weight: 700; 
    }
}
@media screen and (max-width: 768px) {
    
    .delivery-pickup__info-items, .production__list li, .green-delivery-text { 
        font-size: 12px;
        line-height: 145%;
    }
    .slider_delivery { 
        max-width: 100%;
        margin: 0px auto 13px;
    }
    .delivery-pickup__map.withimg {
        width: 100%;
        height: 315px;
    }
    .slider_map-img {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
}
/* new css for deliver end */