a,
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  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;
}

input {
  all: unset;
}

button {
  border: 0;
  outline: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 1.2;
}

img {
  display: block;
  margin: 0;
  padding: 0;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: super;
}

#popup {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  height: 100vh;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all ease 0.5s;
  width: 100vw;
  z-index: 999;
}
#popup .container {
  background-color: #FFF;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px 0px;
  width: 650px;
}
@media (max-width: 1000px) {
  #popup .container {
    align-items: center;
    width: 90%;
  }
}
#popup .container > div:first-child {
  border-bottom: 1px solid #9A9A9A;
  padding-bottom: 10px;
}
@media (max-width: 1000px) {
  #popup .container > div:first-child {
    display: flex;
    justify-content: center;
  }
}
#popup .container div {
  padding: 0px 40px;
  width: 100%;
}
@media (max-width: 1000px) {
  #popup .container div {
    text-align: center;
  }
}
#popup .container h2 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (max-width: 1000px) {
  #popup .container h2 {
    font-size: 24px;
  }
}
#popup .container img {
  max-width: 160px;
}
#popup .container > div:last-child {
  display: flex;
  justify-content: end;
}
@media (max-width: 1000px) {
  #popup .container > div:last-child {
    justify-content: center;
  }
}
#popup .container .btn {
  background-color: #8B0024;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 25px;
  text-transform: uppercase;
}

header {
  background-color: #8B0024;
  box-shadow: 0px 10px 50px #FF0000;
  height: 60px;
  position: relative;
}
header img {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1000px) {
  header img {
    width: 50%;
  }
}

main {
  background: url("../images/bg-desk.png") no-repeat;
  background-size: cover;
  height: calc(100vh - 298px);
  min-height: 600px;
}
@media (max-width: 1000px) {
  main {
    background: url("../images/bg-mob.png") no-repeat;
    background-size: cover;
    height: 100vh;
  }
}
main div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
  margin-left: auto;
  text-align: center;
  text-shadow: 5px 5px 10px #000000;
  text-transform: uppercase;
  width: 60vw;
}
@media (max-width: 1000px) {
  main div {
    height: initial;
    padding: 60px 20px 0px 20px;
    width: 100%;
  }
}
main div h1 {
  font-size: 50px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  main div h1 {
    font-size: 36px;
  }
}
@media (max-width: 1000px) {
  main div img {
    width: 70%;
  }
}
main div a {
  background-color: #8B0024;
  font-size: 32px;
  font-weight: bold;
  padding: 15px 30px;
}
@media (max-width: 1000px) {
  main div a {
    font-size: 24px;
    padding: 10px 25px;
  }
}

footer {
  background-color: #1C1C1C;
  border-bottom: 12px solid #8B0024;
  border-top: 12px solid #8B0024;
}
footer .container {
  align-items: center;
  display: flex;
  gap: 80px;
  margin: auto;
  max-width: 1200px;
  padding: 20px;
}
@media (max-width: 1000px) {
  footer .container {
    align-items: start;
    flex-direction: column;
    gap: 60px;
    padding: 50px;
  }
}
footer .container .first {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media (max-width: 1000px) {
  footer .container .first {
    flex-direction: column;
    margin: auto;
  }
}
footer .container .first img {
  width: 205px;
}
footer .container .first p {
  text-transform: uppercase;
  width: 230px;
}
footer .container .first p strong {
  font-weight: bold;
}
footer .container .second {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media (max-width: 1000px) {
  footer .container .second {
    align-items: start;
    flex-direction: column;
  }
}
footer .container .third {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  footer .container .third {
    flex-direction: column;
  }
}
footer .container .third a {
  align-items: center;
  display: flex;
  gap: 20px;
}

#terms {
  background-color: #000;
}
@media (max-width: 1000px) {
  #terms {
    border-bottom: 12px solid #8B0024;
  }
}
#terms .container {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1000px) {
  #terms .container {
    align-items: start;
    flex-direction: column;
    gap: initial;
    padding: 50px;
  }
  #terms .container a {
    border-bottom: 1px solid #FA506E;
    padding: 20px 0px;
    width: 100%;
  }
  #terms .container a:first-child {
    border-top: 1px solid #FA506E;
  }
  #terms .container span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */