@charset "UTF-8";

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

body {
    margin: 0;
    color: #333;
    background-color: #fff;
    font-family: Gilroy, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500
}

body.fixed {
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    body.fixed {
        overflow: unset;
    }
}

body * {
    box-sizing: border-box
}

body a {
    color: inherit;
    text-decoration: none;
    text-underline-position: under
}

body img {
    vertical-align: middle
}

body p, body blockquote {
    margin: 0
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px
}

.header__wrapper--top {
    padding: 10px 0;
    background-color: #f8f8f8;
    font-size: 13px
}

.header__wrapper--middle {
    padding: 14px 0;
    border-bottom: 1px solid #E2E2E2;
}

.header__wrapper--bottom {
    display: none;
    padding-bottom: 15px
}

.header__wrapper--top .header__menu, .header__wrapper--middle .header__contacts, .header__wrapper--middle .header__socials, .header__wrapper--middle .header__button {
    display: none
}

.header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: border-color .3s ease;
}

.header__burger:hover {
    border-color: #BCC0C7;
}

.header__burger:before, .header__burger:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background-color: #333;
    transition: background-color .3s ease, transform .3s ease, top .3s ease
}
header.header{
	border:none;
}
.header__burger:before {
    transform: translateY(-3px)
}

.header__burger:after {
    transform: translateY(3px)
}

.header__burger.active {
    background-color: #f8f8f8
}

.header__burger.active:before {
    transform: translateY(0) rotate(45deg)
}

.header__burger.active:after {
    transform: translateY(0) rotate(-45deg)
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.header__link--with-icon {
    display: flex;
    align-items: center
}

.header__wrapper--top .header__link--with-icon .header__link-icon {
    color: #e6007e;
    margin-right: 6px
}

.header__logotype {
    width: 100%;
    max-width: 120px
}

.header__logotype.disabled {
    display: none;
}

.header__search {
    margin-left: auto;
    margin-right: 8px
}

.header__contacts {
    white-space: nowrap
}

.header__contacts .header__link {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600
}

.header__schedule {
    color: #727272
}

.header__link--underline {
    color: #e6007e;
    text-decoration: underline
}

.header__link--with-icon {
    color: #727272;
    transition: color .3s ease
}

.header__link--with-icon:hover {
    color: #333
}

.header__link-icon--with-value {
    position: relative
}

.header__link-icon--with-value sup {
    position: absolute;
    right: -7px;
    top: -3px;
    width: 17px;
    height: 17px;
    background-color: #e6007e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #FFFFFF;
    border-radius: 50%
}

.header__wrapper--bottom .header__link svg {
    width: 24px;
    height: 24px
}

.header__wrapper--bottom .header__link-icon--with-value sup {
    width: 20px;
    height: 20px
}

.header__wrapper--bottom .header__content {
    align-items: flex-start
}

.header__wrapper--bottom .header__links {
    display: flex;
    align-items: center;
    gap: 20px
}

.header__wrapper--tabbar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #E2E2E2;
    font-size: 10px;
    color: #727272;
    background-color: #fff;
    box-shadow: 0 -4px 15px #00000008;
    -webkit-overflow-scrolling: auto;
    overflow-x: scroll;
    z-index: 2
}

.header__wrapper--tabbar .header__content {
    justify-content: space-between;
}

.header__wrapper--tabbar .header__link--with-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px
}

.header__wrapper--tabbar .header__link--with-icon:first-child {
    padding-left: 0;
}

.header__wrapper--tabbar .header__link--with-icon:last-child {
    padding-right: 0;
}

.header__wrapper--tabbar .header__link--with-icon[aria-current=page] {
    color: #e6007e
}

.header_fixed .header__wrapper--middle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 20;
}

.header_fixed .header__wrapper--bottom {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 20;
    border-bottom: 1px solid #E2E2E2
}

@media screen and (min-width: 600px) {
    .header__wrapper--top {
        padding: 15px 0;
        font-size: 14px
    }

    .header__wrapper--middle {
        padding: 18px 0
    }

    .header__wrapper--top .header__link--with-icon .header__link-icon {
        margin-right: 8px
    }

    .header__logotype {
        max-width: 140px
    }

    .header__burger {
        width: 42px;
        height: 42px
    }

    .header__burger:before, .header__burger:after {
        width: 19px
    }

    .header__wrapper--tabbar {
        font-size: 12px
    }

    .header__wrapper--tabbar .header__link--with-icon {
        gap: 6px
    }
}

@media screen and (min-width: 768px) {
    .header__wrapper--top .header__menu {
        display: block
    }

    .header__wrapper--top .header__link--phone {
        display: none
    }

    .header__wrapper--middle .header__search {
        width: 100%;
        max-width: 430px
    }

    .header__logotype.disabled {
        display: block;
    }

    .header__wrapper--tabbar {
        display: none
    }
}

@media screen and (min-width: 1024px) {
    .header {
        border-bottom: 1px solid #E2E2E2;
    }

    .header__wrapper--middle {
        border: none;
    }

    .header .header__wrapper--burger,
    .header .header__wrapper--burger.active {
        display: none;
    }

    .header__wrapper--bottom {
        display: block
    }

    .header__wrapper--middle .header__content {
        gap: 14px
    }

    .header__wrapper--middle .header__search {
        margin: 0
    }

    .header__wrapper--middle .header__contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-end
    }

    .header__wrapper--middle .header__socials, .header__wrapper--middle .header__button {
        display: block
    }

    .header__wrapper--middle .header__burger {
        display: none
    }

    .header__wrapper--bottom {
        padding-bottom: 18px
    }

    .header_fixed .header__wrapper--bottom {
        top: 93px;
    }
}

@media screen and (min-width: 1200px) {
    .header__logotype {
        max-width: 160px
    }
}

.menu--top {
    color: #727272
}

.menu--top .menu__list {
    margin: 0 -12px
}

.menu--top .menu__item {
    padding: 0 12px
}

.menu__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none
}

.menu--main .menu__list {
    align-items: center;
    margin: 0 -10px;
    font-size: 14px
}

.menu--main .menu__item {
    margin: 0 10px
}

.menu--main .menu__link {
    transition: color .3s ease
}

.menu--main .menu__link:hover {
    color: #e6007e
}

.menu--main .menu__link-icon {
    width: 18px;
    height: 18px
}

.menu--main .menu__item--dropdown {
    position: relative
}

.menu--main .menu__item--dropdown:hover .menu__submenu {
    display: block
}

.menu--main .menu__item--dropdown:hover .menu__link-icon {
    transform: rotate(180deg)
}

.menu--main .menu__submenu {
    display: none;
    position: absolute;
    top: 100%;
    border-top: 26px solid transparent;
    z-index: 12
}

.menu--main .menu__submenu-list {
    width: max-content;
    padding: 5px;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 8px 40px #0000001a
}

.menu--main .menu__submenu-item {
    margin: 0
}

.menu--main .menu__submenu .menu__link {
    display: block;
    padding: 10px 16px;
    border-radius: 5px
}

.menu--main .menu__submenu .menu__link:hover {
    background-color: #e6007e0f
}

.menu--burger {
    font-size: 16px;
}

.menu--burger .menu__list {
    flex-direction: column;
}

.menu--burger .menu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu--burger .menu__item:not(:last-child) {
    margin-bottom: 16px;
}

.menu--burger .menu__toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    width: 30px;
}

.menu--burger .menu__link-icon svg {
    transform: rotate(-90deg);
}

.menu--burger .menu__submenu-header .menu__link-icon svg {
    transform: rotate(0);
    width: 25px;
    height: 25px;
}

.menu--burger .menu__submenu,
.menu--burger .menu__level--main {
    display: none;
}

.menu--burger .menu__submenu.active,
.menu--burger .menu__level--main.active {
    display: block;
}

.menu--burger .menu__submenu-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 18px;
}

.menu--burger .menu__back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu--burger .menu__submenu-title {
    font-weight: 600;
    margin-left: 10px;
}

.menu--burger .menu__submenu-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.menu--burger .menu__submenu-item:not(:last-child) {
    margin-bottom: 14px;
}


.menu--footer {
    color: #727272
}

.menu--footer .menu__list {
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 20px
}

.menu--footer .menu__list:last-child {
    margin-bottom: 30px
}

.menu--footer .menu__item {
    line-height: 126%;
}

.menu--footer .menu__item--primary {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px
}

@media screen and (min-width: 1024px) {
    .menu--main .menu__list {
        margin: 0 -17px;
        font-size: 16px
    }

    .menu--main .menu__item {
        margin: 0 17px
    }

    .menu--footer {
        display: flex;
        justify-content: space-between;
        margin: 0 -15px
    }

    .menu--footer .menu__list {
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0 15px
    }

    .menu--footer .menu__item--primary {
        margin-bottom: 8px
    }

    .menu--footer .menu__list, .menu--footer .menu__list:last-child {
        margin-bottom: 0
    }
}

.icon svg {
    width: 20px;
    height: 20px;
    stroke: #333;
    fill: #333;
    vertical-align: middle
}

.icon svg path {
    stroke: inherit;
    fill: inherit;
}

.icon--colored svg {
    stroke: currentColor;
    fill: currentColor
}

.icon--stroke svg {
    fill: none
}

.icon--fill svg {
    stroke: none
}

.logotype__link {
    display: block
}

.logotype__image {
    width: 100%;
    min-height: 43px;
    height: auto;
}

.search__input {
    border: none;
    outline: none;
    background: none;
    padding: 0
}

.search__input::placeholder {
    font-family: Gilroy, Arial, sans-serif
}

.search__button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    color: #333;
    transition: color .3s ease
}

.search--title {
    position: relative;
}

.search--title .search__wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #E2E2E2;
    border-radius: 50px;
    padding: 8px;
    position: relative;
    transition: border-color .3s ease;
	margin-bottom:0px;
	font-weight:initial;
}

.search--title .search__wrapper:hover {
    border: 1px solid #BCC0C7;
}

.search--title .search__button[type=submit] {
    color: #e6007e;
}

.search--title .search__wrapper:focus-within .search__button {
    color: #e6007e
}

.search--title .search__input {
    display: none;
    font-size: 14px;
    color: #333
}

.header__wrapper--middle .header__search.active {
    width: 100%;
    padding: 2px 0 3px;
}

.header__wrapper--middle .header__search.active .search__input {
    display: unset;
    width: 100%;
}
.header__wrapper--middle .header__search.active .search__wrapper {
    padding-left: 18px;
    padding-right: 18px;
}

.search--title .search__input::placeholder {
    color: #727272;
    font-weight: 500
}

.search--title .search__button[type=submit] {
    display: none;
}

.search--title .search__clear {
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    padding: 0;
    margin-right: 8px;
    color: #727272;
}

.search--title .search__clear svg {
    width: 18px;
    height: 18px;
}

@media screen and (min-width: 600px) {
    .search--title .search__wrapper {
        padding: 10px
    }

    .header__wrapper--middle .header__search.active {
        padding: 4px 0;
    }
}

@media screen and (min-width: 768px) {
    .search--title .search__wrapper {
        padding: 10px 18px
    }

    .search--title .search__input {
        display: unset;
        width: 100%
    }

    .search--title .search__button[type=button] {
        display: none
    }

    .search--title .search__button[type=submit] {
        display: unset
    }
}

@media screen and (min-width: 1024px) {
    .search--title .search__clear {
        margin-right: 14px;
    }

    .search--title .search__clear svg {
        width: 20px;
        height: 20px;
    }

    .header__wrapper--middle .header__search.active .search__wrapper {
        padding-left: 24px;
        padding-right: 5px;
    }

    .search--title .search__wrapper {
        padding: 5px 5px 5px 24px;
    }

    .search--title .search__button[type=submit] {
        padding: 6px 19px 6px 0;
    }

    .search--title .search__wrapper:focus-within {
        border-color: #e6007e
    }

    .search--title .search__wrapper:focus-within .search__button[type=submit] {
        display: unset;
        padding: 8px 25px;
        background-color: #e6007e;
        border-radius: 50px;
        transition: background-color .3s ease
    }

    .search--title .search__wrapper:focus-within .search__button[type=submit]:before {
        content: "Найти";
        color: #fff;
        font-family: Gilroy, Arial, sans-serif;
    }

    .search--title .search__wrapper:focus-within .search__button[type=submit]:hover {
        background-color: #c80060
    }

    .search--title .search__wrapper:focus-within .search__button[type=submit] svg {
        display: none;
    }
}

.socials--round {
    display: flex;
    align-items: center;
    gap: 8px
}

header .socials--round .socials__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    background-color: #fff;
    transition: color .3s ease, background-color .3s ease
}
footer .socials--round .socials__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    background-color: #fff;
    transition: color .3s ease, background-color .3s ease
}

.socials--round .socials__item:hover {
    color: #fff
}

.socials--round .socials__item--tg:hover {
    background-color: #089ddf
}

.socials--round .socials__item--vk:hover {
    background-color: #07f
}

.card--service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: unset;
}

.card--service .card__image-wrapper {
    height: 300px;
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden
}

.card--service .card__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card--service .card__name {
    font-size: 18px;
    font-weight: 600
}

.card--service .card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
    height: 50px;
    font-size: 14px;
    color: #727272
}
.card--service .card__bottom {
    margin-top: 14px;
}

.card--service .card__link {
    display: flex;
    align-items: center;
    color: #00b7db
}

.card--service .card__link-text {
    margin-right: 4px
}

.card--product {
    height: 100%
}

.card--product .card__content {
    height: 100%;
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    background-color: #f8f8f8
}

.card--product .card__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500
}

.card--product .card__price {
    margin-bottom: 5px;
    font-size: 16px;
    color: #e6007e
}

.card--product .card__price-value {
    font-size: 20px
}

.card--product .card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.card--product .card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid #00B7DB;
    border-radius: 50%;
    color: #00b7db
}

.card--product .card__link-text {
    display: none
}

.card--product .card__image {
    max-height: 160px;
    -o-object-fit: contain;
    object-fit: contain;
}

.card--product_big .card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.card--product_big .card__bottom {
    height: 180px;
    position: relative
}

.card--product_big .card__link{
    z-index: 1;
}

.card--product_big .card__image-wrapper {
    position: absolute;
    right: -80px;
    bottom: -100px;
    max-width: 330px
}

.card--product_big .card__image {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: unset;
}

.card--sale {
    border-radius: 20px;
    border: 1px solid #E6E6E6;
    overflow: hidden
}

.card--sale .card__image-wrapper {
    position: relative;
    height: 300px;
}

.card--sale .card__discount {
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    border-radius: 40px;
    padding: 6px 12px;
    color: #e6007e;
}

.card--sale .card__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card--sale .card__discount-text {
    font-size: 13px;
    margin-left: 6px;
    color: #333333;
}

.card--sale .card__content {
    padding: 20px;
    background-color: #f8f8f8
}

.card--sale .card__discount svg {
    width: 16px;
    height: 16px
}

.card--sale .card__name {
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px
}

.card--sale .card__description {
    margin-top: 8px;
    color: #727272;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px
}

.card--sale .card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.card--sale .card__more {
    color: #E6007E;
    text-decoration: underline;
}

.card--sale .card__date {
    display: flex;
    align-items: center;
    color: #e6007e;
}

.card--sale .card__date-text {
    margin-left: 8px;
    font-size: 14px;
    color: #727272
}

.card--review .card__content {
    padding: 20px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    background-color: #fff;
    height: 250px;
}

.card--review .card__content.show {
    height: 100%;
}

.card--review .card__content.show .card__description {
    display: unset;
    overflow: visible;
    text-overflow: unset;
}

.card--review .card__header {
    margin-bottom: 18px
}

.card--review .card__inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card--review .card__inner:not(:last-child) {
    margin-bottom: 10px
}

.card--review .card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fdc92b
}

.card--review .card__rating-icon {
    width: 12px;
    height: 12px;
}

.card--review .card__rating-icon svg {
    width: inherit;
    height: inherit;
}

.card--review .card__author {
    font-weight: 600;
    font-size: 16px
}

.card--review .card__source {
    max-width: 70px
}

.card--review .card__source-image {
    width: 100%
}

.card--review .card__date {
    font-size: 13px;
    color: #727272
}

.card--review .card__description {
    margin: 0 0 12px;
    line-height: 140%;
    color: #727272;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis
}

.card--review .card__description--overflow {
    -webkit-line-clamp: 5
}

.card--review .card__link {
    display: flex;
    align-items: center;
    color: #00b7db;
    font-size: 14px;
    cursor: pointer;
}

.card--review .card__link-text {
    margin-right: 4px
}

.card--specialty {
    height: inherit
}

.card--specialty {
    padding: 30px;
    background-color: #f8f8f8;
    border: 1px solid #E6E6E6;
    border-radius: 15px;
    height: 100%
}

.card--specialty .card__header {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.card--specialty .card__name {
    margin-left: 16px;
    font-size: 18px;
    font-weight: 600
}

.card--specialty .card__content {
    font-size: 14px;
    color: #727272;
    line-height: 134%
}

.card--specialty .card__icon {
    width: 44px;
    height: 44px
}

.card--advantages {
    height: 100%
}

.card--advantages .card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    background-color: #fff
}

.card--advantages .card__name {
    max-width: 230px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
}

.card--advantages .card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 18px
}

.card--advantages .card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #00B7DB;
    border-radius: 50%;
    color: #00b7db
}

.card--advantages .card__number {
    color: #727272
}

.card--advantages_big .card__content {
    background: url(../images/advantages-bg.png) top center no-repeat;
    background-size: cover
}

.card--advantages_big .card__image-wrapper {
    margin-top: 18px
}

.card--advantages_big .card__image {
    display: block;
    width: 100%;
    max-width: 300px;
    max-height: 270px;
    margin: 0 auto -20px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (min-width: 480px) {
    .card--advantages .card__name {
        max-width: unset
    }
}

@media screen and (min-width: 600px) {
    .card--advantages .card__name {
        max-width: unset
    }
}

@media screen and (min-width: 768px) {
    .card--review .card__content {
        padding: 30px;
        height: 275px;
    }
    .card--review .card__author {
        font-size: 18px;
    }
    .card--review .card__date {
        font-size: 14px;
    }
    .card--review .card__rating-icon {
        width: 14px;
        height: 14px;
    }
    .card--review .card__description {
        font-size: 16px;
    }
    .card--review .card__header {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .card--product .card__content {
        padding: 30px
    }

    .card--product .card__name {
        margin-bottom: 10px;
        font-size: 18px
    }

    .card--product .card__price {
        margin-bottom: 17px;
        font-size: 18px
    }

    .card--product .card__price-value {
        font-size: 24px
    }

    .card--product .card__link {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 16px;
        height: unset;
        min-width: unset;
        border: none;
        border-radius: 0
    }

    .card--product .card__link-text {
        display: block
    }

    .card--product_big {
        height: 100%
    }

    .card--product_big .card__price {
        margin-bottom: 0
    }

    .card--product_big .card__content {
        height: 100%
    }

    .card--product_big .card__bottom {
        height: 385px
    }

    .card--product_big .card__image-wrapper {
        right: -150px;
        width: 500px
    }
    .card--product_big .card__image-wrapper {
        right: -190px;
        max-width: 500px;
        width: 490px;
        bottom: -80px;
    }

    .card--advantages .card__content {
        min-height: 236px;
        padding: 30px;
        position: relative;
        overflow: hidden;
    }

    .card--advantages .card__name {
        font-size: 18px
    }

    .card--advantages .card__bottom {
        margin-top: 30px
    }

    .card--advantages .card__icon {
        width: 54px;
        height: 54px
    }
    .card--advantages .card__icon svg {
        width: 28px;
        height: 28px
    }

    .card--advantages_big .card__image {
        width: unset;
        max-width: unset;
        margin: 0;
        height: 450px;
        position: absolute;
        right: 5px;
        bottom: -50px;
        max-height: unset;
    }
}

@media screen and (min-width: 1200px) {
    .card--product_big .card__image-wrapper {
        right: -135px;
        max-width: 500px;
        scale: 1.2;
        bottom: -65px;
    }
}

.button {
    padding: 12px 14px;
    white-space: nowrap;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    transition: color .3s ease, background-color .3s ease
}

.button--primary {
    color: #fff;
    background-color: #e6007e
}

.button--primary:hover {
    background-color: #c80060
}

.button--secondary {
    color: #e6007e;
    border-color: #e6007e
}

.button--secondary:hover {
    color: #fff;
    background-color: #e6007e
}

.button--slider {
    width: 38px;
    height: 38px;
    aspect-ratio: 1/1;
    padding: 0;
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    background-color: #fff;
    position: unset;
    color: #727272;
    cursor: pointer
}

.button--slider:hover {
    background-color: #e6007e;
    border-color: #e6007e;
    color: #fff
}

.button--slider--prev {
    transform: rotate(-180deg)
}

@media screen and (min-width: 1200px) {
    .button {
        padding: 12px 30px
    }

    .button--slider {
        width: 48px;
        height: 48px;
        padding: 0
    }
}

.section--bg-grey {
    background-color: #f8f8f8
}

.section__title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.section__wrapper {
    padding: 30px 0;
    overflow-x: hidden
}

.section__header {
    margin-bottom: 24px
}

.section__header--has-description .section__title {
    margin-bottom: 12px
}

.section__row {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.section__description {
    color: #727272
}

.section__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.section__link--all {
    color: #e6007e;
    white-space: nowrap;
    text-decoration: underline
}

.section__buttons {
    display: flex;
    align-items: center;
    gap: 8px
}

.section__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.section__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    background: #000;
    opacity: 10%;
    margin: 0 3px;
}

.section__pagination.swiper-pagination-horizontal .swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
    background: #00b7db;
    opacity: 1;
}

.section--tizers .section__wrapper {
    padding: 60px 0
}

.section--catalog .section__wrapper {
    padding: 60px 0 30px
}

.section--catalog .section__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.section--catalog .section__header {
    margin-bottom: 30px
}

.section--catalog .section__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px
}

.section--services .section__wrapper {
    padding: 60px 0
}

.section--about .section__wrapper {
    padding: 30px 0 60px;
}

.section--about .section__title {
    margin-bottom: 30px
}

.section--about .section__description p:not(:first-child) {
    margin-top: 10px
}

.section--about .section__description {
    margin-bottom: 18px;
    line-height: 136%;
}

.section--about .section__blockquote {
    padding-left: 16px;
    border-left: 3px solid #E6007E;
    font-size: 16px;
    margin-bottom: 24px
}

.section--about .section__half .section__image-wrapper {
    display: none
}

.section--about .section__images {
    margin-bottom: 40px
}

.section--about .section__image-wrapper {
    height: 260px
}

.section--about .section__image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover
}

.section--about .section__specialty-item:not(:last-child) {
    margin-bottom: 8px
}

.section--advantages .section__wrapper {
    padding: 60px 0
}

.section--advantages .section__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px
}

.section--reviews .section__wrapper {
    padding: 0 0 30px;
}

.section--reviews .section__header {
    margin-bottom: 30px;
}

.section--reviews .section__header .section__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.section--reviews .section__header .section__buttons {
    display: none;
}

.section--map .section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 0 60px;
}

.section--map .section__map {
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    height: 340px;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 480px) {
    .section--about .section__image-wrapper {
        height: 220px
    }
}

@media screen and (min-width: 600px) {
    .section--catalog .section__grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px
    }

    .section--catalog .section__card {
        width: calc(50% - 10px)
    }

    .section--catalog .section__card--big {
        width: 100%
    }

    .section--advantages .section__grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px
    }

    .section--advantages .section__card {
        width: calc(50% - 10px)
    }

    .section--advantages .section__card--big {
        width: 100%
    }
}

@media screen and (min-width: 768px) {
    .section__row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end
    }

    .section__title {
        font-size: 28px
    }

    .section__header {
        margin-bottom: 40px
    }

    .section__header--has-description .section__title {
        margin-bottom: 14px
    }

    .section__description {
        font-size: 16px
    }

    .section__link--all {
        margin-right: 12px
    }

    .section__pagination {
        display: none;
    }

    .card--sale .card__more {
        display: none;
    }

    .section--about .section__specialty {
        display: flex;
        flex-wrap: wrap;
        margin: -10px
    }

    .section--about .section__specialty .section__specialty-item {
        width: 50%;
        margin-bottom: 0;
        padding: 10px
    }

    .section--about .section__description {
        margin-bottom: 20px
    }

    .section--about .section__blockquote {
        font-size: 18px
    }

    .section--about .section__image-wrapper {
        height: 240px
    }

    .section--reviews .section__header .section__buttons {
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .section__title {
        font-size: 34px
    }

    .section__wrapper {
        padding: 50px 0
    }

    .section__link--all {
        margin-right: 24px;
        font-size: 16px
    }

    .section__column--wide {
        max-width: 920px
    }

    .section--tizers .section__wrapper {
        padding: 70px 0
    }

    .section--services .section__wrapper {
        padding: 100px 0
    }

    .section--sales .section__wrapper {
        padding: 50px 0 100px
    }

    .section--catalog .section__wrapper {
        padding: 100px 0 50px;
    }

    .section--about .section__description {
        max-width: 560px;
    }

    .section--about .section__blockquote {
        max-width: 410px;
    }

    .section--about .section__half .section__image-wrapper {
        display: block;
        height: 100%;
    }

    .section--about .section__images .section__image-wrapper--preview {
        display: none;
    }

    .section--about .section__content {
        display: flex;
        margin: 0 -10px 30px
    }

    .section--about .section__blockquote {
        margin-bottom: 0;
    }

    .section--about .section__half {
        width: 50%;
        padding: 0 10px
    }

    .section--reviews .section__wrapper {
        padding: 50px 0;
    }

    .section--reviews .section__header {
        margin-bottom: 40px;
    }

    .section--map .section__wrapper {
        padding: 50px 0 100px;
    }

    .section--catalog .section__grid {
        gap: 30px
    }

    .section--catalog .section__cards {
        display: flex;
        gap: 30px
    }

    .section--catalog .section__card {
        width: calc(50% - 15px)
    }

    .section--catalog .section__grid {
        margin: 0
    }

    .section--catalog .section__card--big {
        width: 60%
    }

    .section--advantages .section__title {
        max-width: 660px;
    }

    .section--advantages .section__wrapper {
        padding: 100px 0 100px
    }

    .section--advantages .section__cards {
        display: flex;
        gap: 30px
    }

    .section--advantages .section__grid {
        gap: 30px;
        margin: 0
    }

    .section--advantages .section__card {
        width: calc(33.3333333333% - 20px)
    }

    .section--advantages .section__card > div {
        height: 100%
    }

    .section--advantages .section__card--big {
        min-width: 290px;
    }

    .section--about .section__wrapper {
        padding: 100px 0 100px
    }

    .section--about .section__images {
        margin-bottom: 60px
    }

    .section--about .section__content {
        margin: 0 -15px 30px
    }

    .section--about .section__half {
        padding: 0 15px
    }

    .section--about .section__specialty {
        margin: -15px
    }

    .section--about .section__specialty .section__specialty-item {
        width: 33.3333333333%;
        padding: 15px
    }
}

.tizers--advantages .tizers__item:not(:last-child) {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E2E2E2
}

.tizers--advantages .tizers__header {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    font-weight: 600;
    color: #00b7db
}

.tizers--advantages .tizers__value {
    font-size: 32px;
    line-height: 30px;
    margin-right: 8px
}

.tizers--advantages .tizers__description {
    line-height: 130%;
}

.tizers--advantages .tizers__text {
    text-transform: uppercase;
    line-height: 100%;
    white-space: nowrap
}

@media screen and (min-width: 768px) {
    .tizers--advantages {
        display: flex
    }

    .tizers--advantages .tizers__item {
        width: 25%;
        position: relative
    }

    .tizers--advantages .tizers__item:not(:last-child):after {
        content: "";
        position: absolute;
        right: 0;
        top: 32px;
        width: 1px;
        height: calc(100% - 64px);
        background-color: #e6e6e6
    }

    .tizers--advantages .tizers__item:not(:last-child) {
        padding-right: 15px;
        margin-right: 15px;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none
    }
}

@media screen and (min-width: 1024px) {
    .tizers--advantages .tizers__item:not(:last-child) {
        padding-right: 30px;
        margin-right: 30px
    }

    .tizers--advantages .tizers__header {
        display: flex;
        align-items: baseline;
        margin-bottom: 10px;
        color: #00b7db
    }

    .tizers--advantages .tizers__value {
        font-size: 48px;
        line-height: 40px;
    }

    .tizers--advantages .tizers__text,
    .tizers--advantages .tizers__description {
        font-size: 15px
    }
}

.banner {
    position: relative;
    overflow-x: hidden
}

.banner .banner__item {
    height: unset;
}

.banner .banner__wrapper {
    padding: 30px 0 46px;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.banner .banner__wrapper--image {
    display: block;
    background-position: center;
    background-size: contain;
    height: 320px;
}

.banner .banner__tizers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 38px
}
a.banner__tizer{
    order: 1;
}
.banner .banner__tizer {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 2px 20px #91b4c033;
    padding: 4px 18px 4px 4px
}

.banner .banner__tizer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #00b7db;
    color: #fff
}

.banner .banner__tizer-text {
    font-size: 13px
}

.banner .banner__title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 100%;
    font-weight: 600;
}
.banner h1.banner__title{
	text-transform: inherit;
	color:inherit;
	text-align:inherit;
	padding-bottom:0;
	font-family: Gilroy, Arial, sans-serif;
}
.banner .banner__title span {
    color: #e6007e
}

.banner .banner__text {
    font-size: 15px;
    color: #727272;
    line-height: 135%;
}

.banner .banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.banner .banner__image-wrapper {
    display: none
}

.banner .banner__image {
    width: 100%;
    max-height: 530px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner .banner__navs {
    position: absolute;
    bottom: 10px;
    z-index: 1;
    left: 50%;
    transform: translate(-50%);
}

.banner .banner__navs-buttons {
    display: none
}

.banner .banner__pagination {
    display: flex;
    align-items: center
}

.banner .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    background: #000;
    opacity: 10%
}

.banner .swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
    background: #00b7db;
    opacity: 1
}

@media screen and (min-width: 480px) {
    .banner .banner__buttons {
        flex-direction: row
    }

    .banner .banner__buttons .button {
        width: 100%;
        max-width: 240px
    }
}

@media screen and (min-width: 600px) {
    .banner .banner__wrapper--image {
        height: 480px;
    }

    .banner .banner__tizers {
        flex-direction: row
    }

    .banner .banner__tizer-text {
        font-size: 14px
    }

    .banner .banner__title {
        font-size: 32px
    }

    .banner .banner__text {
        font-size: 16px
    }
}

@media screen and (min-width: 768px) {

    .banner .banner__title {
        font-size: 36px
    }
}

@media screen and (min-width: 1024px) {
    .banner .banner__wrapper--image {
        height: 560px;
    }

    .banner .banner__tizers {
        margin-bottom: 30px
    }

    .banner .banner__tizer-icon {
        width: 40px;
        height: 40px
    }


    .banner .banner__content {
        display: flex;
    }

    .banner .banner__wrapper {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .banner .banner__inner {
        max-width: 580px;
    }

    .banner .banner__image-wrapper {
        display: flex;
        align-items: flex-end;
    }

    .banner .banner__navs-buttons {
        display: flex;
        gap: 10px
    }

    .banner .banner__navs {
        display: flex;
        align-items: center;
        gap: 16px;
        left: 10px;
        transform: unset;
    }
}

@media screen and (min-width: 1200px) {
    .banner .banner__tizers {
        margin-bottom: 85px
    }

    .banner .banner__buttons {
        font-size: 16px;
    }

    .banner .banner__navs {
        left: 10px;
        bottom: 20px;
    }

    .banner .banner__title {
        font-size: 46px
    }

    .banner .banner__text {
        font-size: 18px;
        max-width: 490px;
    }

    .banner .banner__buttons .button {
        padding: 14px 30px
    }
}

@media screen and (min-width: 1280px) {
    .banner .banner__navs {
        left: calc(50% - 630px);
        bottom: 20px;
    }
}

@media screen and (min-width: 1400px) {
    .banner .banner__navs {
        bottom: 40px;
    }

    .banner .banner__content {
        height: 560px;
    }

    .banner .banner__content {
        position: relative;
    }

    .banner .banner__image-wrapper {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .banner .banner__image {
        max-height: unset;
        max-width: 730px;
    }
}

.footer {
    padding: 60px 0 90px;
}
footer.footer {
    background-color: #f4fcff;
	padding-bottom:30px;
	padding-top:80px;
}
.footer__wrapper--top {
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E2E2
}

.footer__wrapper--bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 20px;
    color: #727272
}

.footer__wrapper--bottom .footer__link {
    text-decoration: underline
}

.footer__logotype {
    max-width: 140px;
    margin-bottom: 20px
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px
}

.footer__contact--with-icon {
    display: flex;
    align-items: center
}

.footer__contact--with-icon .footer__contact-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    color: #00b7db;
}

.footer__contact--with-icon .footer__contact-icon svg {
    width: inherit;
    height: inherit;
}

.footer__socials {
    margin-bottom: 24px
}

.footer__socials .socials--round a {
    width: 40px;
    height: 40px;
}

.footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px
}

.footer__notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.footer__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border: 1px solid #00B7DB;
    border-radius: 50%;
    color: #00b7db;
    font-weight: 600;
    margin-right: 12px
}

.footer__notice-text {
    color: #727272;
    line-height: 138%;
}

.footer__notice-title {
    margin-bottom: 10px;
    line-height: 128%;
}

.footer__notice-description {
    color: #727272;
    line-height: 138%;
}

.footer__link--colored {
    color: #e6007e;
    text-decoration: underline
}

@media screen and (min-width: 600px) {
    .footer__wrapper--top {
        display: flex;
        gap: 30px
    }

    .footer__column--short {
        min-width: 200px
    }

    .footer__buttons {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 60px 0 30px
    }

    .footer__column--short {
        min-width: 310px
    }

    .footer__logotype {
        max-width: 190px
    }

    .footer__contacts {
        gap: 12px;
        margin-bottom: 12px;
        font-size: 16px
    }

    .footer__socials {
        margin-bottom: 35px
    }

    .footer__buttons, .footer__notice-title {
        font-size: 16px
    }

    .footer__buttons a {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .footer__wrapper--bottom {
        justify-content: space-between
    }
}

@media screen and (min-width: 1024px) {
    .footer__socials .socials--round a {
        width: 44px;
        height: 44px;
    }
}

@media screen and (min-width: 1024px) {
    .footer {
        padding: 80px 0 30px;
    }

    .footer__logotype {
        max-width: 185px;
        margin-bottom: 24px;
    }

    .footer__notice-icon {
        font-size: 16px;
    }

    .footer__socials {
        margin-bottom: 65px;
    }

    .footer__notice {
        margin-top: 10px;
    }

    .footer__contact--with-icon .footer__contact-icon {
        width: 24px;
        height: 24px;
    }

    .footer__wrapper--top {
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 1200px) {
    .footer__wrapper--top {
        gap: 130px
    }
}

.header__wrapper--burger {
    display: none;
}

.header__wrapper--burger.active {
    display: block;
}

.header__wrapper--burger.active {
    position: absolute;
    left: 0;
    right: 0;
    top: 112px;
    width: 100%;
    height: calc(100vh - 112px);
    background: #ffffff;
    z-index: 12;
    overflow-y: auto;
}

.header__wrapper--burger.active .container {
    height: 100%;
}

.header__wrapper--burger.active .container.overlay {
    height: 100vh;
}

.header_fixed .header__wrapper--burger.active {
    position: fixed;
    top: 72px;
    height: calc(100vh - 72px);
}

@media screen and (min-width: 600px) {
    .header__wrapper--burger.active {
        top: 137px;
        height: calc(100vh - 137px);
    }

    .header_fixed .header__wrapper--burger.active {
        top: 87px;
        height: calc(100vh - 87px);
    }
}

.header__wrapper--burger .header__content {
    padding: 24px 0 20px;
    flex-direction: column;
    align-items: flex-start;
}

.header__wrapper--burger .header__content.show_sub .header__menu {
    padding: 0;
    border: none;
    margin: 0;
}

.header__wrapper--burger .header__content.show_sub .header__contacts-wrapper {
    display: none;
}

.header__wrapper--burger .header__content.show_sub .header__buttons {
    display: none;
}

.header__wrapper--burger .header__menu {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 30px;
}

.header__wrapper--burger .header__contacts-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
}

.header__wrapper--burger .header__contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__wrapper--burger .header__contacts a {
    font-size: 16px;
    font-weight: 600;
}

.header__wrapper--burger .header__socials a {
    width: 40px;
    height: 40px;
}

.header__wrapper--burger .header__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contacts--map .contacts__panel {
    margin-bottom: 20px;
}

.contacts--map .contacts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts--map .contacts__buttons {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid #E6E6E6;
    border-radius: 30px;
    background-color: #ffffff;
}

.contacts--map .contacts__button {
    background-color: transparent;
    color: #333333;
    border: none;
    border-radius: 30px;
    padding: 10px 14px;
    outline: none;
    transition: background-color .3s ease, color .3s ease;
    font-family: Gilroy, Arial, sans-serif;
    cursor: pointer;
}

.contacts--map .contacts__button:hover {
    background-color: #E6007E;
    color: #ffffff;
}

.contacts--map .contacts__button.active {
    background-color: #E6007E;
    color: #ffffff;
}

.contacts--map .contacts__button.active:hover {
    background-color: #C80060;
    color: #ffffff;
}

.contacts--map .contacts__filter {
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #E2E2E2;
    border-radius: 30px;
    background-color: #ffffff;
    position: relative;
}

.contacts--map .contacts__select {
    width: 100%;
    color: #333333;
    font-family: Gilroy, Arial, sans-serif;
    font-size: 14px;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    background-image: url('../images/arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px auto;
}

.contacts--map .contacts__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    background-color: #ffffff;
    order: 1;
}

.contacts--map .contacts__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.contacts--map .contacts__description {
    margin-bottom: 16px;
    color: #727272;
}

.contacts--map .contacts__values {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts--map .contacts__item {
    display: flex;
    align-items: center;
}

.contacts--map .contacts__item-icon {
    margin-right: 10px;
    color: #00B7DB;
}

.contacts--map .contacts__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts--map .contacts__card {
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    background-color: #ffffff;
}

.contacts--map .contacts__address {
    margin-bottom: 8px;
    font-style: normal;
    font-weight: 600;
}

.contacts--map .contacts__phone {
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
    color: #727272;
}

.contacts--map .contacts__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #00B7DB;
}

.contacts--map .contacts__cards {
    scrollbar-width: thin;
    scrollbar-color: #E6007E #E2E2E2;
}

.contacts--map .contacts__cards::-webkit-scrollbar-track {
    background: #E2E2E2;
}

.contacts--map .contacts__cards::-webkit-scrollbar-thumb {
    background-color: #E6007E;
    border-radius: 20px;
    border: 3px solid #E2E2E2;
}
.imp-inf{
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 100px;
}
@media(max-width: 1024px){
   .imp-inf{
        margin-bottom: 60px;
        padding: 20px;
    } 
}
@media screen and (min-width: 600px) {
    .contacts--map .contacts__wrapper {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .contacts--map .contacts__filter {
        width: 40%;
    }

    .contacts--map .contacts__buttons {
        width: 60%;
    }

    .contacts--map .contacts__info {
        order: unset;
        height: inherit;
        width: 50%;
        justify-content: space-between;
    }

    .contacts--map .contacts__wrapper {
        align-items: unset;
    }

    .contacts--map .contacts__cards {
        max-height: 376px;
        overflow-y: auto;
        width: 50%;
        padding-right: 6px;
    }
}

@media screen and (min-width: 1024px) {
    .section--map .section__wrapper {
        flex-direction: row;
        gap: 20px;
    }

    .section--map .section__content {
        width: 55%;
    }

    .section--map .section__map {
        width: 45%;
        max-height: 520px;
        height: inherit;
    }

    .contacts--map .contacts__info {
        padding: 30px;
        font-size: 16px;
    }

    .contacts--map .contacts__title {
        font-size: 22px;
    }

    .contacts--map .contacts__description {
        margin-bottom: 20px;
    }

    .contacts--map .contacts__card {
        padding: 24px 30px;
    }

    .contacts--map .contacts__cards {
        max-height: 445px;
    }

    .contacts--map .contacts__values {
        gap: 12px;
    }

    .contacts--map .contacts__select {
        font-size: 16px;
    }

    .contacts--map .contacts__address {
        font-size: 16px;
    }

    .contacts--map .contacts__address span {
        display: block;
    }

    .contacts--map .contacts__phone {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .contacts--map .contacts__filter {
        width: 50%;
    }

    .contacts--map .contacts__buttons {
        width: 50%;
    }

    .contacts--map .contacts__button {
        font-size: 14px;
        flex: auto;
    }
}
.index_page_wrapper h2{
	text-align:inherit;
	color: inherit;
	text-transform:inherit;
	font-weight:600;
	font-family: Gilroy, Arial, sans-serif;
} 
.index_page_wrapper h3{
	text-align:inherit;
} 
@media screen and (max-width:800px) {
	footer.footer{
		padding-bottom:80px;
	}
}

