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

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: black;
}

body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

:where(h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    dl):where([class]) {
    margin-block: 0;
}

:where(ul[class]) {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    font: inherit;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    line-height: 1.5;
}

:root {
    --font-family: "Montserrat", sans-serif;
    --second-family: "Inter", sans-serif;
    --white: white;
    --gray: #333;
    --light-gray: #808080;
    --green: #00543e;
    --beige: #f7f3e8;
    --yellow: #F7BF34;
    --black: #000;
    --red: #F94D2B;
    --gray-btn: #f7f7f7;
}

body * {
    font-family: var(--font-family);
}

body .right {
    text-align: right;
}

body .center {
    text-align: center;
}

body .uppercase {
    text-transform: uppercase;
}

body .slick-dots {
    bottom: -30px;
}

body .slick-dots li button:before {
    font-size: 20px;
}

body .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--green);
}

.vertical-center {
    display: grid;
    height: 100%;
    vertical-align: middle;
    align-items: center;
}

.btn {
    border: 1px solid var(--gray);
    background-color: var(--green);
    color: var(--white);
    padding: 25px 20px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-size: 18px;
    text-align: center;
}

.btn-list {
    margin-top: 35px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .btn-list {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .btn-list {
        margin-top: 50px;
        margin-bottom: 0px;
    }
}

.btn-list .btn {
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .btn-list .btn {
        margin-bottom: 10px;
    }
}

.btn.arrow {
    background-image: url("/images/btn_arrow.svg");
    background-position: center right 20px;
    background-repeat: no-repeat;
    padding-right: 65px;
}

.btn.white {
    background-color: rgba(0, 0, 0, 0);
    color: var(--gray);
}

.btn.white.arrow {
    background-image: url("/images/btn_arrow_dark.png");
}

.btn.yellow {
    background-color: var(--yellow);
    color: var(--gray);
}

.btn.mini-padding {
    padding: 15px 40px 15px 40px;
}

.btn.mini-padding.arrow {
    padding-right: 60px;
}

.grid {
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-column-gap: 9px;
}

@media screen and (min-width: 768px) {
    .grid {
        grid-column-gap: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .grid {
        grid-column-gap: 15px;
    }
}

label {
    width: 100%;
    display: block;
}

label textarea,
label input:not([type=submit]):not([type=checkbox]) {
    width: 100%;
    resize: none;
    margin-bottom: 15px;
    border: 1px solid #000;
    padding: 21px 10px;
}

.checkbox-item {
    color: var(--gray);
    padding-left: 40px;
    position: relative;
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .checkbox-item {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.checkbox-item::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gray);
}

.checkbox-item input {
    display: none;
}

.container {
    margin: 0px auto;
    min-width: 290px;
    width: 100%;
    padding: 30px 0px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.container.with-bread {
    padding-top: 45px;
}

.container.cancel-pbutton {
    padding-bottom: 0px;
}

@media screen and (min-width: 768px) {
    .container {
        width: 750px;
        padding: 50px 0px;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media screen and (min-width: 992px) {
    .container {
        width: 960px;
    }
}

@media screen and (min-width: 1300px) {
    .container {
        width: 1280px;
    }
}

.title {
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray);
}

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

.title span.underline {
    color: var(--gray);
    text-decoration: underline;
}

.title:is(h1) {
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 25px;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .title:is(h1) {
        font-size: 40px;
    }
}

@media screen and (min-width: 1920px) {
    .title:is(h1) {
        font-size: 50px;
    }
}

.title:is(h2) {
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    font-size: 30px;
}

@media (min-width: 992px) {
    .title:is(h2) {
        font-size: 50px;
    }
}

.title:is(h3) {
    font-size: 30px;
    margin-bottom: 35px;
}

.title:is(h4) {
    margin-bottom: 12px;
    font-size: 20px;
}

.bread {
    margin-bottom: 35px;
}

.bread a {
    color: var(--gray);
}

.date {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--gray);
    margin-bottom: 15px;
}

.paragraf p,
.paragraf {
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0px;
    margin-bottom: 17px;
    font-size: 16px;
}

.paragraf p dt,
.paragraf p dd,
.paragraf dt,
.paragraf dd {
    font-size: 18px;
}

.paragraf p dt,
.paragraf dt {
    font-weight: bold;
    color: var(--green);
}

@media (min-width: 992px) {

    .paragraf p,
    .paragraf {
        font-size: 18px;
    }
}

.paragraf p b,
.paragraf b {
    color: var(--green);
}

.paragraf p.mini,
.paragraf.mini {
    font-size: 14px;
}

.arrow-btn {
    z-index: 2;
    bottom: -15px;
    left: calc(50% - 20px);
    position: absolute;
}

.pattern {
    background-image: url("/images/background-image.png");
    background-position: center;
    border-bottom: 1px solid var(--gray);
}

.pattern.border-top {
    border-top: 1px solid var(--gray);
}

.beige {
    background-color: var(--beige);
}

.with-nav {
    margin-bottom: 30px;
}

.with-nav .title {
    grid-column: 1/19;
    margin: 0px;
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .with-nav .title {
        text-align: left;
        margin-bottom: 0px;
        grid-column: 1/10;
    }
}

.with-nav .navigation {
    grid-column: 1/19;
    text-align: center;
}

@media (min-width: 992px) {
    .with-nav .navigation {
        grid-column: 10/19;
    }
}

.with-nav .content-wrapper {
    grid-column: 1/19;
    margin-top: 40px;
}

.with-nav .navigation {
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .with-nav .navigation {
        margin-right: 0px;
        margin-left: auto;
    }
}

.with-nav .navigation button {
    padding: 0px;
    margin: 0px;
    margin-right: 15px;
    background: none;
    border: none;
}

.with-nav .navigation button img {
    top: 1px;
    position: relative;
}

.with-nav .navigation button.itc-slider-btn-prev img {
    transform: rotate(-180deg);
}

.with-nav .navigation>* {
    margin-left: 15px;
}

.gallery-slider {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
}

.gallery-slider__item {
    height: 300px;
    margin: 0px 10px;
    border: 1px solid var(--gray);
    padding: 10px;
    background-color: var(--beige);
}

.gallery-slider__item div {
    height: 100%;
    background-position: center;
    background-size: cover;
}

.green-help {
    background-image: url("/images/green-bg.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
}

.green-help .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.green-help span {
    color: var(--yellow);
}

.popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    z-index: 99;
    display: none;
}

.popup-gallery.active {
    display: block;
}

.popup-gallery__nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}

.popup-gallery__nav>div {
    background-color: var(--green);
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 0px 5px;
}

.popup-gallery__nav>div.prev {
    transform: rotate(-180deg);
}

.popup-gallery__nav svg {
    margin-top: 10px;
    margin-left: 10px;
    width: 40px;
    height: 40px;
}

.popup-gallery__close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.popup-gallery__close svg {
    width: 40px;
    height: 40px;
}

.popup-gallery img {
    max-width: 96%;
    max-height: calc(96% - 70px);
    transform: translate(-50%, calc(-50% - 35px));
    position: absolute;
    top: 50%;
    left: 50%;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
    background-color: var(--green) !important;
}

header {
    position: relative;
}

header .container {
    padding: 20px 0px;
}

header .top-line {
    border-bottom: 1px solid var(--gray);
}

header .top-line__logo {
    grid-column: 1/19;
}

.top-line__logo img {
    width: 180px;
    max-width: 100%;
}

@media (max-width: 767px) {
    header .top-line__logo img {
        margin: 0px auto;
        margin-bottom: 15px;
        width: 150px;
    }
}

@media (min-width: 768px) {
    header .top-line__logo {
        grid-column: 1/5;
    }
}

@media (min-width: 992px) {
    header .top-line__logo {
        grid-column: 1/4;
    }
}

header .top-line__address {
    grid-column: 4/9;
    margin-left: 20px;
}

@media (max-width: 991px) {
    header .top-line__address {
        display: none;
    }
}

@media (min-width: 1300px) {
    header .top-line__address {
        grid-column: 4/7;
        margin-left: 0px;
    }
}

header .top-line__address-button {
    background-image: url("/images/map-marker.svg");
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 30px;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray);
    position: relative;
}

header .top-line__address-button::after {
    content: " ";
    background-image: url("/images/address-arrow.svg");
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    top: calc(50% - 10px);
}

header .top-line__search {
    grid-column: 7/10;
}

@media (max-width: 1299px) {
    header .top-line__search {
        display: none;
    }
}

header .top-line__search input {
    padding: 10px;
    padding-left: 35px;
    border: 1px solid var(--gray);
    background-image: url("/images/search_icon.svg");
    background-position: left 5px center;
    background-repeat: no-repeat;
}

header .top-line__contact {
    grid-column: 1/19;
}

@media (min-width: 768px) {
    header .top-line__contact {
        grid-column: 5/19;
    }
}

@media (min-width: 992px) {
    header .top-line__contact {
        grid-column: 9/19;
    }
}

@media (min-width: 1300px) {
    header .top-line__contact {
        grid-column: 10/19;
    }
}

header .top-line__contact-wrapper {
    display: flex;
}

header .top-line__contact-links {
    flex: 0 0 100%;
    padding-right: 20px;
    padding-top: 3px;
    text-align: right;
}

@media (max-width: 767px) {
    header .top-line__contact-links {
        text-align: center;
    }
}

@media (min-width: 768px) {
    header .top-line__contact-links {
        flex: 0 0 calc(100% - 260px);
    }
}

@media (min-width: 1300px) {
    header .top-line__contact-links {
        flex: 0 0 calc(100% - 200px);
    }
}

header .top-line__contact-links a {
    display: inline-block;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 25px;
    color: var(--gray);
}

header .top-line__contact-links-phone {
    background-image: url("/images/header-phone.svg");
    font-weight: 600;
    font-size: 18px;
}

header .top-line__contact-links-email {
    background-image: url("/images/header-email.svg");
    font-weight: 400;
    font-size: 14px;
}

header .top-line__contact .btn {
    flex: 0 0 200px;
    margin: 0px;
    padding: 15px 40px 15px 40px;
}

@media (max-width: 767px) {
    header .top-line__contact .btn {
        display: none;
    }
}

header .top-line__contact .burger {
    width: 50px;
    margin-left: 10px;
    background: none;
    border: none;
}

@media (max-width: 767px) {
    header .top-line__contact .burger {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

@media (min-width: 1300px) {
    header .top-line__contact .burger {
        display: none;
    }
}

header .top-line__contact .burger img {
    width: 40px;
}

header .menu {
    border-bottom: 1px solid var(--gray);
}

@media (max-width: 1299px) {
    header .menu {
        display: none;
    }
}

header .menu-list {
    text-align: center;
}

header .menu-list__item {
    display: inline;
    padding: 0px 10px;
}

header .menu-list__item a {
    font-weight: 600;
    font-size: 16px;
    color: var(--gray);
}

.banner {
    background-image: url("/images/background-image.png");
    background-position: center;
    border-bottom: 1px solid var(--gray);
}

@media (max-width: 1299px) {
    .banner .title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .banner .title {
        font-size: 26px;
    }
}

.banner .container {
    padding: 0px;
    display: flex;
}

.banner .btn {
    display: inline-block;
    min-width: 275px;
    max-width: 100%;
    margin-top: 15px;
}

.banner .content {
    padding: 40px 20px 20px 20px;
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .banner .content {
        padding: 50px 50px;
        grid-column: 1/10;
    }
}

.banner .image {
    background-position: center;
    background-size: cover;
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .banner .image {
        grid-column: 10/19;
    }
}

.media-banner {
    background-image: url("/images/background-image.png");
    background-position: center;
    border: 1px solid var(--gray);
}

.media-banner .image {
    grid-column: 1/19;
    height: 300px;
    background-position: center;
    background-size: cover;
}

@media (min-width: 768px) {
    .media-banner .image {
        height: 475px;
        grid-column: 1/10;
    }
}

.media-banner .button-wrapper {
    grid-column: 1/19;
}

@media (min-width: 768px) {
    .media-banner .button-wrapper {
        grid-column: 11/18;
    }
}

.media-banner .button-wrapper .btn {
    margin: 10px 0px;
    display: block;
    background-image: url("/images/btn_arrow.svg");
    background-position: center right 20px;
    background-repeat: no-repeat;
    font-size: 20px;
}

.two-banner__grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 992px) {
    .two-banner__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.two-banner__body {
    border: 1px solid var(--gray);
    background-position: center;
    background-size: cover;
    padding: 20px;
    height: 320px;
}

.two-banner__title {
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .catalog .container {
        padding-top: 0px;
    }
}

.catalog .filter {
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .catalog .filter {
        grid-column: 1/6;
    }
}

.catalog .filter-header {
    border: 1px solid var(--gray);
    margin-bottom: 20px;
    padding: 15px 10px;
    background-color: var(--beige);
    background-image: url("/images/address-arrow.svg");
    background-size: 25px;
    background-position: right 10px center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .catalog .filter-header {
        display: none;
    }
}

.catalog .filter .title {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .catalog .filter .title {
        margin-bottom: 22px;
    }
}

.catalog .filter .filter__category {
    margin-bottom: 25px;
    display: none;
}

.catalog .filter .filter__category.active {
    display: block;
}

@media (min-width: 992px) {
    .catalog .filter .filter__category {
        margin-bottom: 45px;
        display: block !important;
    }
}

.catalog .product-list {
    grid-column: 1/19;
    margin-left: -5px;
    margin-right: -5px;
}

@media (min-width: 992px) {
    .catalog .product-list {
        grid-column: 6/19;
        margin-left: 0px;
        margin-right: 0px;
    }
}

.catalog .product-list .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.catalog .product-list .wrapper .product-item {
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

@media (min-width: 1300px) {
    .catalog .product-list .wrapper .product-item {
        margin-bottom: 20px;
        flex: 0 0 calc(33.333333% - 14px);
        max-width: calc(33.333333% - 14px);
    }
}

.catalog .product-list .btn {
    margin-top: 60px;
}

.category-item {
    display: block;
    margin: 0px 5px;
    padding: 10px;
    border: 1px solid var(--gray);
    background-color: var(--beige);
}

@media (min-width: 992px) {
    .category-item {
        margin: 0px 15px;
    }
}

.category-item__image {
    padding-top: 75%;
    background-position: center;
    background-size: contain;
    background-color: var(--white);
}

.category-item .item-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

.not-found .paragraf {
    margin-bottom: 50px;
    margin-top: 0px;
}

.news-previews {
    background-color: var(--beige);
}

.news-previews .poster-item {
    background-color: var(--yellow);
    border: 1px solid var(--gray);
}

.news-previews .poster-item .btn {
    background-color: var(--green);
    color: var(--white);
}

.news-slider .content {
    grid-column: 1/19;
    padding: 20px;
}

@media (min-width: 992px) {
    .news-slider .content {
        grid-column: 1/11;
        padding: 40px;
    }
}

.news-slider .image {
    grid-column: 1/19;
    background-position: center;
    background-size: cover;
    min-height: 200px;
}

@media (min-width: 992px) {
    .news-slider .image {
        grid-column: 11/19;
    }
}

.poster-list {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
}

.poster-list__item {
    margin-bottom: 20px;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .poster-list__item {
        flex: 0 0 50%;
    }
}

@media (min-width: 1300px) {
    .poster-list__item {
        flex: 0 0 33.33333%;
    }
}

.news-list>div {
    margin-bottom: 20px;
}

.poster-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.articles-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.poster-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px 10px;
    border: 1px solid var(--gray);
    background-color: var(--beige);
    padding: 20px;
}

.poster-item .image {
    height: 225px;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
}

.poster-item .paragraf {
    margin-bottom: 20px;
}

.poster-item .btn {
    margin-top: auto;
    width: 200px;
    max-width: 100%;
}

.articles-item {
    height: 100%;
    background-color: var(--beige);
    border: 1px solid var(--gray);
    padding: 25px;
    margin: 0px 10px;
}

@media screen and (min-width: 768px) {
    .articles-item {
        display: flex;
    }
}

.articles-item .content {
    display: flex;
    flex-flow: column;
}

.articles-item .content .btn {
    margin-top: auto;
    width: 200px;
}

@media screen and (min-width: 768px) {
    .articles-item .content {
        padding-right: 30px;
        flex: 0 0 calc(100% - 200px);
    }
}

.articles-item .image {
    background-position: center;
    background-size: cover;
    min-height: 200px;
    margin-top: 25px;
}

@media screen and (min-width: 768px) {
    .articles-item .image {
        flex: 0 0 200px;
    }
}

.contact-form__result {
    margin-bottom: 25px;
    background-color: var(--green);
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    margin-top: -10px;
    display: inline-block;
}

.contact-form .contact-form__colimn:first-child {
    grid-column: 1/19;
}

@media (min-width: 768px) {
    .contact-form .contact-form__colimn:first-child {
        grid-column: 1/7;
    }
}

.contact-form .contact-form__colimn:nth-child(2) {
    grid-column: 1/19;
}

@media (min-width: 768px) {
    .contact-form .contact-form__colimn:nth-child(2) {
        grid-column: 7/13;
    }
}

.contact-form .contact-form__colimn:nth-child(2) label {
    height: calc(100% - 15px);
}

.contact-form .contact-form__colimn:nth-child(3) {
    grid-column: 1/19;
}

@media (min-width: 768px) {
    .contact-form .contact-form__colimn:nth-child(3) {
        grid-column: 13/19;
    }
}

.contact-form textarea {
    height: 100%;
}

.contact-form .paragraf {
    margin-top: 20px;
}

.item-title {
    font-weight: 600;
    font-size: 22px;
    color: var(--gray);
    margin-top: 0px;
}

.product-item {
    border: 1px solid var(--gray);
    padding: 10px 10px 10px 10px;
    display: block;
}

@media (min-width: 768px) {
    .product-item {
        padding: 20px 20px 10px 20px;
    }
}

.product-item__image {
    padding-top: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.product-item__title {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 15px;
}

@media (min-width: 768px) {
    .product-item__title {
        font-size: 17px;
    }
}

.bx_catalog_line_ul li {
    font-size: 17px;
    margin-bottom: 20px;
}

@media (min-width: 1300px) {
    .product-page .product-page__flex {
        display: flex;
    }
}

.product-page__label {
    font-weight: 600;
    font-size: 20px;
}

.product-page__image {
    height: 400px;
    border: 1px solid #333;
    border-radius: 20px;
    /* overflow: hidden; */
}

.product-page__image * {
    height: 100%;
}

@media (max-width: 768px) {
    .product-page__image {
        max-height: 350px;
    }
}

@media (min-width: 1300px) {
    .product-page__image {
        max-width: 510px;
        flex: 0 0 510px;
        height: 550px;
    }
}

.product-page__image {
    border-radius: 20px;
}

.product-page__image img {
    border-radius: 20px;
    /* margin: 0px auto;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  outline: 1px solid transparent;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 450ms ease, width 450ms ease, height 450ms ease, outline 450ms ease;
  transform: translateY(-50%) translateX(-50%); */
}

.product-page__image .slick-dots {
    height: 40px;
    bottom: -45px;
}

.product-page__content {
    margin-top: 40px;
}

@media (min-width: 1300px) {
    .product-page__content {
        flex: 0 0 calc(100% - 510px);
        max-width: calc(100% - 510px);
        padding-left: 50px;
        margin-top: 0px;
    }
}

.product-page__content-title {
    font-weight: 600;
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .product-page__content-title {
        font-size: 33px;
    }
}

.product-page__content-props__item {
    margin-bottom: 20px;
    display: flex;
}

.product-page__content-props__item-title {
    flex: 0 0 115px;
    display: flex;
    /* align-items: center; */
}

.product-page__content-props__item-title:not(.color) {
    line-height: 20px;
}

.product-page__content-props__item-desc input {
    display: none;
}

.product-page__content-props__item-desc label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.product-page__content-props__item-desc:not(.color) {
    flex: 0 0 calc(100% - 115px);
}

.product-page__content-props__item-desc:not(.color) label {
    line-height: 20px;
    position: relative;
    padding-left: 28px;
    margin-right: 27px;
}

.product-page__content-props__item-desc:not(.color) label::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gray);
}

.product-page__content-props__item .color label {
    width: 30px;
    height: 30px;
    border: 2px solid white;
}

.product-page__content-props__item .color label.active,
.product-page__content-props__item .color label:hover {
    border-color: var(--green);
}

.product-page__content-seller {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
}

.product-page__content-seller__image {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    border: rgba(51, 51, 51, 0.1);
}

.product-page__content-seller__name {
    line-height: 55px;
    margin-left: 25px;
    color: #000;
}

.product-page__content-price {
    margin-bottom: 29px;
}

.product-page__content-price .product-page__label {
    margin-right: 25px;
}

.product-page__content .btn {
    min-width: 250px;
}

@media (max-width: 768px) {
    .product-page__content .btn {
        width: 100%;
        margin: 5px 0px;
    }
}

.product-page__tabs {
    margin-top: 55px;
}

@media (min-width: 1300px) {
    .product-page__tabs {
        margin-top: 80px;
    }
}

.product-page__tabs-header {
    padding-bottom: 30px !important;
}

.product-page__tabs-header label {
    display: inline-block;
    width: auto;
    margin-right: 40px;
    border-bottom: 2px solid #fff;
    font-weight: 400;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .product-page__tabs-header label {
        margin-right: 0px;
        width: 100%;
        display: block;
        text-align: center;
        margin: 10px 0px;
        border: 1px solid #fff;
    }
}

.product-page__tabs-header label:hover,
.product-page__tabs-header label.active {
    border-color: #00543e;
}

.product-slider {
    margin-top: 30px;
    margin-left: -5px;
    margin-right: -5px;
}

.product-slider__wrapper {
    background-color: var(--white);
    margin: 0px 5px;
    height: 100%;
}

.product-item-detail-tab-content {
    display: none;
}

.product-item-detail-tab-content.active {
    display: block;
}

.product-item-detail-properties {
    width: 560px;
    max-width: 100%;
}

.product-item-detail-properties dt {
    display: inline-block;
    font-weight: bold;
    width: 200px;
}

.product-item-detail-properties dd {
    display: inline-block;
    margin-bottom: 3px;
    margin-left: 5px;
    color: #000;
}

.product-item-scu-item-color-container {
    display: inline-block;
    width: 38px;
    height: 38px;
    padding: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-item-scu-item-color-container.selected {
    border-color: var(--green);
}

.product-item-scu-item-color-container div {
    width: 32px;
    height: 32px;
}

.product-item-scu-item-text-container {
    display: inline-block;
    min-width: 32px;
    box-sizing: border-box;
    padding: 5px 3px;
    max-width: 100%;
}

.product-item-scu-item-text-container *>div {
    position: relative;
    padding: 0 5px;
    outline: 1px solid #c0cfda;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
}

.product-item-scu-item-text-container *>div *>div {
    overflow: hidden;
    max-width: 100%;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 18px;
}

.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.product-popup__close {
    text-align: right;
}

.product-popup__close svg {
    width: 30px;
    height: 30px;
}

.product-popup>div {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    width: 475px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 98%;
    max-height: 98%;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-popup>div h4 {
    margin-top: 10px;
    text-align: center;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 500;
}

.social-link {
    background-color: #F7BF34;
    background-image: url("/images/background-image.png");
}

.social-link .container {
    padding-top: 45px;
    padding-bottom: 45px;
}

.social-link p {
    grid-column: 1/14;
    margin: 0px;
}

.social-link .social-link__list {
    grid-column: 14/19;
}

.social-link .social-link__list a {
    display: inline-block;
}

.social-link .social-link__list img {
    margin-left: 10px;
}

.three-links {
    padding-top: 115px;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    .three-links {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

.three-links__wrapper {
    grid-column: 1/19;
}

@media (min-width: 1300px) {
    .three-links__wrapper {
        grid-column: 3/17;
    }
}

@media (min-width: 992px) {
    .three-links__list {
        display: flex;
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 992px) {
    .three-links__list>div {
        width: 300px;
        margin: 0px auto;
    }

    .three-links__list>div:nth-child(2) {
        margin-top: 180px;
        margin-bottom: 180px;
    }
}

@media (min-width: 992px) {
    .three-links__list>div {
        flex: 0 0 33.3333333%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

.three-links__list.fore>div {
    flex: 0 0 25%;
}

@media (max-width: 992px) {
    .three-links__list.fore>div:nth-child(3) {
        margin-bottom: 180px;
    }
}

.three-links__list.fore>div .three-links__item-icon {
    top: -120px;
}

.three-links__list.fore>div .item-title {
    margin-top: 10px;
    margin-bottom: 30px;
}

.three-links__item {
    display: block;
    border-top: 2px solid;
    border-bottom: 2px solid;
    position: relative;
    padding: 10px 20px 25px 20px;
    height: 100%;
    color: var(--white);
}

.three-links__item-icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    top: -110px;
}

@media (max-width: 991px) {
    .three-links__item-icon {
        width: 100px;
    }
}

@media (min-width: 992px) {
    .three-links__item-icon {
        top: -150px;
    }
}

.three-links__item .item-title {
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.three-links__item .paragraf {
    font-weight: 500;
}

.three-links__item.dark {
    color: var(--gray);
}

.three-links__item.dark .item-title {
    color: var(--gray);
}

.three-links__item-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(0, -100%);
}

.three-links__item-triangle:last-child {
    top: auto;
    bottom: 0;
    transform: translate(0, 100%) rotate(-180deg);
}

.three-links__item::after {
    top: auto;
    bottom: -100px;
}

.image-block {
    height: 100%;
    width: 100%;
    min-height: 200px;
    background-position: center;
    background-size: cover;
}

.two-column {
    grid-gap: 20px;
}

.two-column h4 {
    text-transform: uppercase;
}

.two-column>div:first-child {
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .two-column>div:first-child {
        grid-column: 1/10;
    }
}

.two-column>div:last-child {
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .two-column>div:last-child {
        grid-column: 10/19;
    }
}

.green-wrapper {
    background-color: var(--green);
    padding: 30px;
}

.green-wrapper * {
    color: var(--white) !important;
}

.green-wrapper .paragraf:last-child {
    margin-bottom: 0px;
}

.structure-text__tabs {
    grid-column: 1/19;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .structure-text__tabs {
        grid-column: 1/5;
    }
}

.structure-text__tabs ul {
    border: 1px solid var(--gray);
    text-decoration: none;
}

.structure-text__tabs ul li {
    padding: 15px 20px;
    font-weight: 500;
    font-size: 18px;
}

.structure-text__tabs ul li.active,
.structure-text__tabs ul li:hover {
    color: var(--white);
    background-color: var(--green);
}

.structure-text__content {
    grid-column: 1/19;
    display: none;
}

.structure-text__content.active {
    display: block;
}

@media (min-width: 992px) {
    .structure-text__content {
        grid-column: 5/19;
        padding-left: 30px;
    }
}

.address-tabs {
    display: grid;
    grid-gap: 10px;
}

@media (min-width: 576px) {
    .address-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1300px) {
    .address-tabs {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
    }
}

.address-tabs__item {
    border: 2px solid var(--yellow);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.address-tabs__item:nth-child(2),
.address-tabs__item:nth-child(4),
.address-tabs__item:nth-child(5),
.address-tabs__item:nth-child(7) {
    border-color: var(--green);
}

.address-tabs__item p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 20px;
    color: var(--gray);
    line-height: 1.2;
}

.address-tabs__item-image {
    height: 200px;
    background-position: center;
    background-size: cover;
}

.address-tabs__item-arrow {
    margin-top: auto;
}

.address-body__content,
.address-body__map {
    grid-column: 1/19;
}

@media (max-width: 991px) {
    .address-body__map {
        margin-top: 20px;
    }

    .address-body__map iframe {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .address-body__content {
        grid-column: 1/9;
    }

    .address-body__map {
        grid-column: 10/19;
    }
}

.service-price__text {
    grid-column: 1/19;
}

@media (min-width: 992px) {
    .service-price__text {
        grid-column: 1/9;
    }
}

.service-price__table {
    grid-column: 1/19;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .service-price__table {
        margin-top: 0px;
        grid-column: 10/19;
    }
}

.service-price__table-wrapper {
    background-color: var(--white);
    padding: 10px;
    margin-bottom: 20px;
}

.service-price__table-wrapper table {
    width: 100%;
    margin: 0px;
}

.service-price__table-wrapper table,
.service-price__table-wrapper th,
.service-price__table-wrapper td {
    border: 1px solid black;
    border-collapse: collapse;
}

.service-price__table-wrapper th,
.service-price__table-wrapper td {
    text-align: left;
    padding: 10px;
}

.donations-form__wrapper {
    width: 1280px;
    max-width: 100%;
    margin: 0px auto;
}

@media (min-width: 768px) {
    .donations-form__tabs {
        display: flex;
    }
}

.donations-form__tabs>div {
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    border: 1px solid var(--gray);
    border-bottom: none;
    font-weight: 400;
    color: var(--gray);
    background-color: var(--yellow);
    padding: 15px 10px;
    font-size: 20px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .donations-form__tabs>div {
        display: flex;
        border-radius: 10px 10px 0px 0px;
    }
}

@media (min-width: 1299px) {
    .donations-form__tabs>div {
        padding: 20px 30px;
        font-size: 24px;
    }
}

.donations-form__tabs>div:hover,
.donations-form__tabs>div.active {
    cursor: pointer;
    background-color: var(--white);
}

.donations-form__body {
    background-color: var(--white);
    border: 1px solid var(--gray);
    display: none;
}

.donations-form__body.active {
    display: block;
}

.donations-form__body-wrapper {
    width: 775px;
    padding: 0px 20px;
    max-width: 100%;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .donations-form__body-wrapper {
        margin: 60px auto;
    }
}

.donations-form__body-tabs {
    display: flex;
    border: 1px solid var(--gray);
    border-radius: 12px;
    overflow: hidden;
}

.donations-form__body-tabs>div {
    flex: 0 0 50%;
    background: var(--gray-btn);
    text-align: center;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px;
}

@media (min-width: 768px) {
    .donations-form__body-tabs>div {
        font-size: 18px;
        padding: 25px;
    }
}

.donations-form__body-tabs>div.active,
.donations-form__body-tabs>div:hover {
    background-color: var(--green);
    color: var(--white);
    cursor: pointer;
}

.donations-form__body-tabs>div:first-child {
    border-right: 1px solid var(--gray);
}

.donations-form__body-desc {
    margin-top: 40px;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 16px;
}

@media (min-width: 768px) {
    .donations-form__body-desc {
        font-size: 18px;
    }
}

.donations-form__body-block {
    margin-bottom: 55px;
}

.donations-form__body-block h3 {
    text-align: center;
    font-weight: 700;
    font-size: 19px;
    line-height: 107%;
    text-transform: uppercase;
    color: #4f4f4f;
    margin-bottom: 30px;
}

.donations-form__body-block .pay-count {
    background-color: var(--beige);
}

.donations-form__body-block .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

@media (min-width: 768px) {
    .donations-form__body-block .row {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 20px;
    }
}

.donations-form__body-block .row>div .pay-count {
    text-align: center;
    border: 1px solid #000;
    border-radius: 12px;
    height: 65px;
    line-height: 65px;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0px 5px;
    width: calc(100% - 10px);
}

.donations-form__body-block .row>div .pay-count.swither:hover,
.donations-form__body-block .row>div .pay-count.active {
    background-color: var(--green);
    color: var(--white);
}

@media (min-width: 768px) {
    .donations-form__body-block .row>div .pay-count {
        width: calc(100% - 20px);
        margin: 0px 10px;
        font-size: 22px;
    }
}

.donations-form__body-block .row>div .pay-count.input {
    position: relative;
}

.donations-form__body-block .row>div .pay-count.input span {
    font-size: 12px;
    position: absolute;
    left: 15px;
    top: -15px;
}

.donations-form__body-block .row>div .pay-count.input input {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 65px;
    font-size: 22px;
    padding: 20px 15px 0px 15px;
    border: none;
    background: none;
}

@media (max-width: 768px) {
    .donations-form__body-block .row>div .pay-count.input input {
        font-size: 18px;
    }
}

.donations-form__body-block .row .c4 {
    flex: 0 0 33.33333%;
}

.donations-form__body-block .row .c6 {
    flex: 0 0 50%;
}

.donations-form__body-block.contact-data input {
    background-color: var(--beige);
    border-radius: 10px;
}

.donations-form__body-block button {
    width: 100%;
    text-align: left;
    margin-top: 30px;
}

.donations-links .three-links__item-icon {
    width: 125px;
    top: -125px;
}

.donations-links .item-title {
    margin-bottom: 30px;
    margin-top: 20px;
}

.donations-links .three-links__item {
    padding-bottom: 40px;
}

.donations-links .arrow-btn {
    bottom: 0px;
}

.questions .title {
    padding-bottom: 20px;
}

.questions-item {
    background-color: var(--white);
    margin-bottom: 10px;
    border: 1px solid var(--gray);
}

.questions-item__title {
    position: relative;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;
    padding: 15px 70px 15px 15px;
}

@media (min-width: 992px) {
    .questions-item__title {
        font-size: 25px;
        padding: 25px 80px 25px 25px;
    }
}

.questions-item__title::before {
    content: " ";
    background: url("/images/questions_plas.svg");
    position: absolute;
    background-position: center;
    background-size: contain;
    transition: 0.65s ease;
    width: 36px;
    height: 36px;
    right: 20px;
    top: calc(50% - 20px);
}

@media (min-width: 992px) {
    .questions-item__title::before {
        width: 54px;
        height: 54px;
        top: calc(50% - 27px);
    }
}

.questions-item__desc {
    padding: 0px 15px 15px 15px;
    display: none;
}

@media (min-width: 992px) {
    .questions-item__desc {
        padding: 0px 25px 25px 25px;
    }
}

.questions-item.active .questions-item__desc {
    display: block;
}

.questions-item.active .questions-item__title::before {
    transform: rotate(45deg);
}

.museum-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.museum-list>div {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .museum-list>div {
        flex: 0 0 50%;
    }
}

@media (min-width: 1300px) {
    .museum-list>div {
        flex: 0 0 33.33333%;
    }
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gallery>div {
    flex: 0 0 20%;
    margin-bottom: 20px;
}

.gallery-item {
    margin: 0px 10px;
    background-color: var(--beige);
    padding: 10px;
    border: 1px solid var(--gray);
}

.gallery-item__preview {
    padding-top: 100%;
    background-position: center;
    background-size: cover;
    border: 1px solid var(--gray);
}

.partners-slider {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .partners-slider {
        margin-left: -5px;
        margin-right: -5px;
    }
}

.partners-slider__item {
    border: 2px solid var(--yellow);
    height: 175px;
    display: flex;
    margin: 0px 15px;
}

.partners-slider__item img {
    max-height: 90%;
    max-width: 90%;
}

@media (max-width: 767px) {
    .partners-slider__item {
        margin: 0px 5px;
    }
}

.partners-slider__item img {
    margin: auto;
}

.cart {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}

.cart-body {
    flex: 0 0 calc(100% - 305px);
}

@media (min-width: 1299px) {
    .cart-body {
        padding-right: 20px;
    }
}

.cart-body__products-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cart-body__products-item__body {
    flex: 0 0 calc(100% - 300px);
    display: flex;
}

.cart-body__products-item__body-image {
    flex: 0 0 120px;
}

.cart-body__products-item__body-image div {
    border: 1px solid var(--gray);
    height: 120px;
    background-size: contain;
}

.cart-body__products-item__body-content {
    padding-left: 20px;
    color: var(--gray);
}

.cart-body__products-item__body-content .item-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.cart-body__products-item__body-content .brand {
    font-weight: 500;
    font-size: 14px;
}

.cart-body__products-item__count {
    flex: 0 0 200px;
}

.cart-body__products-item__count button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background-color: var(--green);
    color: var(--white);
    line-height: 20px;
}

.cart-body__products-item__count input {
    width: 40px;
    text-align: center;
    border: none;
}

.cart-body__products-item__count input::-webkit-outer-spin-button,
.cart-body__products-item__count input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.cart-body__products-item__price {
    flex: 0 0 100px;
}

.cart-body__products-item.header {
    border-bottom: 1px solid var(--black);
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 18px;
    color: var(--gray);
}

.cart-body .order-info {
    width: 750px;
    max-width: 100%;
    margin-top: 50px;
}

@media (min-width: 1299px) {
    .cart-body .order-info {
        margin-top: 100px;
    }
}

.cart-body .order-info__form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.cart-body .order-info__form>label {
    padding: 0px 10px;
}

.cart-body .order-info__form .c1 {
    flex: 0 0 100%;
}

.cart-body .order-info__form .c2 {
    flex: 0 0 50%;
}

.cart-body .order-info__form .c3 {
    flex: 0 0 33.3333%;
}

.cart-body .order-info__form input {
    background-color: var(--beige);
    border-radius: 12px;
}

.cart-body .order-info .filter__category {
    margin-top: 30px;
}

.cart-final {
    margin-top: 35px;
    flex: 100%;
}

@media (min-width: 1299px) {
    .cart-final {
        margin-top: 0px;
        flex: 0 0 305px;
    }
}

.cart-final__wrapper {
    background-color: var(--beige);
    padding: 15px;
}

.cart-final__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--gray);
}

.cart-final__count {
    margin-top: 15px;
    margin-bottom: 17px;
}

.cart-final__count span {
    text-decoration: underline;
}

.cart-final__cost {
    padding: 15px;
}

.cart-final__cost-price,
.cart-final__cost-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--gray);
}

.cart-final__cost.orange {
    background-color: var(--yellow);
}

.cart-final__promo-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--gray);
}

.cart-final__promo input {
    border: 1px solid #000;
    padding: 21px 11px;
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.3607843137);
}

.cart-final button {
    margin-top: 30px;
    width: 100%;
}

.about-project-grid {
    margin-top: 40px;
    display: grid;
    grid-column-gap: 0px;
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 575px) {
    .about-project-grid>div {
        border-bottom: 1px solid var(--black);
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .about-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-project-grid>div:nth-child(1),
    .about-project-grid>div:nth-child(2),
    .about-project-grid>div:nth-child(3),
    .about-project-grid>div:nth-child(4),
    .about-project-grid>div:nth-child(5),
    .about-project-grid>div:nth-child(6) {
        border-bottom: 1px solid var(--black);
    }

    .about-project-grid>div:nth-child(1),
    .about-project-grid>div:nth-child(3),
    .about-project-grid>div:nth-child(5),
    .about-project-grid>div:nth-child(7) {
        border-right: 1px solid var(--black);
    }
}

@media (min-width: 992px) {
    .about-project-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-project-grid>div:nth-child(1),
    .about-project-grid>div:nth-child(2),
    .about-project-grid>div:nth-child(3),
    .about-project-grid>div:nth-child(4) {
        border-bottom: 1px solid var(--black);
    }

    .about-project-grid>div:nth-child(1),
    .about-project-grid>div:nth-child(2),
    .about-project-grid>div:nth-child(3),
    .about-project-grid>div:nth-child(5),
    .about-project-grid>div:nth-child(6),
    .about-project-grid>div:nth-child(7) {
        border-right: 1px solid var(--black);
    }
}

.about-project-grid>div {
    height: 165px;
    text-align: center;
    display: grid;
    vertical-align: middle;
    padding: 10px;
    align-items: center;
}

.about-project-grid__title {
    font-weight: 600;
    font-size: 18px;
    color: var(--gray);
}

.about-project-grid img {
    margin: 0px auto;
    margin-bottom: 10px;
}

.whywe-grid {
    width: 1020px;
    max-width: 100%;
    margin: 0px auto;
    display: grid;
    grid-column-gap: 30px;
}

@media (min-width: 992px) {
    .whywe-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.whywe-grid-item {
    border: 1px solid var(--gray);
    padding: 30px 30px 85px 30px;
    background: var(--green);
    position: relative;
}

.whywe-grid-item:nth-child(2) {
    background-color: var(--yellow);
}

@media (max-width: 991px) {
    .whywe-grid-item:nth-child(2) {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.whywe-grid-item:nth-child(2) * {
    color: var(--gray) !important;
}

.whywe-grid-item:nth-child(3) {
    background-color: var(--red);
}

.whywe-grid-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 20px;
}

.whywe-grid-item .arrow-btn {
    bottom: 30px;
    left: 30px;
}

.advantages-grid {
    width: 1020px;
    max-width: 100%;
    margin: 0px auto;
    display: grid;
    grid-column-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantages-grid-item {
    border: 2px solid var(--red);
    padding: 30px 30px 85px 30px;
    position: relative;
}

.advantages-grid-item:nth-child(2) {
    border-color: var(--green);
}

@media (max-width: 991px) {
    .advantages-grid-item:nth-child(2) {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.advantages-grid-item:nth-child(3) {
    border-color: var(--yellow);
}

.advantages-grid-item__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--dark);
    margin-top: 0px;
    margin-bottom: 20px;
}

.advantages-grid-item .arrow-btn {
    bottom: 30px;
    left: 30px;
}

.addresses-grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
}

.addresses-grid>div {
    display: flex;
    flex-direction: column;
}

.addresses-grid {
    height: 100%;
}

.addresses-grid>div>div {
    flex: 1 1 0;
}


@media (min-width: 768px) {
    .addresses-grid {
        grid-gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1300px) {
    .addresses-grid {
        padding-bottom: 60px;
        grid-template-columns: repeat(4, 1fr);
    }
}

.addresses-grid__item {
    border: 1px solid var(--gray);
    display: block;
    padding: 20px 20px 65px 20px;
    position: relative;
    margin-bottom: 15px;
}

.addresses-grid>div:nth-child(2n) .addresses-grid__item {
    background-color: var(--gray);
}

.addresses-grid>div:nth-child(2n) .addresses-grid__item * {
    color: var(--white);
}

.addresses-grid__item-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.addresses-grid__item-triangle {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    transform: translate(0, -100%);
    display: none;
}

@media (min-width: 992px) {
    .addresses-grid__item-triangle {
        display: block;
    }
}

.addresses-grid__item-triangle:nth-child(1) {
    top: auto;
    bottom: 0px;
    transform: translate(0, 100%) rotate(-180deg);
}

.addresses-grid__item-title {
    margin-top: 0px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--gray);
}

.departments-grid {
    display: grid;
    grid-gap: 20px;
}

@media (min-width: 768px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

@media (min-width: 1300px) {
    .departments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.departments-item {
    border: 1px solid var(--gray);
    padding: 20px 20px 80px 20px;
    position: relative;
}

.addresses-grid>div:nth-child(2) .departments-item {
    background-color: var(--green);
}

.addresses-grid>div:nth-child(2) .departments-item * {
    color: var(--white) !important;
}

.addresses-grid>div:nth-child(3) .departments-item {
    background-color: var(--yellow);
}

.addresses-grid>div:nth-child(4) .departments-item {
    background-color: var(--red);
}

.addresses-grid>div:nth-child(4) .departments-item * {
    color: var(--white) !important;
}

.departments-item__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 28px;
    min-height: 60px;
}

.departments-item__contact {
    padding-left: 55px;
    min-height: 44px;
    display: flex;
    vertical-align: middle;
    align-items: center;
    background-position: center left;
    background-repeat: no-repeat;
}

.departments-item__contact:nth-child(2) {
    margin-bottom: 14px;
}

.departments-item__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 156%;
    color: var(--gray);
}

.departments-item__btn {
    position: absolute;
    bottom: 20px;
}

.texi-service {
    background-image: url("/images/service-bg.png");
    background-position: center;
    background-size: cover;
}

.texi-service h2 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    font-size: 26px;
}

@media (min-width: 768px) {
    .texi-service h2 {
        font-size: 35px;
    }
}

@media (min-width: 992px) {
    .texi-service h2 {
        font-size: 65px;
    }
}

.about-dots {
    border-bottom: 1px solid var(--gray);
}

.about-dots .btn-list {
    margin-top: 30px;
    margin-bottom: 0px;
}

.lake .title {
    margin-bottom: 5px;
}

.lake .paragraf {
    margin-bottom: 35px;
}

.museum-grid {
    margin-top: 40px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
    .museum-grid {
        grid-gap: 30px;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.museum-grid>div {
    background-position: center;
    background-size: cover;
    height: 200px;
}

@media (min-width: 992px) {
    .museum-grid>div {
        height: 265px;
    }
}

@media (min-width: 992px) {
    .museum-grid .div1 {
        grid-area: 1/1/2/2;
    }

    .museum-grid .div2 {
        grid-area: 1/2/2/3;
    }

    .museum-grid .div3 {
        grid-area: 1/3/2/5;
    }

    .museum-grid .div4 {
        grid-area: 2/1/3/3;
    }

    .museum-grid .div5 {
        grid-area: 2/3/3/4;
    }

    .museum-grid .div6 {
        grid-area: 2/4/3/5;
    }
}

.park .container {
    padding-bottom: 10px;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .park-slider {
        margin-top: 35px;
    }
}

.park-slider__item {
    padding-top: 100%;
    margin-left: 10px;
    margin-right: 10px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 991px) {
    .park .paragraf {
        display: none;
    }
}

.formats-grid {
    margin-top: 35px;
    display: grid;
    grid-column-gap: 0px;
}

@media (min-width: 576px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1300px) {
    .formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.formats-grid__item {
    text-align: center;
    padding: 20px 35px;
}

@media (max-width: 575px) {
    .formats-grid__item {
        border-bottom: 1px solid black;
    }
}

@media (min-width: 576px) and (max-width: 1299px) {
    .formats-grid__item:nth-child(2n-1) {
        border-right: 1px solid black;
    }

    .formats-grid__item:nth-child(1),
    .formats-grid__item:nth-child(2) {
        border-bottom: 1px solid black;
    }
}

@media (min-width: 1300px) {
    .formats-grid__item {
        border-right: 1px solid black;
    }
}

.formats-grid__item-image {
    height: 62px;
}

.formats-grid__item-image img {
    margin: auto;
}

.formats-grid__item h3 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 10px;
}

.formats-grid__item p {
    margin: 0px;
    font-weight: 500;
    font-size: 14px;
    color: var(--gray);
}

.formats-grid__item:last-child {
    border-right: none;
}

.formats-grid__item img {
    margin: 0px auto;
}

.part-reviews .title {
    margin-bottom: 35px;
}

.part-reviews__item {
    margin: 0px 15px;
    border: 1px solid var(--gray);
    padding: 20px;
    background-color: var(--beige);
    height: 100%;
}

.part-reviews__item-head {
    display: flex;
}

.part-reviews__item-head-image {
    flex: 0 0 60px;
}

@media (min-width: 992px) {
    .part-reviews__item-head-image {
        flex: 0 0 110px;
    }
}

.part-reviews__item-head-image div {
    background-size: contain;
    background-position: center;
    padding-top: 100%;
    background-repeat: no-repeat;
}

.part-reviews__item-head-content {
    padding-left: 20px;
    display: flex;
    vertical-align: middle;
    align-items: center;
    flex: 0 0 calc(100% - 60px);
}

@media (min-width: 992px) {
    .part-reviews__item-head-content {
        flex: 0 0 calc(100% - 110px);
    }
}

.part-reviews__item-head h3 {
    font-weight: 700;
    color: var(--gray);
    margin: 0px;
    font-size: 17px;
}

@media (min-width: 992px) {
    .part-reviews__item-head h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .team .btn-list {
        margin-top: 25px;
    }
}

@media (min-width: 992px) {
    .team-flex {
        display: flex;
    }

    .team-flex>div {
        flex: 0 0 50%;
    }
}

.team-users {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

@media (min-width: 992px) {
    .team-users {
        padding-left: 40px;
    }
}

.team-users>div {
    flex: 0 0 50px;
}

@media (min-width: 992px) {
    .team-users>div {
        flex: 0 0 100px;
    }
}

.team-users__item {
    border: 1px solid var(--gray);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    height: 50px;
    width: 50px;
}

@media (min-width: 992px) {
    .team-users__item {
        height: 100px;
        width: 100px;
    }
}

.mission .about-project-grid {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .mission .about-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mission .about-project-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .mission .about-project-grid>div {
        border-right: none !important;
    }
}

@media (max-width: 991px) {
    .mission .about-project-grid>div {
        border-bottom: 1px solid var(--black);
    }

    .mission .about-project-grid>div:last-child {
        border-bottom: none !important;
    }
}

@media (min-width: 992px) {
    .mission .about-project-grid>div {
        border-bottom: none !important;
        border-bottom: 1px solid var(--black);
        border-right: 1px solid var(--gray);
    }
}

.mission .about-project-grid>div:last-child {
    border-right: none;
}

@media (min-width: 992px) {
    .values-flex {
        display: flex;
        margin-right: -10px;
        margin-left: -10px;
    }
}

.values-flex>div {
    padding: 0px 10px;
    flex: 0 0 100%;
}

@media (min-width: 992px) {
    .values-flex>div {
        flex: 0 0 50%;
        flex-wrap: wrap;
    }
}

.story-line {
    display: flex;
    background-image: url("/images/story-dots.svg");
    background-repeat: no-repeat;
    background-position: center 9px;
    margin-bottom: 45px;
}

.story-line>div {
    flex: 0 0 12.5%;
    width: 12.5%;
    padding-top: 30px;
    text-align: center;
    position: relative;
}

@media (max-width: 760px) {
    .story-line>div:nth-child(2n) {
        padding-top: 55px;
    }
}

.story-line>div::before {
    content: " ";
    top: 0;
    border-radius: 50%;
    border: 1px solid var(--gray);
    left: calc(50% - 10px);
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--beige);
}

.story-line>div:hover::before,
.story-line>div.active::before {
    background-color: var(--green);
}

.story-content .title {
    margin-bottom: 10px;
}

footer {
    background-color: var(--gray);
}

footer .container {
    padding-bottom: 60px;
}

footer *,
footer .title {
    color: var(--white);
}

footer .main-sections {
    grid-column: 1/19;
}

@media (max-width: 991px) {
    footer .main-sections .title {
        text-align: center;
    }
}

@media (min-width: 992px) {
    footer .main-sections {
        grid-column: 1/7;
    }
}

footer .main-sections__menu li {
    margin-bottom: 25px;
}

footer .main-sections__menu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    text-transform: uppercase;
    display: block;
    background-position: right 20px center;
    padding-right: 50px;
    background-repeat: no-repeat;
    background-image: url("/images/menu-arrow.svg");
    width: 325px;
    max-width: 100%;
}

@media (max-width: 991px) {
    footer .main-sections__menu a {
        margin: 0px auto;
    }
}

footer .information {
    grid-column: 1/19;
}

@media (min-width: 992px) {
    footer .information {
        grid-column: 7/19;
    }
}

@media (min-width: 768px) {
    footer .information-wrapper {
        display: flex;
    }
}

@media (max-width: 767px) {
    footer .information-wrapper {
        text-align: center;
    }

    footer .information-wrapper>div {
        margin-top: 45px;
    }

    footer .information-wrapper .title {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) {
    footer .information-wrapper .footer-locations {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
}

footer .information-wrapper .footer-locations__callback a {
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    text-transform: uppercase;
    color: var(--yellow);
    display: inline-block;
    margin-bottom: 20px;
}

footer .information-wrapper .footer-locations__callback-soc a {
    margin-right: 10px;
}

footer .information-wrapper .footer-locations__contact {
    display: flex;
    margin-bottom: 25px;
}

footer .information-wrapper .footer-locations__contact-icon {
    flex: 0 0 40px;
    width: 40px;
}

footer .information-wrapper .footer-locations__contact-info {
    flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
    padding-left: 20px;
    font-size: 16px;
    line-height: 169%;
    padding-right: 15px;
}

@media (min-width: 768px) {
    footer .information-wrapper .footer-useful {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}

footer .information-wrapper .footer-useful__chat span {
    width: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

footer .information-wrapper .footer-useful__chat a {
    color: var(--yellow);
}

footer .information-wrapper:last-child {
    margin-top: 35px;
}

/*# sourceMappingURL=style.css.map */


.post-types {
    margin-bottom: 40px;
    padding-top: 10px;
}

.post-types .btn.mini-padding {
    padding: 10px 25px;
}

.post-types .btn {
    margin-left: 5px;
}

.post-types .btn.active,
.post-types .btn:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.partners-slider {
    margin-left: -14px;
    margin-right: -14px;
}