

.top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: radial-gradient(circle at top left, #41bec7, #020757);
    padding: 15px 30px;
    width: 100vw;
    min-height: 100vh;
        }

.content {
    max-width: 1200px;
    width: 100%;
}

.outline-text {
    padding-top: 150px;
    display: grid;
    /*place-items: center;*/
    justify-content: center;

}
.outline-text h{
    font-size: clamp(16px, 10vw, 10rem);
    font-weight: bold;
    color: transparent; /* текст прозрачный */
    -webkit-text-stroke: 4px #d6f1f1; /* контур: толщина 3px, чёрный цвет */
    text-align: center;
    line-height: 0.8;
    margin: 0;

}

.outline-text p{
    font-size: clamp(16px, 2vw, 2.5rem);
    font-weight: 400;
    color: #d6f1f1;
    text-align: right;
    max-width: 100%;
}


.well-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;          !* Например, фиксированная высота *!*/
    width: 100%;           /* Или процент от родителя */
    max-width: 1200px;
    margin-top: 50px;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin-right: 50px;
    /*min-width: 70%;*/
    width: 50%;
    height: 100%;
}

.site-header {
  text-align:left;
  padding: 1rem 1rem;
  color: #d6f1f1;
  /*font-family: 'Segoe UI', sans-serif;*/
}

.site-title {
  font-size: clamp(24px, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
    color: #d6f1f1;
}

.site-subtitle {
  font-size: clamp(22px, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
   color: #d6f1f1;
}

.site-desc {
  font-size: clamp(20px, 3vw, 3rem);
  color: #d6f1f1;
  font-style: italic;
}
 .video-box{
     display: flex;
     justify-content: end;
     align-items: center;
     width: calc(50% - 50px);
        }
.video{
    max-height: 90%;
    max-width: 90%;
    border-radius: 30px;
    box-shadow: 5px 20px 50px rgba(3, 30, 82, 0.9);
    }

.footer{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    font-size: clamp(8px, 1.5vm, 2rem);
    color: #b0acac;
    line-height: 1.5;
    margin-bottom: 100px;
}

.footer a{
    color: #b0acac;
}
.company{
    margin-right: 20px;
}




@media (max-width: 1024px) {

    .outline-text{
        margin-top: 100px;
    }
}

@media(max-width: 768px) {
    .content {
        margin-top: 10px;
    }
     .outline-text{
         padding-top: 20px;
     }
      .outline-text h{
            -webkit-text-stroke: 2px #d6f1f1; /* контур: толщина 3px, чёрный цвет */
     }

    .well-banner {
        margin-top: 10px;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .video-box {
        height: auto;
        width: 100%;
        order: 1;
        margin-top: 0px;
        justify-content: center;
    }
    .site-header{
        text-align: center;
    }
    .site-subtitle{
        text-align: center;
    }
    .site-desc{
        text-align: center;
    }

    .header {
        margin-top: 30px;
        order: 2;
        margin-right: 0px;
        justify-content: center;
        /*margin-left: 80px;*/
        width: 100%;
    }

    .site-header {
        padding: 0px;
    }
    .footer{
        margin-bottom: 100px;
    }
}