/* For old browsers */
@supports (not(--css: variables))
{
    .supports-error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports-error
    {
        display: flex !important;
    }
}


/*------------------------
    Fonts
------------------------*/
@font-face
{
    font-family: "MuseoSansCyrl";
    font-weight: 300;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/MuseoSansCyrl-300.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-300.ttf") format("truetype");
}

@font-face
{
    font-family: "MuseoSansCyrl";
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/MuseoSansCyrl-500.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-500.ttf") format("truetype");
}

@font-face
{
    font-family: "MuseoSansCyrl";
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/MuseoSansCyrl-700.woff") format("woff"),
    url("../fonts/MuseoSansCyrl-700.ttf") format("truetype");
}

@font-face
{
    font-family: "PTRoubleSans";
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/PTRoubleSans.woff") format("woff"),
    url("../fonts/PTRoubleSans.ttf") format("truetype");
}


/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

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

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --font_family: "MuseoSansCyrl", sans-serif;
    --scroll_width: 12px;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


@media (min-width: 1025px)
{
    html.custom_scroll ::-webkit-scrollbar
    {
        width: 12px;
        height: 12px;

        background-color: #F9F9F8;
    }

    html.custom_scroll ::-webkit-scrollbar-thumb
    {
        border: 2px solid #F9F9F8;
        background-color: #1f6885;
    }

    html.custom_scroll,
    html.custom_scroll *
    {
        scrollbar-color: #1f6885 #F9F9F8;
        scrollbar-width: thin;
    }
}


body
{
    color: #000;
    font: 14px/1.43 var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    background: #FFF;
}


body.lock,
body.lock-modal
{
    overflow: hidden;

    margin-right: var(--scroll_width);
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    position: relative;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


.cont
{
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 10px;
}


.lazyload
{
    opacity: 0;

    transition: opacity .5s linear;
}

.lazyload.loaded
{
    opacity: 1;
}


._flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rub
{
    font-family: "PTRoubleSans";
    font-style: normal;
    line-height: .8;
}


.overlay-menu
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: 100%;

    pointer-events: none;

    opacity: 0;
    background: #000;

    transition: opacity .2s linear, visibility .2s linear;
}

.overlay-menu.show
{
    visibility: visible;

    pointer-events: auto;

    opacity: .3;
}


.supports-error
{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    font-family: "Arial", sans-serif;
    font-size: 20px;
    line-height: 30px;

    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #FFF;
}

.supports-error.show
{
    display: flex;
}



/*------------
    Header
------------*/
.header
{
    position: relative;
    z-index: 102;
    top: 0;
    left: 0;

    width: 100%;
    padding: 10px 0 10px;

    background: #1d1d1b;
}

.header .cont
{
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.header__logo
{
    width: 77px;
    margin-right: auto;
}

.header__logo a,
.header__logo img
{
    display: block;

    max-width: 100%;
}

.header-menu
{
    line-height: normal;

    display: none;

    margin: 0 auto 0 30px;
}

.header-menu__item + .header-menu__item
{
    /* margin-left: 30px; */
}

.header-menu__btn
{
    position: relative;

    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;

    display: block;

    text-align: left;
}

.header-menu__btn::before
{
    content: "";

    position: absolute;
    bottom: -2px;
    left: 0;

    width: 100%;
    height: 2px;

    pointer-events: none;

    background: #FFF;

    transition: transform .2s linear;
    transform: scale(0);
}

.header-menu__btn:hover::before
{
    transform: scale(1);
}

.header__phone,
.header__phone a
{
    color: #FFF;
    font-size: 14px;
    line-height: normal;

    text-decoration: none;
}

.header__tg
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.header__tg img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.mob-menu-btn
{
    position: relative;

    color: currentColor;

    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 24px;
    height: 24px;
    margin-right: 21px;
    padding: 6px 4px;
}

.mob-menu-btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    border-radius: 2px;
    background: #FFF;

    transition: .2s linear;
}

.mob-menu-btn span + span
{
    margin-top: 3px;
}

.mob-menu-btn.active span:nth-child(2)
{
    width: 100%;

    opacity: 0;
}

.mob-menu-btn.active span:nth-child(1)
{
    top: 5px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.mob-menu-btn.active span:nth-child(3)
{
    top: -5px;

    width: 100%;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


.mob-header
{
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    padding: 110px 0 40px;

    text-align: center;
    pointer-events: none;

    opacity: 0;
    background: #F3F6F7;

    transition: opacity .2s linear, visibility .2s linear;
}

.mob-header.show
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}

.mob-header__title
{
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.mob-header__menu
{
    font-size: 20px;
    line-height: 1;

    margin-top: 30px;
}

.mob-header__menu div + div
{
    margin-top: 30px;
}

.mob-header__menu a,
.mob-header__menu button
{
    color: #000;

    text-decoration: none;
}

.mob-header__phone
{
    font-size: 32px;
    line-height: normal;

    margin-top: 40px;
}

.mob-header__phone a
{
    color: #000;

    text-decoration: none;

    border-bottom: 1px solid;
}

.mob-header__tg
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 50px;
    height: 50px;
    margin: 30px auto 0;
    padding: 13px;

    border-radius: 50%;
    background: #FFF;
}

.mob-header__tg img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


/*------------------
    Form elements
------------------*/
.section-form
{
    margin-top: 20px;
}

.section-form_marg
{
    margin-top: 60px;
}

.section-form__bg
{
    position: relative;

    padding: 20px 10px 10px;

    border-radius: 8px;
}

.section-form__bg::before
{
    content: "";

    position: absolute;
    top: 8px;
    left: 0;

    width: 100%;
    height: calc(100% - 8px);

    background: url(../images/ic_pattern.svg) 0 0 no-repeat;
}

.section-form__bg_red
{
    background: linear-gradient(88.7deg, #FF475C 2.18%, #F66 97.63%);
}

.section-form__bg_orange
{
    background: linear-gradient(0deg, #1f6885, #1f6885), linear-gradient(88.7deg, #FF475C 2.18%, #F66 97.63%);
}

.section-form__box
{
    position: relative;

    width: 100%;
}

.section-form__title
{
    color: #FFF;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.26;

    text-align: center;
}

.section-form__subtitle
{
    color: #FFF;
    font-weight: 300;

    margin-top: 10px;

    text-align: center;
}

.section-form__form
{
    position: relative;

    width: 100%;
    margin-top: 20px;
}


::-webkit-input-placeholder
{
    color: #1f6885;
}

::-moz-placeholder
{
    color: #1f6885;

    opacity: 1;
}

:-moz-placeholder
{
    color: #1f6885;
}

:-ms-input-placeholder
{
    color: #1f6885;
}


.form-flex
{
    justify-content: space-between;
}

.form__line
{
    margin-bottom: 10px;
}

.form .form__input
{
    color: #1f6885;
    font: 14px var(--font_family);

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 19px;

    border: 1px solid #1f6885;
    border-radius: 8px;
    background: transparent;

    transition: border .2s linear;
}

.form .form__input_red
{
    color: #FFF;

    border-color: transparent;
    background: #F54559;
}

.form .form__input_orange
{
    color: #FFF;

    border-color: transparent;
    background: #E38C23;
}

.form__input_red::-webkit-input-placeholder,
.form__input_orange::-webkit-input-placeholder
{
    color: #FFF;
}

.form__input_red::-moz-placeholder,
.form__input_orange::-moz-placeholder
{
    color: #FFF;
}

.form__input_red:-moz-placeholder,
.form__input_orange:-moz-placeholder
{
    color: #FFF;
}

.form__input_red:-ms-input-placeholder,
.form__input_orange:-ms-input-placeholder
{
    color: #FFF;
}

.form .form__textarea
{
    color: #1f6885;
    font: 14px var(--font_family);

    display: block;

    width: 100%;
    height: 200px;
    padding: 19px 19px;

    resize: none;

    border: 1px solid #1f6885;
    border-radius: 8px;
    background: transparent;

    transition: border .2s linear;
}

.form .error,
.form .error + .nice-select .current
{
    border-color: #F54559;
}


.form .input:disabled,
.form textarea:disabled
{
    cursor: default;
    pointer-events: none;

    opacity: .8;
}


.form .error-text
{
    color: #F54559;
    font-size: 12px;
    line-height: normal;

    margin-top: 4px;
}


.form-submit-btn
{
    color: #FFF;
    font-size: 14px;

    display: block;

    width: 100%;
    height: 50px;
    padding: 0;

    text-align: center;

    border-radius: 8px;
    background: #1f6885;

    transition: background .2s linear;
}

.form-submit-btn_white
{
    color: #000;

    background: #FFF;
}



/*---------------
	Btns
---------------*/
.btn-green
{
    color: #FFF;
    font-size: 14px;

    display: block;

    width: 100%;
    height: 50px;
    padding: 0;

    text-align: center;

    border-radius: 8px;
    background: #1f6885;

    transition: background .2s linear;
}

.btn-bord
{
    color: #1f6885;
    font-size: 14px;

    display: block;

    width: 100%;
    height: 50px;

    text-align: center;

    border: 1px solid #1f6885;
    border-radius: 8px;

    transition: color .2s linear, border .2s linear;
}

.btn-bord.modal-btn {
    background: #1d1d1b;
    color: #FFF;
}

/*---------------
	Page head
---------------*/
.main-title
{
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.main-subtitle
{
    font-size: 16px;

    margin-top: 10px;
}



/*------------------------
	Slider controls
------------------------*/
.swiper
{
    position: relative;

    margin: 0;
}

.swiper_visible
{
    overflow: visible;
}

.swiper-overflow
{
    overflow: hidden;
}

.swiper-wrapper
{
    height: auto;
}

.slider-buttons
{
    position: relative;

    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;

    width: 90px;
    margin: 20px auto 0;
    padding: 10px 8px;

    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, .05);
}

.slider-buttons.bord:after
{
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
}

.slider-buttons::before
{
    content: "";

    position: absolute;
    top: 10px;
    left: 50%;

    width: 1px;
    height: calc(100% - 20px);

    background: rgba(0, 0, 0, .2);
}

.slider-button-prev,
.slider-button-next
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 20px;
    height: 20px;

    cursor: pointer;

    opacity: 1;
    border: none;
    background: url(../images/arrow1.svg) 50% no-repeat;

    transition: opacity .2s linear;
}

.slider-button-prev
{
    transform: rotate(180deg);
}

.slider-button-prev.swiper-button-disabled,
.slider-button-next.swiper-button-disabled
{
    cursor: default;
    pointer-events: none;

    opacity: 0;
}



/*-----------------
    Main section
-----------------*/
.first-section
{
    position: relative;

    overflow: hidden;

    padding: 20px 0 10px;

    background: #F3F6F7;
}

.big-sale
{
    position: absolute;
    z-index: 10;
    
	right: 7%;
	
    color: #FFF;
    font-size: 23px;
    line-height: 1.22;

    width: 61px;
    height: 75px;
    padding: 11px 5px;

    text-align: center;
    pointer-events: none;

    background: url(../images/ic_sale2.svg) 50% no-repeat;
}

.main-slider
{
    overflow: visible;

    width: calc(100% + 40px);
    margin-left: -40px;
    padding-right: 40px;
}

.main-slider__img
{
    position: relative;

    padding-bottom: 56.62%;
}

.main-slider__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 20px;

    object-fit: cover;
}

.main-slider .slider-buttons
{
    display: none;
}

.first-section__coll
{
    margin-top: 20px;
}

.first-section__top
{
    position: relative;
}

.first-section__box
{
    position: relative;

    overflow: hidden;

    min-height: 146px;
    padding: 17px 128px 29px 13px;

    border-radius: 8px;
    background: #FFF;
}

.first-section__title
{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.04;
}

.first-section__title span
{
    color: #1f6885;
}

.first-section__img
{
    position: absolute;
    top: 50%;
    right: -62px;

    width: 179px;
    height: 179px;

    border-radius: 50%;

    transform: translateY(-50%);
}

.first-section__sale
{
    position: absolute;
    right: 6px;
    bottom: -6px;

    color: #FFF;
    font-size: 19px;
    font-weight: 700;
    line-height: 50px;

    padding: 0 42px;

    text-align: center;

    border-radius: 8px;
    background: #FF475C;

    transform: rotate(-15deg);
}

.first-section__list
{
    margin-top: 43px;

    list-style: none;
}

.first-section__list li
{
    position: relative;

    font-size: 20px;

    display: block;

    padding: 15px 20px 15px 32px;

    border-radius: 8px;
    background: #FFF;
}

.first-section__list li::before
{
    content: "";

    position: absolute;
    top: 26px;
    left: 20px;

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #1f6885;
}

.first-section__list li + li
{
    margin-top: 10px;
}

.first-section__btn-green
{
    margin-top: 30px;
}



/*-----------------
    Products
-----------------*/
.products
{
    margin-top: 60px;
}

.products__grid
{
    align-content: stretch;
    align-items: stretch;

    margin: -30px -10px 0;
}

.products__grid .product
{
    display: flex;
    flex-direction: column;

    width: 100%;
    margin-top: 60px;
    padding: 40px 10px 10px;

    text-align: center;

    border-radius: 8px;
    background: #F3F6F7;
}

.product__name
{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;

    width: 100%;
}

.product__price
{
    color: #1f6885;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;

    width: 100%;
    margin-top: 10px;
}

.product__price span
{
    color: rgba(0, 0, 0, .2);

    text-decoration: line-through;
}

.product__thumb
{
    position: relative;

    width: 100%;
    margin-top: 10px;
}

.product__sale
{
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;

    color: #FFF;
    font-size: 23px;
    line-height: 84px;

    width: 84px;
    height: 84px;

    text-align: center;
    pointer-events: none;

    background: url(../images/ic_sale.svg) 50%/contain no-repeat;
}

.product__slider .swiper-overflow
{
    border-radius: 20px;
}

.product__slider .slider-buttons
{
    margin-top: 10px;
}

.product__img
{
    position: relative;

    overflow: hidden;

    min-height: 312px;

    border-radius: 20px;
}

.product__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product__desc
{
    font-size: 20px;
    line-height: 1;

    width: 100%;
    margin: 30px 0 auto;
}

.product__list
{
    font-size: 20px;
    line-height: 1;

    width: 100%;
    margin: 30px 0 auto;
}

.product__list div + div
{
    margin-top: 10px;
}

.product__list span
{
    position: relative;

    display: inline-block;

    padding-left: 13px;

    vertical-align: top;
}

.product__list span::before
{
    content: "";

    position: absolute;
    top: 6.5px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #1f6885;
}

.product__text-block
{
    margin-top: 20px;
}

.product__bot
{
    margin-top: 35px;
}

.product .btn-green
{
    margin-top: 10px;
}



/*-----------------
    Advantages
-----------------*/
.advantages
{
    margin-top: 60px;
}

.advantages__items
{
    align-content: stretch;
    align-items: stretch;

    margin-top: 20px;
}

.advantages__item
{
    width: 100%;
    margin-top: 10px;
}

.advantages__item
{
    display: flex;
    overflow: hidden;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;

    margin-top: 10px;

    border-radius: 8px;
    background: #F3F6F7;
}

.advantages__icon
{
    position: relative;

    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;

    width: 118px;
    height: 130px;
    padding: 10px 25px 10px 10px;
}

.advantages__icon::before
{
    content: "";

    position: absolute;
    top: 50%;
    right: 0;

    width: 186px;
    height: 186px;
    margin-top: -93px;

    border-radius: 50%;
    background: #1f6885;
}

.advantages__icon img
{
    position: relative;

    display: block;

    max-width: 100%;
    max-height: 100%;
}

.advantages__name
{
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    width: 100%;
    padding: 0 10px 0 14px;
}



/*-----------------
    Our work
-----------------*/
.our-work
{
    position: relative;
    z-index: 1;

    margin-top: 60px;
}

.our-work__bg
{
    overflow: hidden;

    margin-top: 20px;
    padding-bottom: 20px;

    border-radius: 8px;
    background: #F3F6F7;
}

.our-work__img
{
    position: relative;

    display: block;

    min-height: 292px;
}

.our-work__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 8px 8px 0 0;

    object-fit: cover;
}

.our-work__name
{
    color: #000;
    font-size: 14px;
    font-weight: 300;

    padding: 10px 10px 0;
}



/*-----------------
    Reviews
-----------------*/
.reviews
{
    margin-top: 60px;
}

.reviews .main-subtitle
{
    color: #FFF;

    display: none;
}

.reviews__colr
{
    margin-top: 20px;
}

.reviews__slide
{
    padding: 11px 18px 18px;

    border: 2px solid #1f6885;
    border-radius: 8px;
}

.reviews__bg
{
    display: none;
}

.reviews__top
{
    align-content: center;
    align-items: center;
}

.reviews__number
{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;

    margin-right: 7px;
}

.reviews__star
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 20px;
    height: 20px;
}

.reviews__star img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.reviews__text
{
    font-weight: 300;

    margin-top: 16px;
}



/*------------------------
    Typography
------------------------*/
.text-block
{
    font-weight: 300;
}

.text-block > :last-child
{
    margin-bottom: 0 !important;
}

.text-block h1,
.text-block > .title
{
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 20px;
}

.text-block h2
{
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 20px;
}

.text-block h3
{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 20px;
}

.text-block p
{
    margin-bottom: 20px;
}

.text-block img
{
    display: block;

    max-width: 100%;
    margin-bottom: 20px;
}



/*------------
    Footer
------------*/
.footer
{
    position: relative;

    /* margin-top: -130px; */
    margin-top: 100px;
    /* padding: 180px 0 42px; */
    padding: 42px 0;

    text-align: center;

    background: #1f6885;
}

.footer::before
{
    content: "";

    position: absolute;
    /* top: 70px; */
    top: 0;
    left: 0;

    width: 100%;
    min-width: 722px;
    height: 100%;

    /*background: url(../images/ic_pattern2.svg) 0 0/cover no-repeat;*/
}

.footer .cont
{
    position: relative;
}

.footer__logo
{
    width: 137px;
    margin: 0 auto;
}

.footer__logo img
{
    display: block;

    width: 100%;
}
.footer__phone a{
	 font-size: 32px;
	  color: #FFF;
	  text-decoration: none;
}

.footer__phone
{
    color: #FFF;
    font-size: 32px;
    line-height: normal;

    display: inline-block;

    margin-top: 30px;

    vertical-align: top;
    text-decoration: none;
}

.footer__tg
{
    color: #65BAF2;

    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 50px;
    height: 50px;
    margin: 30px auto 0;
    padding: 13px;

    border-radius: 50%;
    background: #FFF;

    transition: color .2s linear, background .2s linear;
}

.footer__tg svg
{
    display: block;

    width: 24px;
    height: 24px;

    fill: currentColor;
}



/*------------
    Modal
------------*/
.modal
{
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .5);
}

.modal-success .modal__bg
{
    max-width: 400px;
}

.modal__scroll
{
    display: flex;
    overflow: hidden;
    overflow-y: auto;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;

    height: 100%;
}

.modal__bg
{
    position: relative;

    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 50px 10px 20px;

    background: #F3F6F7;
}

.modal__close
{
    position: absolute;
    top: 10px;
    right: 10px;

    display: block;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;
    background: #1f6885 url(../images/ic_close.svg) 50%/12px auto no-repeat;

    transition: background-color .2s linear;
}

.modal__title
{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.modal__img
{
    position: relative;

    height: 279px;
    margin-top: 26px;
}

.modal__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 8px;

    object-fit: cover;
}

.modal__form
{
    margin-top: 30px;
}

.modal__product
{
    margin-top: 20px;
}

.modal__product .product__price
{
    margin-top: 20px;
}


.modal-success__scroll
{
    padding: 20px 10px;
}

.modal-success__bg
{
    padding-bottom: 37px;

    border-radius: 8px;
}

.modal-success__title
{
    color: #1f6885;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.04;

    text-align: center;
}

.modal-success__subtitle
{
    color: #000;
    font-size: 20px;
    line-height: 1;

    margin-top: 20px;

    text-align: center;
}

.modal-success__img
{
    margin-top: 23px;
}

.modal-success__img img
{
    display: block;

    width: 137px;
    height: 137px;
    margin: 0 auto;

    border-radius: 50%;

    object-fit: contain;
}

.wrapper-contacts {
    padding-top: 200px;
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -100px;
}

.contacts a {
    text-decoration: none;
}

.contacts__content {
    width: 100%;
    max-width: 372px;
}

.contacts__wrapper-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contacts__subtitle {
    margin-top: 24px;
    color: #000000;
    font-size: 24px;
    font-weight: 400;
}

.contacts__small-text {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.5;
}

.contacts__phone {
    margin-top: 32px;
    color: #000000;
    font-size: 32px;
    font-weight: 600;
}

.contacts__scheme {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 14px;
    color: #1f6885;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    cursor: pointer;
}

.contacts__list-img {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contacts__wrapper-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
}

.contacts-scheme-wrapper {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s, z-index 0.3s;
}

.contacts-scheme-wrapper.hidden {
    z-index: -10;
    opacity: 0;
    transition: opacity 0.3s, z-index 0.3s;
}

.contacts-scheme-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 60%;
}

.contacts-scheme-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
}
  
@media (max-width: 768px) {
    .wrapper-contacts {
        margin-top: 50px;
        padding-top: 100px;
    }
    
    .contacts {
        margin-top: -100px;
    }
    .contacts {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 30px;
    }

    .contacts__list-img {
      gap: 10px;
    }

    .contacts__subtitle {
      margin-top: 15px;
      font-size: 20px;
    }

    .contacts__phone {
      font-size: 20px;
      margin-top: 20px;
    }

    .contacts__scheme {
      font-size: 14px;
      margin-top: 8px;
    }

    .contacts__small-text {
      font-size: 14px;
    }

    .footer {
        margin-top: 50px;
    }
}

@media (max-width: 540px) {
    .contacts-scheme-popup {
        max-width: 90%;
    }
}

@media (max-width: 1659px)
{
}
