@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	padding: 0px;
	margin: 0px;
    font-family: "Inter", sans-serif;
    background-color: #000000;
}
ul{
	padding: 0px;
	margin: 0px;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: unset;
	cursor: pointer;
}
h1, h2, h3, h4, h5{
	margin: 0px;
    font-weight: unset;
}
p{
    margin: 0px;
}
input, button, textarea, select{
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    font-family: "Inter", sans-serif;
}

.center{
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

/* Header */
header{
    width: 100%;
    float: left;
    padding: 0.5vw 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    transition: .3s;
}

header.fixed{
    background-color: rgb(0 0 0 / 5%);
    backdrop-filter: blur(20px);
    transition: .3s;
}

header .center{
    padding: 0 1.25vw;
}

.header__row{
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.header__item{
    width: fit-content;
    display: flex;
    align-content: center;
    align-items: center;
}

.header__item-logo img{
    width: 6.44vw;
    height: 3.25vw;
}

.header__item ul{
    display: flex;
    gap: 4.75vw;
}

.header__item ul > li:last-child{
    margin-left: 3.12vw;
}

.header__item ul > li > a{
    font-size: 0.94vw;
    color: #fff;
    font-weight: 600;
    line-height: normal;
    float: left;
    position: relative;
}

.header__item ul > li > a > span{
    color: rgba(255, 255, 255, 0.4);
}

.header__item ul > li:not(:last-child) > a::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0.06vw;
    left: 0;
    bottom: -0.53vw;
    background-color: #ffffff;
    transition: .2s;
}

.header__item ul > li:not(:last-child) > a:hover::before{
    width: 100%;
}

.header__item-contacts{
    font-size: 0.94vw;
    border: 0.062vw solid #fff;
    padding: 0.62vw 1.06vw;
    color: #fff;
    float: right;
    transition: .3s;
}

.header__item-contacts:hover{
    background-color: rgba(255, 255, 255, 0.13);
    transition: .3s;
}

.header__item-contacts:active{
    background-color: rgba(255, 255, 255, 0.34);
    transition: .3s;
}

.header__item-bar{
    display: none;
}

.header__item-lang{
    display: none;
}
/* Header */

/* Main */
.main{
    width: 100%;
    height: auto;
    float: left;
    padding: 36.15vw 4.55vw 9.51vw;
    position: relative;
    box-sizing: border-box;
}

.main::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 29.94vw;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
}

.main::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 29.94vw;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
    transform: rotate(0deg) scale(1, -1);
}

.main .center{
    position: relative;
    z-index: 3;
}

.main video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.main__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main__item:nth-child(1){
    width: 50%;
    height: auto;
}

.main__item:nth-child(2){
    width: 31.39vw;
    height: auto;
}

.main__item:nth-child(2).mega{
    width: 35.39vw;
}

.main__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 4.1vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.main__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.39vw;
    line-height: 118%;
    font-weight: 300;
}

.main__buttons{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    margin: 3.96vw 0 0 0;
    gap: 1.46vw;
}

.main__buttons a{
    width: fit-content;
    height: auto;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.25vw;
    font-weight: 600;
    text-transform: uppercase;
    border: 0.07vw solid #ffffff;
    padding: 1.04vw 1.11vw;
    min-width: 13.19vw;
    white-space: nowrap;
    box-sizing: border-box;
}

.main__buttons a:first-child:hover{
    background-color: rgba(255, 255, 255, 0.13);
    transition: .3s;
}

.main__buttons a:first-child:active{
    background-color: rgba(255, 255, 255, 0.34);
    transition: .3s;
}

.main__buttons a:last-child{
    background: #fff;
    color: #000;
}

.main__buttons a:last-child:hover{
    border: 0.07vw solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    transition: .3s;
}

.main__buttons a:last-child:active{
    border: 0.07vw solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    transition: .3s;
}
/* Main */

/* Specialize */
.specialize{
    width: 100%;
    height: auto;
    float: left;
    padding: 9.51vw 4.86vw 10.69vw;
    background-color: #ffffff;
    box-sizing: border-box;
}

.specialize__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.specialize__item{
    width: 45%;
    height: auto;
}

.specialize__item-subtitle{
    width: 100%;
    height: auto;
    float: left;
    color: #000000;
    text-align: left;
    font-size: 1.43vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.specialize__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #000000;
    text-align: left;
    font-size: 3.25vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 2.4vw 0 0 0;
}

.specialize__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000000;
    text-align: left;
    font-size: 1.39vw;
    line-height: 118%;
    font-weight: 300;
    margin: 2.4vw 0 0 0;
}

.specialize__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 2.92vw 0;
    border-bottom: 0.07vw solid #000000;
}

.specialize__box:first-child{
    padding: 0 0 2.92vw;
}

.specialize__box:last-child{
    border-bottom: unset;
    padding: 2.92vw 0 0;
}

.specialize__box p{
    width: 100%;
    height: auto;
    float: left;
    color: #000000;
    text-align: left;
    font-size: 2.1vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.specialize__box span{
    width: 100%;
    height: auto;
    float: left;
    color: #000000;
    text-align: left;
    font-size: 1.23vw;
    line-height: 118%;
    font-weight: 300;
    margin: 1.53vw 0 0 0;
}
/* Specialize */

/* Footer */
footer{
    width: 100%;
    float: left;
    position: relative;
}

footer::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 21.53vw;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

footer video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

footer .center{
    padding: 0 1.44vw;
    z-index: 3;
    position: relative;
}

.footer__start{
    padding: 14.9vw 0 14.6vw;
}

.footer__start-title{
    font-size: 3.9vw;
    line-height: 110%;
    padding-bottom: 7.1vw;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    background-image: url("../images/icon/footer-sign.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 25vw 7vw;
}

.footer__start__buttons{
    display: flex;
    justify-content: center;
    gap: 1.56vw;
    margin-top: 2.4vw;
}

.footer__start__buttons a{
    min-width: 14.3vw;
    font-size: 1.34vw;
    border: 0.062vw solid #fff;
    padding: 1.15vw 1.25vw;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.footer__start__buttons a:first-child:hover{
    background-color: rgba(255, 255, 255, 0.13);
    transition: .3s;
}

.footer__start__buttons a:first-child:active{
    background-color: rgba(255, 255, 255, 0.34);
    transition: .3s;
}

.footer__start__buttons a:last-child{
    background: #fff;
    color: #000;
}

.footer__start__buttons a:last-child:hover{
    border: 0.07vw solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    transition: .3s;
}

.footer__start__buttons a:last-child:active{
    border: 0.07vw solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    transition: .3s;
}

.footer__menu{
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.25vw;
    align-items: center;
}

.footer__menu__item ul{
    display: flex;
    gap: 4.75vw;
}

.footer__menu__item ul > li:last-child{
    margin-left: 3.12vw;
}

.footer__menu__item ul > li > a,
.footer__menu__item-contacts{
    font-size: 0.94vw;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.footer__menu__item ul > li > a > span{
    color: rgba(255, 255, 255, 0.4);
}

.footer__menu__item ul > li:not(:last-child) > a::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0.06vw;
    left: 0;
    bottom: -0.53vw;
    background-color: #ffffff;
    transition: .2s;
}

.footer__menu__item ul > li:not(:last-child) > a:hover::before{
    width: 100%;
}

.footer__menu__item-contacts{
    border: 0.062vw solid #fff;
    padding: 0.62vw 1.06vw;
}

.footer__menu__item-contacts:hover{
    background-color: rgba(255, 255, 255, 0.13);
    transition: .3s;
}

.footer__menu__item-contacts:active{
    background-color: rgba(255, 255, 255, 0.34);
    transition: .3s;
}

.footer__copyright{
    display: flex;
    justify-content: space-between;
    padding: 1.25vw 0 2.25vw;
    border-top: 0.062vw solid rgba(255,255,255,0.4);
}

.footer__copyright__item p,
.footer__copyright__item a{
    font-size: 0.94vw;
    color: rgba(255,255,255,0.6);
}
/* Footer */

/* Privacy */
.privacy{
    width: 100%;
    float: left;
    padding: 12vw 0 11.47vw;
}

.privacy__row{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.privacy__item{
    width: 100%;
    max-width: 38.47vw;
}

.privacy__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy__item-date{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.12vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.41vw 0 1.94vw 0;
}

.privacy__item-subject{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 0.88vw;
    line-height: 145%;
    font-weight: 700;
    margin: 1.47vw 0 0 0;
}

.privacy__item span{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 0.88vw;
    line-height: 145%;
    font-weight: 300;
    margin: 0.29vw 0 0 0;
}
/* Privacy */

/* Career Banner */
.careerbanner{
    width: 100%;
    height: auto;
    float: left;
    padding: 32.41vw 0 5.12vw;
    background-image: url('../images/bg/careerbanner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.careerbanner::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 29.94vw;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
}

.careerbanner::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 29.94vw;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
    transform: rotate(0deg) scale(1, -1);
}

.careerbanner .center{
    padding: 0 10% 0 4.41vw;
    z-index: 3;
    position: relative;
}

.careerbanner__row{
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
}

.careerbanner__item{
    width: 55%;
    max-width: 48.59vw;
    height: auto;
    float: right;
}

.careerbanner__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 4.24vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.careerbanner__item-description{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.4vw;
    line-height: 142%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.24vw 0 0 0;
}
/* Career Banner */

/* Joinus */
.joinus{
    width: 100%;
    height: auto;
    float: left;
    padding: 7.82vw 0 5.71vw;
}

.joinus .center{
    padding: 0 5% 0 4.41vw;
    box-sizing: border-box;
}

.joinus__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.joinus__item:nth-child(1){
    width: 30%;
    height: auto;
}

.joinus__item:nth-child(2){
    width: 55%;
    max-width: 48.59vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6.53vw 3.76vw;
}

.joinus__item-subject{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.21vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.joinus__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.76vw 0 0 0;
}

.joinus__box{
    width: calc(50% - 1.88vw);
    height: auto;
}

.joinus__box em{
    display: none;
}

.joinus__box span{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.11vw;
    line-height: 110%;
    font-weight: 400;
    text-transform: uppercase;
}

.joinus__box p{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 2vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 2.06vw 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.joinus__box img{
    width: 100%;
    height: 11.53vw;
    float: left;
    object-fit: cover;
    object-position: center;
    margin: 1.7vw 0 0 0;
}

.joinus__box a{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.06vw;
    font-weight: 600;
    padding: 0.88vw 1.29vw;
    box-sizing: border-box;
    margin: 1.7vw 0 0 0;
    border-bottom: 1px solid #ffffff;
    background-image: url("../images/icon/go-1.svg");
    background-repeat: no-repeat;
    background-size: 0.88vw;
    background-position: calc(100% - 1.29vw) center;
    transition: .2s;
}

.joinus__box a:hover{
    color: #000;
    background-image: url("../images/icon/go-2.svg");
    background-color: #fff;
    transition: .2s;
}

.joinus__box a:active{
    color: #fff;
    background-image: url("../images/icon/go-1.svg");
    background-color: #454545;
    border-color: #454545;
    transition: .2s;
}
/* Joinus */

/* Join Banner */
.joinbanner{
    width: 100%;
    height: auto;
    float: left;
    padding: 32.59vw 0 6vw;
    background-image: url('../images/bg/joinbanner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.joinbanner__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 12vw 0 4.41vw;
    box-sizing: border-box;
}

.joinbanner__item{
    width: 56%;
    max-width: 48.59vw;
    height: auto;
    float: right;
}

.joinbanner__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.53vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.joinbanner__item-description{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.18vw;
    line-height: 136%;
    font-weight: 400;
    margin: 2.47vw 0 0 0;
}
/* Join Banner */

/* Join */
.join{
    width: 100%;
    height: auto;
    float: left;
    padding: 3.71vw 0 8.41vw;
}

.join .center{
    padding: 0 10% 0 4.41vw;
    box-sizing: border-box;
}

.join__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.join__item:nth-child(1){
    width: 30%;
    height: auto;
}

.join__item:nth-child(2){
    width: 55%;
    max-width: 48.59vw;
    height: auto;
}

.join__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.join__item form{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 3.29vw;
}

.join__item form > label{
    width: 100%;
    float: left;
}

.join__item form > label > span{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.18vw;
    line-height: 136%;
    font-weight: 500;
    text-transform: uppercase;
}

.join__item form > label > input{
    width: 100%;
    float: left;
    color: rgba(255, 255, 255, 1);
    font-size: 1.18vw;
    line-height: 136%;
    font-weight: 500;
    padding: 0.59vw 0.59vw 1.18vw;
    margin: 0.76vw 0 0 0;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    border-bottom: 0.06vw solid #ffffff;
}

.join__item form > label > input::placeholder{
    color: rgba(255, 255, 255, 0.5);
}

.join__item-checkbox{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}

.join__item-checkbox span{
    width: 100%;
    float: left;
    color: #ffffff;
    font-size: 1vw;
    line-height: 136%;
    font-weight: 400;
    padding: 0 0 0 2.06vw;
    box-sizing: border-box;
}

.join__item-checkbox span::before{
    content: "";
    position: absolute;
    border-radius: 0.23vw;
    border: 0.06vw solid #b9b9b9;
    width: 1.06vw;
    height: 1.06vw;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.join__item-checkbox input{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    top: 0;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.join__item-checkbox input:checked + span::before{
    background-color: #b9b9b9;
    background-image: url("../images/icon/check-line.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.join__item-noth {
    width: 100%;
    float: left;
    color: #ffffff;
    font-size: 1vw;
    line-height: 136%;
    font-weight: 400;
    padding: 1vw;
    background-color: rgb(255 255 255 / 10%);
    margin: -1.5vw 0 0 0;
    display: none;
}

.join__item__buttons{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 1.47vw;
    margin: -1.41vw 0 0 0;
}

.join__item__buttons-file{
    position: relative;
    border: 0.06vw solid #ffffff;
    padding: 1.03vw 1.99vw;
    cursor: pointer;
    transition: .3s;
}

.join__item__buttons-file:hover{
    background-color: rgba(255, 255, 255, 0.13);
    transition: .3s;
}

.join__item__buttons-file:active{
    background-color: rgba(255, 255, 255, 0.34);
    transition: .3s;
}

.join__item__buttons-file input{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.join__item__buttons-file span{
    color: #ffffff;
    font-size: 1.06vw;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 0 1.94vw;
    background-image: url('../images/icon/file.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.35vw;
    position: relative;
}

.join__item__buttons-uploaded{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.join__item__buttons-uploaded p{
    width: fit-content;
    max-width: 8vw;
    color: #fff;
    font-size: 1vw;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 2vw;
    background-image: url('../images/icon/uploaded.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.53vw 1.2vw;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.join__item__buttons-uploaded div{
    width: 0.71vw;
    height: 0.71vw;
    background-image: url('../images/icon/delete.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 0 0 0.8vw;
}

.join__item__buttons button{
    color: #000000;
    font-size: 1.06vw;
    font-weight: 600;
    background-color: #ffffff;
    padding: 1.03vw 2.74vw;
    border: none;
    cursor: pointer;
}

.contactsmodal .join__item__buttons > button{
    padding: 1.03vw 5.71vw;
}

.join__item__buttons button:hover{
    background-color: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    transition: .3s;
}

.join__item__buttons button:active{
    background-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    transition: .3s;
}
/* Join */

/* Modal */
.modal,
.contactsmodal{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    display: none;
    justify-content: center;
    z-index: 5;
    padding: 5% 0;
    box-sizing: border-box;
    overflow-x: scroll;
    align-content: flex-start;
    align-items: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal::-webkit-scrollbar,
.contactsmodal::-webkit-scrollbar { 
    display: none;
}

.modal__row{
    width: calc(100% - 14.47vw);
    max-width: 85.47vw;
    background: #191919;
    border-radius: 1.53vw;
    padding: 5.47vw 4.47vw 4.35vw 4.47vw;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.contactsmodal .modal__row{
    max-width: 47.53vw;
}

.modal__item-close{
    width: 0.88vw;
    height: 0.88vw;
    border: none;
    background: url("../images/icon/close.svg") center / cover no-repeat;
    cursor: pointer;
    position: absolute;
    right: 1.94vw;
    top: 1.82vw;
}

.modal__item:nth-child(1){
    width: calc(45% - 5.59vw);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.modal__item:nth-child(2){
    width: 55%;
    max-width: 48.59vw;
}

.contactsmodal .modal__item{
    width: 100% !important;
}

.modal__box-title,
.modal__box-tit{
    font-size: 2.1vw;
    line-height: 110%;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.modal__box-tit{
    margin: 0 0 1.76vw;
}

.modal__box-subject{
    font-size: 1.05vw;
    margin: 0.82vw 0 0 0;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.modal__box-subtitle{
    font-size: 1.29vw;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 2vw 0 0 0;
}

.modal__box-detail{
    font-size: 0.84vw;
    line-height: 136%;
    font-weight: 300;
    margin: 1.53vw 0 0 0;
    color: #fff;
}

.modal__item form{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 3.29vw;
}

.modal__item form > label{
    width: 100%;
    float: left;
}

.modal__item form > label > span{
    font-size: 1.18vw;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.modal__item form > label > input{
    width: 100%;
    font-size: 1.18vw;
    font-weight: 500;
    color: rgba(255,255,255,1);
    padding: 0.59vw 0.59vw 1.18vw;
    margin: 0.76vw 0 0 0;
    background: transparent;
    border: none;
    border-bottom: 0.06vw solid #fff;
    box-sizing: border-box;
}
.modal__item form > label > input::placeholder{
    color: rgba(255,255,255,0.5);
}
/* Modal */

/* Results */
.results{
    width: 100%;
    float: left;
    padding: 4.82vw 3vw 5.41vw;
    box-sizing: border-box;
    background: url("../images/bg/results.jpg") center / cover no-repeat;
}

.results-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.21vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.results__row{
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    margin: 37.35vw 0 0 0;
}

.results__item{
    display: flex;
    flex-direction: column;
}

.results__item b{
    color: #ffffff;
    font-size: 5.53vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
}

.results__item p{
    color: #ffffff;
    font-size: 1.19vw;
    line-height: 110%;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0.47vw;
}
/* Results */

/* Data */
.data{
    width: 100%;
    height: auto;
    float: left;
    padding: 12.59vw 15.76vw 13.76vw;
    box-sizing: border-box;
}

.data__row{
    width: 100%;
    float: left;
}

.data__item{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.data__item-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 5.13vw;
    letter-spacing: 0.25vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.data__item-title:nth-child(2){
    text-align: right;
}

.data__item-title:nth-child(1)::before{
    content: "";
    position: absolute;
    width: 9.24vw;
    height: 10.35vw;
    background-image: url("../images/icon/data-2.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: 17.88vw;
    bottom: 0;
}

.data__item-title:nth-child(1).mega::before{
    right: 0;
}

.data__item-title:nth-child(2)::before{
    content: "";
    position: absolute;
    width: 10.12vw;
    height: 9.82vw;
    background-image: url("../images/icon/data-1.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: 3.41vw;
    top: 3.59vw;
}

.data__item-description{
    width: 100%;
    max-width: 30.41vw;
    float: left;
    color: #ffffff;
    text-align: justify;
    font-size: 1.18vw;
    line-height: 118%;
    font-weight: 300;
    margin: 4.53vw 0 0 0;
}
/* Data */

/* Team */
.team{
    width: 100%;
    height: auto;
    float: left;
    padding: 7.06vw 0 5.88vw;
    box-sizing: border-box;
}

.team-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 4.12vw;
    box-sizing: border-box;
}

.team__row{
    width: 100%;
    float: left;
    margin: 3.47vw 0 0 0;
    position: relative;
}

.team__carousel{
    width: 100%;
    float: left;
}

.team__item{
    width: 100%;
    float: left;
}

.team__item img{
    width: 100%;
    height: 34.59vw;
    object-fit: cover;
    object-position: center;
}

.team__item b{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.57vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 2.35vw;
    box-sizing: border-box;
    margin: 1.7vw 0 0 0;
}

.team__item span{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.06vw;
    line-height: 110%;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0.53vw 0 0 0;
    box-sizing: border-box;
    padding: 0 2.35vw;
}

.team__carousel-prev,
.team__carousel-next{
    width: 3.12vw;
    height: 3.12vw;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    border: none;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0;
}

.team__carousel-prev{
    left: 2.59vw;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/icon/prev.svg");
}

.team__carousel-next{
    right: 2.59vw;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    background-image: url("../images/icon/prev.svg");
}
/* Team */

/* Partners */
.partners{
    width: 100%;
    height: auto;
    float: left;
    padding: 7.06vw 0 8.24vw;
}

.partners-title{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 4.12vw;
    box-sizing: border-box;
}

.partners-description{
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: left;
    font-size: 1.18vw;
    line-height: 162%;
    font-weight: 400;
    margin: 1.59vw 0 0 0;
    padding: 0 4.12vw;
    box-sizing: border-box;
}

.partners__wrapper{
    width: 100%;
    float: left;
    overflow: hidden;
    margin: 4.71vw 0 0 0;
}

.partners__row{
    display: flex;
    gap: 4.71vw;
    animation: scroll 50s linear infinite;
    width: fit-content;
}

.partners__row img{
    height: 3.53vw;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners__wrapper:hover .partners__row {
    animation-play-state: paused;
}
/* Partners */

/* Career */
.career{
    width: 100%;
    float: left;
    padding: 5.41vw 0 9.24vw;
    background-color: #ffffff;
}

.career-subtitle{
    width: 60%;
    float: left;
    color: #000;
    font-size: 1.21vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 0 4.12vw;
    box-sizing: border-box;
}

.career-title{
    width: 60%;
    float: left;
    color: #000;
    font-size: 3.18vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.88vw 0 0 0;
    padding: 0 0 0 4.12vw;
    box-sizing: border-box;
}

.career-view{
    width: fit-content;
    float: right;
    color: #000;
    font-size: 1.21vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    border: 0.06vw solid #000;
    margin: -2.65vw 4.12vw 0 0;
    padding: 0.82vw 2.88vw 0.82vw 1.41vw;
    background-image: url("../images/icon/go-2.svg");
    background-repeat: no-repeat;
    background-size: 0.88vw;
    background-position: calc(100% - 1.41vw) center;
}

.career-view:hover{
    color: #fff;
    background-image: url("../images/icon/go-1.svg");
    background-color: #000;
    transition: .2s;
}

.career-view:active{
    color: #fff;
    background-image: url("../images/icon/go-1.svg");
    background-color: #454545;
    border-color: #454545;
}

.career__row{
    width: 100%;
    float: left;
    margin: 8.12vw 0 0 0;
    display: flex;
    gap: 1.53vw;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.career__row::-webkit-scrollbar{
    display: none;
}

.career__item{
    width: 24.65vw;
    min-width: 24.65vw;
}

.career__item:first-child{
    margin-left: 4.12vw;
}

.career__item:last-child{
    margin-right: 4.12vw;
}

.career__item em{
    display: none;
}

.career__item span{
    width: 100%;
    float: left;
    color: #000;
    font-size: 1.11vw;
    line-height: 110%;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 0 2.06vw;
    border-bottom: 0.06vw solid #000;
}

.career__item p{
    width: 100%;
    float: left;
    color: #000;
    font-size: 2vw;
    line-height: 110%;
    font-weight: 600;
    text-transform: uppercase;
    margin: 2.06vw 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.career__item img{
    width: 100%;
    height: 11.53vw;
    object-fit: cover;
    margin: 1.71vw 0 0 0;
}

.career__item a{
    width: 100%;
    float: left;
    color: #fff;
    font-size: 1.06vw;
    font-weight: 600;
    padding: 0.82vw 1.29vw;
    background-color: #000;
    border: 0.06vw solid #000;
    margin: 1.71vw 0 0 0;
    background-image: url("../images/icon/go-1.svg");
    background-repeat: no-repeat;
    background-size: 0.88vw;
    background-position: calc(100% - 1.29vw) center;
    transition: .2s;
    box-sizing: border-box;
}

.career__item a:hover{
    color: #000;
    background-image: url("../images/icon/go-2.svg");
    background-color: #fff;
}

.career__item a:active{
    color: #fff;
    background-image: url("../images/icon/go-1.svg");
    background-color: #454545;
    border-color: #454545;
}
/* Career */

@media screen and (max-width: 800px){
    header{
        padding: 15px 0 15px;
    }
    header.active{
        background-color: #000000;
    }
    header .center {
        padding: 0 15px;
    }
    .header__item-logo img {
        width: 74px;
        height: 37px;
    }
    .header__item:nth-child(2){
        position: absolute;
        background-color: #000000;
        top: 71px;
        left: 0;
        padding: 29px 0 31px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        display: none;
    }
    .header__item:nth-child(2).active{
        display: block;
    }
    .header__item:nth-child(2) ul {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 14px;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .header__item-bar{
        width: 26px;
        height: 14px;
        background-image: url("../images/icon/bar.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border: unset;
        background-color: unset;
        margin: 0 0 0 33.5px;
        display: block;
    }
    .header__item-bar.active{
        background-image: url("../images/icon/hide.svg");
        background-size: cover;
        height: 26px;
    }
    .header__item-contacts {
        font-size: 13px;
        border: 1px solid #fff;
        padding: 10px 13.5px;
    }
    .header__item:nth-child(2) ul > li{
        width: fit-content;
        height: auto;
    }
    .header__item:nth-child(2) ul > li:last-child{
        display: none;
    }
    .header__item:nth-child(2) ul > li > a{
        font-size: 15px;
    }
    .header__item-lang{
        width: fit-content;
        height: auto;
        margin: 0 24px 0 0;
        display: block;
    }
    .header__item-lang a{
        font-size: 15px;
        color: #fff;
        font-weight: 600;
        line-height: normal;
        float: left;
        position: relative;
    }
    .header__item-lang  span{
        color: rgba(255, 255, 255, 0.4);
    }
    .main{
        padding: 470px 15px 74px;
    }
    .main__item:nth-child(1){
        width: 100%; 
    }
    .main__item:nth-child(2){
        width: 100% !important; 
        margin: 27px 0 0 0;
    }
    .main__item-title{
        font-size: 32px;
    }
    .main__item-description{
        font-size: 15px;
    }
    .main__buttons{
        margin: 27px 0 0 0;
        gap: 13px;
    }
    .main__buttons a {
        font-size: 14px;
        border: 1px solid #ffffff;
        padding: 11px 0;
        min-width: 105px;
    }
    .main__buttons a:last-child {
        width: calc(100% - 115px);
        font-size: 13px;
    }
    .main video {
        height: 522px;
    }
    .main::before{
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0) 100%
        );
        height: 267.07px;
        top: 255px;
        bottom: unset;
    }
    .specialize {
        padding: 60px 15px;
    }
    .specialize__item{
        width: 100%;
    }
    .specialize__item:nth-child(2){
        margin: 90px 0 0 0;
    }
    .specialize__item-subtitle{
        font-size: 20.594701766967773px;
    }
    .specialize__item-title{
        font-size: 28px;
        margin: 20px 0 0 0;
    }
    .specialize__item-description{
        font-size: 15px;
        margin: 20px 0 0 0;
    }
    .specialize__item-description br{
        display: none;
    }
    .specialize__box{
        border-bottom: 1px solid #000000;
        padding: 32px 0;
    }
    .specialize__box:first-child {
        padding: 0 0 32px;
    }
    .specialize__box:last-child {
        padding: 32px 0 0;
    }
    .specialize__box p{
        font-size: 24px;
    }
    .specialize__box span{
        font-size: 15px;
        margin: 22px 0 0 0;
    }
    .specialize__box span > br{
        display: none;
    }
    .data {
        padding: 89px 44px 110px;
    }
    .data__item-title{
        font-size: 43.40326690673828px;
        letter-spacing: normal;
    }
    .data__item-title:nth-child(1){
        padding: 109px 0 0 0;
    }
    .data__item-title:nth-child(1)::before{
        width: 79.42px;
        height: 77.11px;
        left: 31px;
        top: 0;
        background-image: url("../images/icon/data-1.svg");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .data__item-title:nth-child(2){
        text-align: left;
    }
    .data__item-title:nth-child(2)::before{
        width: 72.49px;
        height: 81.27px;
        background-image: url("../images/icon/data-2.svg");
        right: 0;
        bottom: -15px;
        left: unset;
        top: unset;
    }
    .data__item-description {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        margin: 36px 0 0 0;
    }
    .results{
        padding: 277px 15px 79px;
        background-image: url("../images/bg/results-mobile.jpg");
        background-size: 100% 346px;
        background-repeat: no-repeat;
        background-position: top;
        position: relative;
    }
    .results::before{
        content: "";
        position: absolute;
        left: 0;
        top: 237px;
        width: 100%;
        height: 109px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    }
    .results-title{
        font-size: 20.594701766967773px;
        position: relative;
    }
    .results__row{
        margin: 0;
        flex-wrap: wrap;
    }
    .results__item{
        width: 100%;
        margin: 54px 0 0 0;
    }
    .results__item b{
        font-size: 60px;
    }
    .results__item p{
        font-size: 18px;
        margin-top: 8px;
    }
    .team {
        padding: 80px 0 32px;
    }
    .team-title {
        font-size: 32px;
        padding: 0 15px;
    }
    .team__row{
        margin: 42px 0 0 0;
    }
    .team__item{
        width: 230px;
    }
    .team__item img{
        height: 329px;
    }
    .team__item b {
        font-size: 20px;
        padding: 0 22.39px;
        margin: 16.79px 0 0 0;
    }
    .team__item span{
        font-size: 15px;
        padding: 0 0 0 22.39px;
        margin: 5px 0 0 0;
    }
    .team__carousel-prev,
    .team__carousel-next{
        display: none;
    }
    .partners {
        padding: 54px 0 87px;
    }
    .partners-title {
        font-size: 32px;
        padding: 0 15px;
    }
    .partners-description{
        padding: 0 15px;
        margin: 22px 0 0 0;
        font-size: 15px;
    }
    .partners-description br{
        display: none;
    }
    .partners__wrapper{
        margin: 52px 0 0 0;
    }
    .partners__row{
        gap: 62px;
    }
    .partners__row img {
        height: 51px;
    }
    .career {
        width: 100%;
        float: left;
        padding: 60px 0;
        margin: 108px 0 0 0;
        background-color: #ffffff;
    }
    .career-subtitle {
        width: 100%;
        font-size: 15px;
        padding: 0 15px;
    }
    .career-title {
        width: 100%;
        font-size: 32px;
        margin: 32px 0 0 0;
        padding: 0 15px;
    }
    .career-view {
        float: left;
        font-size: 20.594701766967773px;
        border: 1px solid #000;
        margin: 40px 0 0 15px;
        padding: 14px 49px 14px 24px;
        background-size: 15px;
        background-position: calc(100% - 24px) center;
    }
    .career__row {
        margin: 138px 0 0 0;
        gap: 18px;
    }
    .career__item:first-child {
        margin-left: 15px;
    }
    .career__item:last-child {
        margin-right: 15px;
    }
    .career__item {
        width: 289px;
        min-width: 289px;
    }
    .career__item span{
        font-size: 13.065999984741211px;
        padding: 0 0 24px 0;
        border-bottom: 1px solid #000;
    }
    .career__item p{
        font-size: 23.5px;
        margin: 24px 0 0 0;
    }
    .career__item img {
        height: 135px;
        margin: 20px 0 0 0;
    }
    .career__item a {
        font-size: 12.441176414489746px;
        padding: 10.4px 15.2px;
        border: 1px solid #000;
        margin: 20px 0 0 0;
        background-size: 10.37px;
        background-position: calc(100% - 15.21px) center;
    }
    .careerbanner{
        padding: 456px 0 42px;
    }
    .careerbanner .center {
        padding: 0 15px;
    }
    .careerbanner__item {
        width: 100%;
        max-width: 100%;
    }
    .careerbanner__item-title{
        font-size: 50px;
    }
    .careerbanner__item-description {
        font-size: 18px;
        line-height: 142%;
        margin: 21px 0 0 0;
    }
    .careerbanner__item-description br{
        display: none;
    }
    .careerbanner::before{
        height: 395px;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    .careerbanner::after{
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
        height: 158.72px;
    }
    .joinus {
        padding: 64px 0 113px;
    }
    .joinus__item:nth-child(1){
        width: 100%;
    }
    .joinus__item:nth-child(2){
        width: 100%;
        max-width: 100%;
        margin: 67px 0 0 0;
        gap: 55px;
    }
    .joinus__item-subject{
        display: none;
    }
    .joinus__item-title{
        font-size: 36px;
        margin: 0;
    }
    .joinus__box span{
        font-size: 16.238712310791016px;
    }
    .joinus__box p{
        font-size: 29.206321716308594px;
        margin: 30px 0 0 0;
    }
    .joinus__box img{
        height: 168.37px;
        margin: 24px 0 0 0;
    }
    .joinus__box a{
        margin: 24px 0 0 0;
        padding: 13px 19px;
        font-size: 15.462170600891113px;
        background-size: 13px;
        background-position: calc(100% - 19px) center;
    }
    .joinus__box {
        width: 100%;
    }
    .joinbanner{
        padding: 303px 0 0 0;
        background-size: 100% auto;
        background-position: top;
        background-image: url("../images/bg/joinbanner-mobile.jpg");
    }
    .joinbanner__row{
        padding: 0 15px;
    }
    .joinbanner__item{
        width: 100%;
        max-width: 100%;
    }
    .joinbanner__item-title{
        font-size: 28px;
    }
    .joinbanner__item-title br{
        display: none;
    }
    .joinbanner__item-description{
        font-size: 15px;
        margin: 42px 0 0 0;
    }
    .joinbanner__item-description br{
        display: none;
    }
    .join{
        padding: 88px 0;
        box-sizing: border-box;
    }
    .join .center{
        padding: 0 15px;
    }
    .join__item:nth-child(1){
        width: 100%;
        max-width: 100%;
    }
    .join__item:nth-child(2){
        width: 100%;
        max-width: 100%;
        margin: 76px 0 0 0;
    }
    .join__item form{
        gap: 49px;
    }
    .join__item-title{
        font-size: 40px;
    }
    .join__item form > label > span{
        font-size: 19.990243911743164px;
    }
    .join__item form > label > input{
        margin: 13px 0 0 0;
        font-size: 16px;
        padding: 10px 10px 20px;
        border-bottom: 1px solid #ffffff;
    }
    .join__item-checkbox span {
        font-size: 16px;
        padding: 0 0 0 35px;
    }
    .join__item-checkbox span::before {
        border-radius: 4px;
        border: 1px solid #b9b9b9;
        width: 18px;
        height: 18px;
    }
    .join__item__buttons {
        gap: 15px;
        margin: -12px 0 0 0;
    }
    .join__item__buttons button {
        font-size: 18px;
        padding: 15.5px 32.5px;
    }
    .join__item__buttons-file {
        border: 1px solid #ffffff;
        padding: 0;
        width: calc(100% - 131px);
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }
    .join__item__buttons-file span {
        font-size: 18px;
        padding: 0 0 0 36px;
        background-size: 24px;
    }
    .join__item__buttons-uploaded p {
        width: fit-content;
        max-width: calc(100% - 110px);
        font-size: 18px;
        padding-left: 36px;
        background-size: 17px;
    }
    .join__item__buttons-uploaded div {
        width: 12px;
        height: 12px;
        margin: 0 0 0 30px;
    }
    footer .center{
        padding: 0 15px;
    }
    footer::before {
        height: 430px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
    }
    .footer__start {
        padding: 222px 0 159px;
    }
    .footer__start-title{
        font-size: 43.829166412353516px;
        line-height: 110%;
        padding: 0 0 80px;
        background-size: 284.72px 80.15px;
    }
    .footer__start__buttons{
        width: 100%;
        margin: 40px auto auto;
        gap: 20px;
        flex-wrap: wrap;
        max-width: 239px;
    }
    .footer__start__buttons a {
        min-width: 100%;
        font-size: 17px;
        border: 1px solid #fff;
        padding: 14.8px 0;
    }
    .footer__menu{
        padding: 0 0 42px;
    }
    .footer__menu__item{
        width: 100%;
    }
    .footer__menu__item ul {
        width: 100%;
        max-width: 230px;
        flex-wrap: wrap;
        gap: 19px;
        margin: 0 auto;
    }
    .footer__menu__item ul > li{
        width: calc(50% - 9.5px);
        margin-left: 0 !important;
    }
    .footer__menu__item ul > li > a{
        font-size: 15px;
    }
    .footer__menu__item:nth-child(2){
        display: none;
    }
    .footer__copyright {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 30px 0 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }
    .footer__copyright__item{
        width: 100%;
    }
    .footer__copyright__item p, .footer__copyright__item a{
        width: 100%;
        font-size: 15px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .footer__copyright__item a{
        text-transform: uppercase;
    }
    .privacy {
        padding: 144px 0 101px;
    }
    .privacy__row{
        padding: 0 15px;
        box-sizing: border-box;
    }
    .privacy__item{
        max-width: 100%;
    }
    .privacy__item-title{
        font-size: 36px;
    }
    .privacy__item-date {
        font-size: 18.977142333984375px;
        margin: 16px 0 33px;
    }
    .privacy__item span{
        font-size: 15px;
        margin: 5px 0 0 0;
    }
    .privacy__item-subject{
        font-size: 15px;
        margin: 25px 0 0 0;
    }
    .modal, .contactsmodal{
        align-items: flex-start;
        padding: 55px 0 39px;
        overflow-x: scroll;
        box-sizing: border-box;
    }
    .modal__box-title, .modal__box-tit {
        font-size: 32px;
        margin: 0 !important;
    }
    .modal__box-tit {
        margin: 0 0 20px 0 !important;
    }
    .contactsmodal .join__item__buttons > button {
        padding: 13px 0;
        width: 100%;
    }
    .contactsmodal .modal__row{
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .modal__item-close {
        width: 15px;
        height: 15px;
        right: 20px;
        top: 24px;
    }
    .modal__row {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        border-radius: 13px;
        padding: 50px 20px;
    }
    .modal__item:nth-child(1) {
        width: 100%;
        max-width: 100%;
        display: contents;
    }
    .modal__box:nth-child(1){
        order: 1;
    }
    .modal__item:nth-child(2) {
        width: 100%;
        max-width: 100%;
        order: 2;
        margin: 30px 0 0;
    }
    .modal__box:nth-child(2) {
        order: 3;
        margin: 30px 0 0;
    }
    .modal__box{
        width: 100%;
    }
    .modal__item form{
        gap: 49px;
    }
    .modal__item-title{
        font-size: 40px;
    }
    .modal__item form > label > span{
        font-size: 19.990243911743164px;
    }
    .modal__item form > label > input{
        margin: 13px 0 0 0;
        font-size: 16px;
        padding: 10px 10px 20px;
        border-bottom: 1px solid #ffffff;
    }
    .modal__item-checkbox span {
        font-size: 16px;
        padding: 0 0 0 35px;
    }
    .modal__item-checkbox span::before {
        border-radius: 4px;
        border: 1px solid #b9b9b9;
        width: 18px;
        height: 18px;
    }
    .modal__item__buttons {
        gap: 15px;
        margin: -12px 0 0 0;
    }
    .modal__item__buttons button {
        font-size: 18px;
        padding: 15.5px 32.5px;
    }
    .modal__item__buttons-file {
        border: 1px solid #ffffff;
        padding: 0;
        width: calc(100% - 131px);
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }
    .modal__item__buttons-file span {
        font-size: 18px;
        padding: 0 0 0 36px;
        background-size: 24px;
    }
    .modal__item__buttons-uploaded p {
        width: fit-content;
        max-width: calc(100% - 110px);
        font-size: 18px;
        padding-left: 36px;
        background-size: 17px;
    }
    .modal__item__buttons-uploaded div {
        width: 12px;
        height: 12px;
        margin: 0 0 0 30px;
    }
    .modal__item .join__item__buttons button{
        font-size: 14px;
    }
    .modal__item .join__item__buttons-file span {
        font-size: 14px;
        padding: 0 0 0 28px;
        background-size: 19px;
    }
    .modal__item .join__item__buttons-uploaded p {
        max-width: calc(100% - 85px);
        font-size: 14px;
        padding-left: 24px;
        background-size: 13px;
    }
    .modal__item .join__item__buttons-uploaded div {
        width: 12px;
        height: 12px;
        margin: 0 0 0 10px;
    }
    .modal__box-subtitle {
        font-size: 22px;
    }
    .modal__box-detail {
        font-size: 16px;
        margin: 26px 0 0 0;
        float: left;
    }
    .modal__box-subject {
        font-size: 18.90399932861328px;
        margin: 14px 0 0 0;
    }
    .join__item-noth {
        font-size: 14px;
        padding: 20px;
        margin: -20px 0 0 0;
    }
}