
.box{
    height: 200px;
}
.block{
    padding-block: 70px;
}
.title{
    font-size: 30px;
    font-family: var(--semibold);
    line-height: 100%;
}
.btn {
   display: inline-block;
   color: #FFFFFF;
   font-family: var(--bold);
   text-transform: uppercase;
   padding: 14px 30px;
   background-color: var(--accent-bg);
   border: 1px solid var(--accent-bg);
   border-radius: 25px;
   -webkit-border-radius: 25px;
   -moz-border-radius: 25px;
   -ms-border-radius: 25px;
   -o-border-radius: 25px;
   transition: all 0.3s;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   -ms-transition: all 0.3s;
   -o-transition: all 0.3s;
}
.slider-box-btns{
    display: flex;
    justify-content: end;
    gap: 20px;
    padding: 7px;
}

.slider-btn {
    margin: 0;
    padding: 0;
    width: 33px;
    height: 33px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.slider-btn_grey{
    position: relative;
    stroke: #808080;
    border: 1.5px solid var(--grey-dark-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.slider-btn_white{
    position: relative;
    stroke: #FFFFFF;
    border: 1.5px solid #FFFFFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.slider-btn > svg{
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -60% -50%;
}
.slider-btn.slider-btn_next > svg{
    position: absolute;
    top: 50%;
    left: 60%;
    translate: -75% -50%;
}
.blue-block{
    background-color: var(--blue-bg);
}



.popup__bg,
.popup__bg-2,
.popup__bg-3{
    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,
.popup__bg-3.active { 
    opacity: 1; 
    pointer-events: all; 
    transition: 0.5s all;
}

.popup,
.popup-2,
.popup-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: calc(100% - 20px);
    max-width: 688px;
    padding: 20px;
    transition: 0.3s all;
    z-index: 11;
    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;
}
.popup,
.popup-2,
.popup-3{
    background-color: var(--blue-bg);
    border: none;
}
@media (orientation: landscape) {
    .popup__bg.active{
        overflow-y: auto;
    }
}

.popup.active,
.popup-2.active,
.popup-3.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,
.close-popup-2,
.close-popup-3{
    font-size: 25px;
    font-family: Helvetica, sans-serif;
    font-weight:300;
    line-height: 100%;
    color: var(--grey-dark-color);
    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: 30px;
}
.popup__title{
    font-size: 24px;
    font-family: var(--semibold);
    line-height: 120%;
    margin-bottom: 5px;
}
.popup__text{
    color: var(--grey-dark-color);
    line-height: 120%;
}
.popup__inputs-top{
    margin-bottom: 30px;
}
.popup__input{
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--grey-color);
    font-size: 18px;
    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__input::placeholder,
.popup__textarea::placeholder{
    color: var(--grey-color);
}
.popup__input:not(:last-child){
    margin-bottom: 20px;
}
.popup__input:focus,
.popup__textarea:focus{
    border-color: var(--accent-bg);
}
.popup__textarea{
    display: block;
    width: 100%;
    min-height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--grey-color);
    font-size: 18px;
    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{
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 30px;
}
.popup__btn{
    width: 100%;
}
.card-transparent{
    display: flex;
    gap: 20px;
    border: 10px;
    padding: 20px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.card-transparent__wrapper-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background-color: var(--accent-bg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.card-transparent__title{
    font-size: 20px;
    font-family: var(--semibold);
    margin-bottom: 10px;
}
.card-transparent__text{
    color: var(--grey-dark-color);
    font-size: 14px;
    line-height: 140%;
}