/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

p {
  margin: 1em 0;
}

small {
  font-size: 1rem;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  height: 100%;
}

body {
  background-color: hsl(0deg, 0%, 8%);
  background: url("../img/bg.jpg") no-repeat;
  background-size: cover;
  background-position: top;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  margin: 0 auto;
  -webkit-animation: 1.5s ease-out 0s 1 fadein;
          animation: 1.5s ease-out 0s 1 fadein;
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  text-decoration: none;
  opacity: 0.7;
  color: white !important;
}
a:hover {
  opacity: 1;
  color: white !important;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  text-align: center;
}
@media (max-width: 900px) {
  .container {
    width: 94%;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
}

.logo {
  flex: 0;
  margin-bottom: 4em;
  max-width: 180px;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 2.5em;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.promo {
  margin-bottom: 5em;
}

.divider {
  display: inline-block;
  color: hsl(0deg, 0%, 56%);
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.dashed {
  border-bottom: 1px dashed rgba(219, 219, 219, 0.7);
}

.social {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 2em;
}
.social__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.as-button {
  padding: 1em 1.25em;
  font-size: 1.25rem;
  text-align: center;
  color: hsl(0deg, 0%, 100%);
  background-color: black;
  transition: opacity 0.2s linear;
  border-radius: 0.25em;
}
.as-button:hover {
  opacity: 8;
}/*# sourceMappingURL=style.css.map */