/*
Theme Name:Theme
Theme URI:
Description:
Version:1.0
Author:
Author:URI:
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Onest", sans-serif;
    font-size: 15px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--black-color);
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    min-height: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

body:not(:root:root) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

img:not(.fancybox__image),
[style*="background"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.lazyloaded,
[style*="background"].lazyloaded {
    opacity: 1;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

a:hover {
    color: var(--primary-color);
}

.content p {
    margin-bottom: 25px;
    line-height: 1.5;
}

.content a {
    text-decoration: underline;
}

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

.custom_list ul {
    list-style: none;
}

.custom_list ul li,
.custom_list ol li {
    position: relative;
    padding: 0 0 4px 27px;
    line-height: 21px;
}

.custom_list ul li::before {
    content: "";
    background: -webkit-gradient(linear, left top, right top, from(#00C8FF), to(#4DCF4D));
    background: -o-linear-gradient(left, #00C8FF 0%, #4DCF4D 100%);
    background: linear-gradient(90deg, #00C8FF 0%, #4DCF4D 100%);
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 6px;
    left: 0;
    border-radius: 50%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Prata", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 32px;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

.h3_1 h3,
.h3_1 h4 {
    font-size: 25px;
}

.h3_2 h3,
.h3_2 h4 {
    font-family: "Onest", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

p {
    line-height: 24px;
}

b,
strong {
    font-weight: 700;
}

.container,
.wp-block-group__inner-container {
    max-width: 1312px;
    padding: 0 16px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.container.big {
    max-width: 1496px;
}

.container::before,
.container::after,
.wp-block-group__inner-container:before,
.wp-block-group__inner-container:after {
    display: table;
    content: " ";
    clear: both;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.desctop {
    display: block;
}

.mobile {
    display: none;
}

.border_gradient {
    content: '';
    background: url(./img/border_gradient.svg) no-repeat center / contain;
    width: 100%;
    height: 7px;
}

.hidden {
    display: none !important;
}

.v_hidden {
    visibility: hidden;
}

.has-text-align-center {
    text-align: center !important;
}

.has-text-align-left {
    text-align: left !important;
}

.has-text-align-right {
    text-align: right !important;
}

.alignright {
    float: right;
    margin-left: 30px;
}

.alignleft {
    float: left;
    margin-right: 30px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

table.aligncenter {
    text-align: center;
    margin: 0 auto;
}

.aligncenter {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.text_center {
    text-align: center;
}

iframe {
    border: 0;
    vertical-align: top;
}

hr {
    border: 0;
    border-top: 1px solid #cecece;
}

.color_pr {
    color: var(--primary-hover-color);
}

.btn_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.btn,
.wp-block-button__link,
button.button {
    background: -webkit-gradient(linear, left top, right top, from(#00C8FF), to(#4DCF4D));
    background: -o-linear-gradient(left, #00C8FF 0%, #4DCF4D 100%);
    background: linear-gradient(90deg, #00C8FF 0%, #4DCF4D 100%);
    border: 0;
    color: var(--white-color);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 25px !important;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    text-shadow: none !important;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    text-align: center;
    text-decoration: none !important;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.btn:focus,
.btn:hover,
.wp-block-button__link:focus,
.wp-block-button__link:hover,
button.button:focus,
button.button:hover {
    outline: none !important;
    /* transform: scale(1.02); */
}

.btn::before,
.wp-block-button__link::before,
button.button::before {
    content: '';
    background: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.btn:hover::before,
.wp-block-button__link:hover::before,
button.button:hover::before {
    opacity: 1;
}

.btn_border {
    background: var(--white-color);
    border: 2px solid var(--primary-hover-color);
    color: var(--primary-hover-color) !important;
}

.btn_border::before {
    display: none !important;
}

.btn_border:hover {
    background: var(--primary-hover-color);
    color: var(--white-color) !important;
}

.btn_small {
    display: block;
    margin: 40px auto 0;
    padding: 9px 22px;
    cursor: pointer;
    background: var(--bg-color);
    color: var(--black-color);
    font-size: 15px;
    border: none;
    -webkit-box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.02);
    border-radius: 100px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn_small:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.gradient_hover a::after {
    content: '';
    display: block;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#00C8FF), to(#BAFA88));
    background: -o-linear-gradient(left, #00C8FF 0%, #BAFA88 100%);
    background: linear-gradient(90deg, #00C8FF 0%, #BAFA88 100%);
    margin: 2px 2px 0 2px;
    opacity: 0;
    border-radius: 2px;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.gradient_hover a:hover::after {
    opacity: 1;
}

#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input {
    background: transparent !important;
    border: 0 !important;
}

#wp-admin-bar-easy-updates-manager-admin-bar {
    display: none !important;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    background-color: var(--bg-color) !important;
    border: 1px solid var(--bg-color) !important;
    width: 100%;
    height: 50px;
    padding: 14px 14px 12px !important;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    color: var(--black-color) !important;
    border-radius: 10px !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: var(--border-gray-color) !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-color: var(--gray-color) !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(./img/select.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 16px);
}

select:focus {
    color: var(--black-color);
}

textarea {
    vertical-align: top;
}

textarea:focus {
    height: 90px;
}

button {
    font-family: inherit;
}

label {
    font-weight: 400;
    display: block;
}

label .required {
    text-decoration: none;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

input[type="checkbox"]+span,
input[type="radio"]+span {
    position: relative;
    padding-left: 36px;
    cursor: pointer;
    display: inline-block;
    line-height: 1.3;
}

input[type="checkbox"]+span::before,
input[type="radio"]+span::before {
    content: '';
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.10) inset;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.10) inset;
}

input[type="radio"]+span::before {
    border-radius: 50%;
}

input[type="checkbox"]:checked+span:before {
    background: var(--white-color) url(./img/checked.svg) no-repeat center 4px / 80%;
}

input[type="radio"]:checked+span:before {
    background: var(--white-color) url(./img/dot.svg) no-repeat center 0.15rem / 80%;
}

input[type="checkbox"]:disabled+span,
input[type="radio"]:disabled+span {
    color: var(--gray-color);
    cursor: not-allowed;
}

input[type="checkbox"]:disabled+span:before,
input[type="radio"]:disabled+span:before {
    background: var(--light-gray-color);
}

::-moz-placeholder {
    color: var(--black-color);
}

::-webkit-input-placeholder {
    color: var(--black-color);
}

:-ms-input-placeholder {
    color: var(--black-color);
}

::-ms-input-placeholder {
    color: var(--black-color);
}

::placeholder {
    color: var(--black-color);
}

.slick-slider {
    position: relative;
}

.slick-arrow {
    background: var(--bg-color) url(./img/select.svg) no-repeat center / 12px 7px;
    border: 1px solid var(--bg-color) !important;
    width: 46px;
    height: 46px;
    right: 0;
    top: -121px;
    position: absolute;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.slick-arrow:not(.slick-disabled):hover {
    background-color: var(--white-color);
    border-color: var(--primary-hover-color) !important;
    cursor: pointer;
}

.slick-prev {
    right: 51px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slick-disabled {
    opacity: .5;
}

.slick-dots {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.slick-dots li {
    padding: 0;
}

.slick-dots li::before {
    display: none !important;
}

.slick-dots button {
    width: 7px;
    height: 7px;
    background: var(--bg-color);
    border: 0;
    margin: 0 5px;
    font-size: 0;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
}

.slick-dots .slick-active button {
    background: #47CF5A;
}

.fancybox__container {
    z-index: 10000000;
}

.fancybox__content {
    color: var(--black-color);
    border-radius: 20px;
    padding: 0;
}

.fancybox__content>.carousel__button.is-close {
    top: 8px;
    right: 8px;
    background: rgb(255 255 255 / 0.31);
    width: 40px;
    height: 40px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.fancybox__content>.carousel__button.is-close:hover {
    top: 8px;
    right: 8px;
    background: rgb(255 255 255 / 0.71);
    width: 40px;
    height: 40px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.fancybox__content>.carousel__button svg {
    stroke: var(--black-color);
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.fancybox__content>.carousel__button:hover svg {
    stroke: var(--gray-color);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.fancybox-content {
    padding: 20px;
    border-radius: 5px;
}

.fancybox-content h2,
.fancybox-content p {
    margin-bottom: 20px;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: rgba(var(--primary-color), 0.6) !important;
}

.popup_form {
    display: none;
    padding: 34px 40px 38px;
    max-width: 456px;
    -webkit-box-shadow: 0 4px 4px 0 rgb(var(--black-rgb-color) / 25%);
    box-shadow: 0 4px 4px 0 rgb(var(--black-rgb-color) / 25%);
    background: var(--white-color);
}

.header_block:not(:root:root) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header_block {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_top {
    background-color: var(--white-color);
    width: 100%;
    padding: 8px 0;
    height: 108px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header_top .flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_top .logo img {
    max-width: 170px;
}

.menu_mobile_btn {
    display: none;
    background: url(./img/menu.svg) no-repeat center / contain;
    width: 33px;
    min-width: 33px;
    height: 33px;
    border: 0;
}

.menu_mobile_btn.close {
    background: url(./img/close.svg) no-repeat center / contain;
    width: 23px;
    min-width: 23px;
    height: 23px;
    position: absolute;
    top: 15px;
    right: 17px;
}

.menu_mobile_cont {
    margin: 0 auto;
}

.header_nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.header_nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header_nav ul li a {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-hover-color);
    text-transform: uppercase;
    position: relative;
}

.header_nav ul li>a:hover,
.header_nav ul li.current-menu-item>a,
.header_nav ul li.current_page_item>a {
    text-decoration: none;
}

.header_top .lang {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    margin-left: -9.5%;
    margin-right: 3.95%;
}

.header_top .header_nav .lang {
    display: none;
}

.header_top .lang a {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-hover-color);
}

.header_top .lang .current-lang a {
    color: #C2C6CA;
    pointer-events: none;
    cursor: default;
}

.social.color {
    gap: 15px;
}

.social.color a {
    background-color: var(--bg-color);
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--bg-color);
    font-size: 0;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social.color a:hover {
    background-color: var(--white-color);
    border: 1px solid var(--primary-hover-color);
}

.social.color .wa {
    background-image: url(./img/wa_c.svg);
    background-size: 26px;
}

.social.color .tg {
    background-image: url(./img/tg_c.svg);
    background-position: 10px;
    background-size: 29px;
}

.social.color .inst {
    background-image: url(./img/inst_c.svg);
    background-size: 28px;
}

.header_top .social.color {
    gap: 4px;
    margin-top: -5px;
}

.header_top .social.color a {
    width: 69px;
    height: 48px;
}

.header_top .social.color .wa {
    background-size: 21px;
}

.header_top .social.color .tg {
    background-size: 23px;
    background-position: 20px;
}

.header_top .social.color .inst {
    background-size: 22px;
}

.main_block {
    overflow: hidden;
}

.main_block:not(:root:root) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    z-index: 1;
}

.content {
    padding: 30px 0;
}

.content a {
    text-decoration: none;
    color: var(--black-color);
}

.content a:hover {
    text-decoration: underline;
}

.content .contacts_block h3 {
    margin-bottom: 10px;
}

.content .contacts_block p {
    margin-bottom: 40px;
}

.error-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.error-404 .content {
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 30px 0 80px;
    min-height: 640px;
    max-width: 770px;
}

.error-404 h1 {
    font-family: "Onest", sans-serif;
    font-size: 190px;
    font-weight: 700;
    line-height: 0.8;
    color: var(--primary-color);
}

.error-404 h2 {
    text-transform: uppercase;
    margin-bottom: 18px;
}

.error-404 h4 {
    margin-bottom: 32px;
    font-weight: 400;
}

.error-404 a {
    color: var(--white-color);
}

iframe[src*="https://www.google.com/"] {
    width: 100%;
}

.back_top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    cursor: pointer;
    font-size: 0;
    width: 40px;
    height: 40px;
    display: none;
    z-index: 10;
    background: var(--primary-hover-color);
    border-radius: 100%;
    border: 1px solid var(--primary-hover-color);
    padding: 11px;
    -webkit-box-shadow: 0 1px 3px 0 rgb(var(--black-rgb-color) / 25%);
    box-shadow: 0 1px 3px 0 rgb(var(--black-rgb-color) / 25%);
}

.back_top span {
    background-color: var(--white-color);
    -webkit-mask: url(./img/select.svg) no-repeat center / contain;
    mask: url(./img/select.svg) no-repeat center / contain;
    width: 18px;
    height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.back_top:hover {
    background: var(--white-color);
}

.back_top:hover span {
    background-color: var(--primary-hover-color);
}

.wa_fixed {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    right: -10px;
}

.wa_fixed a {
    position: fixed;
    bottom: 8%;
    cursor: pointer;
    width: 69px;
    height: 69px;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), -o-linear-gradient(313deg, rgba(255, 255, 255, 0.08) 1%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(137deg, rgba(255, 255, 255, 0.08) 1%, rgba(255, 255, 255, 0) 100%);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    padding: 10px;
    border-radius: 100%;
    z-index: 10;
}

.wa_fixed span {
    display: block;
    width: 50px;
    height: 50px;
    background: -webkit-gradient(linear, left top, right top, from(#00C8FF), to(#4DCF4D));
    background: -o-linear-gradient(left, #00C8FF 0%, #4DCF4D 100%);
    background: linear-gradient(90deg, #00C8FF 0%, #4DCF4D 100%);
    padding: 15px;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
}

.wa_fixed small {
    background: url(./img/wa.svg) no-repeat center / contain;
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0;
}

.wa_fixed small::before {
    content: '';
    background: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.wa_fixed small:hover::before {
    opacity: 1;
}

.block_animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.block_animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer_block {
    background-color: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

.footer_block:not(:root:root) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.footer_top {
    padding: 110px 0;
    font-size: 14px;
    color: var(--white-color);
}

.footer_top .flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer_top .phone {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer_top .social {
    gap: 12px;
    margin: -12px auto 0;
}

.footer_top .social a {
    font-size: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer_top .social a:hover {
    font-size: 0;
    border: 1px solid rgba(255, 255, 255, 1);
}

.footer_top .social .wa {
    background: url(./img/wa.svg) no-repeat center / 26px;
}

.footer_top .social .tg {
    background: url(./img/tg.svg) no-repeat 9px / 29px;
}

.footer_top .social .inst {
    background: url(./img/inst.svg) no-repeat center / 28px;
}

.footer_top .privacy {
    gap: 56px;
}

.footer_top a {
    color: var(--white-color);
    display: inline-block;
}

.footer_bottom img {
    width: 100%;
}

@media (max-width: 1200px) {
    .header_top .lang {
        margin-left: 0;
    }

    .header_top .social.color a {
        width: 48px;
    }

    .header_top .social.color .tg {
        background-position: 10px;
    }
}

@media (max-width: 1100px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 24px;
        line-height: 1.1;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5,
    h6 {
        font-size: 16px;
    }

    .h3_1 h3,
    .h3_1 h4,
    .h3_2 h3,
    .h3_2 h4 {
        font-size: 16px;
    }
}

@media (max-width: 990px) {
    body {
        font-size: 14px;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    .color_pr {
        font-size: 12px;
    }

    .border_gradient {
        background-size: 188px;
    }

    .header_block:not(:root:root) {
        display: block;
        z-index: 100000;
    }

    .header_top {
        height: 50px;
        padding: 0;
    }

    .header_top .logo {
        margin-top: 5px;
        margin-right: auto;
    }

    .header_top .logo img {
        max-width: 128px;
        width: 100%;
    }

    .header_top>.container>.lang {
        display: none;
    }

    .header_top .social.color {
        gap: 0;
        margin-top: 0;
        margin-right: 12px;
    }

    .header_top .social.color a {
        border: 0;
        background-color: transparent;
    }

    .menu_mobile_btn {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        display: block;
    }

    .menu_mobile_cont {
        overflow: hidden;
        background: rgba(0, 0, 0, 0.20);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        -webkit-transition: right .5s ease-in-out;
        -o-transition: right .5s ease-in-out;
        transition: right .5s ease-in-out;
    }

    .menu_mobile_cont.active {
        right: 0;
    }

    .header_nav {
        background: var(--white-color);
        padding: 46px 17px 80px 46px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        height: 100%;
        margin-left: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header_top .header_nav .lang {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header_nav ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: relative;
    }

    .header_nav>ul {
        overflow-y: auto;
    }

    .header_nav ul.menu li {
        width: 100%;
    }

    .header_nav>ul {
        gap: 20px 0;
    }

    p {
        line-height: normal;
    }

    .desctop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .slick-track:before,
    .slick-track:after {
        display: none;
    }

    .slick-dots {
        bottom: -28px;
    }

    .wa_fixed {
        right: 0;
    }

    .wa_fixed a {
        bottom: 16px;
    }

    .footer_top {
        padding: 36px 0 32px;
    }

    .footer_top .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer_top .phone {
        text-align: center;
    }

    .footer_top .social {
        margin: 18px auto 23px;
    }

    .footer_top .privacy {
        gap: 20px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .content {
        padding: 20px 0 14px;
    }

    .btn_group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .btn_group .btn {
        width: 100%;
    }

    .error-404 .content {
        min-height: auto;
        padding: 40px 0;
    }

    .error-404 h1 {
        font-size: 120px;
    }

    .error-404 h1 {
        font-size: 120px;
    }

    .error-404 h2 {
        font-size: 32px;
    }

    .error-404 h2 br {
        display: block;
    }

    .error-404 h3 {
        font-size: 15px;
    }
}


@media (max-width: 550px) {
    .fancybox__content {
        padding: 0;
    }
}