@font-face {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/verdana.ttf');
}

@font-face {
  font-family: 'Verdana';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/verdanai.ttf');
}

@font-face {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: bold;
  src: url('../fonts/verdanab.ttf');
}





html {
  font-family: 'Verdana', sans-serif;
  font-size: 37px;
  line-height: 1.3;
  position: relative;
}

@media screen and (max-width: 2560px) {
  html {
    font-size: 25px;
  }
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 13px;
  }
}

@media screen and (max-width: 640px) {
  html {
    font-size: 10px;
  }
}

html:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  will-change: transform;
  transform: translateZ(0);
  z-index: -1;
}

html, body {
  height: 100%;
}

body {
  box-sizing: border-box;
  color: #000000;
  overflow-x: hidden;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: white;
  background: $black;
}





.button {
  padding: .5rem 2rem;
  border-radius: .32rem;
  background: #ed1c24;
  display: inline-block;
  border: none;
  font-size: 1.04rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}

.button:focus {
  outline: none;
}



.close-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  cursor: pointer;
}

.close-icon {
  width: 100%;
}





.mb-4 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-05 {
  margin-bottom: .5rem;
}

.p-4 {
  padding: 4rem;
}

.pr-3 {
  padding-right: 3rem;
}





.text_subheadline {
  font-size: 2.8rem;
  line-height: 1.4;
}

.text_increased {
  font-size: 1.9rem;
  line-height: 1.4;
}

.text_base {
  font-size: 1.5rem;
}

.text_tiny {
  font-size: 1.04rem;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.bold-italic {
  font-style: italic;
  font-weight: bold;
}





.link {
  text-decoration: none;
  /* border-bottom: 2px solid currentColor; */
  text-decoration: underline;
}





.hidden {
  display: none;
}
