@font-face {
    font-family: bebasneuelight;
    src: url(../fonts/bebasneuelight.woff2);
}

@font-face {
    font-family: bebasneueregular;
    src: url(../fonts/bebasneueregular.woff2);
}

@font-face {
    font-family: mont_extralightdemo;
    src: url(../fonts/mont_extralightdemo.woff2);
}

@font-face {
    font-family: bebasneuebook;
    src: url(../fonts/bebasneuebook.woff2);
}




:root {
    --main-bg: #000000;
    --main-color: #FFFFFF;
    --second-color: #f3f3f3;
    --hover-color: #EB5E28;
    --light: bebasneuelight, sans-serif;
    --regular: bebasneueregular, sans-serif;
    --mini-regular: bebasneuebook, sans-serif;
    --second-font: Arial, Helvetica, sans-serif;

}

html {
    scroll-behavior: smooth;
}

* {
    color: var(--main-color);
    font-size: 16px;
    line-height: 140%;
    font-family: var(--regular);
    user-select: none;
}

*::selection {
    background: #c2c2c253;
    /* Safari */
}

*::-moz-selection {
    background: #c2c2c253;
    /* Firefox */
}

::-webkit-scrollbar {
    background: #6c6b6b38;
    width: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

body {
    background: var(--main-bg);
}

body._lock {
    overflow: hidden;
}

a,
button,
.burger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.main_light {
    background: var(--card-bg);
}

.container {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1450px;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 4;
}

.header._active{
    background: var(--main-bg);
    z-index: 4;
}
.header__top-content{
    padding-block: 15px;
    display: flex;
    justify-content: right;
}
.header-top__list {
    display: none;
}


.burger {
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__burger-body {
    width: 100%;
    height: 20px;
    position: relative;
}

.burger__line {
    width: 100%;
    height: 2.5px;
    position: absolute;
    background-color: var(--second-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

.burger__line--1 {
    top: 0;
    left: 0;
}

.burger__line--2,
.burger__line--3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.burger__line--4 {
    bottom: 0;
    width: 75%;
    right: 0;

}

.burger._active .burger__line--1,
.burger._active .burger__line--4 {
    opacity: 0;
}

.burger._active .burger__line--2 {
    height: 2px;
    transform: translateY(50%) rotate(45deg);
    -webkit-transform: translateY(50%) rotate(45deg);
    -moz-transform: translateY(50%) rotate(45deg);
    -ms-transform: translateY(50%) rotate(45deg);
    -o-transform: translateY(50%) rotate(45deg);
}

.burger._active .burger__line--3 {
    background: var(--second-color);
    height: 2px;
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
}

.header__menu {
    flex: 0 0 100%;
    padding: 0px;
    height: 0;
    visibility: hidden;
    top: -10%;
    opacity: 0;
}

.header__menu._active {
    padding: 40px 0 70px;
    visibility: visible;
    height: auto;
    min-height: 100dvh;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0%;
    opacity: 1;
    display: flex;
    flex-direction: column;
}

.header__list {
    flex: 1 1 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header__list-item {
    color: var(--card-bg);
    display: block;
    font-size: 30px;
    font-family: var(--regular);
}

.header__menu._active .header__list>li {
    opacity: 1;
}
.header__bottom-contact{
    display: flex;
    gap: 11px;
    justify-content: center;
}
.header__contact-link{
    font-size: 22px;
}
/* ============ */
.block {
    padding-block: 50px;
}

.hero {
    position: relative;
    background-image: url(../img/ilya/img_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero__body {
    position: relative;
    padding-block: 100px;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.hero__title>span {
    display: block;
}

.hero__title-name {
    color: var(--second-color);
    font-size: 65px;
    font-family: var(--light);
}

.hero__tilte-job {
    margin-top: -5px;
    font-size: 30px;
    font-family: var(--mini-regular);
}

.facts__tilte {
    font-size: 30px;
    font-family: var(--regular);
    margin-bottom: 30px;
}

.facts__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.facts__row {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

.facts__row-text {
    color: var(--second-color);
    font-size: 16px;
    font-family: var(--second-font);
    margin-bottom: 10px;
}

.facts__row-text:last-child {
    margin-bottom: 0;
}

.facts__row-text>span {
    color: var(--hover-color);
    font-family: var(--mini-regular);
}

.facts__row-box-img {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.facts__row-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about__columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__column-title {
    font-size: 30px;
    font-family: var(--regular);
    margin-bottom: 30px;
    line-height: 100%;
}

.about__column-text {
    font-size: 16px;
    font-family: var(--second-font);
    margin-bottom: 10px;
}

.about__column-text:last-child {
    margin-bottom: 0;
}

.about__column-box-img {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.about__column-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.video {
    padding-bottom: 50px;
}

.video__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video__card-title {
    font-size: 25px;
    font-family: var(--regular);
    margin-bottom: 15px;
    line-height: 100%;
}

.video__card-box-video {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.video__card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.box-play {
    position: absolute;
    width: 150px;
    height: 110px;
    background: #00000037;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play {
    width: 53px;
    height: 53px;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.events__title {
    font-size: 30px;
    font-family: var(--regular);
    margin-bottom: 30px;
    line-height: 100%;
}

.events__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.events__row {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

.events__row-title {
    font-size: 25px;
    font-family: var(--regular);
    margin-bottom: 15px;
    line-height: 100%;
}

.events__row-box-text {
    margin-bottom: 15px;
}

.events__row-text {
    font-size: 16px;
    font-family: var(--second-font);
    margin-bottom: 10px;
}

.events__row-text:last-child {
    margin-bottom: 0;
}
.events__row-box-btn{
    display: inline-block;
}
.events__row-btn {
    color: var(--main-color);
    background: transparent;
    font-family: var(--second-font);
    padding-bottom: 5px;
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.events__row-btn-line{
    height: 1px;
    width: 100%;
    background: var(--main-color);
    transition: 0.4s ease-out;
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
}

.events__row-box-img {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.events__row-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery {
    padding-bottom: 30px;
}

.gallery__title {
    font-size: 30px;
    font-family: var(--regular);
    margin-bottom: 30px;
    line-height: 100%;
}

.gallery__columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 5px;
    margin: 0 -10px;
    margin-bottom: 30px;
}

.gallery__column {
    width: calc(100%/2 - 10px);
    margin: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery__box-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.gallery_img_h {
    padding-top: 60%;
}

.gallery_img_v {
    padding-top: 120%;
}

.gallery__img {
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    padding-block: 20px;
}

.footer__list {
    display: flex;
    gap: 11px;
    justify-content: center;
}

.footer__list-link {
    font-size: 22px;
    position: relative;
    z-index: 12;
}
.soc {
    position: fixed;
    bottom: 30px;
    width: 100%;
    height: 40px;
    z-index: 5;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    pointer-events: none;
    opacity: 0;
}
.soc._on {
    opacity: 1;
    pointer-events: auto;
    
}
.soc__body{
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
}
.btn-to-top{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--main-color);
    background: var(--main-bg);
    border-radius: 50%;
    -webkit-border-radius: 50;
    -moz-border-radius: 50;
    -ms-border-radius: 50;
    -o-border-radius: 50;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.btn-to-top__img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;

}
/* FORM==================================== */
.form__wrapper {
    width: 100%;
    max-width: 600px;
    height: 100dvh;
    overflow: hidden;
    display: block;
    padding: 15px;
    margin: 0 auto;
    position: fixed;
    top: 0%;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.form {
    display: none;
}

.form._active {
    display: block;
}

.form__area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
}

.form__top {
    padding-top: 70px;
    user-select: none;
}

.form__title {
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--regular);
    color: var(--main-color);
    margin-bottom: 30px;
    text-align: center;
}


.form__inputs {
    margin-bottom: 30px;
}

.form__input {
    display: block;
    margin: auto auto;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    color: var(--main-color);
    background: transparent;
    font-family: var(--mini-regular);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: none;
    border-bottom: 1px solid #E0DCDC;
}

.form__input:last-child {
    margin-bottom: 0;
}

.form__wrapper .form__input:focus {
    outline: none;
}

.form__wrapper .fixed_form-btn:focus {
    outline: none;
}


.form_radio {
    width: 20px;
    height: 20px;
    margin-top: 5px;
}

.form__clouse {
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--second-color);
    font-size: 60px;
    font-family: var(--second-font);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.box-btn-form {
    text-align: center;
}

.fixed__form-btn {
    display: inline-block;
    padding: 11px 40px;
    background: var(--second-bg);
    color: var(--main-color);
    font-size: 16px;
    font-family: var(--medium);
    font-weight: 500;
    border-bottom: 1px solid var(--main-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.fslightbox-flex-centered>span,
.fslightbox-flex-centered>div {
    color: var(--card-bg);
}

.fslightbox-slide-btn {
    overflow: hidden;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 1px solid var(--main-color);
}
