html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: 200;
  font-family: 'Raleway', sans-serif;
}

ol, ul {
  list-style: none;
}

img {max-width: 100%;height: auto;}
.logo img {max-width: 200px; width: 100%;}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header {
  width: 100%;
  display: flex;
  padding: 40px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.contacts {
  font-size: 15px;
  text-align: center;
}
.contacts span {
  margin-bottom: 5px;
  display: block;
  font-size: 25px;
}

.contacts a {
  color: #fff;
  text-decoration: none;
}

.bottom-content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: absolute;
  bottom: 2rem;
  left: 0;
}

.wrap-video {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -5;
}

.wrap-video::before {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  height: 100%;
}

#video_welcome {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -10;
}
