@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Указываем 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;
}

/* --------------------------- */

body {
  background-color: #dfdfdf;
  margin: 0;
  padding: 0;
}

/* bg_video */
.bg-video {
    z-index: 10;
    position:absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/* btn_back */

.btn_back {
	position: absolute;
	margin-top: 30px;
	margin-left: 30px;
	position: fixed;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgb(0,0,0,0);
	z-index: 100;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn_back:hover {
	color: #fff;
	background-color: #000000;
}
.btn_back a{
	position: relative;
	font-size: 20px;
	position: relative;
	text-align: center;
	align-items: center;
	top: 32%;
	left: 25%;
}

/* PULSE_contakts_with_us */
.pulse {
    cursor: pointer;
    position: fixed; 
    text-align: center; 
    padding: 20px; 
    border-radius: 50%; 
    background: rgb(32, 14, 114);
    width: 100px;
    height: 100px;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    transition: all 0.3s ease;
  }
  .pulse:hover {
    background-color: rgba(0, 0, 0, 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(255, 255, 255);
  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;
  }
}


/* header */
header {

  position: fixed;
  width: 100%;
  background-color: #fff;
  font-family: "Open Sans";
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
header ul a li {
  color: #000000;
  text-transform: uppercase;
  text-align: center;
}
header ul a {
  text-decoration: none;
  padding: 10px 15px;
  
}
header ul a:hover {
  background-color: #dfdfdf;
}
.header_a_active {
  background-color: #dfdfdf;
}


.header_back {
  background-color: #00039b;
}
.header_back:hover {
  background-color: #02047e;
}
.header_back li {
  padding-top: 15%;
  color: #fff;
}

.header_right_logo {
  text-align: center;
}
