/* Указываем 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;
  }
}

.backvideo{
    width: 100%;
    position: relative;
}

.main_page{

	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*background: white;*/
	position: absolute;
	top: 0px;
	left: 0px;
}



.F3{
	width: 100%;
	height: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.F3 img{
	height: 100%;
}

.content_page{
	width: 70%;
	height: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;

}

.content_page p{
	font-size: 21px;
	color: white;

}
a { 
    text-decoration: none; 
   } 

.butlink{
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	
}

.butlink img{
	height: 20px;
	width: 20px;
	margin-right: 10px;
}

#fb{
	background: rgb(58, 89, 150);
}

#tg{
	background: rgb(0, 155, 226);
}


#inst{
	background: rgb(255,205,92);
	background: linear-gradient(90deg, rgba(255,205,92,1) 0%, rgba(255,87,63,1) 49%, rgba(205,57,160,1) 100%);
}

#gmaps{
	background: rgb(255,191,83);
	background: linear-gradient(90deg, rgba(255,191,83,1) 0%, rgba(71,155,243,1) 49%, rgba(30,190,123,1) 100%);
}

#call{
	background: lightseagreen;
}











