@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');
:root{
    --font1: 'Open Sans';
    --font2: 'Oswald';
}

body { margin:0; padding:0; font-size:18px; background: #fff; color:var(--black) !important; font-family:var(--font1), Arial, sans-serif;}
* {
    box-sizing:border-box;
}
video::-webkit-media-controls {
    display:none !important;
}
video::-webkit-media-controls-fullscreen-button {
    pointer-events: none;
    opacity: .5;
}

h1,.h1 {
    font-size: 70px;
    font-weight: 700;
    font-family:var(--font2), Arial, sans-serif;
}
h2, .h2 {
    font-size:50px;
    font-weight: 400;
    font-family:var(--font2), Arial, sans-serif;
}
h3, .h3 {
    font-size:30px;
    font-weight: 400;
    font-family:var(--font2), Arial, sans-serif;
}
a {
    color:var(--link);
    transition: color 0.3s;
}
a:hover {
    color:var(--link);
}
img {
    max-width: 100%;
    display: block;
}
table {
    border-spacing: 0;
}
.clear {
    clear: both;
}
.mobile {
    display: none;
}
input,textarea {
    width:100%;
    outline:none;
    padding:20px 16px;
    font-family:var(--font1), Arial, sans-serif;
    border: 1px solid #E1E1E1;
    background: #fff;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
}
input:hover,textarea:hover,input:focus,textarea:focus {
    border: #b4b4b4 solid 1px;
}
button {
    cursor: pointer;
}
.form-group label {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group-error input[type=text]:focus,
.form-group-error input[type=password]:focus,
.form-group-error textarea:focus,
.form-group-error input[type=text]:hover,
.form-group-error input[type=password]:hover,
.form-group-error textarea:hover,
.form-group-error input[type=text],
.form-group-error input[type=file],
.form-group-error input[type=password],
.form-group-error textarea,
.form-group-error select,
.form-group-error:has(input[type=checkbox]) .checkbox-check:after,
.form-group-error .ui-button {
    box-shadow: 0 0 0 3px #faaab3;
}
input:-webkit-autofill,input:-webkit-autofill:hover, input:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #fff;
    -webkit-text-fill-color: var(--black);
}
@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
textarea {min-height:150px;resize: vertical;}
select { width:100%}
/*input[type=submit], button:not(.owl-dot,.owl-next,.owl-prev,.fancybox-button) {
    font-family:var(--font1), Arial, sans-serif;
    font-size: 18px;
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    background-color: var(--main-1);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}
input[type=submit]:hover, button:hover {
    background-color: var(--main-2);
}*/
input:-moz-placeholder { color:#AAA8A8;}
textarea:-moz-placeholder { color:#AAA8A8;}
input::-webkit-input-placeholder { color:#AAA8A8;}
textarea::-webkit-input-placeholder { color:#AAA8A8;}

.unified-checkbox,
.unified-radio {
    position: relative;
    cursor: pointer;
}
.unified-checkbox input[type="checkbox"] + .checkbox-text:hover .checkbox-check:after {
    border: 1px solid #acacac;
}
.unified-checkbox input[type="checkbox"] + .checkbox-text .checkbox-check:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: auto;
    transition: border ease 0.3s;
}
.unified-checkbox input[type="checkbox"] {
    position: absolute;
    margin-left: -45px;
    display: none;
}
.unified-checkbox input[type="checkbox"]:checked + .checkbox-text .checkbox-check:before {
    background-color: #fff;
}
.unified-checkbox input[type="checkbox"]:checked + .checkbox-text .checkbox-check:before {
    width: 10px;
    height: 8px;
    content: '';
    display: block;
    z-index: 1;
    position: absolute;
    left: 4px;
    top: 4px;
    mask-image: var(--check);
    -webkit-mask-image: var(--check);
    background-color: var(--main-1);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}
.checkbox-check {
    position: relative;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.checkbox-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.unified-radio input[type="checkbox"] + .radio-text:hover .radiobox-radio:after {
    border: 1px solid var(--gray-2);
}
.unified-radio input[type="radio"] + .radio-text .radiobox-radio:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: auto;
    transition: border ease 0.3s;
    box-sizing: border-box;
}
.unified-radio input[type="radio"] {
    position: absolute;
    margin-left: -45px;
    display: none;
}
.unified-radio input[type="radio"]:checked + .radio-text .radiobox-radio:before {
    width: 8px;
    height: 8px;
    content: '';
    display: block;
    z-index: 1;
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: var(--main-1);
    border-radius: 50%;
}
.radio-text {
    display: flex;
    align-items: center;
    gap: 17px;
}
.radiobox-radio {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


.menu-but,.menu-but-w { display: none; align-items: center; gap: 13px; height:auto; padding:0; cursor:pointer; color:#000; font-size:12px; letter-spacing:1px; z-index:7; }
.menu-but-w { color:#FFF; }
.menu-ico { width:33px; height:26px; position:relative; display: flex; align-items: center; }
.menu-ico span:after, .menu-ico span:before {content: ""; position: absolute; left: 0; top: -10px;}
.menu-ico span:after{ top: 10px; }
.menu-ico span { position:relative; display:block; }
.menu-ico span, .menu-ico span:after, .menu-ico span:before { width: 100%;  height: 2px;  background-color: #000;  transition: all 0.3s;  backface-visibility: hidden; }
.menu-but-w .menu-ico span, .menu-but-w .menu-ico span:after, .menu-but-w .menu-ico span:before {  background-color: #fff; }
.on { color:#ffffff; background:none; z-index:1000; }
.on .menu-ico span { background-color: transparent;}
.on span:before { transform: rotate(45deg) translate(10px, 10px); background-color:#000; }
.on span:after { transform: rotate(-45deg) translate(4px, -4px); background-color:#000; }
.on .menu-ico { height:30px;}

.close-menu {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    cursor: pointer;
}
.close-form {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    left: 10px;
}
.close-menu::before, .close-menu::after,
.close-form::before, .close-form::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    background-color: var(--gray-3);
    position: relative;
}
.close-menu::after, .close-form::after {
    top: 12px;
}
.close-menu::before, .close-form::before {
    transform: rotate(133deg);
    top: 14px;
}


.scroll-sm * { scrollbar-width: thin; scrollbar-color: #c6c6c6 #F8F8F8; box-sizing: border-box; }
.scroll-sm::-webkit-scrollbar-track {
    background-color: transparent;
}
.scroll-sm::-webkit-scrollbar-thumb {
    border:none;
    background-color: #c6c6c6;
}
.scroll-sm::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #F8F8F8;
}
.main-html, .main-html body {
    height: 100%;
}
.main-outer {
    max-width: 1920px;
    margin: 0 auto;
}
.main {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 40px;
}
#SDStudio_VIDEO_BACKGROUND {overflow: hidden; }
#SDStudio_VIDEO_BACKGROUND > video { position: absolute; top: 0; left: 0; width: 100%; height:100%;}
/* 1. Если не поддерживает support: */
@media (min-aspect-ratio: 16/9) {
    #SDStudio_VIDEO_BACKGROUND > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
    #SDStudio_VIDEO_BACKGROUND > video { width: 300%; left: -100%; }
}
/* 2. Если поддерживает object-fit, overriding (1): */
@supports (object-fit: cover) {
    #SDStudio_VIDEO_BACKGROUND > video {
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }
}
.for-mobile {
    display: none;
}
.for-desctop {
    display: block;
}


/*MENU*/
.but-submenu {
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #EEEEEE;
    border-radius: 50%;
    flex-shrink: 0;
}
.but-submenu:before {
    mask-image: var(--triangle);
    -webkit-mask-image: var(--triangle);
    width: 6px;
    height: 10px;
    background-color: var(--main-1);
    transition: all 0.3s;
    margin: 0 0 0 2px;
}
.main-menu {
    position: relative;
    z-index: 99;
    background-color: var(--main-1);
}
.main-menu .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
}
/*.main-menu ul.header-menu > li:hover > a > .but-submenu {
    background-color: #d4d4d4;
}
.main-menu ul.header-menu > li:hover > a > .but-submenu:before {
    transform: rotate(90deg);
    margin: 0;
}
.main-menu ul.header-menu > li:hover > a {
    color: var(--gray-2);
}*/
.main-menu ul.header-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-menu ul.header-menu a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.main-menu ul.header-menu > li {
    position: relative;
    padding: 0 10px;
}
.main-menu ul.header-menu > li > a {
    height: 60px;
    transition: background-color 0.3s;
}
/*.main-menu ul.header-menu > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-1);
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: all ease 0.25s;
    opacity: 0;
}
.main-menu ul.header-menu > li:hover::after {
    bottom: 0;
    opacity: 1;
}*/
/*.main-menu ul.header-menu > li:hover > a {
    background-color: var(--main-2);
}

.main-menu ul.header-menu > li:hover > a:hover {
    background-color: #dedede;
}*/
.main-menu ul li {
    position: relative;
}
.main-menu ul.dropdown {
    display: none;
    width: 450px;
    position: absolute;
    left: 0;
    top: 60px;
    background-color: #fff;
    transition: all 0.3s;
    text-transform: none;
    padding: 10px 0 10px 0;
    border-radius: 10px;
    box-shadow: 7px 7px 30px 0px rgba(0, 0, 0, 0.1);
}
header .main-menu ul.dropdown {
    top: 38px;
}
.main-menu ul.dropdown li {
    transition: background-color 0.3s;
}
/*.main-menu ul.dropdown li:last-child {
    border-bottom: none;
}*/
.main-menu ul.dropdown li:hover {
    color: #000;
    /*background-color: var(--main-1);*/
}
.main-menu ul.dropdown a {
    color: #000;
    text-decoration: none;
    white-space: normal;
    display: block;
    padding: 10px 30px;
}
.main-menu ul.dropdown a:hover {
    color: var(--link);
}
.main-menu ul li:hover ul {
    display: block;
}

.menu-prev {
    display: none;
}
/*MENU*/
/*MENU VERTICAL*/
.menu-vertical .but-submenu {
    width: 20px;
    height: 16px;
}
.menu-vertical .but-submenu:before {
    width: 8px !important;
    height: 16px !important;
    transform: rotate(0deg);
}
.menu-vertical {
    padding: 20px;
}
.menu-vertical ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu-vertical > ul > li {
    border-top:#BDBDBD solid 1px;
}
.menu-vertical > ul > li:first-child {
    border-top: none;
}
.menu-vertical > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    text-decoration: none;
    margin: 16px 0;
    transition: color 0.3s;
}
.menu-vertical ul a:hover {
    color: var(--link);
}
.menu-vertical ul ul {
    font-size: 14px;
    margin: 0 0 18px 20px;
    display: none;
}
.menu-vertical ul ul a {
    color: #999898;
    text-decoration: none;
    padding: 8px 0;
    display: block;
}
.menu-vertical-active .but-submenu:before {
    transform: rotate(90deg);
}
.menu-vertical-active ul {
    display: block !important;
}
/*CLOSE MENU VERTICAL*/

/*search*/
.form-search {
    background: #30606B;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 12px 0 0;
}
.form-search input {
    background-color: transparent;
    padding: 8px 12px;
    border: none;
    color: #fff;
}
.form-search button {
    border:none;
    background: #30606B;
    cursor: pointer;
}
.form-search .icon-search:hover:before {
    background-color: #eaeaea;
}
.form-search ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #A8C6CD;
}
.form-search :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #A8C6CD;
    opacity:  1;
}
.form-search ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #A8C6CD;
    opacity:  1;
}
.form-search :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    #A8C6CD;
}
.form-search ::-ms-input-placeholder { /* Microsoft Edge */
    color:    #A8C6CD;
}
.form-search ::placeholder { /* Most modern browsers support this now. */
    color:    #A8C6CD;
}
/**/

.logo-box {
    width: 250px;
}

header {
    position: relative;
    z-index: 5;
}
.main-html header {
    overflow: hidden;
    background: url("../images/main-fon.jpg") no-repeat;
    background-position: 170% -18px;
    background-size: contain;
    height: calc(100% - 60px);
}
header .main:nth-child(1) {
    position: relative;
    z-index: 5;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    padding: 15px 0;
    border-bottom: #B7B7B7 solid 1px;
}
header .main-menu {
    background-color: #fff;
}
header .main-menu ul.header-menu a {
    color: #000;
}
header .main-menu ul {
    font-size: 18px;
}
header .main-menu ul.header-menu > li > a {
    height: 38px;
}
header .but-submenu {
    display: flex;
    background-color: #fff;
}
header .but-submenu:before {
    mask-image: var(--down-light);
    -webkit-mask-image: var(--down-light);
    width: 14px;
    height: 14px;
}
/*.logo-box {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 26px;
    text-transform: uppercase;
}*/
.header-info {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-phone-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header-phone {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    position: relative;
}
.header-phone a {
    color: var(--main-1);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}
.header-phone a:hover {
    color: var(--main-2);
}

.h-soc {
    display: flex;
    gap: 10px;
}
.h-soc .icon {
    background-color: var(--orange-1);
}
.h-soc .icon:hover {
    background-color: var(--orange-2);
}


.menu-contacts {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
}
.menu-contacts .header-phone {
    align-items: center;
}
.menu-phone-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.menu-contacts .h-soc .icon {
    background-color: #fff;
    border: var(--main-1) solid 1px;
}
.main-fon-box {
    position: relative;
    overflow: hidden;
}

.scene { position: absolute; height: 100%; width: 100%; z-index: 0; overflow: hidden; top: 18px; left: 0;}
.layer { width: 100%; height: 100%; z-index: 0;}
.layer1 { position: absolute; bottom: 0; right: 15%;
    z-index: 5;}
.header-fon-logo {
    margin: 80px 0 0;
}
.header-fon-logo__title {
    font-family: Oswald;
    font-size: 70px;
    font-weight: 700;
    color: var(--orange-1);
    align-self: center;
}
.header-fon-logo__title span {
    font-size: 120px;
    line-height: 120px;
    display: block;
}
.header-fon-logo-box {
    display: flex;
    gap:13px;
    align-items: center;
    margin: 25px 0 0;
}

.main-banners {
    display: grid;
    grid-template-columns: 37% auto;
    gap: 10px;
    margin: 25px 0;
    position: relative;
    z-index: 5;
}
.main-banners img {
    border-radius: 15px;
}
.main-banners-item:nth-child(1) {
    font-family: Oswald;
    font-size: 70px;
    font-weight: 700;
    color: var(--orange-1);
    align-self: center;
    padding: 0 0 0 40px;
}
.main-banners-item:nth-child(1) span {
    font-size: 120px;
    line-height: 120px;
}
.main-banners-item:nth-child(2) {
    grid-row: 1/3;
    grid-column: 2/3;
    justify-self: flex-end;
}
.main-banners-item:nth-child(3) {
    align-self: flex-end;
}

.main-about-box {
    background-color: #EFEFEF;
    /*margin: -150px 0 0;
    padding: 250px 0 60px;*/
    padding: 60px 0;
}
.main-about {
    display: flex;
    gap: 67px;
}
.main-about-left {
    width: 380px;
    flex-shrink: 0;
}
.block-title-box {
    display: flex;
    flex-direction: column;
    gap:10px;
    margin: 50px 0 0;
}
.block-title {
    min-height: 254px;
    font-family: Oswald;
    font-size: 40px;
    font-weight: 700;
    color:#fff;
    background-color: var(--main-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.block-title span {
    font-size: 90px;
}

.block-title-box-slider {
    display: none;
}

.main-trener {
    display: flex;
}
.main-trener-left {
    width: 30%;
    flex-shrink: 0;
}
.main-trener-right {
    width: 70%;
}

.main-trener-item {
    background-color: #EFEFEF;
    border-radius: 10px;
    height: 100%;
}
.main-trener-item img {
    border-radius: 10px;
    width: 100%;
}
.main-trener-item-info {
    padding: 14px 23px 23px;
}
.main-trener-item__title,
.row-trener-item__title {
    font-size: 24px;
    font-weight: 600;
    font-family: Oswald;
    min-height: 72px;
}
.row-trener-item__title {
    min-height: initial;
}
.main-trener-item__doljnost,
.row-trener-item__doljnost {
    color:var(--orange-1);
    margin: 7px 0 17px;
}
.main-trener-item__des,
.row-trener-item__des {
    font-size: 16px;
}

.row-trener-item {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.row-trener-item__img {
    width: 200px;
    flex-shrink: 0;
}

.slide-up-dowm-item {
    margin: 20px 0;
}
.slide-up-dowm-item__title {
    color: var(--link);
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}
.slide-up-dowm-item__title:hover {
    color: var(--orange-1);
}
.slide-up-dowm-item__des {
    display: none;
}

.trener-box {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:10px;
}

.trener-full {
    display: flex;
    gap: 30px;
}
.trener-full__img {
    width: 427px;
    flex-shrink: 0;
}
.trener-full__img img {
    width: 100%;
}
.trener-full__title {
    font-size: 35px;
    font-weight: 600;
}
.trener-full__doljnost {
    font-weight: 600;
    color: var(--orange-1);
    margin: 10px 0 28px;
}

.slider3-btns {
    display: flex;
    gap:8px;
    margin: 45px 0 0;
}
.slider3-btns .icon {
    border: var(--main-1) solid 1px;
    cursor: pointer;
}
.slider3-btns .icon:hover {
    background-color: var(--main-1);
}
.slider3-btns .icon:hover:before {
    background-color: #fff;
}




.b-tabs {
    margin: 30px 0 45px;
}
.b-tabs2 {
    margin: 30px 0 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.b-tabs3 {
    margin: 30px 0 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.b-tabs4 {
    margin: 30px 0 45px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: #E0E3E6 solid 1px;
}
.b-tabs .el-tabs, .btn-row2 .el-tabs { padding:14px 20px; border:transparent solid 2px; position:relative; cursor:pointer; border-radius:5px; display:inline-block; text-decoration: none; color:#000;}
.b-tabs2 .el-tabs { min-width: 180px; font-size: 18px; text-align: center; padding:14px 28px; border:#7E8A96 solid 1px; position:relative; cursor:pointer; border-radius:50px; display:inline-block; color: #7E8A96; transition: all 0.3s}
.b-tabs2 .el-tabs:not(.el-tabs-active):hover { border: var(--main-1) solid 1px; color: var(--main-1); }
.b-tabs3 .el-tabs {
    padding:14px 20px;
    border-bottom: 1px solid #eee;
    cursor:pointer;
    max-width: 244px;
    width: 100%;
    text-align: center;
}
.b-tabs4 .el-tabs {
    padding: 25px 56px;
    border-left: #E0E3E6 solid 1px;
    border-right: #E0E3E6 solid 1px;
    border-top: #E0E3E6 solid 1px;
    border-bottom: #E0E3E6 solid 1px;
    position: relative;
    top: 1px;
    cursor: pointer;
    background: #F9FAFB;
    display: inline-block;
    color: #7E8A96;
    font-size: 18px;
    transition: color 0.3s;
}
.b-tabs4 .el-tabs:not(.el-tabs-active):hover { color: #2A4B8D; }
.b-tabs4 .el-tabs:first-child { border-radius: 20px 0 0 0; border-right: none; }
.b-tabs4 .el-tabs:last-child { border-radius: 0 20px 0 0; }
.tabs-center { justify-content: center; }
.tabs-cont { display:none; }
.tabs-cont:first-child { display:block}
.b-tabs .el-tabs-active, .btn-row2 .el-tabs-active { border:var(--main-1) solid 2px; cursor:default; color: var(--main-1); font-weight: 500}
.b-tabs2 .el-tabs-active { border:var(--main-1) solid 1px; background-color: var(--main-1); cursor:default; color: #fff; font-weight: 600}
.b-tabs3 .el-tabs-active { border-bottom:var(--main-1) solid 1px; cursor:default; font-weight: 600}
.b-tabs4 .el-tabs-active { background: #fff; border-bottom: #fff solid 1px; cursor: default; color: #2A4B8D;}
.b-tabs-cont {
    margin: 34px 0 0 0;
    position: relative;
    z-index: 5;
}



.main-slider1 {
    margin: 40px 0;
}
.main-project-item__img {
    width: calc(100% + 1px);
    margin: 0 0 0 -1px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;display: block;
}
.main-project-item__img a {

}
.main-project-item__img img {
    width: 100%;
    display: block;
    transition: all 0.3s;
    border-radius: 20px 20px 0 0;
}
.main-project-item-info {
    padding: 18px 30px 23px;
    border: #EAEAEB solid 1px;
    border-top: none;
    border-radius: 0 0 20px 20px;
}
.main-project-item__title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.main-project-item:hover .main-project-item__img img {
    transform: scale(1.1);
}

.main-partners-item {
    overflow: hidden;
}

.main-partners-item img {
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.main-partners-item:hover img {
    transform: scale(1.1);
}
.main-partners-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 100%;
    padding: 10px;
    overflow: hidden;
}

.main-review-item {
    padding: 36px 30px 42px;
    background-color: #F9FAFB;
    border-radius: 20px;
    box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.05);
}
.main-review-item__author {
    display: flex;
    align-items: center;
    gap:13px;
    margin: 25px 0 0;
}

.content-menu-box {
    display: flex;
    gap:65px;

}
.content-menu-left {
    width: 300px;
    flex-shrink: 0;
}
.content-menu {
    border-radius: 10px;
    background: rgba(239, 239, 239, 1);
    padding: 40px 35px;
    font-size: 16px;
}
.content-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.content-menu li {
    margin: 20px 0;
}
.content-menu a {
    color: #000;
    text-decoration: none;
}
.content-menu a:hover,
.content-menu .active-link a {
    color: var(--orange-1);
}
.content-menu-right h1 {
    font-size: 30px;
}


.main-margin-sm {
    margin: 60px 0;
}
.main-margin {
    margin: 120px 0;
}
.map {
    width: 100%;
    height: 400px;
    background-color: var(--gray-4);
}

/*VN*/

.photo-text-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px 46px;
    margin: 40px 0 0;
}

.photo-text__img img {
    width: 100%;
    border-radius: 10px;
}
.photo-text-item__title {
    margin: 20px 0 6px;
    font-family: Oswald;
    font-size: 24px;
    font-weight: 600;
}
.photo-text-item__post {
    margin: 6px 0 20px;
    color: var(--orange-1);
}
.photo-text-item__des {
    margin: 20px 0 0;
}

.margin-vn {
    margin: 75px 0 150px;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 120px 20px;
    margin: 0 0 100px;
}
.news-item {
    text-decoration: none;
}
.news-item__img {
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
.news-item__img img {
    width: 100%;
    border-radius: 20px;
    transition: all 0.3s;
}
.news-item:hover img {
    transform: scale(1.1);
}
.news-item__date {
    color: #A3AAB6;
    margin: 20px 20px 14px;
    font-size: 16px;
}
.news-item__title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
    color: #000;
}


.contacts-header {
    display: flex;
    gap: 120px;
}
.contacts-header-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contacts-box {
    display: flex;
    align-items: center;
    gap: 40px;
}

.document-item {
    display: flex;
    gap: 16px;
}
.document-item_ico {
    width: 46px;
    flex-shrink: 0;
}
.document-item span {
    display: block;
    color: #999;
}

.docs-box,
.document {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 13px 30px;
    margin: 50px 0 0;
}
.document-column {
    flex-direction: column;
    align-items: flex-start;
}
.docs-item {
    width: 162px;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}
.docs-item__img img {
    display: block;
    margin: 0 auto;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.docs-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.docs-item-row img {
    width: 34px;
}
.docs-item-row a {
    text-decoration: none;
}



.cont-vn {
    padding: 20px 0 100px 0;
}
.cont-vn .h1 {
    margin: 49px 0;
}


.b-krohki { display: flex; justify-content: flex-start; align-items: center;}

.hlebn-krohki { color:var(--main-1); font-size: 14px;}
.hlebn-krohki a {color:#042a35}
.hlebn-krohki ul { list-style:none; padding:0; margin:0; display: flex; flex-wrap: wrap; align-items: center; }
.hlebn-krohki li { display:inline-block}
.hlebn-krohki-dev { padding:0 10px}




.gallery {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin: 30px 0;
}
.gallery-item {
    border-radius: 5px;
    overflow: hidden;
}
.gallery-item img {
    border-radius: 5px;
    transition: all 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.1);
}



.contact-box {
    display: flex;
    align-items: center;
    gap: 90px;
}
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 30%;
    flex-shrink: 0;
}
.contact-item {

}
.map {
    width: 66%;
    height: 600px;
    overflow: hidden;
    background-color: var(--gray-1);
    border-radius: 10px;
}
.box-icon {
    display: flex;
    gap: 37px;
}
.box-icon .icon {
    margin: 8px 0 0 0;
}
.box-icon__label {
    font-weight: 600;
    margin: 0 0 10px;
}
.box-icon__des {
    font-size: 25px;
    font-weight: 700;
}
.box-icon__des-i {
    font-size: 13px;
    font-style: italic;
    margin: 6px 0 0 0;
}
.icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.icon-item .icon {
    flex-shrink: 0;
}
.icon-item a {
    text-decoration: none;
    color: inherit;
}


.b-doc { margin: 60px 0 50px 0;}
.b-doc-item-w100 { width: 46%; margin: 0 4% 0 0; }
.b-doc-item-w100:nth-child(2n){ margin: 0;}
.b-doc-item-w100 p { font-weight: bold;}
.b-doc-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.b-doc-item a {
    text-decoration: none;
}
.b-doc-item__title { font-size: 18px; font-weight: 700; }
.b-doc-item-row { display: flex; align-items: center; gap:10px; font-size: 16px; }
.b-doc-item img { width:34px;}



footer {
    background-color: #052D37;
    color: #F9FAFB;
    position: relative;
    z-index: 3;
}
footer a {
    text-decoration: none;
    color: #7E8A96;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0;
}
.footer-logo-text {

}
.f-soc {
    display: flex;
    gap: 10px;
    margin: 83px 0 27px;
}
.f-soc .icon {
    border: 1px solid #7E8A96;
}
.f-soc .icon:before {
    background-color: #7E8A96;
}
.f-soc .icon:hover {
    background-color: #fff;
    border: #fff solid 1px;
}

.footer-item__title {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
}

.footer-item-info {
    width: 43%;

}
.footer-item-contacts,
.footer-item-contacts a {
    color: #F9FAFB;
}
.footer-item-contacts a:hover {
    color: var(--footer-1);
}
.footer-item-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
    font-weight: 600;
}
.footer-item-contacts .icon {
    border:var(--footer-1) solid 1px;
}
.f-phone {
    font-size: 25px;
    white-space: nowrap;
}

.footer-item-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-item-icon span {
    white-space: nowrap;
}
.footer-item-info__des {
    color:var(--footer-1);
    font-size: 16px;
}
.footer-item-info__des a {
    display: block;
}
.footer-item-info__des a:hover {
    color:var(--footer-1);
}
.footer-item-time {
    width: 260px;
}
.footer-item-time_des {
    margin: 60px 0 0;
}
.footer-podval {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 14px;
    border-top: var(--footer-1) solid 1px;
    padding: 5px 0 12px;
    color:var(--footer-1);
}
.footer-podval a {
    color:var(--footer-1);
}
.copy {
    color:#7E8A96;
    font-size: 14px;
    width: 100%;
    margin: 46px 0 0;
}

.footer-callback input:-moz-placeholder { color:#AABDE4;}
.footer-callback textarea:-moz-placeholder { color:#AABDE4;}
.footer-callback input::-webkit-input-placeholder { color:#AABDE4;}
.footer-callback textarea::-webkit-input-placeholder { color:#AABDE4;}

.footer-bottom {
    padding: 18px 0;
    font-size: 14px;
    border-top: 1px solid rgb(125, 137, 159);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7D899F;
}


.footer-item-created {

}
.footer-item-created a {
    color: #7D899F;
}
.footer-item-created a:hover {
    color: #fff;
}




.nc-demo-modal-wrapper {
    display: none;
}
.box-pages {font-size:18px; padding:40px 0 30px 0}
.pagest { display:inline-block;vertical-align: middle;padding:0 30px 0 0}
.box-pages a { color:#333; padding:6px 15px;display:inline-block; font-weight:bold; margin:3px; border-radius:4px; -moz-border-radius:4px; background:var(--gray-4); text-decoration:none; transition: all 0.3s}
.box-pages a:hover { background:var(--gray-5);}
.box-pages span {color:var(--main-1); padding:5px 14px;display:inline-block; font-weight:bold; margin:0 3px; border:var(--main-1) solid 1px; border-radius:4px; -moz-border-radius:4px}

.caution { padding:6px 20px; background:url(../images/danger-sing.svg) no-repeat 20px 16px; color:#2a6093; border:#2a6093 solid 2px; border-radius:10px;box-shadow: 0 15px 30px -10px rgba(90, 161, 227, 0.15); background-size:22px; text-indent:38px}
.caution-red { padding:0 50px; color:var(--red-1); border:var(--red-1) solid 2px; border-radius:5px; font-weight: 600;
    margin: 50px 0; }
#fade { /*--Transparent background layer--*/
    display: none; /*--hidden by default--*/
    background: #000;
    position: fixed; left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: .5;
    z-index: 7;
}
.popup_block a { color:#333 }
.popup_block {
    display: none;
    background: #ffffff;
    color:#333333;
    padding: 30px;
    float: left;
    font-size: 1.2em;
    position: fixed;
    font-size:12px; text-align:left;
    top: 50%; left: 50%;
    z-index: 8;
    -webkit-box-shadow: 0px 0px 5px #252424;
    -moz-box-shadow: 0px 0px 5px #252424;
    box-shadow: 0px 0px 5px #252424;

}
img.btn_close {
    float: right;
    margin: -7px -10px 0 0;
}

*html #fade {
    position: absolute;
}
*html .popup_block {
    position: absolute;
}

.modal {
    display: none;
}
.modal-callback {
    max-width: 450px !important;
}
.modal-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--main-1);
    text-transform: uppercase;
    text-align: center;
}
.modal-text {
    margin: 13px 0 38px;
    text-align: center;
}
.modal-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.modal .btn-big {
    margin: 40px auto 0;
    box-shadow: 7px 7px 20px 0px rgba(7, 60, 124, 0.2);

}
.policy {
    font-size: 14px;
    font-weight: 600;
}
.fancybox-slide--html .fancybox-close-small {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    border: 3px solid rgb(113, 99, 214);
    top: -34px !important;
    right: -16px !important;
    background: #fff !important;
    opacity: 1 !important;
    transition: all 0.3s;
}
.fancybox-button svg path {
    fill: var(--main-1) !important;
    width: 25px !important;
    height: 25px !important;
    transition: all 0.3s;
}
.fancybox-slide--html .fancybox-close-small:hover {
    background: var(--main-1) !important;
}
.fancybox-button:hover svg path {
    fill: #fff !important;
}
.fancybox-content {
    overflow: visible !important;
}
.topcontrol { width:60px; height:60px; position: fixed; z-index: 99; bottom: 50px; right: 50px; cursor: pointer; opacity: 0.5;filter:alpha(opacity=50);border-radius:50%; webkit-border-radius:50%; moz-border-radius:50%;}
.topcontrol:hover {opacity: 1;filter:alpha(opacity=100);}

.b-cookie {
    display: none;
    filter: drop-shadow(0 0 27px rgba(0,0,0,.12));
    left: 50%;
    padding: 12px 24px;
    position: fixed;
    transform: translate3d(-50%,-24px,0);
    width: 640px; bottom:10px; background:#fff; border:#eaeaea solid 1px;border-radius: 12px; z-index: 55;}
.main-cu { font-family: Arial, Helvetica, sans-serif; display:flex; justify-content: center; align-items:center;}
.b-cookie-text { margin:0 70px 0 0; font-size:14px}
.b-cookie-text a { color:var(--main-1); text-decoration: underline; }
.b-cookie-but button {
    border-radius: 5px;
    padding: 12px 30px;
    margin: 0;
}

.warn {
    color: #ff0000;
    font-weight: 600;
    font-size: 14px;
    margin: 20px 0;
}

@-moz-keyframes strtop {0%{top:0px}50%{ top:-3px}100%{ top:0px}}
@-webkit-keyframes strtop {0%{ top:0px}50%{top:-3px}100%{ top:0px}}
@-ms-keyframes strtop {0%{ top:0px}50%{top:-3px}100%{ top:0px}}
@-o-keyframes strtop {0%{ top:0px}50%{top:-3px}100%{ top:0px}}
.tbor {border-spacing: 0; border-left:#E1E1E1 solid 1px; border-top:#E1E1E1 solid 1px;}
.tbor th { border-bottom:#E1E1E1 solid 1px;  border-right:#E1E1E1 solid 1px; padding: 10px; background-color: #F6F6F6}
.tbor td { border-bottom:#E1E1E1 solid 1px;  border-right:#E1E1E1 solid 1px; padding: 10px; }

.table2 {
    width: 100%; border-spacing: 0;
}
.table2 td {
    border-bottom:#CED1E2 solid 1px;
    padding: 14px 0;
    text-align: center;
}
.table2 td:first-child {
    text-align: left;
}
.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s}
@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInUp{0%{opacity:0;-moz-transform:translateY(20px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInUp{0%{opacity:0;-o-transform:translateY(20px)}100%{opacity:1;-o-transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;-moz-animation-name:fadeInUp;-o-animation-name:fadeInUp;animation-name:fadeInUp}
@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes fadeInDown{0%{opacity:0;-moz-transform:translateY(-20px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes fadeInDown{0%{opacity:0;-o-transform:translateY(-20px)}100%{opacity:1;-o-transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;-moz-animation-name:fadeInDown;-o-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInLeft{0%{opacity:0;-moz-transform:translateX(-20px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInLeft{0%{opacity:0;-o-transform:translateX(-20px)}100%{opacity:1;-o-transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;-moz-animation-name:fadeInLeft;-o-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes fadeInRight{0%{opacity:0;-moz-transform:translateX(20px)}100%{opacity:1;-moz-transform:translateX(0)}}@-o-keyframes fadeInRight{0%{opacity:0;-o-transform:translateX(20px)}100%{opacity:1;-o-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;-moz-animation-name:fadeInRight;-o-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes flipInX {0%{-webkit-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}40%{-webkit-transform: perspective(400px) rotateX(-10deg);transform: perspective(400px) rotateX(-10deg);}70%{-webkit-transform: perspective(400px) rotateX(10deg);transform: perspective(400px) rotateX(10deg);}100%{-webkit-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}} @keyframes flipInX{0%{-webkit-transform: perspective(400px) rotateX(90deg);-ms-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}40%{-webkit-transform: perspective(400px) rotateX(-10deg);-ms-transform: perspective(400px) rotateX(-10deg); transform: perspective(400px) rotateX(-10deg);}70%{ -webkit-transform: perspective(400px) rotateX(10deg);-ms-transform: perspective(400px) rotateX(10deg);transform: perspective(400px) rotateX(10deg);}100%{    -webkit-transform: perspective(400px) rotateX(0deg);-ms-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}}.flipInX{-webkit-backface-visibility: visible !important; -ms-backface-visibility: visible !important; backface-visibility: visible !important; -webkit-animation-name: flipInX; animation-name: flipInX;} @-webkit-keyframes flipOutX {0% {    -webkit-transform: perspective(400px) rotateX(0deg); transform: perspective(400px) rotateX(0deg); opacity: 1;} 100% { -webkit-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0;}} @keyframes flipOutX { 0% { -webkit-transform: perspective(400px) rotateX(0deg); -ms-transform: perspective(400px) rotateX(0deg); transform: perspective(400px) rotateX(0deg); opacity: 1; } 100% { -webkit-transform: perspective(400px) rotateX(90deg); -ms-transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg); opacity: 0;}} .flipOutX { -webkit-animation-name: flipOutX; animation-name: flipOutX;-webkit-backface-visibility: visible !important;-ms-backface-visibility: visible !important; backface-visibility: visible !important;}

@media only screen and (max-width: 1650px){
    .main-html header {
        background-position: 400px -18px;
    }
    .layer1 {
        right: 9%;
        width: 44%;
    }
}
@media only screen and (max-width: 1600px){
    body {
        font-size: 1.1vw;
    }

    .header-phone {
        font-size: 1.7vw;
    }

    .h2 {
        font-size: 3vw;
    }
    h3, .h3 {
        font-size: 1.9vw;
    }
    h1, .h1 {
        font-size: 4vw;
    }
    .main-banners-item:nth-child(1) {
        font-size: 4.3vw;
    }
    .main-banners-item:nth-child(1) span {
        font-size: 7.7vw;
    }
    .block-title span {
        font-size: 6vw;
    }
    .block-title {
        font-size: 2.8vw;
    }
    .f-phone {
        font-size: 1.8vw;
    }
}
@media only screen and (max-width: 1520px){
    .news-grid {
        gap: 100px 20px;
    }
    .logo-box {
        width: 192px;
    }
    .layer1 {
        right: 0;
    }
}
@media only screen and (max-width: 1400px){
    .icon.icon-vk:before {
        height: 13px;
        width: 22px;
    }
    .icon.icon-telegram:before {
        height: 16px;
        width: 19px;
    }

    /**/

}
@media only screen and (max-width: 1360px){

    .main-menu ul.header-menu > li {
        padding: 0;
    }
}
@media only screen and (max-width: 1300px){
    .photo-text__img {
        max-width: 40%;
    }
    .project-left {
        max-width: 50%;
    }
    .news-grid {
        gap: 80px 20px;
    }
    .news-grid {
        grid-template-columns: repeat(3,1fr);
    }

    /**/

    .main-about-left {
        width: 320px;
    }
    header .main-menu ul {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1250px){
    body {
        font-size: 16px;
    }
    /**/

}
@media only screen and (max-width: 1200px){

    .main-margin {
        margin: 60px 0;
    }
    .news-item__date {
        font-size: 14px;
        margin: 16px 0 10px;
    }
    .news-item__title {
        padding: 0;
        font-size: 16px;
    }
    .footer-item-menu {
        margin: 0;
    }
    .footer-row {
        gap: 60px;
    }

    .f-phone {
        font-size: 16px;
    }

    /**/

    .main-html header {
        height: 600px;
    }
}
@media only screen and (max-width: 1150px){
    body {
        font-size: 15px;
    }
    .b-tabs2 .el-tabs {
        padding: 10px 20px;
    }

    .b-tabs4 .el-tabs {
        padding: 20px 30px;
    }
    /**/

    header .main-menu ul {
        font-size: 14px;
    }
    .header-phone-info {
        gap:6px;
    }
    .main-about-left {
        width: 260px;
    }
    .block-title {
        min-height: 225px;
        font-size: 2.4vw;
    }
    .block-title span {
        font-size: 5.2vw;
    }
}
@media only screen and (max-width: 1100px){
    .b-tabs2 .el-tabs {
        font-size: 16px;
    }
    /**/

    .trener-box {
        grid-template-columns: repeat(3,1fr);
    }
    .trener-full__title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 1050px){
    .logo {
        flex-shrink: 0;
    }
}
@media only screen and (max-width: 992px){
    body,
    input, textarea {
        font-size: 14px;
    }

    .for-mobile {
        display: block;
    }
    .for-desctop {
        display: none;
    }
    .contact-box {
        flex-direction: column;
        gap: 30px;
    }
    .map {
        width: 100%;
    }
    .contact-left {
        width: 100%;
    }

    .cont-vn {
        text-align: justify;
    }

    .nc-navbar.nc--fixed {
        display: none;
    }
    .but-submenu {
        width: 20px;
        height: 20px;
    }
    .main-menu .main {
        padding: 0;
    }
    .main-menu {
        /*background-color: var(--gray-2);*/
        background-color: #fff;
        transition: all 0.3s;
        position: fixed;
        top: 0;
        left: -120%;
        width: 100%;
        max-width: 330px !important;
        min-height: 100vh;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        z-index: 40;
        color: #000;
        padding: 100px 0 0 0;
        overflow: hidden;
        overflow-y: auto;
        margin: 0;
    }
    .main-menu ul.header-menu {
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-transform: uppercase;
        gap: 0;
        transition: all 0.3s;
    }
    .main-menu ul.header-menu a {
        text-decoration: none;
    }
    .main-menu ul.header-menu li > a {
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
    }
    .main-menu ul.header-menu > li {
        width: 100%;
        border-bottom: #f2f2f2 solid 1px;
    }
    .close-menu {
        display: block;
    }
    .but-submenu {
        display: flex;
    }
    .but-submenu:before {
        mask-image: var(--down);
        -webkit-mask-image: var(--down);
        transform: rotate(-90deg);
        width: 12px;
        height: 7px;
        background-color: var(--gray-3);
        margin: 0;
    }


    .main-menu ul.dropdown {
        display: none;
        width: 300px;
        position: absolute;
        left: 0;
        top: auto;
        background-color: #fff;
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
        transition: all 0.3s;
        font-family: var(--font1),Arial,sans-serif;
        font-size: 14px;
        text-transform: initial;
    }
    .main-menu ul.dropdown li {
        border-bottom: #f0f0f0 solid 1px;
    }
    .main-menu ul.dropdown li:last-child {
        border-bottom: none;
    }
    .main-menu ul.dropdown a {
        color: #000 !important;
        text-decoration: none;
        white-space: normal;
        display: block !important;
        padding: 14px 30px !important;
    }
    .main-menu ul.dropdown a:hover {
        color: var(--link);
    }

    .main-menu li.expanded {
        position: initial;
    }
    .main-menu li.expanded > ul.dropdown {
        top: 0;
        left: 100%;
        display: block;
        width: 100%;
        transition: all 0.3s;
        box-shadow: none;
        padding: 0 0 30px 0;
    }
    .menu-prev {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 30px;
        cursor: pointer;
    }
    .menu-prev:before {
        mask-image: var(--down);
        -webkit-mask-image: var(--down);
        width: 11px;
        height: 7px;
        background-color: var(--gray-3);
        transform: rotate(90deg);
    }
    .menu-wrap {
        overflow: hidden;
        width: 100%;
        position: absolute;
    }
    .main-menu ul li:hover ul {
        display: none;
    }
    .menu-but,.menu-but-w {
        display: flex;
    }
    .menu-wrap .but-submenu {
        display: flex;
    }
    .main-review .owl-theme .owl-nav {
        top: -78px;
    }
    .text-border-box ul {
        column-count: 2;
    }
    .main-menu ul.header-menu > li {
        position: initial;
    }
    .main-menu ul.header-menu > li:hover > a:hover,
    .main-menu ul.header-menu > li:hover > a {
        background-color: #fff;
    }
    .main-menu ul.header-menu > li:hover::after {
        content: none;
    }
    .main-menu ul.dropdown li:hover {
        background-color: transparent;
        color: #000;
    }
    /**/
    .main-menu ul.header-menu > li:hover > a > .but-submenu:before {
        transform: rotate(-90deg);
        margin: 0;
    }
    .main-menu ul.header-menu > li:hover > a > .but-submenu {
        background-color: #EEEEEE;
    }
    .main-menu ul.header-menu a {
        white-space: initial;
    }
    .main-menu ul.header-menu > li > a {
        height: auto;
    }
    .box-icon {
        gap: 26px;
    }
    /**/

    /*h1, .h1 {
        font-size: 45px;
    }
    h2, .h2 {
        font-size: 30px;
    }*/
    h1:not(.text-center), .h1:not(.text-center), h2:not(.text-center), .h2:not(.text-center) {
        text-align: left;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    /**/
    .main-menu .main {
        display: block;
    }
    .form-search {
        position: absolute;
        left: 13px;
        top: 60px;
        background: #f3f3f3;
        gap: 6px;
        padding: 0 4px 0 0;
        width: calc(100% - 26px);
    }
    .form-search button {
        background: #f3f3f3;
    }
    .close-form {
        display: none;
    }
    .form-search .icon:before {
        background-color: var(--gray-3);
    }
    .main-banners-item:nth-child(1) span {
        font-size: 7.4vw;
        line-height: 85px;
    }
    /*.main-about-box {
        margin: -90px 0 0;
        padding: 120px 0 60px;
    }*/
    .main-trener-item__des,
    .footer-item-info__des {
        font-size: 14px;
    }
    .main-trener-item__title,
    .row-trener-item__title {
        font-size: 20px;
    }
    .main-about {
        gap: 50px;
    }
    .block-title-box {
        margin: 30px 0 0;
    }
    .footer-item__title {
        font-size: 18px;
    }
    .footer-row {
        gap: 40px;
    }
    .f-soc {
        margin: 40px 0 27px;
    }
    .photo-text-item__title,
    .main-trener-item__title,
    .main-trener-item__doljnost,
    .main-trener-item__des,
    .row-trener-item__title {
        text-align: left;
    }
    .scene {
        top:0;
    }
    .header-fon-logo__title {
        font-size: 50px;
    }
    .header-fon-logo__title span {
        font-size: 87px;
        line-height: 74px;
    }
    .main-html header {
        height: 543px;
        background-position: 284px 20px;
    }
    .trener-full__img {
        width: 50%;
    }
    .box-icon__des {
        font-size: 20px;
    }
    .content-menu-left {
        display: none;
    }
    .content-menu-box {
        display: block;
    }
    .content-menu-right h1 {
        font-size: 4vw;
    }
    .b-krohki {
        text-align: left;
    }
}
@media only screen and (max-width: 900px){
    .topcontrol {
        right: 30px;
        bottom: 30px;
    }
    /**/
    .header-phone {
        font-size: 16px;
    }
    .main-about-left {
        width: 210px;
    }
    .block-title {
        min-height: 185px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    .main-banners-item:nth-child(1) {
        font-size: 3.6vw;
    }
    .main-banners-item:nth-child(1) span {
        font-size: 6.2vw;
        line-height: 57px;
    }
    .photo-text-box {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 800px){
    .footer-row {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo,
    .footer-copy,
    .footer-created {
        text-align: center;
    }

    .footer-item-info,
    .f-soc {
        justify-content: center;
    }
    .footer-item__title,
    .copy {
        text-align: center;
    }

    /**/
    footer {
        text-align: center;
    }
    .footer-item-info__text {
        font-size: 18px;
    }
    .footer-item-info {
        width: 100%;
    }
    .footer-item-contacts {
        text-align: left;
    }
    .f-soc {
        position: absolute;
        bottom: 183px;
        left: 50%;
        transform: translateX(-50%);
        margin:0;
    }
    .footer-item-info__des {
        position: absolute;
        bottom: 93px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-item-time_des {
        margin: 20px 0 0;
    }
    .footer-row {
        padding: 60px 0 200px;
    }
    .footer-podval {
        flex-direction: column;
        align-items: center;
        gap: 5px
    }
    .footer-podval {
        padding: 12px 0;
    }
    .header-fon-logo__title {
        font-size: 40px;
    }
    .header-fon-logo__title span {
        font-size: 70px;
        line-height: 56px;
    }
    .header-fon-logo-box-item {
        width: 70px;
    }
    .header-fon-logo-box {
        margin: 45px 0 0;
    }
    .main-html header {
        height: 467px;
        background-position: 261px 39px;
    }
    .layer1 {
        width: 340px;
    }
    .trener-box {
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 750px){
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .b-cookie {
        width: 96%;
        box-sizing: border-box;
    }
    textarea {
        min-height: 100px;
    }
    /**/


}
@media only screen and (max-width: 700px){
    h1, .h1, .content-menu-right h1 {
        font-size: 45px;
    }
    h2, .h2 {
        font-size: 30px;
    }

    /**/

    .main-trener {
        flex-direction: column;
    }
    .slider3-btns {
        display: none;
    }

    .main-trener-left,
    .main-about-left {
        width: 100%;
    }
    .main-trener-right {
        width: 100%;
        padding: 20px 0 0;
    }
    .main-about {
        flex-direction: column;
        gap: 10px;
    }
    .block-title-box {
        display: none;
    }
    .main-about-right {
        width: 100%;
    }
    .main-about-right {
        text-align: justify;
    }
    .main-banners-item:nth-child(3) {
        display: none;
    }
    .main-banners {
        display: flex;
        flex-direction: column;
    }
    .main-banners-item:nth-child(1) {
        font-size: 50px;
        padding: 0 0 25px;
    }
    .main-banners-item:nth-child(1) span {
        display: block;
        font-size: 78px;
    }
    .main-html header {
        height: 467px;
        background-position: 210px 70px;
    }
    .header-fon-logo {
        margin: 40px 0 0;
    }
}
@media only screen and (max-width: 670px){

    .header-info {
        flex-direction: column;
        gap: 10px;
    }
    .trener-full {
        flex-direction: column;
    }
    .trener-full__img {
        width: 100%;
    }
}
@media only screen and (max-width: 600px){
    .caution-red {
        padding: 0 20px;
    }

    .topcontrol {
        right: 30px;
        bottom: 30px;
    }
    .main {
        padding: 0 20px;
    }
    .cont-vn {
        padding: 0 0 40px 0;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /**/

    .header-fon-logo__title {
        font-size: 30px;
    }
    .header-fon-logo__title span {
        font-size: 51px;
        line-height: 56px;
    }
    .layer1 {
        width: 320px;
        right: -44px;
    }
    .header-fon-logo-box {
        margin: 35px 0 0;
    }
    .main-html header {
        height: 440px;
        background-position: 210px 70px;
    }
    .row-trener-item {
        gap: 20px;
    }
    .row-trener-item__img {
        width: 120px;
    }
}

@media only screen and (max-width: 550px){
    .photo-text-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media only screen and (max-width: 500px){
    /*h1, .h1 {
        font-size: 18px;
    }
    h2, .h2 {
        font-size: 16px;
    }*/
    .map,.map-full {
        height: 350px;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .docs-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;

    }
    .docs-item {
        width: auto;
        align-self: center;
        font-size: inherit;
    }

    /**/
    .header {
        flex-direction: column;
        gap: 10px;
    }
    .header-phone {
        font-size: 25px;
    }
    .header-phone-info {
        gap: 0px;
    }
    .header-info {
        gap:20px;
    }
    .menu-but {
        position: absolute;
        top: 0;
        right: -20px;
        width: 50px;
        height: 50px;
        background-color: var(--main-1);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-ico span, .menu-ico span:after, .menu-ico span:before {
        background-color: #fff;
    }
    .header-phone {
        gap: 20px;
    }
    .header-fon-logo-box {
        display: none;
    }
    .header-fon-logo {
        margin: 20px 0 0;
    }
    .main-html header {
        height: 565px;
        background-position: -88px 186px;
        background-size: cover;
    }
    .trener-box {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 430px){
    .layer1 {
        width: 280px;
    }
}
@media only screen and (max-width: 400px){
    .b-krohki {
        margin: 20px 0;
    }
    .b-cookie-text {
        margin: 0;
        text-align: center;
    }
    .main-cu {
        flex-direction: column;
        gap: 20px;
    }
    /**/

    .header-info .header-phone a:last-child {
        display: none;
    }
    .b-tabs4 {
        border-bottom: none;
        gap: 12px;
        justify-content: center;
    }
    .b-tabs4 .el-tabs:first-child {
        border-radius: 50px;
    }
    .b-tabs4 .el-tabs {
        min-width: 180px;
        font-size: 16px;
        text-align: center;
        padding: 10px 20px;
        border: #7E8A96 solid 1px;
        position: relative;
        cursor: pointer;
        border-radius: 50px;
        display: inline-block;
        color: #7E8A96;
        transition: all 0.3s;
        min-width: initial;
    }
    .b-tabs4 .el-tabs-active{
        border: var(--main-1) solid 1px;
        background-color: var(--main-1);
        cursor: default;
        color: #fff;
        font-weight: 600;
    }
    .b-tabs4 .el-tabs:last-child {
        border-radius: 50px;
    }
    .box-icon {
        gap: 16px;
    }

    /**/

    .main-banners-item:nth-child(1) {
        font-size: 31px;
    }
    .main-banners-item:nth-child(1) span {
        font-size: 54px;
    }
    .footer-item-info__des {
        width: 94%;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h1, .h1, .content-menu-right h1 {
        font-size: 30px;
    }
    .box-icon__des {
        font-size: 16px;
    }

}
@media only screen and (max-width: 370px){
    /**/

}
@media only screen and (max-width: 350px){
    .footer-item-info__text {
        font-size: 16px;
    }
    .row-trener-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        margin: 60px 0;
    }
    .row-trener-item__title {
        text-align: center;
    }
}
@media only screen and (max-width: 330px){

}
.menu-active {
    left: 0 !important;
}