/* ==========================================================================
HELPERS CLASSES
========================================================================== */
:root {
  --main-size: 24px;
  --main-color: #FF3600;
}

@font-face {
  font-family: "Akzidenz-Grotesk";
  src: url("../fonts/AkzidenzGroteskBQ-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  outline: 0;
}
a:hover, a:focus, a:active {
  outline: 0;
  text-decoration: none;
}

/* ==========================================================================
GENERAL
========================================================================== */
body {
  color: #000;
  font-family: "Akzidenz-Grotesk";
}

sup {
  top: -0.46em;
  font-size: 0.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
a:hover {
  color: var(--main-color);
}

#intro {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #CCC;
  z-index: 1;
  height: 100dvh;
  background-color: #CCC;
}
#intro img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
#intro img.active {
  display: block;
}

#main-content {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100dvh;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  z-index: 99;
  position: relative;
  background-color: #FAFAFA;
}
#main-content > div {
  width: 100%;
}
#main-content .middle {
  padding-block: var(--main-size);
  font-size: clamp(1.875rem, 0.8851rem + 4.9497vw, 5.5625rem);
  text-align: center;
}
#main-content .middle p {
  margin: 0;
  text-transform: uppercase;
  position: relative;
  line-height: 0.85;
}
#main-content .middle p span {
  color: var(--main-color);
}
#main-content .middle .logo {
  padding-top: calc(var(--main-size) * 4);
}
#main-content .middle .logo img {
  max-width: none;
  width: 60%;
  max-width: 15rem;
}
#main-content .top, #main-content .bottom {
  --size-line: 3px;
  overflow: hidden;
  position: relative;
  color: var(--main-color);
}
#main-content .top .rectangle, #main-content .bottom .rectangle {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #FAFAFA;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
#main-content .top .rectangle:nth-child(2), #main-content .bottom .rectangle:nth-child(2) {
  left: unset;
  right: 0;
}
#main-content .top .rectangle:before, #main-content .top .rectangle:after, #main-content .bottom .rectangle:before, #main-content .bottom .rectangle:after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
}
#main-content .top .rectangle:before, #main-content .bottom .rectangle:before {
  width: 100%;
  height: var(--size-line);
  right: var(--size-line);
  bottom: 0;
}
#main-content .top .rectangle:after, #main-content .bottom .rectangle:after {
  width: var(--size-line);
  height: 100%;
  right: 0;
  bottom: var(--size-line);
}
#main-content .top .rectangle:nth-child(2):after, #main-content .bottom .rectangle:nth-child(2):after {
  right: unset;
  left: 0;
}
#main-content .top .rectangle:nth-child(2):before, #main-content .bottom .rectangle:nth-child(2):before {
  left: var(--size-line);
  right: unset;
}
#main-content .bottom .rectangle:nth-child(1) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
#main-content .bottom .rectangle:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (min-width: 992px) {
  #main-content .middle {
    padding-block: calc(var(--main-size) * 2);
  }
  #main-content .middle .logo {
    padding-top: 1rem;
  }
}
.marquee-js {
  height: 1.8rem;
  padding-block: 0.3125rem;
  line-height: 1.1;
  overflow: hidden;
}
.marquee-js:after {
  content: "";
  display: block;
  clear: both;
}
.marquee-js span {
  padding-left: 4.375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.marquee-js span:after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.375rem;
  background-image: url(../images/icon-marquee.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 4.375rem;
}

@media (min-width: 1200px) {
  html {
    -ms-scroll-snap-type: mandatory;
        scroll-snap-type: mandatory;
    -ms-scroll-snap-points-y: repeat(100dvh);
        scroll-snap-points-y: repeat(100dvh);
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
  }
  #main-content,
  .section-space,
  #intro {
    scroll-snap-align: start;
  }
  .section-space {
    height: 100dvh;
  }
  #intro {
    position: fixed;
  }
}
@media (min-width: 1500px) {
  html {
    font-size: 1.04vw;
  }
}