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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

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;
}

strong {
  font-weight: 700;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #000;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 300ms cubic-bezier(0.2, 0, 0, 0.8);
  transition-delay: 150ms;
}

.loader #lottie-loader {
  width: 30%;
  transition: all 300ms cubic-bezier(0.85, -0.1, 0.26, 1.44);
}

.loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader.loaded #lottie-loader {
  filter: blur(100px);
  transform: translateY(-250%);
}

.navbar {
  width: 100%;
  height: auto;
  display: flex;
  background: #E91E1F;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  padding-top: 20px;
  top: 0;
  left: 0;
  z-index: 90;
  transition: height 300ms ease;
}

@media (min-width: 1200px) {
  .navbar {
    padding-top: 80px;
  }
}

@media (max-width: 1199px) {
  .navbar .logo {
    width: 89px;
  }
}

.navbar .logo svg {
  pointer-events: none;
}

@media (max-width: 1199px) {
  .navbar .burger {
    width: 42px;
  }
}

.navbar .menu__items {
  display: flex;
  align-items: center;
  padding-top: 9px;
}

.navbar .menu__items ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar .menu__items ul li {
  margin: 0 15px;
}

.navbar .menu__items ul li .menu__item {
  color: #E91E1F;
  font-size: 20px;
  font-weight: 300;
  top: 10px;
  pointer-events: none;
  opacity: 0;
  position: relative;
  transition: top 300ms cubic-bezier(1, -0.01, 0, 1), opacity 300ms cubic-bezier(1, -0.01, 0, 1), color 300ms cubic-bezier(1, -0.01, 0, 1);
}

.navbar .menu__items ul li .menu__item--active {
  top: 0;
  opacity: 1;
  color: #fff;
  pointer-events: initial;
}

.navbar .menu__items ul li .menu__item:hover {
  color: #E91E1F;
}

.navbar .menu__items ul li:last-child {
  margin-right: 0;
}

.navbar .menu__items ul ~ .bars {
  position: relative;
  margin-left: 30px;
  width: 72px;
  text-align: right;
  padding: 25px 0;
}

.navbar .menu__items ul ~ .bars span {
  width: 72px;
  height: 4px;
  background: #fff;
  display: block;
  pointer-events: none;
  position: relative;
  transition: all 300ms cubic-bezier(1, -0.01, 0, 1);
}

.navbar .menu__items ul ~ .bars span:not(:last-child) {
  margin-bottom: 4px;
}

.navbar .menu__items ul ~ .bars:hover span {
  background: #E91E1F;
}

.navbar .menu__items ul ~ .bars.activating span {
  width: 26px;
  margin-left: 46px;
}

.navbar .menu__items ul ~ .bars.active span:first-child {
  transform: rotate(45deg);
  top: 3px;
}

.navbar .menu__items ul ~ .bars.active span:last-child {
  transform: rotate(-45deg);
  top: -5px;
}

@media (max-width: 1199px) {
  .navbar {
    overflow: hidden;
  }
  .navbar .menu__items ul {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    display: block;
    z-index: -1;
  }
  .navbar .menu__items ul li:not(:last-child) {
    margin-bottom: 30px;
  }
  .navbar .menu__items ul li .menu__item {
    color: #E91E1F;
    font-size: 38px;
  }
  .navbar .menu__items ul li .menu__item--active {
    color: #fff;
  }
  .navbar.active {
    height: 100vh;
    z-index: 100;
  }
  .navbar.active .menu__items ul {
    opacity: 1;
  }
}

.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  padding: 80px 0;
}

@media (max-width: 1199px) {
  .floating-nav .burger {
    width: 42px;
  }
}

@media (max-width: 1199px) {
  .floating-nav {
    padding: 20px 0;
  }
  .floating-nav .logo {
    width: 89px;
  }
}

.floating-nav .links a {
  padding: 3.3vw 0;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.floating-nav .links a:nth-child(2) {
  transition-delay: 150ms;
}

.floating-nav .links a:last-child {
  transition-delay: 300ms;
}

.floating-nav .links a svg {
  transition: all 150ms ease;
}

@media (max-width: 1199px) {
  .floating-nav .links a svg {
    width: 32px;
  }
}

.floating-nav .links a:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-nav .links a:hover svg {
  transform: rotate(-45deg);
}

.floating-nav.active {
  opacity: 1;
  pointer-events: initial;
}

.floating-nav.active .links a {
  opacity: 1;
  transform: translateY(0);
}

html, body {
  overflow: hidden;
}

.container {
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 80px;
  }
}

.w-full {
  width: 100%;
}

@media (min-width: 1200px) {
  .pl-25 {
    padding-left: 25px;
  }
}

.py-70 {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 1200px) {
  .py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.mb-180 {
  margin-bottom: 80px;
}

@media (min-width: 1200px) {
  .mb-180 {
    margin-bottom: 180px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-115 {
  margin-bottom: 6.05vw;
}

.mb-15 {
  margin-bottom: 15px;
}

.flex {
  display: flex;
}

@media (max-width: 1199px) {
  .flex {
    flex-direction: column;
  }
  .flex--force {
    flex-direction: row;
  }
}

.flex--column {
  flex-direction: column;
}

.flex--jcsb {
  justify-content: space-between;
}

.flex--aic {
  align-items: center;
}

.flex--wrap {
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .flex .column--borders {
    min-width: 16.58%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    min-width: 273px;
  }
  .flex .column--border-right {
    border-right: 1px solid #000;
    padding-right: 25px;
  }
}

@media (max-width: 1199px) {
  .flex .column--borders {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 20px 0;
  }
  .flex .column--border-right {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
  }
}

.gap-8 {
  gap: 8px;
}

.gap-25 {
  gap: 25px;
}

.bg--gray {
  background: #EDECE9;
}

.bg--red {
  background: #E91E1F;
}

.bg--black {
  background: #000;
}

@font-face {
  font-family: 'F37 Caslon Text';
  src: url("../fonts/F37CaslonText-Regular.woff2") format("woff2"), url("../fonts/F37CaslonText-Regular.woff") format("woff"), url("../fonts/F37CaslonText-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'F37 Caslon Text';
  src: url("../fonts/F37CaslonText-Regular_1.woff2") format("woff2"), url("../fonts/F37CaslonText-Regular_1.woff") format("woff"), url("../fonts/F37CaslonText-Regular_1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Marr Sans Cond Web';
  src: url("../fonts/MarrSansCondWeb-Semibold.woff2") format("woff2"), url("../fonts/MarrSansCondWeb-Semibold.woff") format("woff"), url("../fonts/MarrSansCondWeb-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Marr Sans Cond Web';
  src: url("../fonts/MarrSansCondWeb-Semibold_1.woff2") format("woff2"), url("../fonts/MarrSansCondWeb-Semibold_1.woff") format("woff"), url("../fonts/MarrSansCondWeb-Semibold_1.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.txt--marr {
  font-family: "Marr Sans Cond Web";
}

.txt--caslon {
  font-family: "F37 Caslon Text";
}

.txt--black {
  color: #000;
}

.txt--white {
  color: #fff;
}

.txt--bold {
  font-weight: 600;
}

.txt--size-16 {
  font-size: 16px;
}

.txt--size-64 {
  font-size: 32px;
}

@media (min-width: 1200px) {
  .txt--size-64 {
    font-size: 3.368vw;
  }
}

.txt--size-48 {
  font-size: 24px;
}

@media (min-width: 1200px) {
  .txt--size-48 {
    font-size: 48px;
  }
}

.txt--size-20 {
  font-size: 20px;
}

.header {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #E91E1F;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .header {
    margin-bottom: 120px;
  }
}

.header #header-video {
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .header #header-video {
    margin-top: 153px;
    width: 100%;
    height: calc(100vh - 153px);
  }
}

.header video {
  width: 100%;
  height: 100vh;
}

@media (min-width: 768px) {
  .header {
    width: 100%;
    height: 100vh;
  }
  .header video {
    width: 100%;
    height: 100%;
  }
}

.header .logo {
  position: absolute;
  right: 120px;
  bottom: 0;
  transform: translateY(50%);
  max-width: 791px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

.header .logo path {
  fill: #fff;
  transition: fill 300ms ease;
}

.header .logo.loaded {
  opacity: 1;
}

.header .logo.active path {
  fill: #E91E1F !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header .logo {
    max-width: 430px;
  }
}

@media (max-width: 768px) {
  .header .logo {
    max-width: 350px;
    z-index: 999999;
  }
  .header .logo.loaded.entireLoaded {
    z-index: 10;
  }
}

.header__sound {
  position: absolute;
  right: 32px;
  bottom: 32px;
}

.header__sound img {
  display: none;
  pointer-events: none;
}

.header__sound img:first-child {
  display: block;
}

.header__sound img:last-child {
  display: none;
}

.header__sound.active img:first-child {
  display: none;
}

.header__sound.active img:last-child {
  display: block;
}

@media (max-width: 1199px) {
  .header .logo {
    width: 100%;
    padding: 0 30px;
    height: auto;
    right: initial;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .header__sound {
    bottom: 100px;
  }
}

.case {
  overflow: hidden;
  position: relative;
  height: 90px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 0.8);
  cursor: pointer;
}

@media (min-width: 1200px) {
  .case {
    height: 178px;
  }
}

.case__heading {
  position: relative;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
  pointer-events: none;
  height: 90px;
}

@media (min-width: 1200px) {
  .case__heading {
    height: 178px;
  }
}

.case__heading p {
  transition: color 300ms ease;
}

.case__heading svg {
  transition: transform 300ms ease;
}

@media (max-width: 1199px) {
  .case__heading svg {
    width: 30px;
  }
}

.case__heading svg path {
  transition: all 300ms ease;
}

.case img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.case:hover {
  height: 300px;
}

@media (min-width: 1200px) {
  .case:hover {
    height: 520px;
  }
}

.case:hover .case__heading p {
  color: #fff;
}

.case:hover .case__heading svg {
  transform: rotate(-45deg);
}

.case:hover .case__heading svg path {
  stroke: #fff;
}

.case:hover img {
  opacity: 1;
}

.customers {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.customers .customer {
  flex: 1 0 50%;
  box-sizing: border-box;
  height: 100px;
  width: calc(50% - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .customers .customer img {
    width: 50%;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .customers .customer img {
    max-width: 180px;
    max-height: 60px;
  }
}

@media (min-width: 1200px) {
  .customers .customer {
    flex: 1 0 25%;
    height: 200px;
  }
}

.customers::after {
  content: '';
  flex: 99999 0 25%;
}

.section-awards img {
  filter: invert(1);
}

.footer {
  padding: 80px 0 40px;
}

.footer .column:first-child {
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .footer .column:first-child {
    margin-bottom: 140px;
  }
}

@media (max-width: 1199px) {
  .footer .l-animation {
    margin-top: 60px;
  }
}

.modal {
  width: 100vw;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  transition: height 300ms ease;
}

.modal a {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  top: 30px;
  color: #000;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  z-index: 9999;
}

.modal__body video {
  width: 100%;
  height: auto;
}

.modal.active {
  pointer-events: initial;
  height: 100vh;
}
