/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'Ubuntu';
    font-weight: 300;
    font-style: normal;

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

@font-face
{
    font-family: 'Ubuntu';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ubuntu-regular.woff2') format('woff2'),
    url('../fonts/ubuntu-regular.woff') format('woff'),
    url('../fonts/ubuntu-regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'Ubuntu';
    font-weight: 500;
    font-style: normal;

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


@font-face
{
    font-family: 'Neutral Face';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/NeutralFaceRegular.woff2') format('woff2'),
    url('../fonts/NeutralFaceRegular.woff') format('woff'),
    url('../fonts/NeutralFaceRegular.ttf') format('truetype');
}



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

    scroll-margin-top: var(--cont_padding);
}

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

html
{
    scroll-behavior: smooth;
    -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
{
    --zero_px: calc(0 * 1px);
    --bg: #000;
    --content_width: 1050px;
    --cont_padding: 24px;
    --cont_padding_double: calc(var(--cont_padding) * 2);
    --cont_padding_half: calc(var(--cont_padding) * .5);
    --scroll_width: 17px;
    --custom_scroll_width: 10px;
    --custom_scroll_height: 10px;
    --primary_color: #d6ff31;
    --dark_color: #1b1b1b;
    --light_color: #fff;
    --font_size: 14px;
    --font_size_title: 39px;
    --font_size_title_s: 27px;
    --font_family: 'Ubuntu', 'Arial', sans-serif;
    --font_family2: 'Neutral Face', 'Arial', sans-serif;
    --inner_gap: 20px;
    --inner_gap_s: 10px;
}


::selection
{
    color: var(--dark_color);
    background: var(--primary_color);
}

::-moz-selection
{
    color: var(--dark_color);
    background: var(--primary_color);
}



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


html.custom_scroll ::-webkit-scrollbar
{
    width: var(--custom_scroll_width);
    height: var(--custom_scroll_height);

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


html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: var(--primary_color);
}


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

    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 400;
    line-height: normal;

    color: var(--light_color);
}


button
{
    display: inline-block;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    cursor: pointer;
    vertical-align: top;

    color: inherit;
    border: none;
    background: none;
}


.wrap
{
    position: relative;

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

    min-height: 100%;

    z-index: 9;

    background: var(--bg);
}


.wrap > .main
{
    position: relative;

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


.cont
{
    width: 100%;
    max-width: calc(var(--content_width) + var(--cont_padding_double));
    margin-inline: auto;
    padding-inline: var(--cont_padding);
}



.modal_btn > *
{
    pointer-events: none;
}



img.cover
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



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

            backdrop-filter: blur(42.75px);
    -webkit-backdrop-filter: blur(42.75px);
}


.fancybox__slide
{
    padding: var(--inner_gap);
}


.fancybox__content > .f-button.is-close-btn,
.is-compact .fancybox__content > .f-button.is-close-btn
{
    top: var(--inner_gap_s);
    right: var(--inner_gap_s);

    transition: .2s linear;

    opacity: 1;

    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border-radius: 0;
    --f-button-color: rgba(0,0,0,.2);
    --f-button-hover-color: var(--dark_color);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-bg: #f6f6f6;
    --f-button-hover-bg: #f6f6f6;
    --f-button-active-bg: #f6f6f6;
}


.fancybox__content > .f-button.is-close-btn svg
{
    stroke: none;
}



/*--------------
    ButtonUp
--------------*/
/*.buttonUp
{
    position: fixed;
    right: var(--cont_padding);
    bottom: var(--cont_padding);

    display: none;

    z-index: 90;
}


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

    width: 62px;
    height: 62px;

    transition: background .2s linear;

    color: #fff;
    border-radius: 50%;
    background: #ae0b05;
}


.buttonUp .btn .icon
{
    display: block;

    width: 24px;
    height: 24px;
}


.buttonUp .btn:hover
{
    background: #d3241d;
}*/



/*--------------
    Grid row
--------------*/
.grid_row
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: calc(var(--offset_v) * -1);
    margin-left: calc(var(--offset_h) * -1);

    --count_per_line: 3;
    --offset_h: var(--inner_gap);
    --offset_v: var(--inner_gap);
}


.grid_row > *
{
    width: calc(100% / var(--count_per_line) - var(--offset_h));
    margin-bottom: var(--offset_v);
    margin-left: var(--offset_h);
}



/*---------------
    Accordion
---------------*/
.accordion
{
    display: flex;
    flex-direction: column;

    gap: var(--inner_gap_s);
}


.accordion_item
{
    background: #0d0d0d;
}


.accordion_item .head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-block: 15px;
    padding-inline: 28px 15px;

    cursor: pointer;
}


.accordion_item .head .title
{
    width: calc(100% - 68px);

    font-size: 16px;
    line-height: calc(100% + 9px);
}


.accordion_item .head .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: var(--dark_color);
    border-radius: 50%;
    background: var(--primary_color);
}


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

    width: 17px;
    height: 17px;

    transition: transform .2s linear;
}


.accordion_item .data
{
    display: none;

    margin-top: -4px;
    padding-block: 0 29px;
    padding-inline: 28px 15px;
}


.accordion_item .text_block
{
    width: 516px;
    max-width: 100%;

    font-weight: 300;
    line-height: calc(100% + 9px);

    opacity: .4;
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.accordion_item.active .head .icon svg
{
    transform: rotate(-45deg);
}



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


.mini_modal
{
    position: absolute;
    top: 100%;
    left: 0;

    visibility: hidden;

    z-index: 100;
    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}


.mini_modal.active
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



/*-------------------
    Load more btn
-------------------*/
.load_more_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 200px;
    height: 55px;
    margin-inline: auto;
    margin-top: 40px;

    font-size: 12px;
    font-weight: 500;

    color: #000;
    background: rgba(214, 255, 49, .9);

    gap: var(--inner_gap_s);
}


.load_more_btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}



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

    width: 100%;
    padding-block: var(--inner_gap_s);

    z-index: 9;

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


header.absolute
{
    position: absolute;
}


header .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}



header .logo
{
    display: block;

    font-size: 17px;
    font-weight: 300;
    line-height: calc(100% + 2px);

    text-decoration: none;

    color: currentColor;
}


header .logo span
{
    color: var(--primary_color);
}



header .menu
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-right: auto;
    margin-left: 40px;

    gap: 25px;
}


header .menu_item > a
{
    display: block;

    font-size: 12px;
    font-weight: 300;

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

    opacity: .3;
    color: currentColor;
}


header .menu_item:hover > a,
header .menu_item > a.active
{
    opacity: 1;
}



header .contacts
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-left: auto;

    gap: 17px;
}



header .phones
{
    display: flex;
    flex-direction: column;

    font-size: 15px;

    gap: 4px;
}


header .phones a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}



header .messengers
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 2px;
}


header .messengers a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 50px;
    height: 50px;

    transition: .2s linear;

    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
}


header .messengers .icon
{
    display: block;

    width: 16px;
    height: 16px;
}


header .messengers .tg_link .icon
{
    height: 16px;
}


header .messengers a:hover
{
    color: #000;
    background: var(--light_color);
}



header .mob_menu_btn
{
    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-left: 2px;

    transition: .2s linear;

    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
}


header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 24px;
    height: 1px;

    transition: background .2s linear;

    background: currentColor;
}


header .mob_menu_btn span:before,
header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    background: currentColor;
}


header .mob_menu_btn span:after
{
    top: 8px;
}


header .mob_menu_btn.active
{
    color: #000;
    background: var(--light_color);
}


header .mob_menu_btn.active span
{
    background: transparent;
}


header .mob_menu_btn.active span:before
{
    top: 0;

    transform: rotate(45deg);
}


header .mob_menu_btn.active span:after
{
    top: 0;

    transform: rotate(-45deg);
}



/*----------------
    Block head
----------------*/
.block_head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: var(--inner_gap_s);
}


.block_head .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 400;
    line-height: calc(100% + 15px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.block_head .title.small
{
    font-size: var(--font_size_title_s);
}


.block_head .title span
{
    color: var(--primary_color);

    -webkit-text-fill-color: var(--primary_color);
}


.block_head .desc
{
    width: fit-content;

    font-weight: 300;
    line-height: calc(100% + 9px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.block_head.center
{
    flex-direction: column;
    justify-content: center;

    text-align: center;
}


.block_head.center .title
{
    width: 677px;
    max-width: 100%;
    margin-inline: auto;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: rgba(255, 255, 255, .3);
    --form_focus_color: var(--light_color);
    --form_error_color: red;
    --form_bg_color: none;
    --form_placeholder_color: rgba(255, 255, 255, .4);
    --form_line_offset: var(--inner_gap);
    --form_input_height: 55px;
    --form_input_padding_inline: 15px;
}


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

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

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

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


.form .line
{
    margin-bottom: var(--form_line_offset);
}


.form .contact_methods
{
    padding-top: 5px;
}


.form .contact_methods .field
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
}


.form .contact_methods label
{
    display: block;

    width: 100%;

    cursor: pointer;
}


.form .contact_methods label + label
{
    margin-left: -2px;
}


.form .contact_methods label input
{
    display: none;
}


.form .contact_methods label div
{
    position: relative;

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

    height: 50px;

    line-height: calc(100% + 5px);

    z-index: 1;
    transition: .2s linear;
    text-align: center;

    color: rgba(25, 25, 25, .3);
    border: 2px solid #f2f2f2;
}


.form .contact_methods label input:checked + div
{
    z-index: 3;

    color: var(--dark_color);
    border-color: #abce22;
}


.form .label
{
    margin-bottom: var(--inner_gap_s);

    line-height: calc(100% + 5px);
}


.form .field
{
    position: relative;
}


.form .input
{
    display: block;

    width: 100%;
    height: var(--form_input_height);
    padding-inline: var(--form_input_padding_inline);

    font-family: var(--font_family);
    font-size: 13px;

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

    color: var(--light_color);
    border: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}

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


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


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


.form .checkbox
{
    position: relative;

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

    width: fit-content;
    min-height: 20px;
    margin-inline: auto;
    padding-left: 30px;

    cursor: pointer;

    color: rgba(255, 255, 255, .4);
}

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


.form .checkbox input
{
    display: none;
}


.form .checkbox .check
{
    position: absolute;
    top: 0;
    left: 0;

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

    width: 20px;
    height: 20px;

    color: var(--light_color);
    border: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}


.form .checkbox .check .icon
{
    display: block;

    width: 9px;
    height: 6px;

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

    opacity: 0;
}


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


.form .submit
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-top: 4px;
}


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

    height: 53px;
    padding-inline: var(--inner_gap);

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    color: #000;
    background: var(--light_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 8px;
}


.form .whatsapp_link .icon
{
    display: block;

    width: 9px;
    height: 9px;

    color: #9ebd24;
}


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

    height: 53px;
    padding-inline: var(--inner_gap);

    font-size: 12px;
    font-weight: 500;

    color: #000;
    background: var(--primary_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 8px;
}


.form .submit_btn .icon
{
    display: block;

    width: 9px;
    height: 9px;

    color: #9ebd24;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-weight: 300;
    line-height: calc(100% + 13px);

    color: #bdbdbd;
}


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


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

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


.text_block h1
{
    width: fit-content;
    margin-bottom: 37px;

    font-size: var(--font_size_title);
    font-weight: 400;
    line-height: normal;

    text-transform: uppercase;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}

.text_block h2
{
    width: fit-content;
    margin-bottom: 35px;

    font-size: 30px;
    font-weight: 400;
    line-height: normal;

    text-transform: uppercase;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}

.text_block h3
{
    width: fit-content;
    margin-bottom: 35px;

    font-size: 25px;
    font-weight: 400;
    line-height: normal;

    text-transform: uppercase;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.text_block h1 span,
.text_block h2 span,
.text_block h3 span
{
    color: var(--primary_color);

    -webkit-text-fill-color: var(--primary_color);
}


.text_block * + h2,
.text_block * + h3
{
    margin-top: 40px;
}

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


.text_block hr
{
    display: block;

    width: 100%;
    height: 1px;
    margin-block: 35px;

    opacity: .1;
    border: none;
    background: #fff;
}


.text_block img
{
    display: block;

    max-width: 100%;
}


.text_block a
{
    text-decoration: none;

    color: var(--primary_color);
}


.text_block .cols
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-block: 44px;
}


.text_block .cols .col
{
    width: calc(50% - 16px);
}


.text_block .images_slider
{
    display: flex;
    flex-direction: column;

    margin-block: 52px;

    gap: var(--inner_gap_s);
}


.text_block .images_slider .big .link
{
    position: relative;

    display: block;

    text-decoration: none;

    color: currentColor;
}


.text_block .images_slider .big .image
{
    display: block;

    aspect-ratio: 1 / .7412;
}


.text_block .images_slider .big .zoom
{
    position: absolute;
    top: 5px;
    right: 5px;

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

    width: 30px;
    height: 30px;

    z-index: 3;

    color: var(--light_color);
    background: rgba(0, 0, 0, .50);

            backdrop-filter: blur(7.15px);
    -webkit-backdrop-filter: blur(7.15px);
}


.text_block .images_slider .big .zoom .icon
{
    display: block;

    width: 20px;
    height: 20px;

    opacity: .4;
}


.text_block .images_slider .big .swiper-controls
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    justify-content: space-between;

    width: 100%;
    margin-block: auto;
    padding-inline: var(--inner_gap_s);
}


.text_block .images_slider .big .swiper-button-next,
.text_block .images_slider .big .swiper-button-prev
{
    width: 40px;
    height: 40px;

    color: rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .30);

            backdrop-filter: blur(4.6px);
    -webkit-backdrop-filter: blur(4.6px);
}


.text_block .images_slider .big .swiper-button-next .icon,
.text_block .images_slider .big .swiper-button-prev .icon
{
    display: block;

    width: 18px;
    height: 17px;
}


.text_block .images_slider .thumbs
{
    position: relative;

    overflow: hidden;

    padding-inline: 35px;
}


.text_block .images_slider .thumbs .swiper
{
    overflow: visible !important;
}


.text_block .images_slider .thumbs .swiper-button-next,
.text_block .images_slider .thumbs .swiper-button-prev
{
    position: absolute;

    width: 25px;
    height: 100%;
}


.text_block .images_slider .thumbs .swiper-button-next:before,
.text_block .images_slider .thumbs .swiper-button-prev:before
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    width: 24px;
    height: 100%;

    content: '';
    pointer-events: none;

    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .00) 100%);
}


.text_block .images_slider .thumbs .swiper-button-next:before
{
    right: 100%;
    left: auto;

    background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, .00) 100%);
}


.text_block .images_slider .thumbs .swiper-button-disabled:before
{
    display: none;
}


.text_block .images_slider .thumbs .swiper-button-prev
{
    left: -35px;
}


.text_block .images_slider .thumbs .swiper-button-next
{
    right: -35px;
    left: auto;
}


.text_block .images_slider .thumbs .swiper-slide
{
    width: 70px;
}


.text_block .images_slider .thumbs .thumb
{
    display: block;

    cursor: pointer;

    aspect-ratio: 1 / .7143;
}


.text_block .images_slider .thumbs .thumb img
{
    margin: 0;

    transition: .2s linear;

    opacity: .4;

    filter: grayscale(100%);
}


.text_block .images_slider .thumbs .swiper-slide-thumb-active .thumb img
{
    opacity: 1;

    filter: grayscale(0%);
}



.text_block .text_features
{
    display: flex;
    flex-direction: column;

    margin-block: 40px;

    gap: var(--inner_gap_s);
}


.text_block .text_features > *
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;

    font-weight: 300;
    line-height: calc(100% + 9px);

    white-space: nowrap;

    gap: var(--inner_gap_s);
}


.text_block .text_features .label
{
    color: #484848;
}


.text_block .text_features .val
{
    color: #d3d3d3;
}


.text_block .text_features .sep
{
    width: 100%;
    height: 1px;

    opacity: .1;
    background: var(--light_color);
}



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

    width: 233px;
    max-width: 100%;
    height: 55px;
    margin-block: 32px;
    margin-inline: auto;

    font-size: 12px;
    font-weight: 500;

    color: #000;
    background: rgba(214, 255, 49, .9);

    gap: 8px;
}


.text_block .action_btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}



.text_block .btns
{
    margin-block: 32px;
}


.text_block .btns .grid_row
{
    --count_per_line: 4;
    --offset_h: 1px;
    --offset_v: 1px;
}


.text_block .btns .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 55px;
    padding-inline: 30px;

    font-size: 12px;
    font-weight: 500;

    transition: .2s linear;

    color: #575757;
    background: rgba(19, 19, 19, .9);

    gap: 8px;
}


.text_block .btns .btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}


.text_block .btns .btn:hover
{
    color: var(--light_color);
}



.text_block .table_wrap
{
    margin-block: 54px;
}


.text_block table
{
    width: 100%;

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


.text_block table th
{
    height: 50px;
    padding-block: 15px;
    padding-inline: 51px;

    font-weight: 400;

    text-align: left;
    vertical-align: middle;

    color: #d3d3d3;
    border: 1px solid #1e1e1e;
}


.text_block table td
{
    padding: 15px 51px;

    line-height: calc(100% + 6px);

    text-align: left;
    vertical-align: middle;

    color: rgba(211, 211, 211, .7);
    border: 1px solid #1e1e1e;
}



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



.breadcrumbs
{
    width: 690px;
    max-width: 100%;
    margin-inline: auto;

    font-weight: 300;
    line-height: calc(100% + 9px);

    color: #7d7d7d;
}


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

    color: #2f2f2f;
}


.breadcrumbs a:hover
{
    color: var(--light_color);
}


.breadcrumbs .sep
{
    display: inline-block;

    margin-inline: 13px;

    vertical-align: top;

    color: #2f2f2f;
}



/*-------------------
    First section
-------------------*/
.first_section
{
    position: relative;

    overflow: hidden;
}


.first_section .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


.first_section .cont
{
    position: relative;

    display: flex;
    flex-direction: column;

    padding-block: 120px 160px;

    z-index: 3;
}


.first_section .title
{
    width: 486px;
    max-width: 100%;

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 400;
    line-height: calc(100% + 21px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.first_section .title span
{
    color: var(--primary_color);

    -webkit-text-fill-color: var(--primary_color);
}


.first_section .desc
{
    position: relative;

    width: 421px;
    max-width: 100%;
    margin-top: var(--inner_gap);
    padding-left: 28px;

    font-weight: 300;
    line-height: calc(100% + 9px);

    border-left: 2px solid #8e8e8e;
}


.first_section .desc:before
{
    position: absolute;
    top: 0;
    left: -2px;

    display: block;

    width: 1px;
    height: 100vh;

    content: '';
    pointer-events: none;

    background: #1f1f1f;
}


.first_section .desc span
{
    display: block;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.first_section .info
{
    width: fit-content;
    margin-top: 50px;
    margin-left: 2px;
    padding-block: 26px 17px;
    padding-inline: 28px 26px;

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


.first_section .info .btns
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 100%;

    gap: var(--inner_gap_s);
}


.first_section .info .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;

    height: 53px;
    padding-inline: var(--inner_gap);

    font-size: 12px;
    font-weight: 500;

    color: #000;
    background: var(--light_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 5px;
    transition: 0.2s;
}


.first_section .info .btn .icon
{
    display: block;

    width: 9px;
    min-width: 9px;
    height: 9px;

    color: #9ebd24;
}


.first_section .info .btn.primary
{
    min-width: 190px;

    background: var(--primary_color);
    transition: 0.2s;
}

.first_section .info .btn:hover{
    transform: scale(1.1);
}


.first_section .info .exp
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: var(--inner_gap_s);

    font-size: 11px;
    font-weight: 300;

    gap: 1px;
}


.first_section .info .exp > *
{
    padding-block: 4px 7px;
    padding-inline: 7px 8px;

    background: #1e1e1e;
}


.first_section .info .exp span
{
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}



/*-------------
    Catalog
-------------*/
.catalog
{
    margin-bottom: 99px;
}


.catalog .block_head
{
    position: relative;

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

    margin-bottom: var(--cont_padding_double);
}


.catalog .block_head:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 1px;
    height: calc(100% + 48px);

    content: '';
    pointer-events: none;

    background: #1f1f1f;
}


.catalog .block_head .pre_title
{
    position: relative;

    padding-left: 58px;

    font-weight: 300;
    line-height: calc(100% + 17px);

    text-transform: uppercase;

    color: rgba(255, 255, 255, .3);
}


.catalog .block_head .pre_title:before
{
    position: absolute;
    top: .5lh;
    left: 0;

    display: block;

    width: 50px;
    width: 48px;
    height: 1px;

    content: '';

    background: #1f1f1f;
}


.catalog .block_head .title
{
    width: 459px;
    max-width: 100%;
}


.catalog .block_head .desc
{
    width: 415px;
    max-width: 100%;

    line-height: calc(100% + 16px);
}


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


.catalog .swiper:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';
    pointer-events: none;

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


.catalog .swiper-slide
{
    width: 225px;
}

.catalog .swiper-slide.big
{
    width: 373px;
}


.catalog .item
{
    display: flex;
    flex-direction: column;

    padding-block: 31px 27px;
    padding-inline: 29px;

    font-weight: 300;

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

    color: #dbdbdb;
    border: 1px solid #1f1f1f;

    gap: var(--inner_gap);
}


.catalog .item .thumb
{
    display: block;
}


.catalog .item .thumb img
{
    display: block;

    width: 100%;

    transition: filter .2s linear;

    filter: grayscale(100%) brightness(75%);
}


.catalog .item:hover
{
    color: #fff;
    background: #1f1f1f;
}


.catalog .item:hover .thumb img
{
    filter: grayscale(0%);
}



/*----------
    Calc
----------*/
.calc
{
    margin-bottom: 65px;
}


.calc .data
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 870px;
    max-width: 100%;
    margin-inline: auto;

    color: #1b1b1b;
    background: var(--primary_color);
}



.calc .block_head
{
    width: 100%;
    padding: 40px;

    border-bottom: 1px solid;
}


.calc .block_head .title
{
    width: calc(50% - 40px);
    margin: 0;

    color: currentColor;

    -webkit-text-fill-color: currentColor;
}


.calc .block_head .title span
{
    margin-left: -8px;
    padding-block: 3px;
    padding-inline: 8px;

    color: currentColor;
    background: var(--light_color);

    -webkit-text-fill-color: currentColor;
}


.calc .block_head .desc
{
    width: 50%;

    color: currentColor;

    -webkit-text-fill-color: currentColor;
}



.calc .details
{
    display: flex;
    flex-direction: column;

    width: 50%;
    padding-block: 35px 40px;
    padding-inline: 40px;

    background: var(--primary_color);

    gap: var(--inner_gap);
}


.calc .details .title
{
    font-size: 18px;
    font-weight: 500;
}


.calc .details .form
{
    margin-bottom: calc(var(--form_line_offset) * -1);

    --form_border_color: #a9c53a;
    --form_focus_color: var(--dark_color);
    --form_placeholder_color: rgba(27, 27, 27, .4);
    --form_line_offset: 25px;
    --form_input_height: 61px;
    --form_input_padding_inline: 19px;
}


.calc .details .form .label
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: var(--inner_gap_s);
}


.calc .details .form .label .min,
.calc .details .form .label .val
{
    font-size: 13px;

    opacity: .2;
}


.calc .details .form .input
{
    padding-right: 65px;

    text-align: left;

    color: currentColor;
}


.calc .details .form .currency
{
    position: absolute;
    top: 0;
    right: 0;

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

    height: 100%;
    padding-inline: var(--inner_gap);

    font-size: 13px;

    z-index: 3;
    pointer-events: none;

    opacity: .4;
}


.calc .details .form .range .field
{
    padding-block: 11px;
}


.calc .details .exp
{
    margin-top: auto;

    font-size: 12px;

    letter-spacing: .24px;

    opacity: .2;
}



.calc .plan
{
    display: flex;
    flex-direction: column;

    width: 50%;
    padding-block: 35px 40px;
    padding-inline: 40px;

    border-left: 1px solid;
    background: var(--light_color);

    gap: var(--inner_gap);
}


.calc .plan .title
{
    font-size: 18px;
    font-weight: 500;
}


.calc .plan .items
{
    display: flex;
    flex-direction: column;

    gap: 27px;
}


.calc .plan .items > *
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;

    white-space: nowrap;
}


.calc .plan .items .sep
{
    width: 100%;
    height: 1px;
    margin-inline: 8px;

    background: #d9d9d9;
}


.calc .plan .exp
{
    margin-top: auto;

    font-size: 12px;

    letter-spacing: .24px;

    opacity: .2;
}



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

    width: 870px;
    max-width: 100%;
    margin-inline: auto;
    margin-top: var(--inner_gap);
    padding-block: 21px 22px;
    padding-inline: 40px;

    background: #151515;

    gap: 27px;
}


.calc .bottom .title
{
    font-size: 18px;
    font-weight: 500;
}


.calc .bottom .exp
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: var(--inner_gap_s);

    font-size: 11px;
    font-weight: 300;

    gap: 1px;
}


.calc .bottom .exp > *
{
    padding-block: 4px 7px;
    padding-inline: 7px 8px;

    background: #1e1e1e;
}


.calc .bottom .exp span
{
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.calc .bottom .link a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 53px;
    padding-inline: 33px;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    color: #000;
    background: var(--primary_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 8px;
}


.calc .bottom .link .icon
{
    display: block;

    width: 9px;
    height: 9px;

    color: #9ebd24;
}



/*-----------------
    Order block
-----------------*/
.order_block
{
    position: relative;

    padding-block: 88px 96px;
}


.order_block:before
{
    position: absolute;
    top: 0;
    left: 50%;

    display: block;

    width: 1px;
    height: 100%;
    margin-left: calc(var(--content_width) / -2);

    content: '';
    z-index: 5;
    pointer-events: none;

    opacity: .1;
    background: var(--light_color);
}


.order_block .cont
{
    position: relative;

    z-index: 3;
}


.order_block .block_head
{
    position: relative;

    margin-bottom: 40px;
    padding-bottom: 34px;
}


.order_block .block_head:after
{
    position: absolute;
    bottom: 0;
    left: 32px;

    display: block;

    width: 1092px;
    height: 1px;

    content: '';
    pointer-events: none;

    opacity: .1;
    background: var(--light_color);
}


.order_block .block_head .title
{
    width: 645px;
    max-width: 100%;
}


.order_block .block_head .desc
{
    width: 458px;
    max-width: 100%;
}


.order_block .form
{
    width: 354px;
    max-width: 100%;
    margin-inline: auto;
}



.order_block .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


.order_block .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';

    opacity: .6;
    background: #191919;
}



/*-----------
    Steps
-----------*/
.steps
{
    position: relative;

    margin-bottom: 88px;
    padding-block: 85px 110px;

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


.steps .block_head
{
    margin-bottom: 41px;
}


.steps .block_head .title
{
    width: 564px;
    max-width: 100%;
}


.steps .block_head .desc
{
    width: 564px;
    max-width: 100%;
    margin-top: 5px;
}


.steps .list
{
    counter-reset: number;
}


.steps .step
{
    position: relative;

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

    margin-top: 39px;
    padding-top: 39px;
    padding-left: 110px;

    gap: 37px;
}


.steps .step + .step:before
{
    position: absolute;
    top: 0;
    left: 1px;

    display: block;

    width: 100vw;
    height: 1px;

    content: '';
    pointer-events: none;

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


.steps .step:after
{
    position: absolute;
    bottom: -40px;
    left: 0;

    display: block;

    width: 1px;
    height: calc(100% + 39px);

    content: '';
    pointer-events: none;

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


.steps .step:first-child:after
{
    height: calc(100% + 334px);
}


.steps .step:last-child:after
{
    display: none;
}


.steps .step .number
{
    width: 142px;
    max-width: 100%;

    font-family: var(--font_family2);
    font-size: 100px;
    line-height: 104px;

    white-space: nowrap;
    letter-spacing: 9px;

    color: #1f1f1f;
}


.steps .step .number:before
{
    content: counter(number, decimal-leading-zero);
    counter-increment: number;
}


.steps .step .name
{
    width: 244px;
    max-width: 100%;
    margin-top: 11px;

    font-size: 25px;
    font-weight: 500;
}


.steps .step .desc
{
    display: flex;
    flex-direction: column;

    width: 348px;
    max-width: 100%;
    margin-top: 8px;

    font-weight: 300;
    line-height: calc(100% + 10px);

    opacity: .5;

    gap: var(--inner_gap);
}


.steps .step .desc.big
{
    width: 407px;
}



/*----------------
    advantages
----------------*/
.advantages
{
    margin-bottom: 91px;
}


.advantages.big_m
{
    margin-bottom: 120px;
}


.advantages.top_border
{
    padding-top: 88px;

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


.advantages .block_head
{
    margin-bottom: 50px;
}


.advantages .block_head > div:first-child
{
    display: flex;
    flex-direction: column;

    gap: var(--inner_gap_s);
}


.advantages .block_head .desc
{
    width: 594px;
    max-width: 100%;
    margin-top: 4px;
}


.advantages .block_head .pre_title
{
    align-self: flex-start;

    margin-top: 8px;

    font-weight: 300;
    line-height: calc(100% + 17px);

    text-transform: uppercase;

    opacity: .3;
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.advantages .grid
{
    position: relative;

    height: 380px;
}


.advantages .grid:before
{
    position: absolute;
    top: 0;
    left: -141px;

    display: block;

    width: 100vw;
    height: 1px;

    content: '';
    pointer-events: none;

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


.advantages .grid .item
{
    position: absolute;

    display: flex;
    flex-direction: column;

    padding: 30px;

    border: 1px solid #1a1a1a;
}


.advantages .grid .item1
{
    top: 0;
    left: 0;

    width: 285px;
    height: 380px;
}


.advantages .grid .item2
{
    top: 0;
    left: 284px;

    width: 286px;
    height: 50%;
}


.advantages .grid .item3
{
    top: 0;
    right: 176px;

    width: 305px;
    height: 50%;
}


.advantages .grid .item4
{
    top: 0;
    right: 0;

    width: 177px;
    height: 380px;
}


.advantages .grid .item5
{
    bottom: 0;
    left: 284px;

    width: 363px;
    height: calc(50% + 1px);
}


.advantages .grid .item6
{
    right: 176px;
    bottom: 0;

    width: 228px;
    height: calc(50% + 1px);
}


.advantages .grid .item .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 60px;
    height: 60px;
    margin-bottom: 23px;

    background: var(--primary_color);
}


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

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


.advantages .grid .item .name
{
    font-size: 16px;
    font-weight: 500;
    line-height: calc(100% + 9px);
}


.advantages .grid .item .desc
{
    margin-top: 14px;

    font-size: 13px;
    line-height: calc(100% + 11px);

    opacity: .4;
}



.advantages .row
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.advantages .row .item
{
    text-align: center;
}


.advantages .row .item .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 60px;
    height: 60px;
    margin-inline: auto;
    margin-bottom: 23px;

    background: var(--primary_color);
}


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

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


.advantages .row .item .name
{
    font-size: 16px;
    font-weight: 500;
    line-height: calc(100% + 9px);
}



/*----------------
    About info
----------------*/
.about_info
{
    position: relative;

    margin-bottom: 91px;
    padding-block: 70px;
}


.about_info .cont
{
    position: relative;

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

    z-index: 3;
}


.about_info .data
{
    display: flex;
    flex-direction: column;

    width: calc(50% - 60px);

    gap: 46px;
}


.about_info .link a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: fit-content;
    height: 53px;
    padding-inline: var(--inner_gap);

    font-size: 12px;
    font-weight: 500;

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

    color: #000;
    background: var(--primary_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 8px;
}


.about_info .link a .icon
{
    display: block;

    width: 9px;
    height: 9px;

    color: #9ebd24;
}



.about_info .map
{
    position: relative;

    overflow: hidden;

    width: 50%;
    height: 360px;

    background: #0d0d0d;
    filter: grayscale(100%);
}



.about_info .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


.about_info .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';

    opacity: .6;
    background: #191919;
}



/*-------------
    Reviews
-------------*/
.reviews
{
    margin-bottom: 83px;
    padding-bottom: 92px;

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


.reviews .swiper
{
    position: relative;

    overflow: visible !important;
}


.reviews .swiper:before
{
    position: absolute;
    top: 0;
    left: 50%;

    display: block;

    width: 100vw;
    height: 1px;

    content: '';
    transform: translateX(-50%);
    pointer-events: none;

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


.reviews .block_head
{
    margin-bottom: 47px;
}


.reviews .block_head > div:first-child
{
    display: flex;
    flex-direction: column;

    max-width: calc(100% - 160px);

    gap: var(--inner_gap_s);
}


.reviews .swiper-slide
{
    width: 430px;
    max-width: 100%;
}


.reviews .review
{
    display: flex;
    flex-direction: column;

    transition: background .2s linear;

    border: 1px solid #1a1a1a;
}


.reviews .review .info
{
    display: flex;
    flex-direction: column;

    padding-block: 30px 43px;
    padding-inline: 29px 42px;

    gap: 14px;
}


.reviews .review .date
{
    width: fit-content;
    margin-bottom: 2px;

    font-size: 11px;
    font-weight: 300;

    opacity: .3;
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.reviews .review .name
{
    font-size: 18px;
    line-height: calc(100% + 5px);
}


.reviews .review .desc
{
    font-weight: 300;
    line-height: calc(100% + 9px);

    transition: opacity .2s linear;

    opacity: .4;
    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.reviews .review .link
{
    margin-top: auto;
}


.reviews .review .link a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 67px;

    font-size: 12px;
    font-weight: 500;

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

    color: rgba(255, 255, 255, .3);
    background: rgba(26, 26, 26, .6);

    gap: 8px;
}


.reviews .review .link .icon
{
    display: block;

    width: 9px;
    height: 9px;

    transition: color .2s linear;
}


.reviews .review:hover
{
    background: #1a1a1a;
}


.reviews .review:hover .desc
{
    opacity: 1;
}


.reviews .review:hover .link a
{
    color: var(--light_color);
    background: rgba(255, 255, 255, .03);
}


.reviews .review:hover .link .icon
{
    color: var(--primary_color);
}



/*---------
    FAQ
---------*/
.FAQ
{
    margin-bottom: 120px;
}


.FAQ .block_head
{
    margin-bottom: 29px;
}


.FAQ .accordion
{
    width: 690px;
    max-width: 100%;
    margin-inline: auto;
}



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

    padding-block: 30px 98px;
}


.product_info:before
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 1px;
    height: 100%;
    margin-inline: auto;

    content: '';
    pointer-events: none;

    background: #1f1f1f;
}


.product_info .cont
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.product_info .images
{
    display: flex;
    flex-direction: column;

    width: calc(50% - 30px);

    gap: var(--inner_gap_s);
}


.product_info .images .big .link
{
    position: relative;

    display: block;

    text-decoration: none;

    color: currentColor;
}


.product_info .images .big .image
{
    display: block;

    aspect-ratio: 1 / .7412;
}


.product_info .images .big .zoom
{
    position: absolute;
    top: 5px;
    right: 5px;

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

    width: 30px;
    height: 30px;

    z-index: 3;

    color: var(--light_color);
    background: rgba(0, 0, 0, .50);

            backdrop-filter: blur(7.15px);
    -webkit-backdrop-filter: blur(7.15px);
}


.product_info .images .big .zoom .icon
{
    display: block;

    width: 20px;
    height: 20px;

    opacity: .4;
}


.product_info .images .big .swiper-controls
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    justify-content: space-between;

    width: 100%;
    margin-block: auto;
    padding-inline: var(--inner_gap_s);
}


.product_info .images .big .swiper-button-next,
.product_info .images .big .swiper-button-prev
{
    width: 40px;
    height: 40px;

    color: rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .30);

            backdrop-filter: blur(4.6px);
    -webkit-backdrop-filter: blur(4.6px);
}


.product_info .images .big .swiper-button-next .icon,
.product_info .images .big .swiper-button-prev .icon
{
    display: block;

    width: 18px;
    height: 17px;
}


.product_info .images .thumbs
{
    position: relative;

    overflow: hidden;

    padding-inline: 35px;
}


.product_info .images .thumbs .swiper
{
    overflow: visible !important;
}


.product_info .images .thumbs .swiper-button-next,
.product_info .images .thumbs .swiper-button-prev
{
    position: absolute;

    width: 25px;
    height: 100%;
}


.product_info .images .thumbs .swiper-button-next:before,
.product_info .images .thumbs .swiper-button-prev:before
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    width: 24px;
    height: 100%;

    content: '';
    pointer-events: none;

    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .00) 100%);
}


.product_info .images .thumbs .swiper-button-next:before
{
    right: 100%;
    left: auto;

    background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, .00) 100%);
}


.product_info .images .thumbs .swiper-button-disabled:before
{
    display: none;
}


.product_info .images .thumbs .swiper-button-prev
{
    left: -35px;
}


.product_info .images .thumbs .swiper-button-next
{
    right: -35px;
    left: auto;
}


.product_info .images .thumbs .swiper-slide
{
    width: 70px;
}


.product_info .images .thumbs .thumb
{
    display: block;

    cursor: pointer;

    aspect-ratio: 1 / .7143;
}


.product_info .images .thumbs .thumb img
{
    transition: .2s linear;

    opacity: .4;

    filter: grayscale(100%);
}


.product_info .images .thumbs .swiper-slide-thumb-active .thumb img
{
    opacity: 1;

    filter: grayscale(0%);
}



.product_info .data
{
    position: sticky;
    top: var(--inner_gap);

    width: calc(50% - 40px);
}


.product_info .data .head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;

    margin-bottom: 27px;
    padding-top: 6px;

    gap: var(--inner_gap_s) var(--inner_gap);
}


.product_info .data .model
{
    font-size: 16px;

    text-transform: uppercase;

    color: var(--primary_color);
}


.product_info .data .articul
{
    line-height: calc(100% + 9px);

    color: #383838;
}


.product_info .data .name
{
    display: inline-block;

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 400;

    vertical-align: top;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.product_info .data .desc
{
    margin-top: 16px;

    font-weight: 300;
    line-height: calc(100% + 9px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.product_info .data .buy
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 33px;
    padding-top: 48px;

    border-top: 1px solid #1f1f1f;
}


.product_info .data .price
{
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.product_info .data .price .old
{
    font-size: 20px;
    font-weight: 300;
    line-height: calc(100% + 3px);

    color: #d9d9d9;

    text-decoration-line: line-through;
}


.product_info .data .price .current
{
    font-family: var(--font_family2);
    font-size: 25px;

    color: var(--primary_color);
}


.product_info .data .buy .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 233px;
    max-width: 100%;
    height: 55px;

    font-size: 12px;
    font-weight: 500;

    color: #000;
    background: rgba(214, 255, 49, .9);

    gap: 8px;
}


.product_info .data .buy .btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}


.product_info .data .btns
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;

    margin-top: 25px;

    gap: 1px;
}


.product_info .data .btns .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 100%;
    height: 55px;
    padding-inline: 30px;

    font-size: 12px;
    font-weight: 500;

    transition: .2s linear;

    color: #575757;
    background: rgba(19, 19, 19, .9);

    gap: 8px;
}


.product_info .data .btns .btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}


.product_info .data .btns .btn:hover
{
    color: var(--light_color);
}



.product_info .info
{
    width: calc(50% - 30px);
    margin-top: 50px;
}



.product_info .features
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-top: 46px;

    border-top: 1px solid #1f1f1f;
}


.product_info .features > *
{
    display: flex;
    flex-direction: column;

    text-align: center;

    gap: 5px;
}


.product_info .features .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 18px;
    margin-bottom: 6px;
}


.product_info .features .icon img
{
    display: block;

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


.product_info .features .val
{
    font-weight: 500;
}


.product_info .features .label
{
    font-size: 12px;

    opacity: .3;
}



.product_info .text_features
{
    display: flex;
    flex-direction: column;

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

    border-top: 1px solid #1f1f1f;

    gap: var(--inner_gap_s);
}


.product_info .text_features > *
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;

    font-weight: 300;
    line-height: calc(100% + 9px);

    white-space: nowrap;

    gap: var(--inner_gap_s);
}


.product_info .text_features .label
{
    color: #484848;
}


.product_info .text_features .val
{
    color: #d3d3d3;
}


.product_info .text_features .sep
{
    width: 100%;
    height: 1px;

    opacity: .1;
    background: var(--light_color);
}



.product_info .info .text_block
{
    margin-top: 30px;
    padding-top: 30px;

    font-weight: 300;
    line-height: 2;

    color: #949494;
    border-top: 1px solid #1f1f1f;
}



/*---------------
    Text page
---------------*/
.text_page
{
    margin-bottom: 110px;
}


.text_page .text_block
{
    width: 690px;
    max-width: 100%;
    margin-inline: auto;
}



/*-------------------
    Category head
-------------------*/
.category_head
{
    position: relative;

    padding-block: 120px 65px;
}


.category_head .cont
{
    position: relative;

    z-index: 3;
}


.category_head .title
{
    width: 486px;
    max-width: 100%;

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 400;
    line-height: calc(100% + 21px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.category_head .title span
{
    color: var(--primary_color);

    -webkit-text-fill-color: var(--primary_color);
}


.category_head .desc
{
    position: relative;

    width: 315px;
    max-width: 100%;
    margin-top: var(--inner_gap);
    padding-left: 28px;

    font-weight: 300;
    line-height: calc(100% + 9px);

    border-left: 2px solid #8e8e8e;
}


.category_head .desc:before
{
    position: absolute;
    top: 100%;
    left: -2px;

    display: block;

    width: 1px;
    height: 65px;

    content: '';
    pointer-events: none;

    background: #1f1f1f;
}


.category_head .desc span
{
    display: block;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.category_head .bg
{
    position: absolute;
    top: 0;
    left: 50%;

    display: block;

    width: 1920px;
    min-width: 100%;

    z-index: 1;
    transform: translateX(-50%);
    pointer-events: none;
}


.category_head .bg img
{
    display: block;

    width: 100%;
}


.category_head .shadow
{
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 726px;

    z-index: 2;
    pointer-events: none;
}


.category_head .shadow .glow1
{
    position: absolute;
    top: -308px;
    left: 50%;

    display: block;

    width: 530px;
    margin-left: -942px;

    content: '';
    z-index: 2;

    opacity: .2;
    border-radius: 50%;
    background: var(--primary_color);

    aspect-ratio: 1 / 1;
    mix-blend-mode: plus-lighter;
    filter: blur(210.31px);
}


.category_head .shadow .glow2
{
    position: absolute;
    top: 108px;
    right: 50%;

    display: block;

    width: 530px;
    margin-right: -841px;

    content: '';
    z-index: 2;

    opacity: .2;
    border-radius: 50%;
    background: var(--primary_color);

    aspect-ratio: 1 / 1;
    mix-blend-mode: plus-lighter;
    filter: blur(210.31px);
}


.category_head .shadow .darking1
{
    position: absolute;
    bottom: -47px;
    left: 50%;

    display: block;

    width: 715px;
    height: 948px;
    margin-left: -1179px;

    content: '';
    z-index: 1;

    background: var(--bg);
}


.category_head .shadow .darking2
{
    position: absolute;
    bottom: -47px;
    left: 50%;

    display: block;

    width: 561px;
    height: 948px;
    margin-left: -465px;

    content: '';
    z-index: 1;

    background: linear-gradient(270deg, rgba(0, 0, 0, .00) 0%, #000 100%);
}


.category_head .shadow .darking3
{
    position: absolute;
    top: 297px;
    left: 0;

    display: block;

    width: 100%;
    height: 168px;

    content: '';
    z-index: 1;

    background: linear-gradient(180deg, rgba(0, 0, 0, .00) 0%, #000 100%);
}


.category_head .shadow:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 181px;

    content: '';
    z-index: 3;

    background: linear-gradient(0deg, rgba(0, 0, 0, .00) 0%, #000 100%);
}


.category_head .shadow:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 211px;

    content: '';
    z-index: 3;

    background: linear-gradient(180deg, rgba(0, 0, 0, .00) 0%, #000 100%);
}



/*------------
    Filter
------------*/
.filter
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    border: 1px solid rgba(255, 255, 255, .1);

    --form_border_color: transparent;
    --form_focus_color: transparent;
    --form_bg_color: rgba(255, 255, 255, .1);
    --form_placeholder_color: var(--light_color);
    --form_input_height: 45px;
    --form_input_padding_inline: 14px;
}


.filter .item
{
    width: 33.333%;
}


.filter .item + .item
{
    border-left: 1px solid rgba(255, 255, 255, .1);
}


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

    width: 100%;
    height: 50px;

    font-size: 16px;
    font-weight: 300;
    line-height: calc(100% + 9px);

    transition: color .2s linear;

    color: rgba(255, 255, 255, .5);

    gap: 7px;
}


.filter .mini_modal_btn .count
{
    min-width: 15px;
    height: 15px;
    padding-inline: 4px;

    font-size: 12px;
    font-weight: 700;
    line-height: 15px;

    text-align: center;

    color: #050503;
    background: var(--primary_color);
}


.filter .mini_modal_btn .count:empty
{
    display: none;
}


.filter .mini_modal_btn .icon
{
    display: block;

    width: 7px;
    height: 5px;

    transition: transform .2s linear;

    color: rgba(255, 255, 255, .5);
}


.filter .mini_modal_btn:hover,
.filter .mini_modal_btn.active
{
    color: var(--light_color);
}


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


.filter .mini_modal
{
    right: 0;
    left: 0;

    width: calc(100% - 30px);
    margin-inline: auto;
    margin-top: 15px;

    background: rgba(255, 255, 255, .10);

            backdrop-filter: blur(10.45px);
    -webkit-backdrop-filter: blur(10.45px);
}


.filter .search
{
    position: relative;

    padding: 25px 25px 5px;
}


.filter .search .input
{
    padding-right: 39px;

    text-align: left;
}


.filter .search .clear_btn
{
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;

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

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

    z-index: 2;
    transition: .2s linear;

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


.filter .search .clear_btn .icon
{
    display: block;

    width: 10px;
    height: 10px;
}


.filter .search .clear_btn:hover
{
    color: var(--light_color);
    background: rgba(217, 217, 217, .1);
}


.filter .fields
{
    overflow-x: hidden;
    overflow-y: auto;

    max-height: 279px;

    --custom_scroll_width: 3px;
    --custom_scroll_height: 3px;
}


.filter .fields::-webkit-scrollbar
{
    width: var(--custom_scroll_width);
    height: var(--custom_scroll_height);

    background-color: rgba(0, 0, 0, .3);
}


.filter .fields::-webkit-scrollbar-thumb
{
    background-color: var(--primary_color);
}


.filter .fields .field.hide
{
    display: none;
}


.filter .fields .field:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: calc(100% - 50px);
    height: 1px;
    margin-inline: auto;

    content: '';
    transition: opacity .2s linear;
    pointer-events: none;

    opacity: .2;
    background: #d9d9d9;
}


.filter .fields .field:hover:after
{
    opacity: 0;
}


.filter .fields .checkbox
{
    width: 100%;
    padding-block: var(--inner_gap);
    padding-inline: 50px 25px;

    font-weight: 300;

    transition: background .2s linear;

    color: rgba(255, 255, 255, .7);
}


.filter .fields .checkbox > *
{
    pointer-events: none;
}


.filter .fields .checkbox .check
{
    top: 20px;
    left: 25px;

    width: 15px;
    height: 15px;

    opacity: .7;
    color: #000;
    border: 1px solid var(--light_color);
    background: none;
}


.filter .fields .checkbox:hover
{
    background: rgba(0, 0, 0, .4);
}


.filter .fields .checkbox input:checked + .check
{
    opacity: 1;
    border-color: var(--primary_color);
    background: var(--primary_color);
}



/*-------------------
    Category info
-------------------*/
.category_info
{
    position: relative;

    margin-bottom: 100px;

    z-index: 3;
}


.category_info .head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: -1px;
    padding-block: 35px;
    padding-inline: 30px;

    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    border-left: 1px solid #1f1f1f;
}



.category_info .head .count
{
    font-family: var(--font_family2);
    font-size: 18px;

    text-transform: uppercase;

    color: #434343;
}


.category_info .count span
{
    color: var(--primary_color);
}


.category_info .clear_filter_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-weight: 300;

    transition: .2s linear;

    color: rgba(255, 255, 255, .2);

    gap: 5px;
}



.category_info .clear_filter_btn .icon
{
    display: block;

    width: 10px;
    height: 10px;
}


.category_info .clear_filter_btn:hover
{
    color: var(--light_color);
}



/*--------------
    Products
--------------*/
.products
{
    position: relative;

    z-index: 3;
}


.products .grid_row
{
    margin-bottom: 0;
    margin-left: 0;
    padding-bottom: 1px;
    padding-left: 1px;

    --offset_h: -1px;
    --offset_v: -1px;
}


.products .product
{
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 30px;

    z-index: 1;
    transition: .2s linear;

    border: 1px solid #1f1f1f;
}


.products .product .stickers
{
    position: absolute;
    top: 40px;
    right: 40px;

    display: flex;
    flex-direction: column;

    font-size: 11px;
    font-weight: 300;

    z-index: 3;
    text-transform: uppercase;

    gap: 2px;
}


.products .product .sticker
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: fit-content;
    margin-left: auto;
    padding-block: 4px 6px;
    padding-inline: 7px;

    background: rgba(0, 0, 0, .50);

    gap: 5px;
            backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


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

    width: 9px;
    height: 6px;
}


.products .product .thumb
{
    display: block;

    width: 100%;
    margin-bottom: 25px;

    aspect-ratio: 1 / .7266;
}


.products .product .thumb img
{
    transition: .2s linear;

    opacity: .8;

    filter: grayscale(100%);
}


.products .product .name
{
    font-family: var(--font_family2);
    font-size: 18px;

    text-transform: uppercase;
}


.products .product .price
{
    margin-top: 12px;

    font-weight: 300;

    color: var(--primary_color);
}


.products .product .features
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: var(--inner_gap);
    margin-bottom: -1px;
    margin-left: -1px;

    font-size: 11px;
    font-weight: 300;

    text-transform: uppercase;
}


.products .product .features > *
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: calc(50% - 1px);
    margin-bottom: 1px;
    margin-left: 1px;
    padding-block: 8px 9px;
    padding-inline: 10px;

    background: rgba(255, 255, 255, .05);

    gap: 6px;
}


.products .product .features > *.big
{
    width: calc(100% - 1px);
}


.products .product .features .label
{
    opacity: .3;
}


.products .product .buy
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 30px;
}


.products .product .buy .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: calc(100% - 56px);
    height: 55px;
    padding-inline: var(--inner_gap);

    font-size: 12px;
    font-weight: 500;

    transition: .2s linear;

    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);

    gap: 8px;
}


.products .product .buy .btn .icon
{
    display: block;

    width: 9px;
    height: 9px;
}


.products .product .buy .btn:hover
{
    color: #000;
    background: var(--primary_color);
}


.products .product .buy .whatsapp_link
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 55px;
    height: 55px;

    transition: color .2s linear;

    color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
}


.products .product .buy .whatsapp_link .icon
{
    display: block;

    width: 16px;
    height: 16px;
}


.products .product .buy .whatsapp_link:hover
{
    color: var(--light_color);
}


.products .product:hover
{
    z-index: 3;

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


.products .product:hover .thumb img
{
    opacity: 1;

    filter: grayscale(0%);
}



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

    width: calc(100% + 1px);
    padding-block: 60px;
    padding-inline: 30px;

    border: 1px solid #1f1f1f;

    gap: var(--cont_padding_double);
}


.products .action .title
{
    width: 279px;
    max-width: 100%;

    font-family: var(--font_family2);
    font-size: 20px;
    font-weight: 400;
    line-height: calc(100% + 11px);

    text-transform: uppercase;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.products .action .title span
{
    color: var(--primary_color);

    -webkit-text-fill-color: var(--primary_color);
}


.products .action .desc
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

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


.products .action .desc span
{
    width: 223px;
    max-width: calc(100% - 33px);

    font-weight: 300;
    line-height: calc(100% + 10px);

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


.products .action .desc .icon
{
    display: block;

    width: 13px;
    height: 20px;

    opacity: .1;
}


.products .action .whatsapp_link
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 170px;
    max-width: 100%;
    height: 53px;
    margin-left: 35px;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    color: #000;
    background: var(--primary_color);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .10);

    gap: 8px;
}


.products .action .whatsapp_link .icon
{
    display: block;

    width: 9px;
    height: 9px;

    color: #9ebd24;
}



/*------------
    Footer
------------*/
footer
{
    border-top: 1px solid rgba(255, 255, 255, .1);
}


footer .cont
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
}



footer .col
{
    display: flex;
    flex-direction: column;

    width: 171px;
    max-width: 100%;
    padding-block: 40px 60px;

    gap: 9px;
}



footer .logo
{
    display: block;

    font-size: 17px;
    font-weight: 300;
    line-height: calc(100% + 2px);

    text-decoration: none;

    color: currentColor;
}


footer .logo span
{
    color: var(--primary_color);
}



footer .copyright
{
    font-size: 11px;
    font-weight: 300;
    line-height: calc(100% + 6px);

    opacity: .45;
}



footer .links
{
    display: flex;
    flex-direction: column;

    padding-block: 43px 60px;

    gap: 14px;
}


footer .links .title
{
    display: inline-block;

    font-size: 12px;

    vertical-align: top;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


footer .links .items
{
    display: flex;
    flex-direction: column;

    font-size: 11px;
    font-weight: 300;

    gap: var(--inner_gap_s);
}


footer .links .items.columns
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 26px;
}


footer .links .items.columns > *
{
    display: flex;
    flex-direction: column;

    gap: var(--inner_gap_s);
}


footer .links .items a
{
    transition: .2s linear;
    text-decoration: none;

    opacity: .45;
    color: currentColor;
}


footer .links .items a:hover,
footer .links .items a.active
{
    opacity: 1;
}



footer .contacts
{
    display: flex;
    flex-direction: column;

    padding-block: 43px 60px;

    gap: var(--inner_gap_s);
}


footer .contacts .title
{
    display: inline-block;

    margin-bottom: 4px;

    font-size: 12px;

    vertical-align: top;

    background: linear-gradient(90deg, rgba(255, 255, 255, .70) 0%, #fff 40.38%, rgba(255, 255, 255, .70) 100%);
    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
}


footer .contacts .item
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    width: fit-content;

    font-size: 11px;
    font-weight: 300;

    white-space: nowrap;

    color: rgba(255, 255, 255, .45);

    gap: 8px;
}


footer .contacts .item .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 10px;
    height: 10px;
    margin-block: 1px;
}


footer .contacts .item .icon + *
{
    display: flex;
    flex-direction: column;

    max-width: calc(100% - 18px);

    gap: 4px;
}


footer .contacts .item a
{
    transition: all .2s linear;
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}


footer .contacts .item a:hover
{
    opacity: 1;
    color: #fff;
}



footer .sep
{
    width: 1px;

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



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: var(--modal_width);
    max-width: 100%;
    padding-block: 53px 40px;
    padding-inline: 40px;

    color: var(--dark_color);
    background: var(--light_color);

    --modal_width: 388px;
}


.modal_title
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 400;

    text-align: center;
    text-transform: uppercase;
}


.modal_desc
{
    margin-top: 7px;

    font-weight: 300;
    line-height: calc(100% + 6px);

    text-align: center;
}


.modal .form
{
    margin-top: 27px;

    --form_border_color: #f8f8f8;
    --form_focus_color: var(--dark_color);
    --form_bg_color: #f8f8f8;
    --form_placeholder_color: rgba(25, 25, 25, .3);
    --form_line_offset: var(--inner_gap_s);
    --form_input_height: 60px;
    --form_input_padding_inline: 19px;
}


.modal .form .input
{
    text-align: left;

    color: currentColor;
}


.modal .form .submit
{
    display: flex;
    flex-direction: column;

    padding-top: 14px;

    gap: var(--inner_gap_s);
}


.modal .form .submit_btn
{
    width: 100%;

    background: rgba(214, 255, 49, .9);
    box-shadow: none;
}


.modal .form .whatsapp_link
{
    width: 100%;

    color: var(--light_color);
    background: rgba(30, 30, 30, .9);
    box-shadow: none;
}

.cn-buttons-container button{
    color: #000 !important;
}

.iti input.iti__tel-input{
    padding-right: 43px;
}

.iti__search-input{
    color: black;
    height: 30px;
}

.iti *{
    color: black;
}

.buttonUp {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    display: none;
    width: 60px;
    height: 60px;
}


.calc .bottom .link a, .form .whatsapp_link, .form .submit_btn, .about_info .link a, .products .action .whatsapp_link, .text_block .wp-block-button__link, .accordion_item .head .icon {
    transition: 0.2s;
}

.calc .bottom .link a:hover, .form .whatsapp_link:hover, .form .submit_btn:hover, .about_info .link a:hover, .products .action .whatsapp_link:hover,
 .text_block .wp-block-button__link:hover, .accordion_item .head .icon:hover {
    transform: scale(1.1);
}


.irs--flat .irs-handle:hover {
    box-shadow: 0px 0px 0px 5px #00000029;
}

.irs--flat .irs-handle.state_hover{
    box-shadow: 0px 0px 0px 5px #000;
}