

/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


@import url("stylesheet.css");

/* ///////////////////////////////// */

body {
    font-family: 'Inter', sans-serif;
}

section {
   
    background: rgb(1,3,94);
    background: linear-gradient(45deg, rgba(1,3,94,1) 0%, rgba(42,102,166,1) 100%);
}
.section {
    max-width: 1400px;
    margin: 0 auto;
   
}

.header-content_up {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-content_up ul {
    display: flex;
    list-style: none;
    padding-left: 15px;
}
.header-content_up ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s all ease;
}
.header-content_up ul li a:hover {
    color: #b3b3b3;
}
.header-content_up_left ul li {
    font-size: 17px;
    border-right: 2px #ffffff solid;
    padding-right: 15px;
    padding-left: 15px;
}
.header-content_up_left ul li:first-child {
    padding-left: 0px;
}
.header-content_up_left ul li:last-child {
    border-right: none;
}

.header-content_up_right ul li {
    font-size: 17px;
    padding-right: 15px;

}
.header-content_up_right ul {
    align-items: center;
}
.header-content_up_right__btn {
    text-align: center;
}

.header-content_up_right ul li a img {
    transition: 0.3s all ease;
}
.header-content_up_right ul li a img:hover {
    box-shadow: 0px 0px 10px #ffffff;
}

/* /////////////////////////////////////// */
.header-bg  {
    background: #fff;
}
header {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
header ul {
    display: flex;
    list-style: none;
}
header ul li{
    font-size: 17px;
    padding-right: 15px;
}
header ul li a {
    color: #150047;
    text-decoration: none;
    
}
header ul li a:hover {
    border-bottom: 2px solid #150047;
}
.header-nav_active {
    border-bottom: 2px solid #150047;
}

.header-ps {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
    background: rgb(1,3,94);
    background: linear-gradient(45deg, rgba(1,3,94,1) 0%, rgba(42,102,166,1) 100%);
}
.header-ps h3 {
    
    color: #28f000;
     font-size: 17px;
    font-weight: 200;
    width: 1200px;
    margin: 0 auto;
    animation-direction: alternate;
	animation-duration: 6s;
	animation-name: move;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.header-ps_two  h3{
    color: #ffffff;
    font-size: 17px;
   font-weight: 200;
   width: 1200px;
   margin: 0 auto;
   animation-direction: alternate;
   animation-duration: 6s;
   animation-name: move;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}

@keyframes move {
	/* from {
		margin-left: 0;
	}
	to {
		margin-left: 800px;
	} */
    0% {
text-align: left;

    }
    100% {
padding-left: 730px;;
    }
}

/* ////////////////////////////////////// */
.section_video {
    max-width: 100%;
}
.section_video-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro {
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}
.intro::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.8);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.intro_content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.video {
    z-index: 1;
    position: relative;
    padding-bottom: 100%;
}
.video-media {
    width: 100%;

    position: absolute;
    top: 0;
    left: 0;
}


.intro_container {
    max-width: 1200px;
    margin: 0 auto;

}
.intro-title {
    text-align: center;
    color: #fff;
    margin-top: 15px;
}

.intro_container_two {
    margin-top: 90px;
    padding: 30px;
    color: #fff;
}
.intro_container_two img {
margin: 0 auto;
}
.intro_container_two h1 {
    text-align: center;
    font-size: 2vw;
    padding-bottom: 0;
}

.intro_container_two h6 {
    text-align: center;
    font-size: 1vw;
    margin-top: 10px;
}
.intro_two::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background-color: rgba(39, 58, 163, 0.7);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.intro_two {
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* //////////////// */


.change-lang {
    position: fixed;
    right: 0;
    top: 0;
	width: 70px;
	height: 30px;
	background: rgba(25, 211, 0, 0.5);
	border: 0;
	border-radius: 5px;
	color: #ffffff;
}