/* RESET */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
}

table {
  border-collapse: collapse;
}

cite {
  font-style: normal;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

button,
input[type="submit"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

:state(block) {
  margin-bottom: 0;
}

/* https://www.kihlstrom.com/2016/firefox-button-padding-css-fix/ */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/*
    :focus trick by @leaverou
    https://twitter.com/leaverou/status/1045768279753666562?lang=ca
  */
:focus {
  outline: 1px solid var(--color-0);
  outline-offset: -1px;
}

:focus:not(:focus-visible) {
  outline: none;
  outline-offset: 0;
}

/* IE11 */
main,
header,
nav,
footer {
  display: block;
}

/* https://stackoverflow.com/a/14007839 */
::-ms-clear {
  display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

iframe {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
p {
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  background: transparent;
  cursor: pointer;
}

/* FONTS */
@font-face {
  font-family: "PPFormula";
  src: url("assets/fonts/PPFormula-Medium.woff2") format("woff2");
}

/* inter-tight-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/inter-tight-v9-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/inter-tight-v9-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/inter-tight-v9-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: "Inter Tight", sans-serif;
}

/* BLOCKS */
.__header {
  position: absolute;
  width: 100%;
  z-index: 50;
  padding: 16px 32px;
}

.__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00000073;
  pointer-events: none;
}

.__video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  position: fixed;
  max-width: 100%;
  display: block;
}

.__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 220px 32px 32px;
  gap: 100px;

  @media (min-width: 1024px) {
    flex-direction: row;
  }
}

.__main-text {
  max-width: 576px;
}

.__title {
  font-family: "PPFormula", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 38.42px;
  color: #ffffff;
  margin-bottom: 24px;

  @media (min-width: 1024px) {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 48px;
  }
}

.__buttons {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.__button {
  font-size: 20px;
  font-weight: 500;
  line-height: 27.44px;
  color: #ffffff;
  text-decoration: underline;
  @media (min-width: 1024px) {
    font-size: 22px;
    font-weight: 500;
    line-height: 26.4px;
    text-align: left;
  }
}

.__text {
  font-family: "PPFormula", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 27.44px;
  color: #ffffff;

  @media (min-width: 1024px) {
    font-size: 22px;
    font-weight: 500;
    line-height: 26.4px;
    text-align: left;
  }
}

.__col-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 23.52px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 8px;

  @media (min-width: 1024px) {
    font-size: 14px;
    font-weight: 700;
    line-height: 20.58px;
    text-align: left;
  }
}

.__col-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 23.52px;
  color: #f2f2f2;

  @media (min-width: 1024px) {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.58px;
    text-align: left;
  }
}

.__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 23.52px;
  color: #f2f2f2;
  display: flex;
  gap: 2px;

  @media (min-width: 1024px) {
    font-size: 14px;
    font-weight: 500;
    line-height: 20.58px;
  }
}

.__link-2:hover {
  text-decoration: underline;
}

.__link:hover {
  color: #ffffff;
}

.__col {
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 48px;

  @media (min-width: 1024px) {
    gap: 64px;
    margin-right: 24px;
  }
}

.__col-social {
  width: 227.84px;
}

.__how-to-reach {
  margin-top: 24px;
}

.__col-group {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.__schedule-row {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.__desktop .__schedule-row .__col-text {
  font-size: 14px;
}

.__other-schedules {
  margin-top: 12px;
}

.__desktop {
  display: none;

  @media (min-width: 1024px) {
    display: flex;
  }
}

.__mobile {
  margin-top: 111px;
  display: flex;
  flex-direction: column;
  gap: 48px;

  @media (min-width: 1024px) {
    display: none;
  }
}

.__row {
  max-width: 300px;
  display: flex;
  gap: 31px;
}

.__row-full {
  max-width: initial;
  gap: 31px;
}

.__row-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.__contact-info {
  display: flex;
  flex-direction: column;
}

.__schedule {
  width: 100%;
}

.__mobile .__location .__col-text {
  font-weight: 400;
}

.__mobile .__contact-info .__col-text {
  font-weight: 400;
}

.__watch {
  height: 100%;
  margin-right: 36px;
}
