
.box{
    height: 200px;
}
.block{
    padding-block: 70px;
}
.title{
    color: var(--white-color);
    font-size: 28px;
    font-family: var(--medium);
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 30px;
    
}
.bold_text_title{
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-family: var(--semibold);
    line-height: 110%;
    margin-bottom: 15px;
}

.text{
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 135%;
}
.rounds{
    position: fixed;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7;
    height: 100%;
}

.rounds__list{
    display: flex;
    flex-direction: column;
}
.rounds__list-link{
    display: inline-flex;
    padding: 10px 4px;
}
.rounds__list-link > span{
    display: inline-block;
    width: 6px;
    height: 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    background: #EEE;
    opacity: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.nav-link._active > span{
    background: #FFFFFF;
    scale: 1.5;
    -webkit-box-shadow: 0px 0px 3px 4px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0px 0px 3px 4px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 3px 4px rgba(255, 255, 255, 0.2);
}




.popup__bg,
.popup__bg-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0; 
    pointer-events: none; 
    transition: 0.5s all;
    z-index: 10;
}

.popup__bg.active,
.popup__bg-2.active { 
    opacity: 1; 
    pointer-events: all; 
    transition: 0.5s all;
}

.popup,
.popup-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: calc(100% - 20px);
    max-width: 688px;
    padding: 20px;
    transition: 0.3s all;
    z-index: 11;
    border: 1px solid #EEE;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media (orientation: landscape) {
    .popup__bg.active{
        overflow-y: auto;
    }
}

.popup.active,
.popup-2.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
}
.close-popup{
    font-size: 25px;
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    line-height: 100%;
    color: var(--main-color-dark);
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.popup__top{
    margin-bottom: 25px;
}
.popup__title{
    color: var(--main-color-dark);
    font-size: 24px;
    font-family: var(--semibold);
    line-height: 120%;
    margin-bottom: 5px;
}
.popup__subtitle{
    color: var(--main-color-dark);
    line-height: 120%;
}
.popup__inputs-top{
    margin-bottom: 25px;
}
.popup__input{
    color: var(--main-color-dark);
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #BBBBBB;
    font-size: 16px;
    line-height: 120%;
    padding: 14px 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.popup__input::placeholder,
.popup__textarea::placeholder{
    color: #CCCCCC;
}
.popup__input:not(:last-child){
    margin-bottom: 15px;
}
.popup__input:focus,
.popup__textarea:focus{
    border-color: var(--accent-bg);
}
.popup__textarea{
    color: var(--main-color-dark);
    display: block;
    width: 100%;
    min-height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #BBBBBB;
    resize: none;
    font-size: 16px;
    line-height: 120%;
    padding: 14px 25px;
    padding-bottom: 18px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.popup__inputs-link{
    color: var(--main-color-dark);
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 25px;
}
.popup__btn{
    color: #FFFFFF;
    font-size: 18px;
    font-family: var(--semibold);
    background-color: var(--accent-bg);
    width: 100%;
    padding: 14px 25px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
