@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --color_whitewhite: #fff;
    --color_blackbblack: #000;

    --color_white: #fff;
    --color_white_d: #FBFBFB;
    --color_white_dd: #F1F2F3;
    --color_white_ud: #F7F7F7;
    --color_black: #000;
    --color_black_l: #262626;
    --color_gray: #797979;
    --color_gray_l: #949494;
    --color_gray_ll: #D7D7D7;
    --color_gray_m: #292929;
    --color_gray_d: #3C3C3C;
    --color_red: 243 28 28;/*#F31C1C*/

    --color_1: 229 85 63;/*#E5553F*/
    --color_1_l: #FD8939;
    --color_1_d: #D84731;
    --color_1_font: #E5553F;
    --color_2: #3D9EE1;
    --color_3: #EDB800;/*yellow*/
    --color_4: #FF5F00;/*orange*/

    --standart_font: 'Fira Sans', sans-serif;
    --standart_font_size: 16px;

    --standart_border_radius: 6px;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--standart_font);
    font-size: var(--standart_font_size);
    font-style: normal;
    color: var(--color_black);
    font-weight: 400;
    line-height: 150%;
}
html {
}
body {
   min-height: 100vh;
   padding: 0 !important;
   position: relative;
   overflow: overlay;
   overflow-x: hidden;
   line-height: 1.4;
   background: var(--color_white_dd);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(177 177 177 / 50%);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(177 177 177 / 100%);
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}
::selection {
    background: var(--color_black_l);
    color: rgb(var(--color_1));
}
:focus {
    outline: none;
}
a {
    color: var(--color_1_font);
    text-decoration: none;
}
a:hover {
    color: var(--color_black);
    text-decoration: none; 
}
p {
    margin-bottom: 10px;
}
h1,
.h1,
h1.elementor-heading-title,
.h1.elementor-heading-title  {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 0;
}
h2,
.h2,
h2.elementor-heading-title,
.h2.elementor-heading-title {
    font-size: 38px;
    margin-bottom: 42px;
    margin-top: 42px;
}
.span-h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

h3,
.h3,
h3.elementor-heading-title,
.h3.elementor-heading-title  {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    margin-top: 30px;
}
h4,
.h4,
h4.elementor-heading-title,
.h4.elementor-heading-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 16px;
}
q {
    padding: 30px;
    border-radius: 5px;
    background: var(--color_white_dd);
    font-weight: normal;
    margin-bottom: 20px;
    display: block;
}
q:before,
q:after {
    display: none;
}
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
dl, 
ol, 
ul {
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

/****************************************************************************************************************************************************/

.sub-menu-toggle {
    display: none !important;
}
.bootstrap-watch {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: 0.2s;
    z-index: 999;
    display: none;
}
.bootstrap-watch.hidden {
    height: 0;
}
.bootstrap-watch .container {
    position: relative;
    z-index: 999;
}
.bootstrap-watch.zindex .container {
    z-index: -1;
}
.bootstrap-watch .container,
.bootstrap-watch .row,
.bootstrap-watch .row > div,
.bootstrap-watch .col-in {
    height: 100%;
}
.col-in {
    background: rgb(0 109 173 / 29%);
}
.bootstrap-button {
    position: fixed;
    right: 10px;
    cursor: pointer;
    z-index: 999;
}
.bootstrap-button.bootstrap-watch-button {
    top: 10px;
}
.bootstrap-button .bootstrap-zindex-button {
    top: 30px;
}
.bootstrap-watch-button:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f00d';
}
.bootstrap-watch.hidden .bootstrap-watch-button:before {
    font-family: 'Font Awesome 5 Brands';
    content: '\f836';
}
.bootstrap-watch.hidden .bootstrap-zindex-button {
    display: none;
}
.bootstrap-zindex-button:before {
    content: 'Z-1';
    font-size: 13px;
}
.bootstrap-watch.zindex .bootstrap-zindex-button:before {
    content: 'Z+1';
}


path.path-fill {
    transform: scale(0);
}
.btn-success {
    background: var(--color_2);
    border-color: var(--color_2);
}
input[type='checkbox'],
input[type='radio'] {
    position: absolute;
    z-index: -1;
    opacity: 0;  
}
input[type='checkbox']+label,
input[type='radio']+label {
    display: inline-flex;
    align-items: baseline;
    user-select: none;
    padding: 7px 0;
    width: 100%;
    cursor: pointer;
}
input[type='checkbox']+label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid var(--color_gray_l);
    border-radius: 3px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: 68% 56%;
    background-size: 80%;
    position: relative;
    top: 3.5px;
}
input[type='radio']+label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    margin-right: 10px;
    position: relative;
    top: 5px;
    border: 1px solid var(--color_gray_l);
    background: var(--color_white);
    flex:  none;
}
input[type='checkbox']:checked+label::before {
    border-color: rgb(var(--color_1));
    background-color: rgb(var(--color_1));
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3e%3cpath fill='%23fff' d='M10.2981 0.259879C9.95164 -0.0866264 9.3903 -0.0866264 9.0438 0.259879L4.36251 4.94117L1.51423 2.09289C1.16772 1.74639 0.606385 1.74639 0.259879 2.09289C-0.0866264 2.4394 -0.0866264 3.00074 0.259879 3.34724L3.73533 6.8227C4.08184 7.1692 4.64318 7.1692 4.98968 6.8227L10.2981 1.51423C10.6447 1.16772 10.6447 0.606385 10.2981 0.259879Z'/%3e%3c/svg%3e");
}
input[type='radio']:checked+label::before {
    border: 6px solid rgb(var(--color_1));
}
/* стили при наведении курсора на checkbox */
input[type='checkbox']:not(:disabled):not(:checked)+label:hover {
    color: rgb(var(--color_1));
}
input[type='checkbox']:not(:disabled):not(:checked)+label:hover::before {
  border-color: rgb(var(--color_1));
}
/* стили для активного состояния чекбокса (при нажатии на него) */
input[type='checkbox']:not(:disabled):active+label::before {
  background-color: rgb(var(--color_1));
  border-color: rgb(var(--color_1));
}
/* стили для чекбокса, находящегося в фокусе */
input[type='checkbox']:focus+label::before {
}
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
input[type='checkbox']:focus:not(:checked)+label::before {
  border-color: rgb(var(--color_1));
}
/* стили для чекбокса, находящегося в состоянии disabled */
input[type='checkbox']:disabled+label::before {
  background-color: var(--color_gray_ll) !important;
}
input[type='radio']:disabled+label,
input[type='radio']:disabled+label * {
  color: var(--color_gray_l);
}

body .searchandfilter .meta-slider {
    height: 4px;
    border: 0;
    background: var(--color_gray_ll); 
}
body .searchandfilter .noUi-connect {
    background: rgb(var(--color_1));
}
body .searchandfilter .noUi-horizontal .noUi-handle {
    height: 16px;
    width: 16px;
    border: 1px solid rgb(var(--color_1));
    transform: translateX(-8px);
}
body .searchandfilter .noUi-horizontal .noUi-handle:before,
body .searchandfilter .noUi-horizontal .noUi-handle:after {
    display: none;
}

.col-xxl-12,
.col-xxl-9,
.col-xxl-4,
.col-xxl-3,
.col-xxl-2,
.col-xxl-1 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.form-check {
    padding-left: 0;
    /*display: grid;*/
}
.btn-light {
    background: none;
    border-color: rgb(255 255 255 / 0%);
}
.btn.btn-free {
    border: 1px solid var(--color_2);
    color: var(--color_2);
}
.btn.btn-free i {
    color: var(--color_2);
}
.btn.btn-free path {
    fill: var(--color_2);
}
.btn.btn-free:hover {
    background: var(--color_2);
    color: var(--color_whitewhite);
}
.btn.btn-free:hover  i {
    color: var(--color_whitewhite);
}
.btn.btn-free:hover  path {
    fill: var(--color_whitewhite);
}
.bootstrap-select {
    max-width: 100%;
}
.bootstrap-select.selrcontentwidth {
    width: fit-content !important;
}
.form-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}
.bootstrap-select .dropdown-toggle .filter-option {
    padding: 0;
}
.bootstrap-select .dropdown-toggle {
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(var(--color_1));
    border-radius: var(--standart_border_radius);
    padding: 6px 10px 6px 14px;
}
.bootstrap-select.selrcontentwidth .dropdown-toggle {
    width: fit-content;
}
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}
.bootstrap-select.show>.btn-light.dropdown-toggle { 
    background: none;
    border-color: rgba(var(--color_1));
    border-bottom-width: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 7px;
}
.bootstrap-select.show.dropup>.btn-light.dropdown-toggle {
    border-top-width: 0;
    border-bottom-width: 1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; 
    border-bottom-left-radius: var(--standart_border_radius);
    border-bottom-right-radius: var(--standart_border_radius);
    padding-bottom: 6px;
    padding-top: 7px;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: var(--color_black);
    padding-right: 2px;
}
.bootstrap-select .dropdown-toggle:after {
    border: none;
    font-family: 'Font Awesome 5 Pro';
    content: '\f078';
    font-weight: bold;
    color: rgba(var(--color_1));
    font-size: 12px;
    position: relative;
    top: 1px;
    transition: 0.2s;
}
.bootstrap-select.show>.btn-light.dropdown-toggle:after {
    transform: rotate(180deg);
    top: 0;
}
.bootstrap-select .dropdown-menu {
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-top-width: 0;
    border-color: rgba(var(--color_1));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-height: 200px;
}
.bootstrap-select.dropup .dropdown-menu {
    border-top-width: 1px;
    border-bottom-width: 0;
    border-top-left-radius: var(--standart_border_radius);
    border-top-right-radius: var(--standart_border_radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.bootstrap-select .dropdown-item {
    padding: .175rem .75rem;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background: none;
}
.bootstrap-select .dropdown-item span {
    color: var(--color_black);
}
.bootstrap-select .dropdown-item.active span,
.bootstrap-select .dropdown-item:active span {
    color: var(--color_1_font);
}
.bootstrap-select .dropdown-menu li.disabled a span.text {
    color: var(--color_gray_ll);
}
.selectpicker-dabl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(var(--color_1));
    border-radius: var(--standart_border_radius);
    padding: 6px 14px;
}
.selectpicker-dabl .bootstrap-select.lightselecter .dropdown-toggle .filter-option-inner-inner {
    color: var(--color_black);
}
.elementor-widget-image.elementor-widget:not(:last-child) {
    margin-bottom: 40px;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 300;
    font-size: 18px;
    width: fit-content;
}
.btn.btn-input-text {
    padding: 12px 16px;
}
.btn-primary {
    color: var(--color_whitewhite);
    background-color: rgba(var(--color_1));
    border-color: rgba(var(--color_1));
}
.btn-primary:hover {
    background-color: var(--color_1_d);
    border-color: var(--color_1_d);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active
.show>.btn-primary.dropdown-toggle {
    color: var(--color_blackbblack) !important;
    background-color: rgba(var(--color_1)); 
    border-color: rgba(var(--color_1));
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    color: #fff !important;
    background-color: rgba(var(--color_1));
    border-color: rgba(var(--color_1));
    box-shadow: none;
}

.test-block {
    mask-image: paint(smooth-corners);
    -webkit-mask-image: paint(smooth-corners);
    --smooth-corners: 4,4;
    width: 200px;
    height: 200px;
    background: red;
}
.type-text {
    display: flex !important;
    white-space: nowrap !important;
}
.slick-disabled {
    cursor: default !important;
}
.modal .close {
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 0;
    background: var(--color_white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 2;
    opacity: 1 !important;
}
.modal .close span {
    font-size: 50px;
    font-weight: 100;
    color:  var(--color_black);
}
.modal-body {
    padding: 50px 32px 22px;
}
.modal-body h4 {
    margin-top: 0;
}
button.button-text {
    padding: 0;
    border: 0;
    background: none;
    color: var(--color_1_font);
    text-decoration: underline;
    display: contents;
}
.alert,
.alert * {
    font-size: 14px;
}
.alert-light,
.alert-light .alert-timer {
    color: var(--color_gray);
}
.alert-light {
    margin-top: 6px;
    padding: 0;
    background: none;
    border: 0;
}
.alert-light button {
    padding: 0;
    border: 0;
    background: 0;
    color: var(--color_1_font);
    text-decoration: underline;
}
.dev-com {
    font-size: 12px !important;
    background: #f31787 !important;
    color: #fff !important;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 1px;
    border-radius: 2px;
}
.dev-com:before {
    content: '!';
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dev-com span {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%; 
   transform: translate(0, -50%);
    font-size: 12px !important;
    background: #f31787 !important;
    color: #fff !important;
    cursor: default;
    padding: 5px;
    max-width: 200px;
    width: max-content;
    box-shadow: 0 0 5px #000;
    border-radius: 4px;
    z-index: 5;
    word-wrap: break-word;
}
.dev-com:hover span {
    display: block;
}
form input[type="text"],
form input[type="password"],
form input[type="tel"],
form textarea.form-control {
    background: #EAEAEA;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    padding: 12px 16px;
    max-width: 100%;
    font-size: 16px;
    height: auto;
    margin-top: 7px;
}
form textarea.form-control {
    margin-bottom: 10px;
}
form label {
    color: var(--color_gray_l);
    font-weight: 400;
    width: 100%;
}
form input {
    width: 100%;
}
form input.datetimepicker-input {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
    border-right: 0;
    box-shadow: none !important;
}
form [data-toggle="datetimepicker"] .input-group-text {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-left: 0;
    background: none;
    border-color: rgb(var(--color_1));
}
form [data-toggle="datetimepicker"] .input-group-text:before {
    color: rgb(var(--color_1));
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: "\f133";
}
.uppercase {
    text-transform: uppercase;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: rgb(var(--color_1));
}
.form-control:focus {
    border-color: rgb(var(--color_1));
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--color_1) / 33%);
}
.alert-danger {
    color: var(--color_whitewhite);
    background-color: rgb(var(--color_1));
    border: 0;
    border-radius: 10px;
    padding: 15px 22px;
    margin-bottom: 50px;
}
form [type="submit"],
form [type="reset"],
.form-chek-city .form-check {
    margin-top: 15px;
}
.nopadding {
   padding-left: 0 !important;
   padding-right: 0 !important;
}
.margincenter {
    margin-left: auto !important;
    margin-right: auto !important;
}
.breadcrumb {
    display: inline-flex;
    padding: 0;
    background: none;
    margin-bottom: 5px;
}
.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item {
   padding-right: 24px;
   padding-left: 0;
}
.breadcrumb *,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item:last-of-type::after,
.breadcrumb-item.active {
    color: var(--color_gray_l);
    font-size: 14px;
}
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 4px;
    display: none;
}
.breadcrumb-item:last-of-type::after {
    float: right;
    padding-left: 4px;
    content: "/";
    display: none;
}
nav[aria-label='breadcrumb'] {
    display: flex;
    justify-content: space-between;
}
.line-h2 {
    position: relative;
}
.line-h2:after,
.line-h2 .span-h2:after {
    content: '';
    display: flex;
    position: absolute;
    border-radius: 2px 2px 0 0;
    width: 100%;
    bottom: -15px;
}
.line-h2:after {
    height: 4px;
    background: var(--color_white_dd); 
}
.line-h2 .span-h2 {
    position: relative;
}
.line-h2 .span-h2:after {
    height: 2px;
    background: rgb(var(--color_1)); 
    z-index: 2;
}
.page-link {
    color: var(--color_black_l);
    border: none;
    border-radius: 4px;
    padding: 10px 16.5px;
    margin-left: 8px;
}
.page-item.active .page-link {
    background-color: var(--color_2);
    border-color: var(--color_2);
}
.page-link:hover {
    color: var(--color_2);
    background: var(--color_white_dd);
}
.modal-dialog {
    margin: 50px auto;
    max-width: 403px !important;
}
.slick-arrow,
.slick-arrow.slick-prev,
.slick-arrow.slick-next {
    border: 0;
    font-size: 0;
    background: none;
    position: absolute;
    top: 7px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(var(--color_1));
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow:hover {
    border-color: var(--color_blacks);
}
.slick-arrow.slick-prev {
    right: 65px;
}
.slick-arrow.slick-next {
    right: 15px;
}
.slick-arrow:before {
    font-size: 22px;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--color_1));
    font-weight: 300;
    position: relative;
}
.slick-arrow:hover:before {
    color: var(--color_black);
}
.slick-arrow.slick-disabled {
    border-color: var(--color_gray_ll);
}
.slick-arrow.slick-disabled:before {
    color: var(--color_gray_ll);
}
.slick-arrow.slick-prev:before {
    content: '\f104';
    right: 1px;
}
.slick-arrow.slick-next:before {
    content: '\f105';
    left: 1px;
}

.my-bottom {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}
.pb-bottom {
    padding-bottom: 0 !important;
}
.mimic-lebel-text {
    height: 50px;
}
.more-link {
    font-weight: 500;
    margin-left: 36px;
    position: relative;
    top: -6px;
    font-size: 16px;
}
.link-in-single {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.slick-slider .slick-slide:not(.slick-active) .link-in-single {
    display: none !important;
}
.content-sector {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content-sector-fix {
    display: block;
    margin-bottom: -110px;
}
.content-sector-fix-bottom {
    margin-bottom: -110px;
}
.content-sector-fix-bottom > * {
    position: relative;
    z-index: 2;
}
.content-sector-fix-bottom+section {
}
.content-sector-tae > .container,
.content-sector-tae > .elementor-containe {
    position: relative;
}
.content-sector-tae > .container:before,
.content-sector-tae > .elementor-container:before {
    content: '';
    position: absolute;
    right: calc(100% + 80px);
    height: 495px;
    max-height: 100%;
    width: 200px;
    background-image: url(images/icons/icon-tae.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: contain;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.content-sector-alt {
    background: var(--color_white);
}
.content-second-tae {
    position: relative;
}
.content-second-tae:before {
    content: '';
    position: absolute;
    right: calc(100% + 150px);
    height: 100%;
    width: 200px;
    background-image: url(images/icons/icon-tae.svg);
    background-repeat-x: no-repeat;
    background-position-x: right;
    background-repeat: space;
}
.content-sector-delta {
    background: linear-gradient(83.22deg, rgb(var(--color_1)) 12.01%, var(--color_1_l) 100%);
}
.content-sector-delta.person-latest {
    margin-bottom: 200px;
}
.content-sector-delta * {
    color: var(--color_whitewhite);
}
.content-sector-delta .person-latest-in {
    margin-bottom: -200px;
}
.content-sector-line {
    width: 100%;
    border-bottom: 1px solid var(--color_gray_ll);
    display: block;
    height: 1px;
}

/****************************************************************************************************************************************************/


header {

}
.top-header {
    padding-top: 24px;
    padding-bottom: 28px;
    background: var(--color_white);
	background: none;
}
.header-item {
    display: flex;
    align-items: center;
}
.header-item:not(:last-of-type) {
    margin-right: 28px;
}
.logo {
    display: flex;
    align-items: center;
}
.page-template-home .logo .logo-main-path-man,
.page-template-home .logo .logo-name path {
	fill: var(--color_whitewhite);
}
.logo .logo-name {
    margin-left: 15px;
    height: 52px;
    max-height: 100%;
}
.header-item.logo-col {
    margin-right: auto;
}
.header-link {
    display: flex;
    align-items: flex-start;
    max-width: 240px; 
}
.header-link * {
    color: var(--color_black);
}
.page-template-home .header-link * {
    color: var(--color_whitewhite);
}
.header-link .icon {
    margin-right: 13px;
    position: relative;
    top: 5px;
    flex: none;
}
.header-link:hover .header-phone {
    color: rgb(var(--color_1));
}
.header-phone-wrap {
    font-size: 14px;
}
.header-phone {
    font-size: 20px;
    font-weight: 400;
    color: var(--color_black);
}
.page-template-home .header-phone {
	color: var(--color_whitewhite);
}
.bottom-header {
    background: var(--color_gray_m);
    background: rgba(var(--color_1)/ 80%);
}
.bottom-header * {
    color: var(--color_white);
}
.bottom-header .bottom-header-menu {
    padding: 0 1rem;
}
.bottom-header .bottom-header-menu .menu-item .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    padding: 22px 22px;
    color: var(--color_white);
}
.bottom-header .bottom-header-menu .menu-item:not(.active) .nav-link:hover {
    color: var(--color_black_l);
}
.bottom-header .bottom-header-menu .menu-item:first-of-type .nav-link {
    padding-left: 0;
}

.bottom-header .lang-header-menu {
    margin-left: auto;
}
.bottom-header .lang-header-menu ul {
    margin-bottom: 0;
}
.bottom-header .lang-header-menu li {
    list-style: none;
    position: relative;
}
.bottom-header .lang-header-menu .sub-menu {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 2;
    padding-left: 0;
}
.bottom-header .lang-header-menu a {
    background: var(--color_gray_m);
    border-style: solid;
    border-color: var(--color_white);
    border-radius: 6px;
    border-width: 1px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
}
.bottom-header .lang-header-menu li.menu-item-has-children > a {
    position: relative;
    color: var(--color_white) !important;
}
.bottom-header .lang-header-menu .sub-menu a {
    border-top-width: 0;
    border-radius: 0;
}
.bottom-header .lang-header-menu li.menu-item-has-children .lang-item:last-of-type > a {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.bottom-header .lang-header-menu li.menu-item-has-children > a:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f107';
    margin-left: 11px;
    font-weight: 300;
    transition: 0.2s;
}
.bottom-header .lang-header-menu li.menu-item-has-children:hover .sub-menu,
.bottom-header .lang-header-menu.active li.menu-item-has-children .sub-menu {
    display: block;
}
.bottom-header .lang-header-menu li.menu-item-has-children:hover > a,
.bottom-header .lang-header-menu.active li.menu-item-has-children > a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.bottom-header .lang-header-menu li.menu-item-has-children:hover > a:after,
.bottom-header .lang-header-menu.active li.menu-item-has-children > a:after {
    transform: rotate(180deg);
}

.mobile-header,
.mobile-header-under {
    height: 60px;
    width: 100%;
}
.mobile-header * {
    color: var(--color_whitewhite);
}
.mobile-header-under {
    display: none;
}
.mobile-header {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    background: var(--color_white);
    z-index: 50;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.mobile-header .logo {
    height: 40px;
}
.mobile-header .logo .logo-main,
.mobile-header .logo .logo-name {
    height: 40px;
    width: auto;
}
.mobile-header-menu-wrap {
    padding: 0;
    background: url(images/bg1.webp);
    text-align: center;
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100% + 10px);
    height: 100vh;
    overflow-y: auto;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mobile-header .navbar-toggler {
    border: 0;
    padding: 0;
    position: relative;
    width: 24px;
    height: 18px;
}
.mobile-header .navbar-toggler .navbar-toggler-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color_black);
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.2s;
}
.mobile-header .navbar-toggler:not(.collapsed) {
    z-index: 99;
}
.mobile-header .navbar-toggler:not(.collapsed) .navbar-toggler-line {
   background: var(--color_whitewhite);
}
.mobile-header .navbar-toggler.collapsed .navbar-toggler-line {

}
.mobile-header .navbar-toggler.collapsed .navbar-toggler-line:nth-of-type(1) {
    top: 0;
}
.mobile-header .navbar-toggler.collapsed .navbar-toggler-line:nth-of-type(2) {
    top: calc(50% - 1px);
}
.mobile-header .navbar-toggler.collapsed .navbar-toggler-line:nth-of-type(3) {
    top: calc(100% - 2px);
}
.mobile-header .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-of-type(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}
.mobile-header .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-of-type(2) {
    width: 0;
}
.mobile-header .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-of-type(3) {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}
.mobile-lang-header-menu .menu {
    opacity: 0;
}
.mobile-lang-header-menu .menu,
.mobile-lang-header-menu .sub-menu,
.mobile-lang-header-menu .pll-parent-menu-item {
    display: flex;
    align-items: center;
}
.mobile-lang-header-menu .menu,
.mobile-lang-header-menu .sub-menu {
    padding: 0;
    margin-bottom: 0;
}
.mobile-lang-header-menu .menu li {
    list-style: none;
}
.mobile-lang-header-menu .menu a {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 14px;
    color:  var(--color_whitewhite);
}
.mobile-lang-header-menu .pll-parent-menu-item > a {
    border: 1px solid rgb(var(--color_1));
}
.mobile-lang-header-menu {
    width: 100%;
    border-bottom: 1px solid var(--color_gray);
    padding: 20px 35px 20px;
}
.mobile-header-menu-in {
    width: 100%;
    margin-top: 20px;
}
.mobile-header-menu-in a {
    text-align: left;
    font-size: 14px;
    padding: 10px 35px !important;
    display: flex;
    color: var(--color_whitewhiete) !important;
}
.mobile-header-social {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 20px;
}
.mobile-header-social-text {
    font-size: 14px;
    margin-bottom: 20px;
}
.mobile-header-social .social-links a {
    font-size: 20px;
    color: var(--color_gray);
}
.mobile-header-social .social-links path {
    fill: var(--color_gray);
}

.mobile-bottombar-un {
    display: none;
    height: 46px;
}
.mobile-bottombar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color_white);
    z-index: 40;
    padding: 8px 10px;
    align-items: center;
    height: 46px;
    border-top: 1px solid #ebebeb;
}
.mobile-bottombar .btn {
    margin-left: auto;
    font-size: 11px;
    padding: 5px 11px;
}
.mobile-bottombar-link {
    color: var(--color_black);
    margin-right: 15px;
}
.mobile-bottombar-link path {
    fill: var(--color_gray_l);
}
.mobile-bottombar-link .img-svg {
    margin-right: 7px;
}

.filter-ch-btn {
    display: none;
    margin-left: auto;
}
.filter-ch-btn svg {
    width: 18px;
}
.filter-ch-btn path {
    fill: var(--color_gray);
}
.filter-ch-btn::hover path,
.filter-ch-btn::active path,
.filter-ch-btn::focus path {
    fill: rgb(var(--color_1));
}

/****************************************************************************************************************************************************/

.slider-in {
    position: relative;
    z-index: 1;
}
.slider-item {
    position: relative;
    overflow: hidden;
    max-height: 710px;
}
.slider-item:before {
    content: '';
    display: block;
    padding-top: 36.9791%;
}
.slider-item-in,
.slider-item-in .slider-item-media,
.slider-item-in .slider-item-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.slider-item-in .slider-item-media img {
    object-fit: cover;
}
.slider-item-in .slider-item-content {
    position: absolute;
    padding-bottom: 5.6%;
    bottom: 0;
    width: 100%;
}
.slider-item-in .slider-item-content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(var(--color_1)) 99%, rgba(var(--color_1)) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(var(--color_1)) 99%,rgba(var(--color_1)) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(var(--color_1)) 99%,rgba(var(--color_1)) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d84731',GradientType=0 );
}
.slider-item-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 60px;
    color: var(--color_whitewhite);
    text-transform: uppercase;
}

.main-slider-bottom {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15));
    background: var(--color_white);
}
.main-slider-dots-item {
    width: fit-content !important;
    display: flex !important;
}
.main-slider-dots-item-in {
    width: fit-content !important;
    display: flex !important;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0 0 5px 5px;
    padding: 28px 23px 11px;
    cursor: pointer;
    margin-bottom: 16px;
    text-transform: lowercase;
    white-space: nowrap;
}
.main-slider-dots-item-in:hover {
    color: rgb(var(--color_1));
}
.main-slider-dots-item.slick-active .main-slider-dots-item-in {
    background: rgb(var(--color_1));
    color: var(--color_whitewhite);
    cursor: default;
}
.main-slider-dots-item:not(:first-of-type) .main-slider-dots-item-in {
    margin-left: 26px;
}
.all-events-link {
    display: flex;
    align-items: center;
    color: var(--color_black);
    font-size: 18px;
}
.all-events-link:hover {
    color: rgb(var(--color_1));
}
.all-events-link .icon {
    margin-right: 14px;
    position: relative;
    top: -1px;
}

.event-item {
    margin-bottom: 30px;
}
.event-item-in {
    background: var(--color_white);
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.event-item-media {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.event-item-media:before {
    content: '';
    padding-top: 69.6132%;
    display: block;
}
.event-item-in .event-item-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.event-item-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.event-item-title {
    color: var(--color_gray_d);
    margin-bottom: 26px;
}
.event-item-bottom {
    display: flex;
    justify-content: space-between;
}
.event-item-bottom * {
    color: var(--color_gray_l);
}
.event-item-photo-count {
    display: flex;
    align-items: center;
    font-size: 18px;
}
.event-item-photo-count .icon {
    margin-right: 12px;
    position: relative;
    top: -2px;
}
.content-slider > .container {
    position: relative;
}
.content-slider .slick-slider {
    position: inherit;
}
.content-slider .slick-track {
    display: flex;
    min-width: 100%;
}
.content-slider .slick-slide {
    height: auto;
    flex: 1;
}


.about-block {
    background: url(images/bg1.webp);
    text-align: center;
}
.about-block * {
    color: var(--color_whitewhite);
}
.about-block .h2 {
    position: relative;
    z-index: 1;
    text-align: center;
}
.about-block .h2:before {
    content: url(images/bg-title.svg);
    position: absolute;
    z-index: -1;
    top: 18px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
}
.about-block p {
    color: var(--color_gray_l);
}
.about-block a {
    margin-top: 30px;
    display: inline-block;
    color: rgb(var(--color_1));
}
.about-block a:hover {
    color: var(--color_whitewhite);
}

.person-item {
    margin-bottom: 30px;
}
.person-item-in {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.person-item-in:before {
    content: '';
    display: block;
    padding-top: 144.3181%;
}
.person-item-media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.person-item-media:before {
    content: '';
    position: absolute;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 50%;
    bottom: 0;
    z-index: 2;
}
.person-item-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.person-item-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 3;
    padding: 0 28px 32px;
}
.person-item-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--color_whitewhite);
}


.article-latest-in > .row {
    display: inline-block;
    width: 100%;
}
.article-latest .article-item,
.article-list .article-item {
    margin-bottom: 30px;
}
.article-latest .article-item {
    width: 27%;
    float: left;
}
.article-latest .article-item:nth-of-type(1) {
    width: 46%;
}
.article-latest .article-item:nth-of-type(4) {
    width: 54%;
}
.article-latest .article-item:nth-of-type(2) .article-item-subtitle,
.article-latest .article-item:nth-of-type(3) .article-item-subtitle {
    display: none;
}
.article-latest .article-item-in,
.article-list .article-item-in {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.article-latest .article-item-in:before,
.article-list .article-item-in:before {
    content: '';
    display: block;
}
.article-list .article-item-in:before {
    padding-top: 135.3591%;
}
.article-latest .article-item-in:before {
    padding-top: 288px;
}
.article-latest .article-item:nth-of-type(1) .article-item-in:before {
    padding-top: 656px;
}
.article-latest .article-item:nth-of-type(4) .article-item-in:before {
    padding-top: 338px;
}
.article-latest .article-item-media,
.article-list .article-item-media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.article-latest .article-item-media:before,
.article-list .article-item-media:before {
    content: '';
    position: absolute;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 50%;
    bottom: 0;
    z-index: 2;
}
.article-latest .article-item-media img,
.article-list .article-item-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.article-latest .article-item-content,
.article-list .article-item-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 3;
    padding: 0 30px 26px;
}
.article-latest .article-item *,
.article-list .article-item * {
    color: var(--color_whitewhite);
}
.article-latest .article-item-title,
.article-list .article-item-title {
    font-size: 26px;
    line-height: 28px;
    font-weight: 400;
}
.article-latest .article-item-subtitle,
.article-list .article-item-subtitle {
    margin-top: 23px;
}
.why-item {
    display: flex;
    margin-bottom: 30px;
}
.why-item .why-item-image {
    flex: none;
    width: 128px;
    display: flex;
    justify-content: center;
}
.why-item .h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: rgb(var(--color_1));
}
.why-item p {
    color: var(--color_gray);
}

.partners-latest-galery .gallery {
    display: flex;
    flex-wrap: wrap;
}


.partners-latest-item,
.partners-latest-galery .gallery-item {
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.partners-latest-item .partners-latest-item-in,
.partners-latest-item .partners-latest-item-in .partners-latest-item-image,
.partners-latest-item .partners-latest-item-in .partners-latest-item-image img {
    width: 100%;
}
.partners-latest-item .partners-latest-item-in .partners-latest-item-image {
    position: relative;
    width: 100%;
}
.partners-latest-item .partners-latest-item-in .partners-latest-item-image:before {
    content: '';
    padding-top: 67.4698%;
    display: block;
}
.partners-latest-item .partners-latest-item-in .partners-latest-item-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}


.page-title {
    margin-top: 46px;
    margin-bottom: 54px;
}
.page-title .h1 {
    margin-top: 40px;
    text-transform: uppercase;
    display: flex;
}
.back-link {

}
.back-link,
.back-link * {
    color: var(--color_gray_l);
    font-size: 18px;
}
.back-link a:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f104';
    position: relative;
    top: 2px;
    margin-right: 7px;
}
.page-content {
    margin-bottom: 100px;
}
.page-content .content-sector-alt:first-child {
    padding-bottom: 80px;
}
.page-content .content-sector-alt:last-child:not(:first-child) {
    margin-bottom: -100px;
}
.another-trainers {
    position: relative;
    border-top: 1px solid var(--color_gray_ll);
}

.altprev {
    position: relative;
    width: 100%;
    height: 630px;
    overflow: hidden;
}
.altprev.bigaltprev {
	margin-top: -184px;
    height: calc(730px + 184px);
	max-height: 90dvh;
	z-index: -1;
}
.altprev.bigaltprev .slider-item-content {
	bottom: 20%;
    position: absolute;
    width: 100%;
}
.altprev * {
    color: var(--color_whitewhite);
}
.altprev video,
.altprev iframe {
	position: absolute;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
top: 0;
bottom: 0;
margin: auto;
}
.altprev .altprev-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.altprev .altprev-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}
.altprev .altprev-content .container {
    position: relative;
    z-index: 1;
}
.altprev .page-title {
    margin-top: 0;
    margin-bottom: 97px;
}
.single-event-info-item {
    margin-bottom: 35px;
}
.single-event-info-date {
    display: flex;
}
.single-event-date {
    margin-right: 60px;
}
.winers_list .elementor-section .elementor-column {
    width: 33.3333% !important;
}
.winers_list .elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 0;
}
.winers_list .elementor-widget-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.winers_list .elementor-image-box-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.winers_list .elementor-image-box-wrapper:before {
    content: '';
    display: block;
    padding-top: 144.3181%;
}
.winers_list .elementor-image-box-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.winers_list .elementor-image-box-img:before {
    content: '';
    position: absolute;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.winers_list .elementor-image-box-img img {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    max-width: 900px !important;;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: 0.2s;
}
.winers_list .elementor-image-box-img a:hover img {
    transform: scale(1.05);
}
.winers_list .elementor-image-box-content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    padding: 0 20px 20px;
}
.winers_list .elementor-image-box-content * {
    color: #fff;
}
.winers_list .elementor-image-box-title,
.winers_list .elementor-image-box-title * {
    font-weight: 500 !important;
}
.winers_list .elementor-image-box-title {
    margin-bottom: 0;
}

.single-person-image-block {
    position: relative;
}
.single-person-image-block:before {
    content: '';
    position: absolute;
    right: calc(100% + 30px);
    height: 495px;
    max-height: 100%;
    width: 200px;
    background-image: url(images/icons/icon-tae.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: contain;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.single-person-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
}
.single-person-image:before {
    content: '';
    padding-top: 137.8787%;
    display: block;
}
.single-person-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.single-person-info .h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.single-person-info-wrap {
    display: flex;
}
.single-person-info-wrap .single-person-info-item {
    flex: none;
    margin-bottom: 13px;
    display: flex;
}
.single-person-info-wrap .single-person-info-item:nth-of-type(1) {
    width: 180px;
}
.single-person-info-wrap .single-person-info-item:nth-of-type(2) {
    width: 278px;
}
.single-person-info-wrap .single-person-info-item:last-child {
    width: auto;
}
.single-person-info-wrap .single-person-info-item b {
    margin-left: 5px;
}
.single-person-info .btn-primary {
    margin-top: 20px;
}
.single-person-subtitle {
    margin-top: 15px;
    line-height: 140%;
}
.photo-gallery-item {
    margin-bottom: 30px;
}
.photo-gallery-item .thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.awards_list {

}
.awards_list .elementor-widget-image-box {
    margin-bottom: 0 !important;
}
.awards_list .elementor-widget-container {
    padding-left: 15px;
    padding-right: 15px;
}
.awards_list .elementor-image-box-wrapper {
    position: relative;
    background: var(--color_white);
}
.awards_list .elementor-image-box-img:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.awards_list .elementor-image-box-img {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}
.awards_list .elementor-image-box-img:after {
    content: '';
    position: absolute;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.awards_list .elementor-image-box-img img {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    max-width: 900px !important;;
    top: 0;
    left: 0;
    object-fit: cover;
}
.awards_list .elementor-image-box-content {
    position: relative;
}
.awards_list .elementor-image-box-content * {
    
}
.awards_list .elementor-image-box-title,
.awards_list .elementor-image-box-title * {
    font-size: 16px;
}
.awards_list .elementor-image-box-title {
    position: absolute;
    z-index: 3;
    top: -86px;
    left: 22px;
    padding: 4px 10px;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 22px;
    background: rgb(var(--color_1));
}
.awards_list .elementor-image-box-description {
    text-align: left;
    padding: 0 15px;
    font-weight: 500;
    padding-bottom: 10px;
}
.awards_list .elementor-widget-text-editor {
    padding-left: 15px;
    padding-right: 15px;
}
.awards_list .elementor-widget-text-editor .elementor-widget-container {
    background: var(--color_white);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 6px 6px;
}
.awards_list .elementor-widget-text-editor .elementor-widget-container p {
    color: var(--color_gray_l);
    font-size: 14px;
}
.awards_list .elementor-section .elementor-container {
    width: calc(100% + 20px);
    margin-left: -10px;
}

.person-list-item {
    margin-bottom: 30px;
    display: flex;
}
.person-list-item-in {
    background: var(--color_white);
    padding: 21px 22px 18px;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    min-width: 100%;
    transition: 0.2s;
}
.person-list-item-in:hover {
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.person-list-item-media {
    flex: none;
    width: 80px;
    height: 87px;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    margin-right: 17px;
}
.page-template-taxonomy-person_status-term_trainer .person-list-item-media {
    width: 95px;
    height: 102px;
}
.page-template-taxonomy-person_status-term_trainer .person-list-item-option {
    margin-bottom: 4px;
}
.page-template-taxonomy-person_status-term_trainer .person-list-item-title {
   margin-top: -2px;
}
.person-list-item-media img {
    width: 300%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    margin: auto;
    object-fit: contain;
    max-width: none;
    max-height: none;
}
.person-list-item-content {
    flex: 1;
}
.person-list-item-title {
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: -5px;
}
.person-list-item-option,
.person-list-item-option * {
    font-size: 14px;
    font-weight: 300;
}
.person-list-item-option {
}
.person-list-item-option span {
    color: var(--color_gray_l);
}
.person-list-item-content-bottom {
    flex: none;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.person-list-item-content-liner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.altprev-content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 170px);
    z-index: 0;
    bottom: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.1917) 0%, rgba(0, 0, 0, 0) 100%);
}

#signup .modal-dialog {
    max-width: 400px;
}
.filter-content .person-list-item:not(.person_status-fighter) {
    display: none !important;
}
.lang-header-menu {
    display: none;
}

.filter-ch {
    background: var(--color_white);
    margin-bottom: 35px;
    margin-top: 40px;
    border-radius: 5px;
    position: relative;
}
.filter-ch .searchandfilter > ul {
    display: flex;
    padding: 0;
    margin: 0;
}
.filter-ch .searchandfilter > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}
.filter-ch .searchandfilter > ul > li:nth-of-type(3) > h4 {
    min-width: 145px;
}
.filter-ch .searchandfilter > ul > li:nth-of-type(4) > h4 {
    min-width: 250px;
}
.filter-ch .searchandfilter > ul > li:nth-of-type(5) > h4 {
    min-width: 155px;
}
.filter-ch .searchandfilter > ul > li:nth-of-type(6) > h4 {
    min-width: 190px;
}
.filter-ch .searchandfilter > ul > li:not(.sf-field-reset) > *:not(h4) {
    display: none;
    position: absolute;
    top: 100%;
    background: var(--color_white_dd);
    z-index: 5;
    min-width: 100%;
    border-radius: 5px;
    box-shadow: 0px 8px 10px rgb(0 0 0 / 20%);
    overflow: auto;
    overflow-x: hidden;
    width: fit-content;
    max-height: 400px;
}
.filter-ch .searchandfilter > ul > li > h4 {
    cursor: pointer;
    padding: 15px 52px 14px 25px;
    font-weight: 400;
    color: #595959;
    position: relative;
}
.filter-ch .searchandfilter > ul > li > h4:hover {
    color: rgb(var(--color_1));
}
.filter-ch .searchandfilter > ul > li > h4:after {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    height: calc(100% - 6px);
    width: 1px;
    background: var(--color_gray_ll);
}
.filter-ch .searchandfilter > ul > li > h4:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f107';
    position: absolute;
    right: 26px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    font-size: 20px;
    color: #595959;
    font-weight: 100;
    transition: 0.2s;
}
.filter-ch .searchandfilter > ul > li.active > h4:before {
    transform: rotate(180deg);
}
.filter-ch .searchandfilter > ul > li > h4:hover:before {
    color: rgb(var(--color_1));
}
.filter-ch .searchandfilter > ul > li.active > *:not(h4) {
    display: block;
}
.filter-ch .searchandfilter > ul > li > ul {
    padding: 5px 0;
}
.filter-ch .searchandfilter > ul > li.sf-field-reset {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.filter-ch .searchandfilter > ul > li.sf-field-reset > .search-filter-reset {
    display: flex;
    top: 0;
    position: relative;
    padding: 5px 25px;
}
.filter-ch .searchandfilter > ul > li > ul > li {
    padding: 0 20px;
}
.filter-ch .searchandfilter > ul > li > ul > li label {
    padding: 7px 0;
    white-space: nowrap;
    color: #595959;
}
.filter-ch .searchandfilter .sf-meta-range {
    padding: 15px 20px;
    width: 220px !important;
    flex-wrap: wrap;
    justify-content: space-between;
}
.filter-ch .searchandfilter > ul > li.active .sf-meta-range {
    display: flex !important;
}
.filter-ch .searchandfilter .meta-slider {
    flex: none;
    width: 100%;
    min-width: 100%;
    margin-top: 20px;
}
.filter-ch .searchandfilter .sf-meta-range label {
    width: fit-content;
    position: relative;
}
.filter-ch .searchandfilter .sf-meta-range label:nth-of-type(1) {
    left: -8px;
}
.filter-ch .searchandfilter .sf-meta-range label:nth-of-type(2) {
    right: -8px;
}
.filter-ch .sf-range-values-seperator {
    display: none;
}
.filter-ch .searchandfilter .sf-meta-range label input {
    width: 40px;
    border-radius: 5px;
    border: 1px solid var(--color_gray_ll);
    text-align: center;
    padding: 5px 5px 3px;
}
.filter-ch input[type='number']::-webkit-inner-spin-button,
.filter-ch input[type='number']::-webkit-outer-spin-button {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}
.filter-ch .sf-field-sort_order {
    position: absolute !important;
    top: -90px;
    left: 260px;
}
.filter-ch .sf-field-sort_order h4 {
    padding-right: 10px !important;
}
.filter-ch .sf-field-sort_order h4:after,
.filter-ch .sf-field-sort_order h4:before {
    display: none !important;
}
.filter-ch .sf-field-sort_order > ul {
    display: flex !important;
    flex-direction: column;
    left: 100%;
    top: 2px !important;
    box-shadow: none !important;
    min-width: 120px !important;
}
.filter-ch .sf-field-sort_order > ul:hover {
    background: var(--color_white) !important;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15) !important;
}
.filter-ch .sf-field-sort_order > ul li:not(.sf-option-active) {
    display: none;
}
.filter-ch .sf-field-sort_order > ul:hover li:not(.sf-option-active) {
    display: block;
}
.filter-ch .sf-field-sort_order > ul li input[type='radio']+label::before {
    display: none !important;
}
.filter-ch .sf-field-sort_order > ul li {
    order: 1;
    padding: 0 15px !important;
}
.filter-ch .sf-field-sort_order > ul li label {
   font-weight: 400 !important;
   color: var(--color_black) !important;
   justify-content: space-between;
}
.filter-ch .sf-field-sort_order > ul li.sf-option-active {
    order: 0;
    display: block !important;
}
.filter-ch .sf-field-sort_order > ul li.sf-option-active label,
.filter-ch .sf-field-sort_order > ul li:hover label {
    color: rgb(var(--color_1)) !important;
}
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_rating_for_person+asc+num']+label::after,
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_rating_for_person+desc+num']+label::after,
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_date_of_birth+asc+date']+label::after,
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_date_of_birth+desc+date']+label::after {
    font-family: 'Font Awesome 5 Pro';
    display: block !important;
    margin-left: 12px;
}
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_rating_for_person+asc+num']+label::after,
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_date_of_birth+desc+date']+label::after {
    content: '\f106';
}
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_rating_for_person+desc+num']+label::after,
.filter-ch .sf-field-sort_order > ul li input[value='_sfm_date_of_birth+asc+date']+label::after {
    content: '\f107';
}
    
.event-item-media img,
.person-item-media img,
.article-item-media img {
    transition: 0.2s;
}
.event-item-in:hover .event-item-media img,
.person-item-in:hover .person-item-media img,
.article-item-in:hover .article-item-media img {
    transform: scale(1.05);
}
.info-404 {
    display: flex;
    min-height: 200px;
    align-items: center;
}
.info-404-big {
    font-weight: 500;
    font-size: 138px;
    color: rgb(var(--color_1));
    margin-right: 25px;
}
.info-404-contant {
    max-width: 390px;
}
.winers_list div[data-ha-element-link] img {
    transition: 0.2s;
}
.winers_list div[data-ha-element-link]:hover img {
    transform: scale(1.05);
}
div[data-ha-element-link]:hover {
    color: rgb(var(--color_1));
}
.sponsor-btn:not(:last-of-type) {
    margin-right: 15px;
}
.club-list a {
    color: var(--color_black);
}
.club-list a:hover {
    color: rgb(var(--color_1));
}
.club-list .elementor-container.elementor-column-gap-default {
    display: flex;
    flex-wrap: wrap;
}
.club-list > .elementor-container.elementor-column-gap-default > .elementor-column {
        width: 33.33% !important;
    }
.only-mob .altprev-person {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 17px;
}
.altprev.altprev-person .altprev-image {
    top: 0;
    object-position: top;
}
.awards_list .elementor-section:last-of-type .elementor-container {
    margin-bottom: 30px;
}
.awards_list .elementor-column-gap-no .elementor-column {
    width: 25% !important;
}
.awards_list .elementor-widget-wrap {
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.awards_list .elementor-widget-text-editor {
    flex: 1;
}
.awards_list .elementor-widget-text-editor .elementor-widget-container {
    min-height: 100%;
}
.awards_list .elementor-container {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    .awards_list .elementor-column-gap-no .elementor-column {
        margin-bottom: 30px;
    }
.mobile-header-menu-in a:hover,
    .mobile-header-menu-in a:focus,
    .mobile-header-menu-in a:active,
    .mobile-header-menu-in a.azaza,
    .azaza {
        color: rgb(var(--color_1)) !important;
    }
    .azaza path {
        fill: rgb(var(--color_1)) !important;
    }

/****************************************************************************************************************************************************/
footer {
    display: block;
    padding: 94px 0;
    background: url(images/bg1.webp);
    background-position: center;
    position: relative;
}
footer * {
    color: var(--color_gray);
}
footer .h3,
footer .header-phone {
    color: var(--color_whitewhite);
}
footer a:hover,
footer a:hover * {
    color:  rgb(var(--color_1));
}
footer .logo-main .logo-main-path-man,
footer .logo-name path {
    fill: var(--color_whitewhite);
}
footer .logo-name {
    margin-bottom: 35px;
}
footer .footer-logo {
    position: relative;
}
footer .footer-logo:before {
    content: '';
    position: absolute;
    border-left: 1px solid #818181;
    border-right: 1px solid #818181;
    height: calc(100% + 94px + 6px);
    width: 112px;
    top: -94px;
    left: -22px;
}
footer .footer-logo:after {
    content: '';
    position: absolute;
    border-bottom: 1px solid #818181;
    border-right: 1px solid #818181;
    height: 79.196px;
    width: 79.196px;
    transform: rotate(45deg);
    bottom: -45.5px;
    left: -5.05px;
}
footer .footer-name-container {
    padding-left: 20px;
    padding-right: 20%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
footer .dev-od {
    margin-top: auto;
}
footer .footer-menu{
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
}
footer .footer-menu li {
    list-style: none;
}
footer .footer-menu li:not(:last-of-type) {
    margin-bottom: 10px;
}
footer .footer-right-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
footer .footer-social-links {
    margin-top: auto;
}
footer .header-item {
    margin-bottom: 30px;
}
.social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links a {
    font-size: 28px;
}


/****************************************************************************************************************************************************/