.modal,
.modal-video {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(237, 241, 241, 0.8);
    overflow: hidden;
    z-index: 5;
    display: none;
}
.modal__inner {
    position: absolute;
    top: 50%;
    left: 50%;
   transform: translate(-50%, -60%);
  
}
.modal__inner-block {
    position: relative;
    width: 800px;
    height: 650px;
    margin: 100px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../images/zapis-bg-1.png') no-repeat;
    background-size: cover;
}
.modal__inner-block::before{
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    background: url('../images/modal-img.png') no-repeat;
    left: 50%;
    top: 100px;
    transform: translate(-50%, -50%);
}
.modal__inner-block-title {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
}
.modal__inner-block-text {
    max-width: 520px;
    margin: 0 auto 20px auto;
    font-size: 20px;
    text-align: center;
}
.modal__inner-block-btn {
    margin: 0 auto 0px auto;
    width: 248px;
    height: 68px;
    line-height: 64px;
    display: block;
    background-size: contain;
    text-align: center;
    font-weight: 700;
    border: none;
    color: #212121;
    background: url('../images/priem-bg.png') no-repeat;
    cursor: pointer;
}
.modal__video-block{
   position: relative;
    height: 770px;
    max-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal__video-block iframe{
    width: 100%;
    height: 550px;
}

.modal__video-block video{
    height: 550px;
}

.footer-block__info-video{
    cursor: pointer;
}
.modal__close{
    position: absolute;
    top: 90px;
    right: 70px;
    font-size: 50px;
    cursor: pointer;
}
.show{
    display: block;
}
.hide{
    display: none;
}

@media(max-width:680px){
   .modal__inner-block-title{
        margin-top: 150px;
        font-size: 24px;
   }
   .modal__inner-block{
        height: 430px;
   }
   .modal__inner-block-text{
        max-width: 350px;
        font-size: 18px;
   }
   .modal__video-block iframe{
        height: 400px;
   }
   .modal__video-block video{
        height: 400px;
   }
   .modal__close {
        right: 0px;
        top: 130px;
   }
}