button {
    cursor: pointer;
}

.main__body {
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
}

.hidden {
    display: none;
}

/* .container {
    max-width: 1440px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
} */

.wrapper {
    display: flex;
    width: 100%;
}

ul {
    font-family: Roboto;
}

@media (max-width:800px) {
    .wrapper {
        position: relative;
    }
}

.main__aside {
    width: 25%;
    background-color: white;
    position: relative;
}

@media (max-width:800px) {
    .main__aside{
        width: 50%;
        position: absolute;
        transform: translateX(-100%);
    }
}

@media (max-width:600px) {
    .main__aside{
        width: 100%;
        z-index: 100;
    }
}

.burger__menuBlock {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    transform: translateX(-100%);
    transition: 0.3s all ease-in-out;
    z-index: 10;
}

@media (max-width:800px) {
    .burger__menuBlock{
        transform: translateX(0%);
    }
}

@media (max-width:450px) {
    .burger__menuBlock{
        transform: translateX(0%);
    }
}

.burger__menuBlock.open {
    transform: translateX(0%);
}

@media (max-width:800px) {
    .burger__menuBlock.open {
        transform: translateX(100%);
        z-index: 10;
        width: auto;
    }
}

.main__aside-container {
    padding: 0px 46px;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

@media (max-width:1200px) {
    .main__aside-container{
        padding: 0px 32px;
    }
}

@media (max-width:1100px) {
    .main__aside-container{
        padding: 0px 24px;
    }
}

.aside__menu.hidden{
    display: none;
}

.header__close-button {
    background-image: url(../../img/icon/return.png);
    background-repeat: no-repeat;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.main__aside-header {
    display: flex;
    flex-direction: column;
    padding-top: 52px;
    gap: 14px;
}

.main__aside-header>h2 {
    margin: 0;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 20.5px;
    text-transform: uppercase;
    font-family: Philosopher;
}

@media (max-width:800px) {
    
}

.main__aside-header>h2>span {
    color: #000;
    font-size: 11px;
    font-weight: 400;
    line-height: 20.5px;
    text-transform: uppercase;
    font-family: Philosopher;
}

.main__aside-header>button {
    background-image: url(../../img/icon/burgerBlack.png);
    background-color: transparent;
    background-repeat: no-repeat;
    fill: black;
    width: 24px;
    height: 24px;
    border: none;
}

.main__aside-header>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    padding-bottom: 20px;
    margin: 0;
}

.menu-list__link {
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 157.143% */
    text-transform: uppercase;
    text-decoration: none;
}

.main__aside-center {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main__aside-center>h2 {
    color: #000;
    font-family: Philosopher;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 49.5px;
    /* 137.5% */
    text-transform: uppercase;
}

@media (max-width:1200px) {
    .main__aside-center>h2 {
        font-size: 28px;
        line-height: 38px;
    }
}

.button-black {


        cursor: pointer;
        line-height: 2;
        padding: 7px 24px;
        color: #fff;
        border: none;
        outline: none;
        font-size: 18px;
          font-weight: 300;
    width: 100%;
    border-radius: 80px;
    border:none;
    background: #000;
    text-align: center;
    font-family: Roboto;   
    text-decoration: none;

}

.button-black:hover,
.button-black:focus {
  background-color: #565656;
}


.button-white {
    width: 100%;

    border-radius: 80px;
    border:none;
    background: #ffffff;
    padding: 12px 20px;

    color: var(--White, #000000);
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;

}

@media (max-width:1200px) {
    .button-black,
    .button-white{
        font-size: 16px;
    }
}

.main__aside-center-burger {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.sidebar__form {
    padding-top: 22px;
}

.form-title {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    padding-bottom: 24px;
}

.form__input {
    width: -webkit-fill-available;
    margin-bottom: 10px;
    padding: 4px 8px;
    color: var(--PPS-Grey, #000000);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

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

.burger__menuBlock>.main__aside-header {
    border-bottom: 2px solid black;
}

.main__aside-footer {
    color: #000;
    font-family: Roboto;
    font-size: 8px;
    font-style: normal;
    font-weight: 300;
    line-height: 13.5px;
    /* 168.75% */
}

.main__aside-footer>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 8px;
}

.main__content-footer > ul > li > img{
    height: 20px;
}

.main__content-footer > ul > img:nth-child(3),
.main__content-footer > ul > img:nth-child(6){
    height: 18px;
    width: 20px;
}

.aside__footer-link {
    color: #000;
    font-family: Roboto;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 13.5px;
    /* 135% */
    text-decoration-line: underline;
}


.main__content {
    width: 75%;
    /* background-image: url(../../img/background.svg); */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    background: url(../../img/bg_new2.svg), linear-gradient(135deg, #264B4D, #000000);
    background-repeat: no-repeat;
    background-position: center;
    /* opacity:0.4; */
}

@media (max-width:800px) {
    .main__content{
        width: 100%;
    }
}

.main__content-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.main__content-header {
    padding-right: 55px;
    padding-top: 46px;
}

@media (max-width:600px) {
    .main__content-header{
        padding-left: 16px;
        padding-right: 16px;
    }
}


.nav__list {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: end;
    margin: 0;
}



@media (max-width:600px) {
    .nav__list{
        padding: 0;
    }
}

.list-btn__item {
    color: #FFF;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 4px 15px;

    display: flex;
    align-items: center;

    position: relative;
}

@media (max-width:600px) {
    .list-btn__item:nth-child(1),
    .list-btn__item:nth-child(2){
        display: none;
    }
}

.list-btn__link,
.item-lk__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.btn--border-white {
    border-radius: 80px;
    border: 0.5px solid #FFF;
    background-color: transparent;
    transition: 0.3s all ease-in-out;
}

.btn-reg-white {
    display: flex;
    padding: 0;
    color: #FFF;
    padding: 4px 15px;
    align-items: center;
    gap: 5px;
}

.btn--border-white:hover,
.btn-reg-white:hover {
    background-color: rgba(255, 255, 255, 0.288);
}

.btn--border-white:active,
.btn--border-white:focus,
.btn-reg-white:active,
.btn-reg-white:focus {
    background-color: rgba(255, 255, 255, 0.288);
}

.main__content-center {
    flex: 1;
    align-items: center;
    display: flex;
    justify-content: center;
}

@media (max-width:800px) {
    .main__content-center{
        flex-direction: column;
    }
}
.content-data--mobile{
    display: none;
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 20.5px;
    text-transform: uppercase;
    font-family: Roboto;

    padding-bottom: 32px;
}

.content-data--mobile > span{
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.5px;
    text-transform: uppercase;
    font-family: Roboto;
    padding-top: 16px;
}

.main__content-center--mobile{
    display: none;
}

@media (max-width:800px) {
    .content-data--mobile{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .main__content-center--mobile{
        display: flex;
        flex-direction: column;
        width: 80%;
    }
}

.main__content-center--mobile >h2{
    color: #ffffff;
    font-family: Roboto;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 49.5px;
    /* 137.5% */
    text-transform: uppercase;
    text-align: center;
}

@media (max-width:550px) {
    .main__content-center--mobile >h2{
        font-size: 24px;
        line-height: 32px;
    }
}

.main__content-center>img {
    width: 40vw;
    left: 35%;
    position: absolute;
}

@media (max-width:600px) {
    .main__content-center>img {
        width: 75vw;
        left: auto;
        position: relative;
    }
}

.main__content-footer {
    flex-shrink: 0;
    display: flex;
    justify-content: left;
    padding-left: 50px;
}

.main__content-footer>ul {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 0;
    align-items: center;
}

@media (max-width:1280px) {
    .main__content-footer>ul>li:nth-child(6){
        display: none;
    }
}

@media (max-width:1080px) {
    .main__content-footer>ul>li:nth-child(5){
        display: none;
    }
}

@media (max-width:920px) {
    .main__content-footer>ul>li:nth-child(4){
        display: none;
    }
}

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

.timer__text {
    padding-bottom: 10px;
    font-size: 14px;

}