/* ------------------------------------------------------------------------ */

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 16px;
    line-height: 20px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input[type=submit] {
cursor:pointer;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
    background-color: transparent;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

p {
    margin-bottom: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

/* ---------------------------------------------------------------------------- */

:root {
    --font-family: "Tilda Sans", sans-serif;

    --blue-light: #49b7cf;
    --green-light: #3de9b0;
    --wh: #fff;
    --bl: #262626;
    --light-gray: #f6f6f6;
    --green-dark-brand: #1c5369;
    --gray-border: #eee;
    --gray-dark-text: #737373;
    --gray-light-text: #e0e0e0;
    --gray-3: #828282;
}

body {
    font-family: var(--font-family);
    background: #FFF;
    overflow-x: hidden;
}

a {color: var(--blue-light);}

.wrapper {
    overflow: hidden;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.title {
    font-weight: 700;
    font-size: 32px;
    line-height: 112%;
    color: var(--bl);
}

/* ------------------header--------------------- */

.header {
    margin: 0px 0px 25px 0px;
}

.header__top {
    padding: 20px 0;
    margin: 0px 0px 22px 0px;
    border-bottom: 1px solid var(--gray-border);
}

.header__container {}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {}

.header__logo-img {}

.header__list {
    display: flex;
    align-items: center;
    gap: 37px;
}

.header__item {
    position: relative;
}

.header__item-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);

    display: flex;
    align-items: center;
    gap: 6px;
}

.header__item-link-arrow {
    transition: all .2s ease;
}

.header__item-link--active .header__item-link-arrow {
    transform: rotate(180deg);
}


.header__list-list-sub-body {
    position: absolute;
    top: calc(100%);
    left: 0;
    z-index: 2;
    min-width: 124px;
    padding: 28px 0px 0px 0px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all .2s ease;
}



.header__list-list-sub {

    background: var(--light-gray);
    border-top: 2px solid var(--blue-light);
    border-radius: 0 0 8px 8px;
    padding: 14px;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header__item-sub {}

.header__item-link-sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
}

.header__personal-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__personal-area-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
}

.header__personal-area-icon {
    background: var(--light-gray);
    border-radius: 6px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__bottoom {}

.header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.header__catalog {
    padding: 16px 30px;
    background: var(--blue-light);
    border-radius: 8px;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: all .3s ease;
}

@media(min-width:1021px) {
    .header__catalog:hover {
        background: var(--green-dark-brand);
    }
}

.header__catalog--active {
    background: var(--green-dark-brand);
}

.header__catalog-icon--hide {
    display: none;
}

.header__catalog--active .header__catalog-icon--hide {
    display: block;
}

.header__catalog--active .header__catalog-icon {
    display: none;
}

.header__catalog-icon {}

.header__catalog-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.33;
    color: var(--wh);
margin-bottom:0;
}

.header__serch {
    max-width: 422px;
    width: 100%;
}

.header__serch-label {
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-border);
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 10px 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

.header__serch-inp {
    width: 100%;

    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    overflow: hidden;
    padding: 0px 10px 0px 0px;
}

.header__serch-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    left: 20px;
    pointer-events: none;

    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--gray-3);
}

.header__serch-text--hide {
    transform: translateX(-120%) translateY(-50%);
}

.header__serch-icon {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header__right {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    width: 100%;
    white-space: nowrap;
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 0px 10px 0px 0px;
}

.header__tel {
    font-weight: 700;
    font-size: 22px;
    line-height: 127%;
    color: var(--bl);
}

.header__email {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: right;
    color: var(--blue-light);
}

.header__whats {
    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 16px 20px;
    transition: all .3s ease;
}



.header__whats-icon {}

.header__whats-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
margin-bottom:0;
}

.request {
    border-radius: 8px;
    padding: 16px 30px;
    background: var(--blue-light);

    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--wh);
    transition: all .3s ease;
}

/* ----------------burger------------ */

.burger-btn,
.header__serch-mob {
    display: none;
}

.burger-btn--active .burger-btn-icon {
    display: none;
}

.burger-btn--active .burger-btn-icon-active {
    display: block;
}


.burger-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: calc(100dvh - 82px);

    background: var(--wh);

    overflow: auto;

    padding: 0px 0px 30px 0px;

    transition: all .5s ease;
    transform: translateX(-100%);
}

.burger-menu--active {
    transform: translateX(0%);
}

.burger-menu__inner {}

.burger-menu__catalog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.burger-menu__catalog-title {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--bl);

    margin: 0px 0px 16px 0px;
}

.accrodion {
    cursor: pointer;
    transition: all .3s ease;
}

.accrodion--active {
    border-radius: 5px;
    padding: 10px 16px;
    background: var(--light-gray);
}

.accrodion-name {
    /* padding: 10px 16px; */

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--bl);

    transition: all .3s ease;
}

.accrodion-name svg {
    transition: all .3s ease;
}

.accrodion-name--active.accrodion-name svg {
    transform: rotate(-90deg);
}

.accrodion__content {
    height: 0;
    overflow: hidden;

    transition: all .3s ease;
    opacity: 0;
}

.accrodion__content--active {
    margin: 10px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    height: 100%;
    opacity: 1;
}

.catalog__item-sub-box {}

.catalog__item-sub-title {}

.catalog__item-sub-list {}

.catalog__item-sub-item {}

.catalog__item-sub-link {}

/* --------------catalog-------------- */

.catalog-menu {
    position: absolute;
    top: 185px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 185px);
    z-index: 20;
    overflow: auto;
    padding: 0px 0px 40px 0px;

    box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.04);
    background: var(--wh);

    transform: translateX(-100%);
    transition: all .5s ease;
}

.catalog-menu--visible {
    transform: translateX(0%);
}

.catalog-menu__container {
    height: 100%;
}

.catalog-menu__inner {
    display: flex;
}

.catalog-menu__list {
    position: relative;
    max-width: 390px;
    width: 100%;

    padding: 40px 0px 0px 0px;
    border-right: 1px solid var(--gray-border);

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.catalog__item {
    border-radius: 6px;
    padding: 14px 18px;
    max-width: 360px;
    margin: 0px 31px 0px 0px;
    cursor: pointer;
}

.catalog__item--active {
    background: var(--light-gray);
    position: relative;
}

.catalog__item--active::after {
    content: '';

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    width: 12px;
    height: 18px;

    background-image: url("/images/arrow.svg");
    background-repeat: no-repeat;
}

.catalog-item-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
}

.catalog-menu__list-content {
    display: none;
    width: 100%;
    padding: 40px 0px 0px 0px;
}

.catalog-menu__list-content--active {
    display: block;
}

.catalog__list-sub {
    display: flex;
    justify-content: space-between;
    gap: 34px 20px;
    width: 100%;
    padding: 0px 0px 40px 69px;
}


.catalog__item-sub {
    flex: 0 1 47%;
    max-width: 301px;

    display: flex;
    flex-direction: column;
    gap: 34px;
}

.catalog__item-sub-box {}

.catalog__item-sub-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--blue-light);
    margin: 0px 0px 16px 0px;
    display: block;
}

.catalog__item-sub-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.catalog__item-sub-item {}

.catalog__item-sub-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
}

/* -------------page__preview---------------- */

.page__preview {
    margin: 0px 0px 60px 0px;
}

.preview__container {}

.preview__inner {
    overflow: hidden;
    background: var(--green-dark-brand);
    border-radius: 8px;
    z-index: 1;

    position: relative;
}

.preview__slider {}

.preview__slide {
    opacity: 0 !important;
    padding: 33px 0 27px 30px;
}

.swiper-slide-active {
    opacity: 1 !important;
}

.preview__content {
    min-height: 258px;
    width: 100%;

    padding: 0px 580px 0px 0px;

    position: relative;
    z-index: 1;
}

.preview__content::after {
    content: '';

    position: absolute;
    top: -21px;
    left: 173px;
    z-index: -1;
    width: 100%;
    max-width: 527px;
    height: 294px;

    background-image: url("/images/bg-elem.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.preview__title {
    font-weight: 700;
    font-size: 38px;
    line-height: 105%;
    color: var(--wh);

    margin: 0px 0px 14px 0px;
}

.preview__subtitle {
    font-weight: 400;
    font-size: 22px;
    line-height: 127%;
    color: var(--wh);
}

.preview__pos-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 680px;
    z-index: -1;
}

.preview__pos-bg::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;
    width: 125px;
    height: 100%;

    background: linear-gradient(91deg, #1c5369 0%, rgba(28, 83, 105, 0) 100%);
}

.preview__pos-bg-img {}

.preview__pagination {
    position: absolute;
    top: auto !important;
    left: 30px !important;
    bottom: 27px !important;
    right: auto;
    width: 100%;
    height: 2px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 4px;
}

.swiper-pagination-bullet {
    border-radius: 4px;
    width: 50px;
    transition: all .6s ease;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    width: 70px;
    background: var(--wh);
    opacity: 1;
}

/* --------------------------- */

.page__catalog {
    margin: 0px 0px 60px 0px;
}

.catalog__container {}

.container {}

.catalog__inner {}

.catalog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;

    margin: 0px 0px 40px 0px;
}

.catalog__title {}

.catalog__title-text {
    margin: 0px 0px 2px 0px;
}

.catalog__subtitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--blue-light);
}

.catalog__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--gray-dark-text);
}

.catalog__desc-text {}

.catalog__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.catalog__card {
    border-radius: 8px;
    border: 8px solid var(--light-gray);
    transition: all .3s ease;

    position: relative;
    z-index: 1;
    overflow: hidden;
display:block;
}



.catalog__card-inner {
    padding: 15px 21px 19px 21px;

    min-height: 324px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 80px;

    position: relative;
    overflow: hidden;
}

.catalog__card-inner::after {
    content: '';

    position: absolute;
    top: 0;
    left: 0;
    width: 190%;
    height: 135%;
    z-index: -2;
    transform: rotate(10deg) translateX(-8%);
    transition: all .2s ease;

    background: var(--light-gray);
}
a.catalog__card .catalog__card-inner::after {
display:none;
}





.catalog__card-top {}

.catalog__card-value {
    display: inline-block;
    margin: 0px 0px 10px 0px;

    font-weight: 700;
    font-size: 14px;
    line-height: 129%;
    color: var(--blue-light);

    border: 1px solid var(--gray-border);
    border-radius: 4px;
    padding: 8px 12px;
    background: var(--wh);
}

.catalog__card-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 115%;
    color: var(--bl);
    margin: 0px 0px 6px 0px;
}

.catalog__card-subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--gray-dark-text);
}

.catalog__card-link {
    display: inline-block;
    transform: translateX(-155%);
    transition: all .3s ease;
}

.catalog__card-link:hover.catalog__card-link svg rect {
    fill: var(--green-dark-brand);
}

.catalog__card-img {
    mix-blend-mode: darken;

    position: absolute;
    bottom: 11px;
    right: 21px;
    z-index: -1;
    max-width: 156px;

}

/* -------------------------------- */

.page__contacts {
    padding: 58px 0;
    background: var(--light-gray);
}

.contacts__container {}

.contacts__inner {
    display: flex;
    align-items: center;
    gap: 54px;
    padding: 44px 0;
    position: relative;
    z-index: 1;
}

.contacts__inner::after {
    content: '';

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 893px;
    z-index: -1;

    background-image: url("/images/bg.svg");
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.contacts__map {
    max-width: 754px;
    max-height: 468px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.contacts__map iframe {
    height: 468px;
    border-radius: 8px;
}

.contacts__content {}

.contacts__title {
    margin: 0px 0px 6px 0px;
}

.contacts__subtitle {
    font-weight: 400;
    font-size: 22px;
    line-height: 127%;
    color: var(--gray-dark-text);
    margin: 0px 0px 30px 0px;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0px 0px 36px 0px;
}

.contacts__list p {
margin-bottom:0;
}

.contacts__item {}

.contacts__item-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contacts__item-icon {}

.contacts__item-tel-text {
    font-weight: 700;
    font-size: 26px;
    line-height: 115%;
    color: var(--bl);
}

.contacts__item-marker-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);
}

.contacts__item-email-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: right;
    color: var(--blue-light);
}

.contacts__btn {}

/* -----------------footer---------------- */

.footer {
    padding: 50px 0;
}

.footer__container {}

.footer__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
}

.footer__left {}

.footer__logo {
    display: block;
    margin: 0px 0px 17px 0px;
}

.footer__logo-img {}

.footer__text {
    margin: 0px 0px 4px 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: var(--gray-3);
}

.footer__link {
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    text-decoration: underline;
    color: var(--gray-3);
}

.footer__right {
    display: flex;
    align-items: start;
    gap: 122px;
}

.footer__column {}

.footer__column-title {
    margin: 0px 0px 14px 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #bdbdbd;
}

.footer__column-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__column-item {}

.footer__column-item-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--bl);

    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-hide-content {
    display: none;
}

#header__mobile-contacts {display: none; margin: 0 20px 0 auto; flex-direction: column; gap: 5px; text-align:right;}
#header__mobile-contacts p {padding:0;margin:0;font-size:12px;line-height:12px;}

/* всплывающее окно */

#message_box, #message_box_1 {
    display: none;
    position: absolute;
    z-index: 2000;
    width: 100%;
    max-width: 990px;
    padding: 40px;
    border-style: solid;
    border-width: 0px;
    border-color: #d9d9d9;
    background-color: #1C5369;
    border-radius: 8px;
    font-size: 18px;
    line-height: 24px;
}

#message_box table td, #message_box_1 table td {
    padding: 0 20px 15px 0;
}

#close_message {
    float: right;
    margin: 0 0 0 0;
}

#message_box .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
gap:10px;
}

#message_box form, #message_box_1 form {
    /*margin-top: 20px;*/
}

#message_box form .field_name, #message_box_1 form .field_name {
    font-weight: bold;
    margin-bottom: 5px;
}

#message_box form .field_name {
    display:none;
}

#message_box form input[type=text], #message_box form input[type=email], #message_box form input[type=tel], #message_box form textarea {
background-color:#2d6479;
color:#fff;
padding:14px;
border:solid 1px #588191;
border-radius:4px;
width:100%;
}

#message_box form textarea {
height:100px;
}

#message_box form input::placeholder, #message_box form textarea::placeholder {color:#fff;}

#message_box table.basket, #message_box_1 table.basket {
    width: 100%;
}

#message_box table.basket td, #message_box_1 table.basket td {
    padding: 8px;
}

#message_box table.basket tr.head td, #message_box_1 table.basket tr.head td {
    font-weight: bold;
}

#message_box h1, #message_box_1 h1 {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 38px;
    line-height: 38px;
    color: #fff;
}

#message_box a, #message_box_1 a {
    color: #fff;
}

#message_box_1 {
    background-color: #fff;
}

#message_box_1 h1 {
    color: #262626;
}

#close_message a {color:#333;text-decoration:none;font-size:20px;}
#message_box {
    color:#ececec;
}

#curtain {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1600;
    background-color: #000;
    opacity: 0.5;
}

/* стили страницы раздела */

.catalog__inner {
    position: relative;
}

.catalog__cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.catalog__cards_items.mode1 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    margin-bottom: 30px;
}

.catalog__cards_items.mode2 {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.catalog__cards_items.mode2 form {
    display: flex;
    justify-content: space-between;
}

.catalog__cards_items.mode2 .catalog__card {
    display: flex;
}

.twr-image img {
max-width: 100%;
}

.catalog__cards_items.mode2 .catalog__card .twr-image {
    width: 100px;
}

.catalog__cards_items.mode2 .catalog__card .twr-image img {
    width: 100%;
}

.catalog__cards_items.mode2 .catalog__card .twr-shop {
    flex-grow: 1;
}

.catalog__cards_items.mode2 .twr-short-description {
    margin-bottom: 0;
}

.catalog__cards_items.mode3 {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.catalog__cards_items.mode3 form {
    display: flex;
    justify-content: space-between;
}

.catalog__cards_items.mode3 .catalog__card {
    display: flex;
}

.catalog__cards_items.mode3 .catalog__card .twr-image {
    display: none;
}

.catalog__cards_items.mode3 .catalog__card .title {
    font-size: 18px;
}

.catalog__cards_items.mode3 .twr-short-description {
    margin-bottom: 0;
}

.catalog__cards_items .catalog__card {
    border: solid 1px #EEEEEE;
}

.catalog__cards_items .catalog__card .title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.twr-name {
    margin-bottom: 8px;
}

.twr-shop {
    padding: 20px;
    width: 100%;
}

.twr-short-description {
    margin-bottom: 20px;
    color: #737373;
}

.twr-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.twr-actions button {
    height: 35px;
}

.twr-details {
    border: solid 1px #EEEEEE;
    background: #F6F6F6;
    padding: 8px 22px;
    border-radius: 8px;
    color: darkgray;
    font-weight: bold;
}

.twr-basket {
    border: solid 1px #49B7CF;
    background: #49B7CF;
    padding: 8px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}

.twr-basket-bg {
    border: solid 1px #49B7CF;
    background: #49B7CF;
    padding: 16px 40px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}

#pages {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

#pages span {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    border: solid 1px #49B7CF;
    font-size: 14px;
}

#pages a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    border: solid 1px #EEEEEE;
    font-size: 14px;
    font-weight: bold;
    color: #262626;
}

#tabs_type {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 80px;
    right: 0;
}

#tabs_type img {
    cursor: pointer;
    width: 26px;
    height: 26px;
}

.catalog__card:hover .catalog__card-inner::after {
transform: rotate(10deg) translateX(20%);
    /*display: none !important;*/
}

.catalog__card .catalog__card-link {
    transform: none !important;
    display: block;
visibility:hidden;
}

.catalog__card:hover .catalog__card-link {
    transform: none !important;
    display: block;
visibility:visible;
}

/* стили страницы товара */
.product__prev-info {
    display: grid;
    grid-template-columns: 468px 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
.product__prev-info .main-photo {margin-bottom:10px;}
.product__prev-info .main-photo img {
    vertical-align: top;
    width: 100%;
    max-width: 468px;
    border-radius: 8px;
}

.product__full-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 20px;
    /* color: #737373; */
}

.product__full-info table {
    width: 100%;
}

.product__full-info td {
    position: relative;
    padding: 20px 0px 0 0px;
    border-bottom: dotted 1px #E0E0E0;
}

.product__full-info td:last-child {
    text-align: right;
}

.product__full-info h2 {
    font-size: 22px;
    line-height: 26px;
    color: #262626;
    margin-bottom: 18px;
}

.product__buy-info-bnr {
    background: linear-gradient(to right, #1C5369 80%, transparent 90%), url('/images/item-buy-info-bnr.jpg') no-repeat center right / contain;
    border-radius: 8px;
    min-height: 164px;
    padding: 30px;
    padding-right: 20%;
}

.product__buy-info-bnr h2 {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 14px;
    font-weight: bold;
}

.product__buy-info-bnr p {
    color: #fff;
    font-size: 22px;
    line-height: 28px;
}

.product__description {
    font-size: 16px;
    line-height: 20px;
}

.product__description p {
    margin-bottom: 18px;
}

.product__description table {
    margin-bottom: 18px;
}

.add-photos-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.add-photo img {border-radius:4px;}

.form-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
gap:10px;
}

.form-horizontal {
    margin-top: 20px;
}

.form-horizontal .field_name {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-horizontal .field_name {
    display:none;
}

.form-horizontal input[type=text], .form-horizontal input[type=email], .form-horizontal input[type=tel], .form-horizontal textarea {
background-color:#ffffff;
color:#333;
padding:14px;
border:solid 1px #588191;
border-radius:4px;
width:100%;
}

.form-horizontal textarea {
height:100px;
}

/* media */

@media(min-width:1021px) {

    .header__personal-area-icon:hover {
        background-color: var(--green-dark-brand);
    }

    .header__personal-area-icon:hover.header__personal-area-icon svg g path {
        fill: #fff;
    }

    .request:hover {
        background: var(--green-dark-brand);
    }

    .header__whats:hover {
        background: var(--green-dark-brand);
        color: #FFF;
    }

    .header__whats:hover .header__whats-text {
        color: #FFF;
    }

    .header__item:hover .header__list-list-sub-body {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0px);
    }

    .header__item:hover .header__item-link-arrow {
        transform: rotate(180deg);
    }

    .catalog__card:hover {
        border: 8px solid #fff;
        box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.08);
    }

    .catalog__card:hover .catalog__card-inner {
        border-radius: 8px;
    }

    .catalog__card:hover .catalog__card-inner::after {
        left:0%;
    }

    .catalog__card:hover .catalog__card-link {
        transform: translateX(0%);
    }
}

@media(max-width:1200px) {
    .preview__content {
        padding: 0px 510px 0px 0px;
    }
}

@media(max-width:1020px) {
    #header__mobile-contacts {display:flex;}
    .catalog-menu {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .header__list {
        display: none;
    }

    .burger-menu .header__list {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;

        padding: 30px 0px 30px 0px;
        margin: 0px 0px 23px 0px;

        border-bottom: 1px solid var(--gray-border);
    }

    .catalog__item-sub-title,
    .catalog__item-sub-link {
        font-size: 14px;
        line-height: 140%;
    }

    .header__personal-area-text,
    .header__bottoom {
        display: none;
    }

    .header__top {
        border-bottom: none;
    }

    .burger-btn,
    .header__serch-mob {
        display: block;
    }

    .burger-btn {
        border-radius: 5px;
        width: 35px;
        height: 35px;
        background: var(--blue-light);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__serch-mob {
        border-radius: 5px;
        width: 35px;
        height: 35px;
        background: var(--light-gray);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-top__right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-top__right-body {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .burger-btn-icon-active {
        display: none;
    }

    .header__list-list-sub-body {
        position: unset;
        transform: translateY(0px);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        pointer-events: all;
    }

    .header__list-list-sub {
        padding: 0;
        background-color: transparent;
        border: none;
        gap: 10px;
    }

    .header__list-list-sub-body--active {
        margin: 15px 0px 0px 0px;
    }

    .header__item-link-sub {
        font-size: 14px;
        line-height: 140%;
    }

    /* preview */

    .preview__slide {
        min-height: 500px;
        background: linear-gradient(180deg, #1c5369 73.09%, rgba(28, 83, 105, 0) 100%);
        ;
        padding: 0px;
    }

    .preview__content {
        padding: 30px 15px 150px 15px;
        background: linear-gradient(180deg, #1c5369 73.09%, rgba(28, 83, 105, 0) 100%);
        ;
    }

    .preview__pos-bg {
        top: auto;
        bottom: 0;
        width: 100%;
        max-width: unset;
        z-index: -1;

        text-align: center;
    }

    .preview__pos-bg::before {
        width: 100%;
        height: 20px;
        background: linear-gradient(180deg, #1c5369 73.09%, rgba(28, 83, 105, 0) 100%);
        ;
    }

    .preview__content::after {
        display: none;
    }

    .preview__pos-bg-img {
        max-width: 570px;
        width: 100%;
        object-fit: cover;
    }

    .preview__pagination {
        bottom: -10px !important;
        left: 0 !important;
    }

    .swiper-pagination-bullet {
        background: var(--gray-light-text);
        width: 90%;
    }

    .swiper-pagination-bullet-active {
        width: 100%;
        background: var(--blue-light);
    }

    .preview__inner {
        overflow: visible;
    }

    .preview__slider {
        border-radius: 8px;
        overflow: hidden;
    }

    /* catalog */

    .catalog__card {
        border: 8px solid #fff;
        box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.08);
    }

    .catalog__card-inner {
        border-radius: 8px;
    }

    .catalog__card-inner::after {
        transform: rotate(10deg) translateX(20%);
    }

    .catalog__card-link {
        transform: translateX(0%);
    }

    /* contacts */

    .contacts__inner {
        justify-content: center;
        flex-wrap: wrap-reverse;
        gap: 30px;
        padding: 0;
        padding: 20px 0px 0px 0px;
    }

    .contacts__inner::after {
        background-color: #fff;
        background-image: none;
        height: 50%;
        border-radius: 5px 5px 0 5px;
        left: auto;
        transform: translateX(0%) rotate(0deg);
        max-width: unset;
    }

    .contacts__inner::before {
        content: '';

        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 100%;

        background-image: url("/images/treangle.svg");
        background-repeat: no-repeat;
        background-size: cover;
        pointer-events: none;
    }

    .page__contacts {
        padding: 50px 0;
    }

    .contacts__map {
        padding: 0 15px;
    }

    /* footer */

    .footer__inner {
        flex-wrap: wrap;
        gap: 50px;
    }

}

@media(max-width:768px) {

.product__prev-info {
    grid-template-columns: 1fr;
}

    .header__top,
    .header {
        margin: 0;
    }

    .burger-menu {
        height: calc(100dvh - 75px);
    }

    .header__logo-img {
        max-width: 148px;
    }

    .preview__title {
        font-size: 26px;
        line-height: 110%;
    }

    .preview__subtitle {
        font-size: 18px;
        line-height: 140%;
    }

    .preview__slide {
        min-height: 430px;
    }

    .preview__content {
        padding-bottom: 0;
    }

    .preview__pos-bg::before {
        height: 100px;
        top: -60px;
    }

    .preview__pos-bg-img {
        min-width: 400px;
        object-position: right;
    }

    .preview__content {
        padding: 30px 20px 150px 20px;
        background: none;
    }

    .swiper-pagination-bullet {
        background: var(--gray-light-text);
        width: 69%;
    }

    .swiper-pagination-bullet-active {
        width: 100%;
        background: var(--blue-light);
    }

    /* catalog */

    .title {
        font-size: 24px;
        line-height: 110%;
    }

    .catalog__title-text {
        margin: 0px 0px 5px 0px;
    }

    .catalog__subtitle {
        font-size: 14px;
        line-height: 140%;
    }

    .catalog__head {
        margin: 0px 0px 30px 0px;
    }

    .catalog__card-inner {
        padding: 15px;
    }

    .catalog__card {
        border: 5px solid #fff;
    }

    .catalog__card-img {
        max-width: 110px;
        bottom: 12px;
        right: 12px;
    }

    .catalog__card-value {
        font-size: 12px;
        line-height: 140%;
    }

    .catalog__card-value {
        padding: 4px 7px;
    }

    .catalog__card-title {
        font-size: 18px;
        line-height: 140%;
        margin: 0px 0px 5px 0px;
    }

    .catalog__card-subtitle {
        font-size: 14px;
        line-height: 140%;
    }

    .catalog__card-inner {
        gap: 60px;
        min-height: 250px;
    }

    .catalog__desc {
        font-size: 14px;
        line-height: 140%;
    }

    .catalog__card-link svg {
        width: 35px;
        height: 35px;
    }

    /* contacts */

    .contacts__content {
        padding: 0 20px 20px 20px;
        border-radius: 5px 5px 0 0;
    }

    .contacts__map iframe {
        height: 310px;
        border-radius: 5px;
    }

    .contacts__subtitle {
        font-size: 18px;
        line-height: 140%;
        margin: 0px 0px 20px 0px;
    }

    .contacts__item-tel-text {
        font-size: 20px;
        line-height: 110%;
    }

    .contacts__item-marker-text,
    .contacts__item-email-text {
        font-size: 14px;
        line-height: 140%;
    }

    .contacts__list {
        gap: 15px;
    }

    .contacts__item-link {
        gap: 10px;
    }

    .contacts__list {
        margin: 0px 0px 20px 0px;
    }

    .contacts__inner {
        gap: 10px;
    }

    .request {
        font-size: 14px;
        line-height: 140%;
        padding: 12px 20px;
    }

    /* footer */

    .footer__right {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer__column {
        width: 100%;
    }

    .footer__column-info .footer__column-list {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .footer__column-item-link {
        font-size: 14px;
        line-height: 140%;
    }

    .footer__text {
        display: none;
    }

    .footer__link {
        display: none;
    }

    .footer-hide-content .footer__link,
    .footer-hide-content .footer__text {
        display: block;
        font-size: 12px;
        line-height: 140%;
    }

    .footer__logo-img {
        max-width: 200px;
    }

    .footer__column-title {
        font-size: 14px;
        line-height: 140%;
    }

    .footer-hide-content {
        display: block;
    }
}

@media(max-width:520px) {
    .preview__content::after {
        display: block;
        width: 482px;
        height: 270px;
        left: 50%;
        top: 0%;
        transform: translateX(-50%) rotate(90deg);
        display:none;
    }

    .contacts__map iframe {
        height: 210px;
    }

    .contacts__inner::after {
        height: 60%;
    }

    .contacts__inner::before {
        top: 60%;
    }

    .catalog__cards_items.mode2 form, .catalog__cards_items.mode3 form {
        flex-direction: column;
    }

    .catalog__cards_items.mode2 .catalog__card, .catalog__cards_items.mode3 .catalog__card {
        flex-direction: column;
    }

    .catalog__cards_items.mode2 .catalog__card .twr-image {
        width:100%;
    }
}

@media(max-width:320px) {
    .contacts__content {
        background-color: transparent;
    }

    .twr-actions {
        flex-direction: column;
    }

}

@media only screen and (min-width: 999px) {
    #message_box table td, #message_box_1 table td {
        padding: 0 20px 15px 0;
    }

    #close_message {
        float: right;
        margin: -10px -10px 0 0;
    }

    #message_box, #message_box_1 {
        left: 50%;
        margin-left: -500px;
    }
}

@media(max-width:600px) {
    #message_box .form {
        grid-template-columns: 1fr;
    }
}

@media(max-width:912px) {
    .catalog__cards {
        grid-template-columns: 1fr 1fr;
    }

    .catalog__card:hover .catalog__card-link {
        display: block !important;
    }
}

@media(max-width:420px) {
    .catalog__cards {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .form-horizontal {
        grid-template-columns: 1fr;
    }
    .product__full-info {
        grid-template-columns: 1fr;
    }
}
