@charset "UTF-8";
/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
@import url("https://use.typekit.net/rnr3hze.css");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: "";
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "adonis-web", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  position: relative;
}

.container {
  padding: 0 3.5rem;
  font-size: 3rem;
  letter-spacing: 0.2em;
  color: #ff3131;
}
@media screen and (max-width: 1919px) {
  .container {
    font-size: 2.6rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1599px) {
  .container {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1439px) {
  .container {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1279px) {
  .container {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding: 0 2rem;
    font-size: 1.9rem;
  }
}

header,
footer {
  position: absolute;
  left: 0;
  width: 100%;
}
header .container,
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container button,
header .container a,
footer .container button,
footer .container a {
  cursor: pointer;
}
@media (hover: hover) {
  header .container button:hover,
  header .container a:hover,
  footer .container button:hover,
  footer .container a:hover {
    color: white;
  }
}

header {
  top: 3.5rem;
  z-index: 2;
}
@media screen and (max-width: 1919px) {
  header {
    top: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  header {
    top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  header {
    top: 1.5rem;
  }
}

footer {
  bottom: 3.5rem;
}
@media screen and (max-width: 1919px) {
  footer {
    bottom: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  footer {
    bottom: 2rem;
  }
}
@media screen and (max-width: 500px) {
  footer {
    bottom: 1.5rem;
  }
}

.slider .slide {
  height: 100vh;
  min-height: 696px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .slider .slide {
    min-height: 500px;
  }
}
.slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

svg.logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 60rem;
}
@media screen and (max-width: 1919px) {
  svg.logo {
    width: 50rem;
  }
}
@media screen and (max-width: 1439px) {
  svg.logo {
    width: 47.5rem;
  }
}
@media screen and (max-width: 1279px) {
  svg.logo {
    width: 45rem;
  }
}
@media screen and (max-width: 767px) {
  svg.logo {
    width: 40rem;
  }
}
@media screen and (max-width: 639px) {
  svg.logo {
    width: 35rem;
  }
}
@media screen and (max-width: 500px) {
  svg.logo {
    width: 80%;
  }
}

.pop-up {
  position: absolute;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  background: black;
  font-size: 2.4rem;
  padding: 10.5rem;
  display: none;
}
@media screen and (max-width: 1919px) {
  .pop-up {
    font-size: 2.1rem;
    padding: 6.5rem 7.5rem;
  }
}
@media screen and (max-width: 1599px) {
  .pop-up {
    font-size: 1.9rem;
    padding: 5rem 6.5rem 7rem;
  }
}
@media screen and (max-width: 1439px) {
  .pop-up {
    font-size: 1.8rem;
    width: 55%;
  }
}
@media screen and (max-width: 1279px) {
  .pop-up {
    padding: 4.5rem 6rem 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .pop-up {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .pop-up {
    font-size: 1.7rem;
    padding: 3rem 4rem 4rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up {
    width: calc(100% - 5rem);
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up {
    width: calc(100% - 4rem);
    padding: 2.5rem 3rem 3.5rem;
  }
}
@media screen and (max-width: 400px) {
  .pop-up {
    padding: 2rem 3rem 3rem;
    font-size: 1.4rem;
  }
}
.pop-up.active {
  display: block;
}
.pop-up > * {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1439px) {
  .pop-up > * {
    margin-bottom: 1.25em;
  }
}
@media screen and (max-width: 639px) {
  .pop-up > * {
    margin-bottom: 1em;
  }
}
.pop-up > *:last-child {
  margin-bottom: 0;
}
.pop-up h1 {
  margin-bottom: 0;
}
.pop-up svg {
  width: 27.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1599px) {
  .pop-up svg {
    width: 23.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1439px) {
  .pop-up svg {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .pop-up svg {
    width: 20rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up svg {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up svg {
    width: 17.5rem;
  }
}
@media (hover: hover) {
  .pop-up a:hover {
    color: #ff3131;
  }
}
.pop-up p:first-of-type {
  text-transform: none;
}/*# sourceMappingURL=style.css.map */