
:root {
    scroll-behavior: smooth;
}
/* Указываем 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, rgb(126, 127, 184) 0%, rgba(42,102,166,1) 100%); */
    background: url('../img/stars.jpg') no-repeat center top / cover;
}
.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, rgb(22, 22, 56) 0%, rgb(129, 152, 177) 100%); */
    background: url('../img/stars.jpg') no-repeat center top / cover;
}
.header-ps 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;
}
.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;;
    }
}



/* //////////// PULSE ///////////// */

.pulse {
    cursor: pointer;
    position: fixed; 
    text-align: center; 
    padding: 20px; 
    border-radius: 50%; 
    background: rgb(23, 7, 250);
    width: 100px;
    height: 100px;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    transition: all 0.3s ease;
  }
  .pulse:hover {
    background-color: rgb(23, 7, 250, 0.5);
  }
  .pulse img {
    margin-left: 0px;
    margin-top: 0px;
  }
  .pulse a {
    cursor: pointer;
    z-index: 1000;
  }
  .pulse p {
    z-index: 1;
  }
  .pulse::before {
    content: ''; 
    position: fixed;
    border: 2px solid rgb(177, 135, 135); 
    opacity: 0;
    right: 0;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite; 
  }

  @keyframes pulse {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }


  .pulse::after,
.pulse::before {
  content: '';
  position: absolute;
  border: 5px solid rgb(194, 194, 194);
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}


/* ////////////////////////////// */

.clue_1 {
  position: relative;
  display: inline-block;
}

.clue_1::before {
  content: attr(data-clue);
  position: absolute;
  left: 50%;
  bottom: 80%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 10px 14px;
  background-color: #150047;
  width: 300px;
  border-radius: 5px;
  transition: inherit;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
.clue_1:hover.clue_1::before {
  background-color: #1917aa;

  opacity: 1;
  visibility: visible;
  z-index: 10;
  font-size: 20px;
}




/* lang select */
.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;
}