@font-face {
    font-family: "Montserrat Regular";
    src: url("/fonts/montserrat-regular.woff") format("woff"),
        /* Modern Browsers */
        url("/fonts/montserrat-regular.woff2") format("woff2");
    /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat Regular";
    src: url("../fonts/montserrat-bold.woff") format("woff"),
        /* Modern Browsers */
        url("../fonts/montserrat-bold.woff2") format("woff2");
    /* Modern Browsers */
    font-weight: Bold;
    font-style: normal;
}

html {
    font-family: "Montserrat Regular", 'Arial', sans-serif;
    font-size: 16px;
    /* line-height: 22px; */
    scroll-behavior: smooth;
    /* scroll-margin-top: -100px; */
    font-weight: 500;
    word-wrap: break-word;
}

ul, li, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

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

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

fieldset {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.link_basic:hover {
    color: var(--basic-hover-color);
}

img {
    max-width: 85%;
}


button {
    background-color: inherit;
    border: none;
}

.logo_top {
	padding-bottom: 10px;
	padding-right: 200px;
	max-width: 95%;
	height: 60px;
}

.btn {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: 3px solid transparent;
    border-radius: 0;
    cursor: pointer;
    line-height: 1.2;
    vertical-align: middle;
    transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
@media (min-width: 901px) {
.btn {
    display: inline-block;
    padding: 10.5px 18px;
    font-size: 1.2rem;
}
}
@media (min-width: 901px) {
.btn.btn-sm {
    padding: 5px 10px;
    font-size: 1.05rem;
}
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
button, select {
    text-transform: none;
}

.btn.btn-primary {
    color: #fff;
    background: #0174de;
}

.table .btn.btn-sm {
    padding: 4px 8px;
    font-size: 0.9rem;
}

.body {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    min-height: 100vh;
    /* position: relative; */
}

.body--no-scroll {
    overflow: hidden;
    width: 100vw;
}

.main {
    width: 100%;
}

.wrapper {
    box-sizing: border-box;
    padding: 0 calc(50% - 640px);
}

@media (max-width: 1320px) {
    .wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 764px) {
    .wrapper {
        padding: 0 24px;
    }
	.logo_top {
	padding-bottom: 10px;
	padding-right: 10px;
	max-width: 75%;
	height: 45px;
}
.header_logo_wrap {
    display: block !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
}

/* header */
.header {
    width: 100%;
    box-sizing: border-box;
    background-color: #FFFFFF;
    z-index: 10;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.header_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}



@media (max-width: 1400px) {
    .header {
        padding: 23px 22px;
    }

}

@media (max-width: 1000px) {
    /* .main {
        width: 100%;
        box-sizing: border-box;
    } */

    .header {
       /* position: sticky;*/
        top: 0vh;
        z-index: 10;
    }

}

@media (max-width: 764px) {
    .header {
        padding: 0;
    }

    .header_logo_wrap {
        padding: 15px 15px 15px 15px;
        margin-bottom: 0;
        z-index: 10;
    }

    .header_logo_wrap a img {
       /* width: 206px;*/
        height: 44px;
    }
}

/* promo */

.promo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}

.promo_title_wrapper {
    margin-bottom: 30px;
}

.promo_title {
    font-size: 60px;
    text-transform: uppercase;
}

.promo_text {
    max-width: 550px;
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 28px;
}

.promo_button {
    padding: 17px 63px;
    background-color: #0174de;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s;
	color: white !important;
}

.promo_button:hover {
    background-color: #fff42c;
    text-decoration: none;
}

.marker_title {
    position: relative;
    display: inline;
	color: #0e1154;
}

.marker_title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0px;
    left: 0px;
    transition: height .2s;
    background-color: #64a7e5;
    z-index: -1;
}

.marker_title:hover::after {
    height: 100%;
}

.promo_title--no_display_desktop {
    display: none;
}

@media (max-width: 764px) {
    .promo {
        flex-direction: column-reverse;
    }

    .promo_title {
        font-size: 38px;
    }

    .promo_img_wrapper {
        margin-bottom: 40px;
    }

    .marker_title:hover::after {
        height: 50%;
    }

    .promo_title--no_display_desktop {
        display: inline-block;
    }

    .promo_title--no_display_mobile {
        display: none;
    }
}


/* filter */
.form {
    display: flex;
    align-items: flex-end;
    justify-content: right;
    flex-wrap: wrap;
    gap: 40px;
}

.form_filter_wrap {
    margin-bottom: 70px;
    padding-top: 27px;
    padding-bottom: 23px;
    background-color: #F0F0F0;
}

.filter_wrapper {
    position: relative;
    width: calc(50% - 20px);
}

.filter_label {
    display: inline-block;
    margin-bottom: 14px;
}

.textarea {
    min-height: 50px;
}

fieldset .select2-container {
    /* display: flex; */
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* gap: 5px; */
    align-items: center;
    width: 100%;
    min-height: 50px;
    border: 1px solid #E6E7E8;
}

.select2::after {
    position: absolute;
    right: 20px;
    top: calc(50% - 12px);
    content: url(/image/icons/select_arrow.svg);
    width: 24px;
    height: 24px;
}

.select2-container .selection {
    width: 100%;
}

.select2-container .select2-selection {
    display: flex;
    width: 100%;
    min-height: 50px;
    padding: 9px 40px 9px 9px;
    font-size: 14px;
    /* background-color: #F2F2F2; */
    border: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 3px;
    margin-bottom: 3px;
} */

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
    display: flex;
    align-items: center;
    padding-left: 0;
    border-radius: 0;
    /* background-color: inherit; */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    position: relative;
    font-size: 25px;
    padding: 0px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding: 5px;
    align-items: center;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
    /* background-color: inherit; */
}

.select2-container .select2-search--inline .select2-search__field {
    width: 100%;
    margin-top: 0;
    font-size: 16px;
    /* font-size: 140%; */
    font-weight: bold;
    /* min-width: 320px; */
}

.select2-search {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.select2-search__field {
    display: flex;
    align-items: center;
}

@media (max-width: 764px) {
    .filter_wrapper {
        width: 100%;
    }

    .form_filter_wrap {
        margin-bottom: 50px;
    }

    .filter_wrapper:not(:last-child) {
        margin-right: 0;
    }

    .select2-container .select2-search--inline .select2-search__field {
        width: 100%;
        min-width: auto;
        font-size: 16px;
        /* height: auto; */
        margin-top: 0;
    }
}

/* request_form */

.request_form_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.40);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request_form_section--close {
    display: none;
}

.request_form_wrapper {
    position: relative;
    max-width: 780px;
    background-color: #FFFFFF;
    padding: 50px 60px;
}

.close_button {
    position: absolute;
    right: 60px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #939393;
    cursor: pointer;
    transition: background-color .3s;
}

.close_button:hover {
    background-color: #0174de;
}

.request_form {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.form_title {
    margin-right: 70px;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.request_input {
    margin-top: 10px;
    padding: 17px;
    resize: none;
    width: 100%;
    border: 1px solid #939393;
    box-sizing: border-box;
    font-size: 16px;
}

.request_input--textarea {
    width: 100%;
    height: 140px;
    box-sizing: border-box;
}

.request_input--50 {
    width: calc(50% - 8px);
    box-sizing: border-box;
}

.request_button {
    cursor: pointer;
    color: #1D1D1D;
    background-color: #0174de;
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.select2-selection__arrow {
    display: none;
}

.request_form_filter_wrapper {
    position: relative;
    margin-top: 10px;
    width: calc(50% - 8px);
}

.request_form_filter_wrapper .select2 {
    display: flex;
    height: 100%;
    border: 1px solid #939393;
}

.request_form_filter_wrapper .select2-container .select2-selection {
    font-size: 16px;
    display: flex;
    align-items: flex-end;
}

.request_form_filter_wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #1D1D1D;
    font-weight: 600;
}

.request_button {
    width: 100%;
}

.request_form_agreement_label {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.checkbox {
    position: relative;
    font-size: 14px;
    color: #939393;
}

.checkbox a {
    color: #1D1D1D;
    text-decoration: underline;
}

.checkbox::before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #1D1D1D;
    border-radius: 6px;
    left: -40px;
    top: calc(50% - 10px);
    z-index: 1;
}

.checkbox::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-bottom: 0px solid #FFFFFF;
    border-left: 0px solid #FFFFFF;
    left: -40px;
    top: calc(50% - 7px);
    transform: rotate(0deg);
    z-index: 0;
    transition: all .2s;
}

input:checked+.checkbox::before {
    border-color: #1D1D1D;
}

input:checked+.checkbox::after {
    position: absolute;
    content: '';
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #1D1D1D;
    border-left: 2px solid #1D1D1D;
    left: -35px;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
    z-index: 1;

}


.hidden-checkbox--mini {
    top: 23px;
    left: 10px
}

@media (max-width: 1000px) {
    .request_form_section {
        position: absolute;
        top: 78px;
        height: calc(100vh - 78px);
        z-index: 5;
        zoom: 1;
    }

    .close_button {
        display: none;
    }

    .request_form_wrapper {
        padding: 30px 22px 50px;
        box-sizing: border-box;
        max-height: 100%;
        overflow: scroll;
    }

    .request_input--textarea {
        width: 100%;
        max-width: 100%;
    }

    .request_input--50,
    .request_form_filter_wrapper {
        width: 100%;
    }

    .request_form {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .form_title {
        font-size: 20px;
        margin-right: 10px;
        margin-bottom: 30px;
    }

    .request_form_agreement_label {
        padding-left: 30px;
    }

    .checkbox::before,
    .checkbox::after {
        left: -30px;
    }

    input:checked+.checkbox::after {
        left: -25px;
    }

    .checkbox {
        font-size: 12px;
    }
}


/* catalog */
.catalog_title {
    margin-bottom: 60px;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.catalog_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
	margin-top: 50px !important;
}

.catalog_item {
    /*max-width: 400px;*/
	width: 400px;
    margin-bottom: 60px;
}

.catalog_img_wrapper {
    display: flex;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.10);
    transition: box-shadow .2s;
}

.catalog_img_link {
    display: flex;
    flex-grow: 2;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.catalog_img_wrapper:hover {
    box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.10);

}

.catalog_item_title {
    margin-bottom: 14px;
    font-size: 20px;
}

.catalog_item_description {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
}

.catalog_item_link {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.catalog_item_link_svg {
    margin-left: 15px;
}

@media (max-width: 764px) {
    .catalog_list {
        gap: 0;
    }

    .catalog_item {
        margin-bottom: 50px;
    }

    .catalog_title {
        margin-bottom: 40px;
        font-size: 30px;
    }

    .catalog_img_wrapper {
        max-height: calc(100vw - 48px);
    }
}

/* pagination */

.pagination {
    margin-bottom: 120px;
}

.pagination,
.pagination_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pagination_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 4px solid #939393;
    cursor: pointer;
    color: #939393;
}

.pagination_button:hover {
    border: 4px solid #1D1D1D;
    color: #1D1D1D;
}

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

.pagination_list {
    display: flex;
}

.pagination_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 4px solid #0174de;
}

.pagination_item--active {
    background-color: #0174de;
}

.pagination_link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
	color: #fff;
	background-color: #0174de;
}

.pagination_link:hover {
    background-color: #0174de;
    text-decoration: none;
}

.pagination_item_button--no_display {
   /* display: none;*/
}

@media (max-width: 764px) {
    .pagination_list {
        justify-content: flex-start;
    }
}

/* product */
.product_card {
    margin-bottom: 100px;
}

.back_link_wrapper {
    margin-bottom: 50px;
}

.back_link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.back_link_svg {
    margin-right: 14px;
}

.product_main_info {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
	align-items: center;
    justify-content: center;
}

.product_img_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
}

.product_title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product_type {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 26px;
}

.product_short_description {
    margin-bottom: 40px;
    line-height: 22px;
}

.product_feedback {
    cursor: pointer;
    padding: 17px 55px;
    border: 4px solid #0174de;
    font-size: 20px;
    font-weight: 600;
    transition: background-color .3s;
}

.product_feedback:hover {
    background-color: #0174de;
}

.product_description {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product_description_item {
    margin-bottom: 30px;
	
}

.product_description_item_title {
    display: inline;
    margin-bottom: 20px;
    /*background-color: #0174de;*/
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
	/*padding: 5px 10px 5px 10px !important;*/
	color: #000;
}
}

.product_description_item_text {
    margin-top: 20px;
    line-height: 22px;
	color: #000;
	padding: 15px 5px 5px 10px !important;
}

.product_description_contacts {
    min-width: 400px;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 40px 35px;
    background-color: #F0F0F0;
}

.product_description_contacts_title {
    margin-bottom: 10px;
    color: #77787B;
    font-size: 14px;
    line-height: 20px;
}

.product_description_contacts_text {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

@media (max-width: 764px) {
    .product_main_info {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .product_img_wrapper {
        max-width: 100%;
        height: auto;
    }

    .product_title {
        font-size: 38px;
    }

    .product_description {
        flex-direction: column;
    }

    .product_description_contacts {
        min-width: auto;
        max-width: 100%;
    }
}


/* footer */

.footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    background-color: #1D1D1D;
    font-size: 14px;
    color: #FFFFFF;
    padding-top: 53px;
    padding-bottom: 53px;
}

.footer div:not(:last-child) {
    margin-right: 10px;
}

.footer_logo {
    filter: invert();
}

.footer_menu_list {
    text-transform: uppercase;
    columns: 2;
}

.footer_menu_item {
    line-height: 20px;
}

.footer_link {
    color: #FFFFFF;
    cursor: pointer;
}

.footer_link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer_menu_item:not(:last-child) {
    margin-bottom: 12px;
}

.footer_contacts_item {
    line-height: 20px;
}

@media (max-width: 764px) {
    .footer {
        padding: 58px 24px 66px;
        flex-direction: column;
        gap: 50px;
    }

    .footer_menu_list {
        columns: 1;
    }

}