.wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.conteiner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

/* header */
.header {
    width: 100%;
    height: 60px;
    background: #333 repeating-linear-gradient(90deg,
            rgba(30, 15, 140, 0.36), rgba(37, 124, 201, 0.37) 5px,
            rgba(10, 26, 89, 0.38) 5px, rgba(123, 159, 225, 0.37) 10px);
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

/* footer */
.footer {
    width: 100%;
    background: #333 repeating-linear-gradient(90deg,
            rgba(30, 15, 140, 0.36), rgba(37, 124, 201, 0.37) 5px,
            rgba(10, 26, 89, 0.38) 5px, rgba(123, 159, 225, 0.37) 10px);
}

/* page */
.main {
    flex: 1 1 auto;
}

.page {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e6e9f0, #eef1f5);
    box-shadow: 0 0 40px rgba(0, 0, 0, .2) inset;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0c2e5e;
    text-align: center;
    padding-top: 20px;
}

.subtitle_text {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: brown;
    padding: 20px 30px;
}

.plain_text {
    font-size: 16px;
    font-style: italic;
    color: #000;
    padding: 10px 20px;
    text-align: justify;
    text-indent: 30px;
}

.social_conteiner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
}

.social_icon {
    width: 40px;
    height: 40px;
}

/* видео */
.video_conteiner {
    position: relative;
    width: 100%;
    text-align: center;
}

.vid_ru {
    width: 50%;
    border: 5px double #8fb4c8;
    padding: 10px;
    box-shadow:
        inset rgba(0, 0, 0, .6) 0 -3px 8px,
        inset rgba(252, 255, 255, .7) 0 3px 8px,
        rgba(0, 0, 0, .8) 0 3px 8px -3px;
}

.icon_ru {
    width: 7%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(41, 41, 41, 0.8);
    padding: 10px;
    text-align: center;
    box-shadow:
        inset rgba(0, 0, 0, .6) 0 -3px 8px,
        inset rgba(252, 255, 255, .7) 0 3px 8px,
        rgba(0, 0, 0, .8) 0 3px 8px -3px;
}

hr {
    width: 90%;
    margin: 0 auto;
    border: 4px ridge #a5bbd8;
}

/* Адаптация */
@media(max-width:1200px) {
    .conteiner {
        max-width: 970px;
    }
}

@media(max-width:992px) {
    .conteiner {
        max-width: 750px;
    }
}

@media(max-width:767px) {
    .conteiner {
        max-width: none;
    }
}

@media(max-width:550px) {
    /*до 340px*/

    .social_conteiner {
        gap: 10px;
    }

    .social_icon {
        width: 30px;
        height: 30px;
    }
}