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

    scroll-margin-top: 24px;
}

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

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

body
{
    margin: 0;

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

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
{
    --bg: #fff;
    --sidebar_width: 280px;
    --scroll_width: 17px;
    --text_color: #484540;
    --font_size: 16px;
    --font_size_title: 50px;
    --font_family: 'Ubuntu', 'Arial', sans-serif;
    --font_family2: 'Inter', 'Arial', sans-serif;
}


::selection
{
    color: #000;

    background: #efd944;
}

::-moz-selection
{
    color: #000;

    background: #efd944;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



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

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: var(--bg);
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #efd944;
}

html.custom_scroll
{
    scrollbar-color: #efd944 var(--bg);
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

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

body.menu_open
{
    overflow: hidden;
}


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;
    z-index: 9;

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

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

    background: var(--bg);
}


.main
{
    display: flex;
    flex-direction: column;

    flex: 1 0 auto;
}


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

.cont.big
{
    max-width: 1450px;
    padding: 0;
}


.lazyload,
.swiper-lazy
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lazyload.loaded,
.swiper-lazy-loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.content_flex.row,
.content_flex > .cont.row
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--sidebar_width) - 80px);
}

.content_flex .content > *:first-child
{
    margin-top: 0;
}

.content_flex .content > *:last-child
{
    margin-bottom: 0;
}



.block
{
    margin-bottom: 120px;
}



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

    display: none;

    width: 100%;
    height: 100%;

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



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(0, 0, 0, .6);
}


.fancybox__content > .carousel__button.is-close
{
    color: currentColor;

    top: 20px;
    right: 20px;

    width: 30px;
    height: 30px;

    transition: opacity .2s linear;

    opacity: .5;
}

.modal.fancybox__content > .carousel__button.is-close svg
{
    display: block;

    width: 30px;
    height: 30px;

    filter: none;
    stroke: none;
    stroke-width: 0;
}


.fancybox__content > .carousel__button.is-close:hover
{
    opacity: 1;
}



/*----------
    Tabs
----------*/
.tab_content
{
    position: relative;

    visibility: hidden;
    overflow: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.tab_content.active
{
    visibility: visible;
    overflow: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}



/*---------------
    Accordion
---------------*/
.accordion_item + .accordion_item
{
    margin-top: 10px;
}


.accordion_item .head
{
    color: #000;

    position: relative;

    padding: 35px 170px 35px 50px;

    cursor: pointer;
    transition: .2s linear;

    border-radius: 16px;
    background: rgba(16, 133, 120, .06);
}


.accordion_item .head .title
{
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}


.accordion_item .head .tooltip
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-left: 4px;

    vertical-align: middle;
}


.accordion_item .head .tooltip .icon
{
    color: rgba(16, 133, 120, .3);

    display: block;

    width: 32px;
    height: 32px;

    transition: color .2s linear;
}


.accordion_item .head .tooltip .hover
{
    position: absolute;
    z-index: 5;
    top: 0;
    left: 100%;

    display: none;

    width: 160px;
    height: 160px;
    margin-left: 10px;
    padding: 5px;

    border-radius: 0 30px 30px 30px;
    background: #fff;
    box-shadow: 0 30px 50px rgba(67, 47, 21, .08);
}

.accordion_item .head .tooltip .hover img
{
    display: block;

    width: 150px;
    height: 150px;

    border-radius: inherit;
}


.accordion_item .head .tooltip:hover .icon
{
    color: #108578;
}

.accordion_item .head .tooltip:hover .hover
{
    display: block;
}


.accordion_item .head > .icon
{
    color: #108578;

    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;

    display: flex;

    width: 60px;
    height: 60px;
    margin: auto;

    transition: transform .2s linear;

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

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

.accordion_item .head > .icon svg
{
    display: block;

    width: 12px;
    height: 17px;
}


.accordion_item .data
{
    display: none;

    margin-top: -20px;
    padding: 60px 50px;

    border: 1px solid rgba(16, 133, 120, .12);
    border-top: none;
    border-radius: 0 0 16px 16px;
}


.accordion_item.active .head
{
    color: #fff;

    background: #108578;
}

.accordion_item.active .head .tooltip .icon
{
    color: #fff;
}

.accordion_item.active .head > .icon
{
    transform: rotate(-180deg);
}



/*----------------
    Pagination
----------------*/
.pagination
{
    display: flex;

    margin-top: 60px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}


.pagination > * + *
{
    margin-left: 10px;
}

.pagination a
{
    color: #000;
    font-size: 18px;
    line-height: 48px;

    display: inline-block;

    width: 50px;
    height: 50px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
}

.pagination a:hover,
.pagination a.active
{
    border-color: #108578;
    box-shadow: inset 0 0 0 1px #108578;
}


.pagination .sep
{
    color: rgba(0, 0, 0, .12);
    font-size: 20px;
    line-height: 48px;
}



/*----------------
    Mini modal
----------------*/
.modal_cont
{
    position: relative;
}


.mini_modal
{
    position: absolute;
    z-index: 100;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

.mini_modal.active
{
    top: 100%;

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



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

    width: 100%;

    background: linear-gradient(110.49deg, rgba(243, 240, 236, 0) 0%, #f3f0ec 63.6%);
}

header.absolute
{
    position: absolute;

    background: none;
}


header .cont
{
    width: 100%;
    max-width: 100%;
    padding: 0;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .menu_btn
{
    color: #fff;

    display: flex;

    width: 100px;
    height: 100px;

    background: #108578;

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

header .menu_btn .icon
{
    display: block;

    width: 30px;
    height: 30px;
}



header .logo
{
    color: currentColor;

    display: flex;

    width: 220px;
    height: 100px;

    text-decoration: none;

    background: #0a7267;

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

header .logo img
{
    display: block;

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



header .links
{
    margin-right: auto;
    margin-left: 50px;
}


header .links > * + *
{
    margin-left: 40px;
}


header .links a
{
    color: currentColor;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    position: relative;

    display: block;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
}


header .links a:after
{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    width: 0;
    height: 4px;
    margin: 14px auto 0;

    content: '';
    transition: width .3s linear;

    border-radius: 100px;
    background: #efd944;
}

header .links a:hover:after,
header .links a.active:after
{
    width: 30px;
}



header .langs
{
    color: rgba(72, 69, 64, .4);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

    margin-left: auto;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .langs > * + *
{
    margin-left: 9px;
}


header .langs a
{
    color: currentColor;

    display: inline-block;

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

header .langs a.active
{
    color: var(--text_color);
    line-height: 40px;

    width: 42px;
    height: 42px;

    text-align: center;

    border: 1px solid #0a7267;
    border-radius: 50%;
}



header .location
{
    margin-left: 50px;
}


header .location .current
{
    font-size: 14px;
    line-height: 17px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .location .current .icon
{
    display: block;

    width: 24px;
    height: 24px;
    margin-right: 8px;
}


header .location .current .arr
{
    color: #0a7267;

    display: block;

    width: 10px;
    height: 5px;
    margin-left: 8px;
}


header .location .mini_modal
{
    color: #484540;
    font-size: 14px;
    line-height: 17px;

    left: 12px;

    width: 200px;
    margin-top: 9px;
    padding: 20px;

    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
}

header .location .mini_modal > * + *
{
    margin-top: 8px;
}


header .location .mini_modal .btn
{
    transition: .2s linear;
}

header .location .mini_modal .btn:hover
{
    color: #0a7267;
}

header .location .mini_modal .btn.active
{
    color: #0a7267;
    font-weight: 600;
}



header .contacts
{
    margin-left: 50px;

    text-align: right;
}


header .contacts .phone
{
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
}

header .contacts .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


header .contacts .callback_btn
{
    color: #0a7267;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    margin-top: 5px;

    text-decoration-line: underline;
}



header .cart_link
{
    color: #fff;

    display: flex;

    width: 100px;
    height: 100px;
    margin-left: 40px;

    text-decoration: none;

    background: #0a7267;

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

header .cart_link .icon
{
    display: block;

    width: 36px;
    height: 36px;
}



/*----------
    Menu
----------*/
.menu
{
    color: #fff;

    position: fixed;
    z-index: 101;
    top: 0;
    right: 100%;

    overflow: hidden;

    width: 600px;
    max-width: 100%;
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    transition: transform .3s linear;

    background: #0a7267;
}

.menu:before
{
    position: absolute;
    z-index: -1;
    bottom: -272px;
    left: -272px;

    display: block;

    width: 544px;
    height: 544px;

    content: '';
    transform: rotate(90deg);
    pointer-events: none;

    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(16, 133, 120, 0) 0%, #108578 100%);
}

.menu.show
{
    transform: translateX(100%);
}



.menu .close_btn
{
    color: #fff;

    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: flex;

    width: 100px;
    height: 100px;

    background: #108578;

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

.menu .close_btn .icon
{
    display: block;

    width: 30px;
    height: 30px;
}



.menu .scroll
{
    position: relative;
    z-index: 1;

    overflow: auto;

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
    padding: 170px 120px 40px;
}



.menu .logo
{
    color: currentColor;

    position: absolute;
    z-index: 3;
    top: 0;
    left: 100px;

    display: flex;

    width: calc(100% - 100px);
    height: 100px;
    padding-left: 17px;

    text-decoration: none;

    background: #0a7267;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.menu .logo img
{
    display: block;

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


.menu .links
{
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
}

.menu .links > * + *
{
    margin-top: 30px;
}


.menu .links a
{
    color: currentColor;

    position: relative;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.menu .links a:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #efd944;
}


.menu .links a:hover,
.menu .links a.active
{
    color: #efd944;

    padding-left: 24px;
}

.menu .links a:hover:before,
.menu .links a.active:before
{
    opacity: 1;
}


.menu .row
{
    display: none;

    margin-top: 30px;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, .2);;
}



.menu .langs
{
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.menu .langs > * + *
{
    margin-left: 9px;
}


.menu .langs a
{
    color: currentColor;

    display: inline-block;

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

.menu .langs a.active
{
    color: #fff;
    line-height: 40px;

    width: 42px;
    height: 42px;

    text-align: center;

    border: 1px solid;
    border-radius: 50%;
}



.menu .location
{
    margin-left: auto;
}


.menu .location .current
{
    font-size: 14px;
    line-height: 17px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.menu .location .current .icon
{
    display: block;

    width: 24px;
    height: 24px;
    margin-right: 8px;
}


.menu .location .current .arr
{
    display: block;

    width: 10px;
    height: 5px;
    margin-left: 8px;
}


.menu .location .mini_modal
{
    color: #484540;
    font-size: 14px;
    line-height: 17px;

    right: 0;
    left: auto;

    width: 200px;
    margin-top: 9px;
    padding: 20px;

    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
}

.menu .location .mini_modal > * + *
{
    margin-top: 8px;
}


.menu .location .mini_modal .btn
{
    transition: .2s linear;
}

.menu .location .mini_modal .btn:hover
{
    color: #0a7267;
}

.menu .location .mini_modal .btn.active
{
    color: #0a7267;
    font-weight: 600;
}



.menu .contacts
{
    margin-left: auto;

    text-align: right;
}


.menu .contacts .phone
{
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
}

.menu .contacts .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


.menu .contacts .callback_btn
{
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    margin-top: 5px;

    text-decoration-line: underline;
}



.menu .has_question
{
    display: flex;

    margin-top: 50px;
    padding-top: 50px;

    border-top: 2px solid rgba(255, 255, 255, .2);

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;;
}


.menu .has_question .title
{
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;

    width: 100%;
}


.menu .has_question .desc
{
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 18px;

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


.menu .has_question .btn
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    width: 250px;
    height: 80px;
    margin-top: 30px;

    border-radius: 100px;
    background: #efd944;
}


.menu .has_question .points
{
    position: relative;

    width: 8px;
    height: 8px;
    margin-top: 30px;
    margin-left: 30px;

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

.menu .has_question .points:before,
.menu .has_question .points:after
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    width: 100%;
    height: 100%;
    margin-left: 20px;

    content: '';

    border-radius: 50%;
    background: rgba(239, 217, 68, .5);
}

.menu .has_question .points:after
{
    margin-left: 48px;

    background: rgba(239, 217, 68, .2);
}



/*-------------
    Sidebar
-------------*/
aside
{
    position: relative;

    width: var(--sidebar_width);
    max-width: 100%;
}



aside .links
{
    padding: 50px 30px;

    border-radius: 20px;
    background: rgba(16, 133, 120, .06);
}


aside .links .title
{
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;

    margin-bottom: 27px;
    padding: 0 10px;
}


aside .links .items > * + *
{
    margin-top: 10px;
}


aside .links .items a
{
    color: #000;
    font-size: 14px;
    line-height: 16px;

    display: inline-block;

    padding: 12px 20px;

    transition: background .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-radius: 100px;
    background: #fff;
}


aside .links .items a:hover,
aside .links .items a.active
{
    background: #efd944;
}



/*------------
    Filter
------------*/
.filter .item
{
    padding: 24px 25px;

    border-radius: 14px;
    background: rgba(16, 133, 120, .06);
}


.filter .item + .item
{
    margin-top: 5px;
}



.filter .item .label
{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;

    display: flex;

    cursor: pointer;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.filter .item .label span
{
    width: calc(100% - 42px);
}


.filter .item .label .icon
{
    color: #108578;

    position: relative;

    display: flex;

    width: 32px;
    height: 32px;
    margin-right: -10px;
    margin-left: auto;

    transition: transform .2s linear;

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

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

.filter .item .label .icon svg
{
    display: block;

    width: 8px;
    height: 13px;
}


.filter .item .label.active .icon
{
    transform: rotate(180deg);
}


.filter .item .data
{
    display: none;

    margin-top: 12px;
    padding-bottom: 16px;
}



/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 72px;
    padding-top: 30px;
}



.breadcrumbs
{
    color: rgba(72, 69, 64, .4);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}


.breadcrumbs a
{
    color: #0a7267;
}


.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

    width: 6px;
    height: 6px;
    margin: 0 20px;

    vertical-align: middle;

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



/*----------------
    Block head
----------------*/
.block_head
{
    display: flex;

    margin-bottom: 64px;

    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.block_head.pad_r
{
    padding-right: 200px;
}


.block_head .title
{
    color: #000;
    font-size: var(--font_size_title);
    font-weight: 500;
    line-height: calc(100% + 4px);

    display: block;
}


.block_head .desc
{
    color: #000;
    line-height: 24px;

    margin-top: 40px;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: rgba(16, 133, 120, .14);
    --form_focus_color: rgba(16, 133, 120, .4);
    --form_error_color: red;
    --form_border_radius: 12px;
    --form_bg_color: rgba(16, 133, 120, .04);
    --form_placeholder_color: rgba(0, 0, 0, .5);
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form ::-moz-placeholder
{
    color: var(--form_placeholder_color);

    opacity: 1;
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .columns
{
    display: flex;

    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.form .columns > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: 20px;
}


.form .field
{
    position: relative;
}

.form .field + .field
{
    margin-top: 9px;
}


.form .input
{
    color: #000;
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 70px;
    padding: 0 29px;

    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .icon
{
    color: #108578;

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

    display: flex;

    width: 70px;
    height: 100%;

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

.form .icon svg
{
    display: block;

    width: 30px;
    height: 30px;
}

.form .icon ~ .input
{
    padding-left: 69px;
}


.form textarea
{
    color: #000;
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 200px;
    padding: 25px 29px;

    resize: none;
    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form .input:focus,
.form textarea:focus
{
    border-color: var(--form_focus_color);
}


.form .error
{
    border-color: var(--form_error_color);
}


.form .checkbox
{
    font-size: 14px;
    line-height: 16px;

    position: relative;

    display: flex;

    min-height: 22px;
    padding-left: 30px;

    cursor: pointer;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .checkbox a
{
    color: #108578;
}


.form .checkbox input
{
    display: none;
}


.form .checkbox .check
{
    color: #fff;

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

    display: flex;

    width: 22px;
    height: 22px;

    transition: background .2s linear;

    border-radius: 4px;
    background: rgba(10, 114, 103, .1);

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


.form .checkbox .check .icon
{
    color: currentColor;

    position: relative;

    display: block;

    width: 10px;
    height: 10px;

    transition: opacity .2s linear;

    opacity: 0;
}


.form .checkbox .check + *
{
    color: rgba(0, 0, 0, .5);

    transition: color .2s linear;
}


.form .checkbox input:checked + .check
{
    background: #0a7267;
}

.form .checkbox input:checked + .check .icon
{
    opacity: 1;
}

.form .checkbox input:checked + .check + *
{
    color: #000;
}


.form .submit
{
    padding-top: 30px;
}


.form .submit_btn
{
    color: #000;
    font-size: 16px;
    line-height: 22px;

    display: block;

    width: 100%;
    height: 70px;

    border-radius: 100px;
    background: #efd944;
}


.form .agree
{
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 16px;

    margin-top: 15px;

    text-align: center;
}

.form .agree a
{
    color: #fff;
}



/*----------------
    Typography
----------------*/
.text_block
{
    color: rgba(0, 0, 0, .6);
    font-size: 18px;
    line-height: 26px;
}

.text_block.min_w
{
    font-size: 16px;
    line-height: 22px;

    width: 720px;
    max-width: 100%;
}

.text_block.middle_w
{
    font-size: 16px;
    line-height: 22px;

    width: 970px;
    max-width: 100%;
    padding-left: 50px;
}

.text_block.middle_w2
{
    color: #000;
    font-size: 16px;
    line-height: 24px;

    width: 940px;
    max-width: 100%;
}


.text_block > *
{
    margin-bottom: 20px;
}


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

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h1
{
    color: #000;
    font-size: 60px;
    font-weight: 500;
    line-height: 100%;

    margin-bottom: 40px;
}

.text_block h2
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;

    margin-bottom: 30px;
}

.text_block h3
{
    color: #0a7267;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;

    margin-bottom: 30px;
}

.text_block h4
{
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;

    margin-bottom: 30px;
}


.text_block * + h2
{
    margin-top: 100px;
}

.text_block * + h3
{
    margin-top: 60px;
}

.text_block * + h4
{
    margin-top: 50px;
}

.text_block h1 + *,
.text_block h2 + *,
.text_block h3 + *,
.text_block h4 + *
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}


.text_block table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}


.text_block table th
{
    color: rgba(0, 0, 0, .4);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;

    padding-bottom: 13px;

    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.text_block table th:first-child,
.text_block table th + th
{
    padding-left: 30px;
}

.text_block table th:first-child
{
    width: 100%;

    text-align: left;
}

.text_block table th:last-child
{
    padding-right: 30px;

    text-align: right;
}


.text_block table td
{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;

    min-width: 170px;
    padding: 21px 0;

    text-align: center;
    vertical-align: middle;

    background: rgba(255, 255, 255, .06);
}

.text_block table td:first-child,
.text_block table td + td
{
    padding-left: 30px;
}

.text_block table td:first-child
{
    width: 100%;

    text-align: left;

    border-radius: 8px 0 0 8px;
}

.text_block table td:last-child
{
    min-width: 200px;
    padding-right: 30px;

    text-align: right;

    border-radius: 0 8px 8px 0;
}

.text_block table tbody tr:nth-child(2n+1) td
{
    background: rgba(16, 133, 120, .06);
}


.text_block .table_exp
{
    color: #0a7267;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 20px;

    margin-top: -25px;
}


.text_block blockquote
{
    color: #000;
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    line-height: 34px;

    position: relative;

    display: block;

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

    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    background: url(../images/ic_quote.svg) 0 40px no-repeat;
}


.text_block .message
{
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;

    position: relative;

    padding-left: 50px;
}

.text_block.middle_w .message
{
    margin-left: -50px;
}

.text_block .message:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 4px;
    height: 100%;

    content: '';

    border-radius: 16px;
    background: #108578;
}


.text_block .columns
{
    column-gap: 80px;
    column-count: 2;
}

.text_block .columns > *
{
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block .columns > * + *
{
    margin-top: 20px;
}


.text_block ul
{
    margin-top: 30px;
    margin-bottom: 30px;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 60px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 20px;
}

.text_block ul li:before
{
    position: absolute;
    top: 9px;
    left: 30px;

    display: block;

    width: 10px;
    height: 10px;

    content: '';

    border-radius: 2px;
    background: #108578;
}


.text_block.min_w ul li:before
{
    top: 7px;
}


.text_block.middle_w2 ul li
{
    padding-left: 30px;
}

.text_block.middle_w2 ul li:before
{
    top: 7px;
    left: 0;

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


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 60px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 20px;
}

.text_block ol li:before
{
    color: #108578;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;

    position: absolute;
    top: -2px;
    left: 15px;

    width: 32px;
    height: 32px;

    content: counter(li);
    counter-increment: li;
    text-align: center;

    border-radius: 50%;
    background: rgba(16, 133, 120, .06);
}


.text_block .slider
{
    margin-top: 60px;
    margin-bottom: 60px;
}


.text_block .slider .image
{
    position: relative;

    overflow: hidden;

    padding-bottom: 54.347%;

    border-radius: 10px;
    background: #ddd;
}

.text_block .slider .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.text_block .slider .swiper-button-next,
.text_block .slider .swiper-button-prev
{
    color: #fff;

    position: absolute;
    top: 0;
    bottom: 0;

    width: 60px;
    height: 60px;
    margin: auto;

    transition: .2s linear;

    border: none;
    background: rgba(255, 255, 255, .3);
}

.text_block .slider .swiper-button-prev
{
    left: 30px;
}

.text_block .slider .swiper-button-next
{
    right: 30px;
}


.text_block .slider .swiper-button-next .icon,
.text_block .slider .swiper-button-prev .icon
{
    width: 21px;
    height: 12px;
}

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

.text_block .slider .swiper-button-next .icon
{
    transform: rotate(0);
}


.text_block .slider .swiper-button-next:hover,
.text_block .slider .swiper-button-prev:hover
{
    color: #108578;

    background: #fff;
}


.text_block .slider .swiper-pagination
{
    margin-top: 20px;
}


.text_block a
{
    color: #108578;
}

.text_block a:hover
{
    text-decoration: none;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    position: relative;

    margin-bottom: 50px;

    background: linear-gradient(110.49deg, rgba(243, 240, 236, 0) 0%, #f3f0ec 63.6%);
}


.main_slider .swiper
{
    position: relative;
    z-index: 3;
}

.main_slider .swiper-slide
{
    position: relative;

    overflow: hidden;
}


.main_slider .bg
{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    display: block;

    width: 1600px;
    max-width: 100%;
    max-height: 100%;

    object-fit: cover;
}

.main_slider .bg.loaded
{
    opacity: .04;
}


.main_slider .cont
{
    display: flex;

    min-height: 820px;
    padding-top: 180px;
    padding-bottom: 230px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.main_slider .data
{
    width: 600px;
    max-width: 100%;
}


.main_slider .title
{
    font-size: 50px;
    font-weight: 500;
    line-height: 54px;
}


.main_slider .desc
{
    color: rgba(72, 69, 64, .5);
    line-height: 24px;

    width: 500px;
    max-width: 100%;
    margin-top: 30px;
}

.main_slider .desc > * + *
{
    margin-top: 15px;
}


.main_slider .btn
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: inline-block;

    width: 250px;
    height: 80px;
    margin-top: 50px;

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

    border-radius: 100px;
    background: #efd944;
}


.main_slider .img
{
    width: 600px;
    max-width: 100%;
    margin-top: 5px;
    margin-left: auto;
}



.main_slider .controls
{
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 50%;

    display: flex;

    width: 310px;
    max-width: 100%;
    height: 130px;
    margin-left: -640px;
    padding-right: 28px;

    border-radius: 0 70px 0 0;
    background: var(--bg);

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

.main_slider .controls::before
{
    position: absolute;
    top: 0;
    right: 100%;

    display: block;

    width: 50vw;
    height: 100%;

    content: '';

    background: var(--bg);
}

.main_slider .controls > * + *
{
    margin-left: 30px;
}



/*----------------
    Advantages
----------------*/
.advantages .row
{
    margin-bottom: -45px;
    margin-left: -45px;
}

.advantages .row > *
{
    width: calc(25% - 45px);
    margin-bottom: 45px;
    margin-left: 45px;
}



.advantages .item
{
    display: flex;

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


.advantages .item .icon
{
    display: flex;

    width: 70px;
    height: 70px;

    border: 1px solid rgba(16, 133, 120, .1);
    border-radius: 100px;
    background: rgba(16, 133, 120, .04);
    box-shadow: inset 0 0 0 4px var(--bg);

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

.advantages .item .icon img
{
    display: block;

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

.advantages .item .icon + *
{
    width: calc(100% - 85px);
}


.advantages .item .name
{
    color: #000;
    font-size: 20px;
    line-height: 23px;

    display: flex;

    min-height: 70px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.advantages .item .desc
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 18px;

    margin-top: 8px;
}



.advantages .line
{
    width: 100%;
    height: 1px;
    margin-top: 60px;

    background: #f3f0ec;
}



/*----------------
    Categories
----------------*/
.categories
{
    margin-bottom: 140px;
}



.categories .tabs
{
    display: flex;

    margin-left: auto;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.categories .tabs .btn
{
    color: rgba(0, 0, 0, .5);
    font-size: 16px;
    line-height: 18px;

    position: relative;

    transition: color .2s linear;
}

.categories .tabs .btn:after
{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    width: 0;
    height: 4px;
    margin: 10px auto 0;

    content: '';
    transition: width .3s linear;

    border-radius: 100px;
    background: #efd944;
}


.categories .tabs .btn + .btn
{
    margin-left: 40px;
}


.categories .tabs .btn:hover,
.categories .tabs .btn.active
{
    color: #000;
}

.categories .tabs .btn.active:after
{
    width: 30px;
}



.categories .swiper
{
    overflow: visible !important;
}


.categories .swiper-slide
{
    position: relative;

    visibility: hidden;

    transition: opacity .2s linear, visibility .2s linear;
    pointer-events: none;

    opacity: 0;
}

.categories .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.categories .controls
{
    position: absolute;
    right: 0;
    bottom: 100%;

    display: flex;

    width: 200px;
    margin-bottom: 48px;

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

.categories .controls > * + *
{
    margin-left: 10px;
}


.categories .swiper-button-next,
.categories .swiper-button-prev
{
    color: #108578;

    width: 70px;
    height: 70px;

    transition: .2s linear;

    border: none;
    background: #e7f1f0;
}


.categories .swiper-button-next .icon,
.categories .swiper-button-prev .icon
{
    width: 21px;
    height: 12px;
}

.categories .swiper-button-prev .icon
{
    transform: rotate(180deg);
}

.categories .swiper-button-next .icon
{
    transform: rotate(0);
}


.categories .swiper-button-next:hover,
.categories .swiper-button-prev:hover
{
    color: #fff;

    background: #0a7267;
}



.categories .row
{
    margin-bottom: -8px;
    margin-left: -8px;

    align-items: stretch;
    align-content: stretch;
}

.categories .row > *
{
    width: calc(25% - 8px);
    margin-bottom: 8px;
    margin-left: 8px;
}


.categories .category
{
    color: #fff;

    position: relative;

    display: block;

    text-decoration: none;
}


.categories .category .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 127.388%;

    border-radius: 40px;
    background: #ddd;
}

.categories .category .thumb:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 300px;
    max-height: 100%;

    content: '';

    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
}


.categories .category .thumb img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.categories .category .info
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    width: 100%;
    padding: 40px;
}


.categories .category .name
{
    font-size: 18px;
    line-height: 21px;

    width: 200px;
    max-width: 100%;

    text-decoration: underline;
}


.categories .category .btn
{
    color: #108578;

    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;

    display: flex;

    width: 70px;
    height: 70px;

    transition: .2s linear;

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

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

.categories .category .btn .icon
{
    display: block;

    width: 21px;
    height: 12px;
}


.categories .category:hover .btn
{
    color: #fff;

    background: #0a7267;
}



.categories .all_link
{
    display: flex;

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


.categories .all_link a
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

    width: 200px;
    height: 200px;
    padding: 24px;

    text-align: center;
    text-decoration: none;

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

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


.categories .all_link span
{
    width: 100%;
}


.categories .all_link .icon
{
    color: #108578;

    display: block;

    width: 27px;
    height: 12px;
    margin-top: 14px;
}



/*---------------------
    Categories wall
---------------------*/
.categories_wall
{
    margin-bottom: 150px;
}


.categories_wall .row
{
    margin-bottom: -10px;
    margin-left: -10px;

    align-items: stretch;
    align-content: stretch;
}

.categories_wall .row > *
{
    width: calc(50% - 10px);
    margin-bottom: 10px;
    margin-left: 10px;
}

.categories_wall .row > *.big
{
    width: calc(100% - 10px);
}


.categories_wall .category
{
    position: relative;

    overflow: hidden;

    padding: 80px 100px;

    border-radius: 10px;
}

.categories_wall .category.bg1
{
    background: #f3f0ec;
}

.categories_wall .category.bg2
{
    background: #f3ecf3;
}

.categories_wall .category.bg3
{
    background: rgba(225, 230, 236, .5);
}


.categories_wall .category .data
{
    position: relative;
    z-index: 3;
}


.categories_wall .category .name
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 2px);
}


.categories_wall .category .desc
{
    color: rgba(0, 0, 0, .5);
    line-height: 24px;

    margin-top: 40px;
}

.categories_wall .category .desc > * + *
{
    margin-top: 15px;
}


.categories_wall .category .links
{
    margin-top: 40px;
}

.categories_wall .category .links > * + *
{
    margin-top: 10px;
}


.categories_wall .category .links a
{
    color: #000;
    font-size: 18px;
    line-height: 21px;

    display: inline-block;

    padding: 12px 35px;

    transition: background .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-radius: 100px;
    background: #fff;
}


.categories_wall .category .links a:hover
{
    background: #efd944;
}


.categories_wall .category .img
{
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;

    display: block;

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

    pointer-events: none;
}


.categories_wall .category .bg
{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.categories_wall .category .bg.loaded
{
    opacity: .04;
}


.categories_wall .category.big .data
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.categories_wall .category.big .info
{
    width: 360px;
    max-width: 100%;
}

.categories_wall .category.big .links
{
    margin-top: 0;
    margin-left: 100px;
}



/*------------------
    Action block
------------------*/
.action_block
{
    margin-bottom: 150px;
}


.action_block .data
{
    position: relative;

    display: flex;

    padding: 100px 85px;

    border-radius: 20px;
    background: url(../images/bg_action_block.png) 100% 100% no-repeat #0a7267;

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


.action_block .title
{
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    line-height: 100%;
}


.action_block .desc
{
    color: #fff;
    font-size: 18px;
    line-height: 21px;

    width: 330px;
    max-width: 100%;
    margin-left: 46px;
}


.action_block .btn
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    width: 300px;
    max-width: 100%;
    height: 80px;
    margin-left: 50px;

    border-radius: 100px;
    background: #efd944;
}


.action_block .img
{
    position: absolute;
    bottom: -30px;
    left: 30px;

    display: block;

    width: 425px;
    height: 420px;
}



/*-----------------
    About block
-----------------*/
.about_block
{
    margin-bottom: 160px;
}



.about_block .block_head
{
    width: 540px;
    max-width: 100%;
    margin-bottom: 0;
}


.about_block .block_head .btn
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 80px;

    width: 300px;
    max-width: 100%;
    height: 80px;
    margin-top: 40px;

    text-align: center;

    border-radius: 100px;
    background: #efd944;
}


.about_block .accordion
{
    width: 640px;
    max-width: 100%;
    margin-left: auto;
}


.about_block .accordion_item
{
    border-radius: 10px;
    background: rgba(16, 133, 120, .06);
}

.about_block .accordion_item + .accordion_item
{
    margin-top: 10px;
}


.about_block .accordion_item .head
{
    display: flex;

    min-height: 100px;
    padding: 20px 20px 20px 32px;

    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.about_block .accordion_item .head .icon
{
    color: #108578;

    position: relative;
    right: 0;

    display: flex;

    width: 36px;
    height: 36px;
    margin: 0;
    margin-right: auto;

    border-radius: 0;
    background: none;

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

.about_block .accordion_item .head .icon img
{
    display: block;

    width: 36px;
    height: 36px;
}


.about_block .accordion_item .head .title
{
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;

    width: calc(100% - 138px);
}


.about_block .accordion_item .head .arr
{
    color: #108578;

    display: flex;

    width: 60px;
    height: 60px;
    margin-left: auto;

    transition: transform .2s linear;

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

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

.about_block .accordion_item .head .arr svg
{
    display: block;

    width: 21px;
    height: 12px;
}


.about_block .accordion_item .data
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 20px;

    margin-top: 0;
    padding: 0 30px 60px;

    border: none;
    border-radius: 0;
}


.about_block .accordion_item .data ul
{
    margin-top: 20px;
    margin-bottom: 20px;
}

.about_block .accordion_item .data ul li
{
    padding-left: 20px;
}

.about_block .accordion_item .data ul li + li
{
    margin-top: 15px;
}

.about_block .accordion_item .data ul li:before
{
    top: 7px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 2px;
}


.about_block .accordion_item.active
{
    background: rgba(16, 133, 120, .06);
}

.about_block .accordion_item.active .head
{
    color: var(--text_color);

    background: none;
}

.about_block .accordion_item.active .head .icon
{
    transform: none;
}

.about_block .accordion_item.active .head .arr
{
    transform: rotate(90deg);
}



/*----------------
    Price list
----------------*/
.price_list .cont > * + *
{
    margin-top: 60px;
}


.price_list .exp
{
    color: rgba(0, 0, 0, .5);
    font-size: 16px;
    line-height: 21px;

    margin-top: 20px;
}

.price_list .exp > * + *
{
    margin-top: 10px;
}


.price_list .exp span
{
    color: #e25757;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info .data
{
    width: 640px;
    max-width: 100%;
}


.contacts_info .data .block_head
{
    margin-bottom: 30px;
}


.contacts_info .data .desc
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 18px;

    width: 540px;
    max-width: 100%;
    margin-bottom: 50px;
}


.contacts_info .data .item
{
    display: flex;

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

.contacts_info .data .item + .item
{
    margin-top: 50px;
}


.contacts_info .data .item .icon
{
    color: #fff;

    display: flex;

    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: #0a7267;

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

.contacts_info .data .item .icon svg
{
    display: block;

    width: 30px;
    height: 30px;
}


.contacts_info .data .item .icon ~ *
{
    width: calc(100% - 80px);
    margin-left: auto;
}

.contacts_info .data .item .icon + * ~ *
{
    margin-top: 25px;
}


.contacts_info .data .item .label
{
    color: rgba(0, 0, 0, .5);
    line-height: 18px;

    margin-bottom: 10px;
}


.contacts_info .data .item .val
{
    color: #000;
    font-size: 26px;
    line-height: 30px;
}

.contacts_info .data .item .val a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}

.contacts_info .data .item.emails .val a
{
    color: #0a7267;

    text-decoration: underline;
}


.contacts_info .data .item.locations .val
{
    font-size: var(--font_size);
    line-height: 18px;
}


.contacts_info .data .item .exp
{
    color: #0a7267;
    font-size: 14px;
    font-style: italic;
    line-height: 16px;

    display: inline-block;

    margin-top: 10px;
    padding: 22px 44px;

    vertical-align: top;

    border-radius: 0 20px 20px 20px;
    background: rgba(16, 133, 120, .06);
}


.contacts_info .info
{
    width: 470px;
    max-width: 100%;
    margin-left: auto;
}

.contacts_info .info > * + *
{
    margin-top: 20px;
}


.contacts_info .has_question
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 60px;

    border-radius: 30px;
    background: #0a7267;
}

.contacts_info .has_question:before
{
    position: absolute;
    z-index: -1;
    top: -190px;
    right: -190px;

    display: block;

    width: 380px;
    height: 380px;

    content: '';
    transform: rotate(-90deg);

    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(16, 133, 120, 0) 0%, #108578 100%);
}


.contacts_info .has_question .title
{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}


.contacts_info .has_question .desc
{
    color: #fff;
    line-height: 22px;

    margin-top: 30px;
}


.contacts_info .has_question .btn
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    width: 100%;
    height: 80px;
    margin-top: 54px;

    border-radius: 100px;
    background: #efd944;
}


.contacts_info .requisites
{
    color: #000;
    font-size: 14px;
    line-height: 16px;

    padding: 30px 50px;

    border-radius: 30px;
    background: #f3f0ec;
}


.contacts_info .requisites .title
{
    font-size: 26px;
    line-height: 30px;

    margin-bottom: 20px;
}


.contacts_info .requisites > * + *
{
    margin-top: 10px;
}


.contacts_info .socials
{
    display: flex;

    padding: 30px 50px;

    border-radius: 30px;
    background: #f3f0ec;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.contacts_info .socials .label
{
    color: #000;
    font-size: 26px;
    line-height: 30px;

    margin-right: 30px;
}


.contacts_info .socials a
{
    color: #0a7267;

    display: flex;

    width: 60px;
    height: 60px;

    transition: .2s linear;
    text-decoration: none;

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

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

.contacts_info .socials a + a
{
    margin-left: 10px;
}


.contacts_info .socials .icon
{
    display: block;

    width: 26px;
    height: 26px;
}


.contacts_info .map
{
    position: relative;

    overflow: hidden;

    height: 540px;
    margin-top: 80px;

    border-radius: 20px;
    background: #ddd;
}

.contacts_info .map img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*-------------------
    Category info
-------------------*/
.category_info
{
    --sidebar_width: 300px;
}


.category_info .content
{
    width: calc(100% - var(--sidebar_width) - 40px);
}


.category_info .block_head
{
    margin-bottom: 30px;
}


.category_info .desc
{
    font-size: 16px;
    line-height: 22px;
}


.category_info .text_block.min_w
{
    width: 920px;
}


.category_info .products
{
    margin-top: 40px;
    padding-top: 40px;

    border-top: 1px solid rgba(0, 0, 0, .12);
}



/*--------------
    Products
--------------*/
.products .tabs
{
    display: flex;

    margin-bottom: 50px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.products .tabs .btn
{
    color: #000;
    font-size: 18px;
    line-height: 21px;

    padding: 12px 35px;

    transition: background .2s linear;

    border-radius: 100px;
    background: rgba(16, 133, 120, .06);
}


.products .tabs .btn + .btn
{
    margin-left: 10px;
}


.products .tabs .btn:hover,
.products .tabs .btn.active
{
    background: #efd944;
}



.products .row
{
    margin-bottom: -20px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
}

.products .row > *
{
    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.content .products .row > *
{
    width: calc(33.333% - 20px);
}


.products .product
{
    color: #000;

    position: relative;

    display: block;

    padding: 224px 29px 19px;

    transition: color .2s linear;
    text-decoration: none;

    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 30px;
    background: #fff;
}


.products .product .thumb
{
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 0;
    left: 0;

    display: block;
    overflow: hidden;

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

    transition: height .2s linear;

    border-radius: 26px;
    background: #ddd;
}

.products .product .thumb:after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 100%);
}


.products .product .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.products .product .name
{
    line-height: 18px;

    position: relative;
    z-index: 3;

    flex: 1 0 auto;
}


.products .product .details
{
    color: #0a7267;
    font-weight: 500;
    line-height: 18px;

    position: relative;
    z-index: 3;

    display: flex;

    margin-top: 20px;

    transition: color .2s linear;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.products .product .details .icon
{
    color: #108578;

    display: flex;

    width: 60px;
    height: 60px;
    margin-right: -10px;

    transition: .2s linear;

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

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

.products .product .details .icon svg
{
    display: block;

    width: 21px;
    height: 12px;
}


.products .product .buy
{
    position: relative;
    z-index: 3;

    display: flex;

    margin-top: 20px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.products .product .price
{
    color: #0a7267;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;

    transition: color .2s linear;
}


.products .product .buy_btn
{
    color: #0a7267;

    display: flex;

    width: 60px;
    height: 60px;
    margin-right: -10px;

    transition: .2s linear;

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

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

.products .product .buy_btn .icon
{
    display: block;

    width: 30px;
    height: 30px;
}


.products .product:hover
{
    color: #fff;
}

.products .product:hover .thumb
{
    height: calc(100% - 8px);
}

.products .product:hover .thumb:after
{
    opacity: 1;
}

.products .product:hover .name
{
    text-decoration: underline;
}

.products .product:hover .details,
.products .product:hover .price
{
    color: #fff;

    transition: color .2s linear .1s;
}

.products .product:hover .details .icon,
.products .product:hover .buy_btn
{
    color: #fff;

    transition: .2s linear .1s;

    background: #efd944;
}



/*-------------------------
    Product simple head
-------------------------*/
.product_simple_head
{
    margin-bottom: 100px;
}


.product_simple_head .cont
{
    position: relative;
}


.product_simple_head .product_name
{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 10px);

    position: absolute;
    z-index: 9;
    top: 0;
    left: 24px;

    display: block;

    width: 620px;
    max-width: calc(100% - 48px);
    padding: 80px 60px;

    pointer-events: none;
}


.product_simple_head .swiper
{
    border-radius: 20px;
}


.product_simple_head .data
{
    position: relative;

    overflow: hidden;

    height: 460px;

    background: #ddd;
}

.product_simple_head .data:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 0, 0, .8) -1.03%, rgba(0, 0, 0, 0) 100%);
}


.product_simple_head .data .img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



.product_simple_head .controls
{
    position: absolute;
    bottom: 0;
    left: 50%;

    display: flex;

    margin-left: -640px;
    padding: 40px 60px;

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

.product_simple_head .controls > * + *
{
    margin-left: 30px;
}


.product_simple_head .swiper-button-next,
.product_simple_head .swiper-button-prev
{
    color: #fff;

    border-color: rgba(255, 255, 255, .2);
}


.product_simple_head .swiper-pagination-bullet
{
    background: rgba(255, 255, 255, .3);
}


.product_simple_head .swiper-pagination-bullet:hover,
.product_simple_head .swiper-pagination-bullet.active
{
    background: #fff;
}



/*-------------------------
    Product simple info
-------------------------*/
.product_simple_info .col
{
    width: calc(50% - 40px);
}

.product_simple_info .col + .col
{
    margin-left: auto;
}



/*-------------
    Manager
-------------*/
.manager
{
    color: #fff;

    position: relative;
    z-index: 3;

    overflow: hidden;

    margin-top: 60px;
    padding: 50px 50px 54px;

    border-radius: 20px;
    background: #0a7267;
}

.manager:before
{
    position: absolute;
    z-index: -1;
    top: -139px;
    right: -139px;

    display: block;

    width: 278px;
    height: 278px;

    content: '';
    transform: rotate(-90deg);

    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(16, 133, 120, 0) 0%, #108578 100%);
}


.manager .title
{
    font-size: 30px;
    font-weight: 500;
    line-height: 100%;
}


.manager .desc
{
    line-height: 22px;

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


.manager .link
{
    color: #000;

    position: absolute;
    right: 20px;
    bottom: 20px;

    display: flex;

    width: 120px;
    height: 120px;

    text-decoration: none;

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

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


.manager .link .icon
{
    display: block;

    width: 27px;
    height: 12px;
}



/*------------------
    Product info
------------------*/
.product_info .images
{
    position: relative;

    width: calc(50% - 30px);
    padding-left: 110px;
}


.product_info .images .big .swiper
{
    overflow: hidden;

    border-radius: 20px;
}


.product_info .images .big .swiper-slide a
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 100%;

    text-decoration: none;

    border-radius: 20px;
}

.product_info .images .big .swiper-slide a img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.product_info .images .thumbs
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100px;
    height: 100%;
}


.product_info .images .thumbs .swiper
{
    position: absolute;
    top: 0;
    left: 0;

    overflow: visible !important;

    width: 100%;
    height: 100%;
    padding: 35px 0;
}


.product_info .images .thumbs .swiper .swiper-slide
{
    visibility: hidden;

    height: auto;

    transition: opacity .2s linear, visibility .2s linear;
    pointer-events: none;

    opacity: 0;
}

.product_info .images .thumbs .swiper .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.product_info .images .thumbs .swiper-slide button
{
    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 100%;

    border-radius: 10px;
}

.product_info .images .thumbs .swiper-slide button:after
{
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;

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

    content: '';
    transition: height .3s linear;

    border-radius: 100px;
    background: #efd944;
}


.product_info .images .thumbs .swiper-slide button img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.product_info .images .thumbs .swiper-slide-thumb-active button:after
{
    height: 30px;
}


.product_info .images .swiper-button-next,
.product_info .images .swiper-button-prev
{
    color: #108578;

    position: absolute;
    top: 0;
    right: auto;
    left: 0;

    display: flex;

    width: 100%;
    height: 20px;

    border: none;
    border-radius: 0;

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

.product_info .images .swiper-button-next .icon,
.product_info .images .swiper-button-prev .icon
{
    width: 12px;
    height: 17px;

    transform: none;
}

.product_info .images .swiper-button-prev .icon
{
    transform: rotate(180deg);
}

.product_info .images .swiper-button-next
{
    top: auto;
    bottom: 0;
}



.product_info .data
{
    width: calc(50% - 60px);
    margin-left: auto;
}


.product_info .data .product_name
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 6px);

    display: block;
}


.product_info .data .options
{
    margin-top: 40px;
}


.product_info .data .option
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.product_info .data .option .label
{
    color: rgba(0, 0, 0, .5);
    line-height: 18px;

    margin-right: 12px;
    margin-bottom: 5px;

    white-space: nowrap;
}


.product_info .data .option .vals
{
    display: flex;

    margin-bottom: -5px;
    margin-left: -5px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .data .option .vals > *
{
    margin-bottom: 5px;
    margin-left: 5px;
}


.product_info .data .option label
{
    display: block;

    cursor: pointer;
}


.product_info .data .option label input
{
    display: none;
}


.product_info .data .option label div
{
    color: #000;
    line-height: 18px;

    padding: 15px 21px;

    transition: .2s linear;

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

.product_info .data .option label input:checked + div
{
    border-color: #0a7267;
}


.product_info .data .prices
{
    display: flex;

    margin-top: 40px;
    padding-top: 40px;

    border-top: 1px solid rgba(0, 0, 0, .1);

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


.product_info .data .prices .label
{
    color: #000;
    line-height: 18px;
}


.product_info .data .prices .minimum
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 16px;

    margin-top: 5px;
}


.product_info .data .prices .price
{
    color: #0a7267;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;

    margin-top: 10px;

    white-space: nowrap;
}


.product_info .data .buy
{
    display: flex;

    margin-top: 40px;
    padding-top: 40px;

    border-top: 1px solid rgba(0, 0, 0, .1);

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.product_info .data .amount
{
    color: rgba(0, 0, 0, .5);
    line-height: 18px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.product_info .data .amount .label
{
    margin-right: 12px;
}


.product_info .data .amount .btn
{
    color: #000;
    line-height: 60px;

    display: block;

    width: 60px;
    height: 60px;

    transition: .2s linear;
    text-align: center;

    border-radius: 50%;
    background: rgba(16, 133, 120, .06);
}


.product_info .data .amount .input
{
    color: #000;
    font-family: var(--font_family);
    font-size: 16px;
    line-height: 18px;

    display: block;

    width: 50px;
    height: 60px;
    padding: 0 4px;

    text-align: center;

    border: none;
    background: none;
}


.product_info .data .buy_btn
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

    width: 290px;
    max-width: 100%;
    height: 80px;

    border-radius: 100px;
    background: #efd944;

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


.product_info .data .buy_btn .icon
{
    display: block;

    width: 36px;
    height: 36px;
    margin-right: 10px;
}



.product_info .tabs_container
{
    width: 100%;
    margin-top: 80px;
}


.product_info .tabs
{
    display: flex;

    margin-bottom: 60px;

    border-bottom: 1px solid rgba(0, 0, 0, .1);

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.product_info .tabs .btn
{
    color: rgba(0, 0, 0, .5);
    font-size: 16px;
    line-height: 18px;

    position: relative;

    padding-bottom: 19px;

    transition: color .2s linear;
}

.product_info .tabs .btn:after
{
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;

    width: 0;
    height: 4px;
    margin: 10px auto 0;

    content: '';
    transition: width .3s linear;

    border-radius: 100px;
    background: #efd944;
}


.product_info .tabs .btn + .btn
{
    margin-left: 40px;
}


.product_info .tabs .btn:hover,
.product_info .tabs .btn.active
{
    color: #000;
}

.product_info .tabs .btn.active:after
{
    width: 30px;
}



.product_info .description .title
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 6px);

    margin-bottom: 20px;
}


.product_info .text_block.min_w
{
    color: #000;

    width: 920px;
}



.product_info .features .title
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 6px);

    margin-bottom: 20px;
}


.product_info .features .item
{
    display: flex;

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

.product_info .features .item + .item
{
    margin-top: 20px;
}


.product_info .features .label
{
    color: rgba(0, 0, 0, .5);
    line-height: 18px;

    overflow: hidden;

    width: 450px;
    max-width: 100%;
}

.product_info .features .label div
{
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.product_info .features .label div:after
{
    position: absolute;
    bottom: 3px;
    left: 100%;

    display: block;

    width: 450px;
    height: 1px;
    margin-left: 20px;

    content: '';

    border-bottom: 1px dashed rgba(0, 0, 0, .2);
}


.product_info .features .val
{
    color: #000;
    line-height: 18px;

    width: calc(100% - 470px);
    margin-left: auto;
}



/*---------------
    Cart info
---------------*/
.cart_info
{
    margin-bottom: 140px;

    --sidebar_width: 400px;
}


.cart_info .content
{
    width: calc(100% - var(--sidebar_width) - 60px);
}

.cart_info .content ~ .content,
.cart_info .content ~ aside
{
    margin-top: 40px;
}



.cart_info .block_head
{
    margin-bottom: 0;
}


.cart_info .clear_btn
{
    color: #108578;
    font-size: 14px;
    line-height: 16px;

    margin-bottom: 4px;
    margin-left: auto;

    align-self: flex-end;
}


.cart_info .product
{
    position: relative;

    display: flex;

    padding: 9px 31px 9px 9px;

    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 16px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .product + .product
{
    margin-top: 10px;
}


.cart_info .product .thumb
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    width: 140px;
    height: 140px;

    text-decoration: none;

    border-radius: 6px;
    background: #ddd;
}

.cart_info .product .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cart_info .product .info
{
    width: calc(100% - 586px);
    margin-left: 30px;
}


.cart_info .product .type
{
    color: #108578;
    font-size: 14px;
    line-height: 16px;

    margin-bottom: 5px;
}


.cart_info .product .name
{
    color: #000;
    font-size: 18px;
    line-height: 22px;
}

.cart_info .product .name a
{
    color: currentColor;

    display: inline-block;

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


.cart_info .product .amount
{
    display: flex;

    width: 160px;
    max-width: 100%;
    margin-left: 30px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.cart_info .product .amount .btn
{
    color: #000;
    line-height: 60px;

    display: block;

    width: 60px;
    height: 60px;

    transition: .2s linear;
    text-align: center;

    border-radius: 50%;
    background: rgba(16, 133, 120, .06);
}

.cart_info .product .amount .btn:hover
{
    color: #fff;

    background: #108578;
}


.cart_info .product .amount .input
{
    color: #000;
    font-family: var(--font_family);
    font-size: 16px;

    display: block;

    width: 40px;
    height: 60px;
    padding: 0 4px;

    text-align: center;

    border: none;
    background: none;
}


.cart_info .product .price
{
    margin-left: 40px;
}

.cart_info .product .price .label
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 16px;

    margin-bottom: 2px;
}

.cart_info .product .price .val
{
    color: #000;
    font-size: 18px;
    line-height: 22px;

    white-space: nowrap;
}


.cart_info .product .delete
{
    margin-left: 50px;
}

.cart_info .product .delete .btn
{
    color: rgba(0, 0, 0, .2);

    display: flex;

    width: 24px;
    height: 24px;

    transition: color .2s linear;

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


.cart_info .product .delete .btn .icon
{
    display: block;

    width: 16px;
    height: 16px;
}


.cart_info .product .delete .btn:hover
{
    color: #000;
}



/*----------------
    Cart total
----------------*/
.cart_total
{
    padding: 45px 40px 60px;

    border-radius: 16px;
    background: rgba(16, 133, 120, .06);
}


.cart_total .title
{
    color: #000;
    font-size: 30px;
    line-height: calc(100% + 4px);

    margin-bottom: 30px;
}


.cart_total .item
{
    color: #000;
    line-height: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_total .item + .item
{
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #e4e4e4;
}

.cart_total .item.red
{
    color: #f83d3d;
}


.cart_total .item .val
{
    font-weight: 500;

    margin-left: auto;

    white-space: nowrap;
}


.cart_total .item.total_price .label,
.cart_total .item.total_price .val
{
    font-size: 30px;
    font-weight: 400;
    line-height: calc(100% + 4px);
}


.cart_total .submit_btn
{
    color: #000;
    line-height: 22px;

    display: block;

    width: 100%;
    margin-top: 30px;
    padding: 24px;

    border-radius: 100px;
    background: #efd944;
}


.cart_total .exp
{
    color: rgba(0, 0, 0, .4);
    font-size: 14px;
    line-height: 16px;

    margin-top: 15px;

    text-align: center;
}

.cart_total .exp a
{
    color: #108578;
}



/*-------------------
    Checkout info
-------------------*/
.checkout_info
{
    margin-top: 100px;
}


.checkout_info .block_title
{
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: calc(100% + 6px);

    margin-bottom: 40px;
}


.checkout_info .section + .section
{
    margin-top: 80px;
}


.checkout_info .section .title
{
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;

    margin-bottom: 30px;
}


.checkout_info .section .desc
{
    color: rgba(0, 0, 0, .5);
    line-height: 22px;

    margin-top: -10px;
    margin-bottom: 30px;
}



.checkout_info .delivery_methods .row
{
    margin-bottom: -20px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
}

.checkout_info .delivery_methods .row > *
{
    width: calc(50% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}


.checkout_info .delivery_methods label
{
    position: relative;

    display: block;

    cursor: pointer;
}


.checkout_info .delivery_methods label input
{
    display: none;
}


.checkout_info .delivery_methods label .check
{
    position: absolute;
    top: 20px;
    left: 20px;

    display: block;

    width: 26px;
    height: 26px;

    transition: border-color .2s linear;

    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
}

.checkout_info .delivery_methods label .check:after
{
    position: absolute;

    display: block;

    width: 14px;
    height: 14px;
    margin: auto;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #fff;

    inset: 0;
}


.checkout_info .delivery_methods label .info
{
    padding: 21px 29px 32px 69px;

    transition: .2s linear;

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


.checkout_info .delivery_methods label .name
{
    color: #1a1919;
    font-size: 18px;
    line-height: 21px;

    transition: color .2s linear;
}


.checkout_info .delivery_methods label .desc
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 18px;

    margin-top: 8px;
    margin-bottom: 0;

    transition: color .2s linear;
}


.checkout_info .delivery_methods label input:checked ~ .check
{
    border-color: #fff;
}

.checkout_info .delivery_methods label input:checked ~ .check:after
{
    opacity: 1;
}

.checkout_info .delivery_methods label input:checked ~ .info
{
    border-color: #0a7267;
    background: #0a7267;
}

.checkout_info .delivery_methods label input:checked ~ .info .name,
.checkout_info .delivery_methods label input:checked ~ .info .desc
{
    color: #fff;
}


.checkout_info .delivery_methods .method_info
{
    display: none;

    width: calc(100% - 20px);
}


.checkout_info .delivery_methods .exp
{
    color: #0a7267;
    font-size: 14px;
    font-style: italic;
    line-height: 16px;

    display: inline-block;

    width: auto;
    padding: 22px 30px;

    vertical-align: top;

    border-radius: 0 20px 20px 20px;
    background: rgba(16, 133, 120, .06);
}



.checkout_info .payment_methods
{
    padding: 19px;

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


.checkout_info .payment_methods label
{
    position: relative;

    display: block;

    cursor: pointer;
}


.checkout_info .payment_methods label input
{
    display: none;
}


.checkout_info .payment_methods label .info
{
    display: flex;

    padding: 13px 19px;

    transition: border-color .2s linear;

    border: 1px solid transparent;
    border-radius: 16px;
    background: #fff;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.checkout_info .payment_methods label .icon
{
    position: relative;

    display: flex;

    width: 32px;
    height: 32px;
    margin-right: 18px;

    transition: opacity .2s linear;

    opacity: .5;

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

.checkout_info .payment_methods label .icon img
{
    display: block;

    width: 32px;
    height: 32px;
}


.checkout_info .payment_methods label .name
{
    color: #000;
    line-height: 22px;
}


.checkout_info .payment_methods label .logos
{
    display: flex;

    margin-left: 20px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.checkout_info .payment_methods label .logos > *
{
    display: flex;

    width: 37px;
    height: 25px;

    border-radius: 4px;
    background: rgba(80, 80, 80, .1);

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

.checkout_info .payment_methods label .logos > * + *
{
    margin-left: 5px;
}


.checkout_info .payment_methods label .logos img
{
    display: block;

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


.checkout_info .payment_methods label .check
{
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;

    display: block;

    width: 22px;
    height: 22px;
    margin: auto;

    transition: opacity .2s linear;

    opacity: 0;
    border: 8px solid #108578;
    border-radius: 50%;
    background: #fff;
}


.checkout_info .payment_methods label input:checked ~ .info
{
    border-color: #108578;
}

.checkout_info .payment_methods label input:checked ~ .info .icon
{
    opacity: 1;
}

.checkout_info .payment_methods label input:checked ~ .check
{
    opacity: 1;
}



/*---------------------
    About info head
---------------------*/
.about_info_head
{
    color: #fff;

    position: relative;

    padding: 30px 0 295px;

    background: #000;
}

.about_info_head:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

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


.about_info_head .cont
{
    position: relative;
    z-index: 3;
}


.about_info_head .breadcrumbs
{
    color: rgba(255, 255, 255, .4);
}

.about_info_head .breadcrumbs a
{
    color: #fff;
}


.about_info_head .data
{
    width: 1078px;
    max-width: 100%;
    margin: 93px auto 0;

    text-align: center;
}


.about_info_head .data .title
{
    font-size: 180px;
    font-weight: 500;
    line-height: 207px;
}


.about_info_head .data .desc
{
    color: currentColor;
    font-size: 18px;
    line-height: 26px;

    width: 840px;
    max-width: 100%;
    margin: 30px auto 0;
}


.about_info_head .bg
{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*----------------------
    About advantages
----------------------*/
.about_advantages
{
    position: relative;
    z-index: 5;

    margin-top: -180px;
    margin-bottom: 140px;
}


.about_advantages .data
{
    color: #fff;

    position: relative;
    z-index: 3;

    display: flex;
    overflow: hidden;

    padding: 95px 115px 100px;

    border-radius: 20px;
    background: #0a7267;

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

.about_advantages .data:before
{
    position: absolute;
    z-index: -1;
    bottom: -220px;
    left: -220px;

    display: block;

    width: 440px;
    height: 440px;

    content: '';
    transform: rotate(90deg);

    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(16, 133, 120, 0) 0%, #108578 100%);
}


.about_advantages .info
{
    width: 440px;
    max-width: 100%;
}


.about_advantages .info .title
{
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}


.about_advantages .info .desc
{
    color: rgba(255, 255, 255, .6);
    font-size: 18px;
    line-height: 26px;

    margin-top: 30px;
}


.about_advantages .info .btn
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    width: 240px;
    max-width: 100%;
    height: 80px;
    margin-top: 50px;

    border-radius: 100px;
    background: #efd944;
}


.about_advantages .items
{
    width: 720px;
    max-width: 100%;
    margin-left: auto;
}


.about_advantages .row
{
    margin-bottom: -40px;
    margin-left: -40px;
}

.about_advantages .row > *
{
    width: calc(50% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
}


.about_advantages .item
{
    display: flex;

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


.about_advantages .item .icon
{
    display: flex;

    width: 70px;
    height: 70px;

    border: 1px solid  #efd944;
    border-radius: 100px;
    background: #fff;
    box-shadow: inset 0 0 0 4px #0a7267;

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

.about_advantages .item .icon img
{
    display: block;

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

.about_advantages .item .icon + *
{
    width: calc(100% - 85px);
}


.about_advantages .item .name
{
    font-size: 20px;
    line-height: 23px;

    display: flex;

    min-height: 70px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.about_advantages .item .desc
{
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 18px;

    margin-top: 8px;
}



/*----------------
    About info
----------------*/
.about_info
{
    margin-bottom: 140px;
}


.about_info .block_head
{
    margin-bottom: 50px;
}


.about_info .gallery
{
    position: relative;
}


.about_info .link
{
    color: #000;
    font-size: 18px;
    line-height: 21px;

    position: absolute;
    z-index: 5;
    top: -130px;
    left: 340px;

    display: flex;

    width: 260px;
    height: 260px;
    padding: 40px;

    text-align: center;
    text-decoration: none;

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

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


.about_info .gallery
{
    width: 800px;
    max-width: 100%;
    margin-top: 138px;
}


.about_info .gallery .swiper
{
    overflow: visible !important;
}


.about_info .gallery .controls
{
    position: absolute;
    bottom: 100%;
    left: 0;

    display: flex;

    width: auto;
    margin-bottom: 20px;

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

.about_info .gallery .controls > * + *
{
    margin-left: 10px;
}


.about_info .gallery .swiper-button-next,
.about_info .gallery .swiper-button-prev
{
    color: #108578;

    width: 70px;
    height: 70px;

    transition: .2s linear;

    border: none;
    background: #e7f1f0;
}


.about_info .gallery .swiper-button-next .icon,
.about_info .gallery .swiper-button-prev .icon
{
    width: 21px;
    height: 12px;
}

.about_info .gallery .swiper-button-prev .icon
{
    transform: rotate(180deg);
}

.about_info .gallery .swiper-button-next .icon
{
    transform: rotate(0);
}


.about_info .gallery .swiper-button-next:hover,
.about_info .gallery .swiper-button-prev:hover
{
    color: #fff;

    background: #0a7267;
}


.about_info .gallery .item
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 65%;

    text-decoration: none;

    border-radius: 20px;
    background: #ddd;
}

.about_info .gallery .item img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*-------------
    Persons
-------------*/
.persons
{
    margin-bottom: 140px;
}


.persons .row
{
    margin-bottom: -45px;
    margin-left: -40px;

    align-items: stretch;
    align-content: stretch;
}

.persons .row > *
{
    width: calc(25% - 40px);
    margin-bottom: 45px;
    margin-left: 40px;
}


.persons .person
{
    position: relative;
}


.persons .person .contacts
{
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;

    display: flex;
    flex-direction: column;
}

.persons .person .contacts > * + *
{
    margin-top: 10px;
}


.persons .person .contacts a
{
    color: #fff;
    font-size: 14px;
    line-height: 16px;

    display: flex;
    overflow: hidden;

    width: 36px;
    height: 36px;
    padding: 8px;

    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;

    border-radius: 18px;
    background: rgba(255, 255, 255, .2);

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.persons .person .contacts .icon
{
    display: block;

    width: 20px;
    min-width: 20px;
    height: 20px;
}


.persons .person .contacts span
{
    margin-left: 8px;

    transition: opacity .2s linear;

    opacity: 0;
}


.persons .person .contacts a:hover
{
    color: #000;

    width: auto;
    padding-right: 24px;

    background: #fff;
}

.persons .person .contacts a:hover span
{
    opacity: 1;
}


.persons .person .photo
{
    position: relative;

    overflow: hidden;

    margin-bottom: 20px;
    padding-bottom: 124.137%;

    border-radius: 16px;
    background: #000;
}

.persons .person .photo img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.persons .person .name
{
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
}


.persons .person .post
{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 16px;

    margin-top: 10px;
}


.persons .more_btn
{
    color: rgba(0, 0, 0, .5);
    line-height: 18px;

    display: block;

    width: 100%;
    margin-top: 55px;
    padding: 51px;

    border-radius: 16px;
    background: #f3f0ec;
}



/*--------------
    Partners
--------------*/
.partners
{
    margin-bottom: 140px;
}


.partners .swiper
{
    overflow: visible !important;

    height: 244px;
}


.partners .swiper-slide
{
    position: relative;

    visibility: hidden;

    height: 120px;

    transition: opacity .2s linear, visibility .2s linear;
    pointer-events: none;

    opacity: 0;
}

.partners .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.partners .controls
{
    position: absolute;
    right: 0;
    bottom: 100%;

    display: flex;

    width: auto;
    margin-bottom: 56px;

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

.partners .controls > * + *
{
    margin-left: 10px;
}


.partners .swiper-button-next,
.partners .swiper-button-prev
{
    color: #108578;

    width: 70px;
    height: 70px;

    transition: .2s linear;

    border: none;
    background: #e7f1f0;
}


.partners .swiper-button-next .icon,
.partners .swiper-button-prev .icon
{
    width: 21px;
    height: 12px;
}

.partners .swiper-button-prev .icon
{
    transform: rotate(180deg);
}

.partners .swiper-button-next .icon
{
    transform: rotate(0);
}


.partners .swiper-button-next:hover,
.partners .swiper-button-prev:hover
{
    color: #fff;

    background: #0a7267;
}


.partners .item
{
    display: flex;

    height: 120px;
    padding: 19px;

    transition: .2s linear;

    border: 1px solid transparent;
    border-radius: 12px;

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


.partners .item img
{
    display: block;

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

    transition: filter .2s linear;

    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}


.partners .item:hover
{
    border-color: rgba(0, 0, 0, .12);
}

.partners .item:hover img
{
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}



/*-------------
    History
-------------*/
.history
{
    margin-bottom: 210px;
}


.history .swiper
{
    overflow: visible !important;
}


.history .years
{
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}


.history .years .swiper-slide
{
    color: rgba(0, 0, 0, .1);
    font-size: 160px;
    font-weight: 500;
    line-height: 184px;

    width: auto;
    padding: 60px 0;

    cursor: pointer;
    transition: color .2s linear;
    text-align: center;
}

.history .years .swiper-slide:before,
.history .years .swiper-slide:after
{
    position: absolute;
    top: -10px;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #efd944;
}

.history .years .swiper-slide:after
{
    top: auto;
    bottom: -10px;
}


.history .years .swiper-slide-thumb-active
{
    color: #108578;
}

.history .years .swiper-slide-thumb-active:before,
.history .years .swiper-slide-thumb-active:after
{
    opacity: 1;
}


.history .data
{
    margin-top: 70px;
}


.history .data .swiper-slide
{
    position: relative;

    visibility: hidden;

    transition: opacity .2s linear, visibility .2s linear;
    pointer-events: none;

    opacity: 0;
}

.history .data .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.history .block_head
{
    width: 420px;
    max-width: 100%;
    margin-bottom: 0;
}


.history .text_block
{
    width: 760px;
    max-width: 100%;
    margin-left: auto;
}



/*------------
    Footer
------------*/
footer .data
{
    padding: 100px 0 80px;

    background: #0a7267;
}


footer .bottom
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 17px;

    padding: 31px 0 32px;

    background: #108578;
}


footer .cont
{
    justify-content: space-between;
}



footer .col
{
    width: 200px;
    max-width: 100%;
}



footer .logo img
{
    display: block;
}



footer .desc
{
    color: rgba(255, 255, 255, .4);
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 20px;

    margin-top: 20px;
}



footer .callback_btn
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    width: 100%;
    height: 60px;
    margin-top: 35px;

    border-radius: 100px;
    background: #efd944;
}



footer .links
{
    color: rgba(255, 255, 255, .4);
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 17px;
}

footer .links > * + *
{
    margin-top: 20px;
}


footer .links a
{
    color: currentColor;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}


footer .links a:hover,
footer .links a.active
{
    color: #fff;
}



footer .contacts
{
    width: 300px;
    max-width: 100%;
}

footer .contacts > * + *
{
    margin-top: 30px;
}


footer .contacts .label
{
    color: rgba(255, 255, 255, .4);
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 17px;

    margin-bottom: 10px;
}


footer .contacts .val
{
    color: #fff;
    font-family: var(--font_family2);
}


footer .contacts .phones .val
{
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
}

footer .contacts .phones .val > * + *
{
    margin-top: 10px;
}

footer .contacts .phones .val a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



footer .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


footer .socials a
{
    color: #fff;

    display: flex;

    width: 60px;
    height: 60px;

    transition: .2s linear;
    text-decoration: none;

    border-radius: 50%;
    background: rgba(255, 255, 255, .1);

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

footer .socials a + a
{
    margin-left: 10px;
}


footer .socials .icon
{
    display: block;

    width: 26px;
    height: 26px;
}



footer .priavcy_policy_link br
{
    display: none;
}

footer .priavcy_policy_link a
{
    color: currentColor;
}



footer .creator
{
    color: rgba(255, 255, 255, .4);
}


footer .creator br
{
    display: none;
}


footer .creator a
{
    color: #fff;

    margin-left: 11px;
}



/*-----------
    PopUp
-----------*/
.modal
{
    color: #fff;

    display: none;
    visibility: visible !important;

    width: 520px;
    max-width: 100%;
    padding: 60px;

    border-radius: 20px;
    background: #0a7267;
}


.modal_title
{
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}


.modal_desc
{
    font-size: 16px;
    line-height: 22px;

    margin-top: 20px;
}


.modal .form
{
    margin-top: 34px;

    --form_border_color: rgba(255, 255, 255, .14);
    --form_focus_color: rgba(255, 255, 255, .4);
    --form_bg_color: rgba(255, 255, 255, .04);
    --form_placeholder_color: rgba(255, 255, 255, .5);
}

.modal .form .line
{
    margin-bottom: 10px;
}


.modal .form .icon
{
    color: #fff;
}
