@import url("https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --theme-1-bg: #ebeded;
  --theme-1-color: #e83c38;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-transition: background 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

html {
  font-size: 10px;
  font-family: Karla, Helvetica, Arial, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

html::-webkit-scrollbar {
  -webkit-transition: background 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 10px;
}

@media (min-width: 1000px) {
  html::-webkit-scrollbar {
    width: 7.5px;
  }
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-1-color);
}

html::-webkit-scrollbar-track {
  background-color: var(--theme-1-bg);
}

body {
  background-color: var(--theme-1-bg);
  color: var(--theme-1-color);
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-family: perpetua titling mt, Karla, Georgia, times new roman, Times, serif;
  font-weight: 300;
  text-transform: uppercase;
}

svg {
  -webkit-transition: fill 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: fill 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.o-bg-theme {
  background-color: var(--theme-1-bg);
}

.o-color-theme {
  color: var(--theme-1-color);
}

.o-container {
  position: relative;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 999px) {
  .o-container {
    padding: 0 40px;
  }
}

@media (max-width: 999px) {
  .o-container {
    padding: 0 40px;
  }
}

@media (max-width: 500px) {
  .o-container {
    padding: 0 20px;
  }
}

.o-grid {
  position: relative;
  margin-left: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 999px) {
  .o-grid {
    display: block;
  }
}

.o-quarter {
  width: 25%;
}

.o-third {
  width: 33.33333%;
}

.o-two-fifths {
  width: 40%;
}

.o-half {
  width: 50%;
}

.o-three-fifths {
  width: 60%;
}

.o-two-thirds {
  width: 66.66667%;
}

.o-three-quarters {
  width: 75%;
}

.o-quarter,
.o-third,
.o-two-fifths,
.o-half,
.o-three-fifths,
.o-two-thirds,
.o-three-quarters {
  padding-left: 4rem;
  display: inline-block;
}

@media (max-width: 999px) {
  .o-quarter,
  .o-third,
  .o-two-fifths,
  .o-half,
  .o-three-fifths,
  .o-two-thirds,
  .o-three-quarters {
    width: 100%;
  }
}

.o-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--theme-1-bg);
  overflow: hidden;
  z-index: 9999;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-preloader__line {
  position: relative;
  height: 1.2px;
  width: 90px;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.c-preloader__line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-1-color);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-animation: lineAnim 1.2s infinite cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
          animation: lineAnim 1.2s infinite cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

@-webkit-keyframes lineAnim {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes lineAnim {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.c-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 62x;
  height: 62px;
  z-index: 10000;
}

.c-cursor__click {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  margin: 4px 0 0 4px;
}

.c-cursor__ripple {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid var(--theme-1-color);
  border-radius: 50%;
  opacity: 0;
}

.c-button {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  color: inherit;
  border: 0;
  font: inherit;
}

.c-button__circle {
  width: 47px;
  height: 47px;
  position: absolute;
  left: -2.5rem;
  top: -1.4rem;
}

.c-button__circle path {
  stroke: var(--theme-1-color);
  fill: none;
  stroke-dasharray: 164;
  stroke-dashoffset: 0;
  stroke-miterlimit: 10;
  stroke-width: 0.8;
  -webkit-transition: stroke-dashoffset 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: stroke-dashoffset 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-button:hover path {
  stroke-dashoffset: -164;
}

.c-button:hover .c-button__label:before {
  width: 100%;
}

.c-button__label {
  position: relative;
  padding: 1rem 0;
}

@media (max-width: 999px) {
  .c-button__label {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

@media (min-width: 1200px) {
  .c-button__label {
    font-size: 1.6rem;
  }
}

@media (max-width: 1199px) {
  .c-button__label {
    font-size: 1.5rem;
  }
}

@media (max-width: 700px) {
  .c-button__label {
    font-size: 1.4rem;
  }
}

.c-button__label:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-1-color);
  -webkit-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media (min-width: 1000px) {
  .c-button--rotate {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .c-button--rotate:hover {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}

.c-site-logo {
  position: fixed;
  z-index: 1000;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}

@media (min-width: 1000px) {
  .c-site-logo {
    bottom: 30px;
    left: 30px;
  }
}

@media (max-width: 999px) {
  .c-site-logo {
    bottom: 35px;
    left: 35px;
  }
}

@media (max-width: 499px) {
  .c-site-logo {
    bottom: 20px;
    left: 20px;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

@media (max-width: 999px) {
  .c-header {
    background: var(--theme-1-bg);
  }
}

.c-header__line {
  position: relative;
}

.c-header__line:after {
  content: "";
}

.c-header__line--lg, .c-header__line:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: var(--theme-1-bg);
  border-bottom: 1px solid var(--theme-1-color);
  z-index: -1;
}

@media (min-width: 999px) {
  .c-header__line:after {
    display: none;
  }
}

@media (max-width: 999px) {
  .c-header__line--lg {
    display: none;
  }
}

.c-header__line--lg {
  -webkit-transform: translateY(-130%);
          transform: translateY(-130%);
}

.c-header__tagline {
  font-family: Karla, Helvetica, Arial, sans-serif;
  padding: 25px 0;
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

@media (max-width: 1750px) {
  .c-header__tagline {
    font-size: 1.4rem;
  }
}

@media (max-width: 999px) {
  .c-header__tagline {
    display: none;
  }
}

.c-lang {
  position: relative;
  font-size: 1.9rem;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

@media (max-width: 1700px) {
  .c-lang {
    font-size: 1.4rem;
  }
}

@media (max-width: 999px) {
  .c-lang {
    font-size: 1.6rem;
  }
}

@media (max-width: 499px) {
  .c-lang {
    font-size: 1.4rem;
  }
}

@media (max-width: 999px) {
  .c-lang--desktop {
    display: none;
  }
}

.c-lang--mobile {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 56px;
  z-index: 100;
  -webkit-transform: translateX(100px) rotate(90deg);
          transform: translateX(100px) rotate(90deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

@media (max-width: 999px) {
  .c-lang--mobile {
    display: block;
  }
}

@media (max-width: 499px) {
  .c-lang--mobile {
    bottom: 8px;
  }
}

.c-lang__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-lang__item {
  position: relative;
}

.c-lang__item:not(:last-child):before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background-color: var(--theme-1-color);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.c-lang__link {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 30px 9px;
}

@media (max-width: 999px) {
  .c-lang__link {
    padding: 20px;
  }
}

.c-menu {
  position: relative;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}

@media (max-width: 999px) {
  .c-menu {
    width: 100%;
  }
}

.c-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 999px) {
  .c-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-menu__item {
  position: relative;
}

.c-menu__item:not(:last-child):before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 1px;
  background-color: var(--theme-1-color);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

@media (min-width: 1000px) {
  .c-menu__item:not(:last-child):before {
    height: 14px;
  }
}

.c-menu__link {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 30px 9px;
  font-size: 1.9rem;
}

@media (max-width: 1700px) {
  .c-menu__link {
    font-size: 1.4rem;
  }
}

@media (max-width: 999px) {
  .c-menu__link {
    padding: 20px;
    font-size: 1.6rem;
  }
}

@media (max-width: 499px) {
  .c-menu__link {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .c-menu__link {
    font-size: 1.15rem;
  }
}

.c-svg-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 1.1rem;
  left: 50%;
  fill: none;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  stroke-miterlimit: 10;
  stroke: var(--theme-1-color);
  stroke-width: 2.3px;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  -webkit-transition: stroke-dashoffset 0.3s linear, stroke 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: stroke-dashoffset 0.3s linear, stroke 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-site-logo__svg {
  fill: var(--theme-1-color);
}

@media (min-width: 1000px) {
  .c-site-logo__svg {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 999px) {
  .c-site-logo__svg {
    width: 95px;
    height: 70px;
  }
}

@media (max-width: 699px) {
  .c-site-logo__svg {
    width: 75px;
    height: 54px;
  }
}

.c-footer__link .c-svg-circle {
  left: -1.3rem;
  bottom: 0;
  top: 0.2rem;
}

@media (max-width: 999px) {
  .c-footer__link .c-svg-circle {
    display: none;
  }
}

.is-active .c-svg-circle {
  stroke-dashoffset: 0;
}

@media (hover) {
  .c-menu__link:hover .c-svg-circle,
  .c-lang__link:hover .c-svg-circle,
  .c-footer__link:hover .c-svg-circle {
    stroke-dashoffset: 0;
  }
}

.c-home-header-play__circle {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0%;
  left: 0;
}

@media (max-width: 768px) {
  .c-home-header-play__circle {
    width: 120px;
    height: 120px;
  }
}

.c-home-header-play__circle path {
  fill: none;
  stroke-dasharray: 308;
  stroke-dashoffset: -308;
  stroke-miterlimit: 10;
  stroke-width: 0.6;
  stroke: var(--theme-1-color);
  -webkit-transition: stroke 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: stroke 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-home-header {
  position: relative;
  z-index: 0;
  min-height: 100vh;
}

@media (max-width: 999px) {
  .c-home-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 130px 0;
  }
}

@media (min-width: 1000px) {
  .c-home-header {
    margin-bottom: 130px;
  }
}

.c-home-header-title-container--primary {
  z-index: 1;
}

.c-home-header-title-container--secondary {
  z-index: 3;
}

@media (max-width: 999px) {
  .c-home-header-title-container--secondary {
    display: none;
  }
}

@media (min-width: 1000px) {
  .c-home-header__title-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1000px) {
  .c-home-header__title-container {
    position: relative;
    width: 100%;
    height: 100vh;
  }
}

.c-home-header__title {
  text-align: center;
}

@media (min-width: 1000px) {
  .c-home-header__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 319px) {
  .c-home-header__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 320px) {
  .c-home-header__title {
    font-size: 3rem;
  }
}

@media (min-width: 500px) {
  .c-home-header__title {
    font-size: 3.7rem;
  }
}

@media (min-width: 700px) {
  .c-home-header__title {
    font-size: 5rem;
  }
}

@media (min-width: 1000px) {
  .c-home-header__title {
    font-size: 6.2rem;
  }
}

@media (min-width: 1200px) {
  .c-home-header__title {
    font-size: 5vw;
  }
}

@media (max-width: 999px) {
  .c-home-header__title--secondary {
    display: none;
  }
}

.c-home-header__title-line {
  -webkit-transform: translateY(3vw) scaleY(0);
          transform: translateY(3vw) scaleY(0);
}

.c-home-header__title-line--primary:nth-child(1), .c-home-header__title-line--primary:nth-child(3) {
  opacity: 0;
}

.c-home-header__title-line--secondary:nth-child(2) {
  opacity: 0;
}

.c-home-header-play {
  position: relative;
  width: 150px;
  height: 150px;
  display: inline-block;
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 768px) {
  .c-home-header-play {
    width: 120px;
    height: 120px;
  }
}

.c-home-header-play:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-1-bg);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s opacity cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 0.5s opacity cubic-bezier(0.39, 0.575, 0.565, 1);
}

.c-home-header-play:hover:before {
  opacity: 1;
}

.c-home-header-play:hover .c-home-header-play__label span {
  -webkit-transform: translate3d(0, -1.3rem, 0);
          transform: translate3d(0, -1.3rem, 0);
}

.c-home-header-play__wrap {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1000px) {
  .c-home-header-play__wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding-bottom: 2rem;
  }
}

.c-home-header-play__label {
  position: absolute;
  left: 0;
  bottom: 5rem;
  width: 100%;
  display: inline-block;
}

@media (max-width: 999px) {
  .c-home-header-play__label {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

@media (min-width: 1200px) {
  .c-home-header-play__label {
    font-size: 1.7rem;
  }
}

@media (max-width: 1199px) {
  .c-home-header-play__label {
    font-size: 1.6rem;
  }
}

@media (max-width: 700px) {
  .c-home-header-play__label {
    font-size: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .c-home-header-play__label span {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.1, 0.83, 0.6, 1.33);
    transition: -webkit-transform 0.3s cubic-bezier(0.1, 0.83, 0.6, 1.33);
    transition: transform 0.3s cubic-bezier(0.1, 0.83, 0.6, 1.33);
    transition: transform 0.3s cubic-bezier(0.1, 0.83, 0.6, 1.33), -webkit-transform 0.3s cubic-bezier(0.1, 0.83, 0.6, 1.33);
  }
}

.c-home-header-play__label span:last-child {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.c-home-header-video {
  width: 200px;
  height: 100px;
  position: relative;
  z-index: -3;
  margin: -30px -70px -40px 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: perspective(1000px) rotateX(-90deg);
          transform: perspective(1000px) rotateX(-90deg);
}

@media (min-width: 499px) {
  .c-home-header-video {
    width: 300px;
    height: 290px;
  }
}

@media (min-width: 768px) {
  .c-home-header-video {
    width: 400px;
    height: 290px;
  }
}

@media (min-width: 1000px) {
  .c-home-header-video {
    width: 450px;
    height: 300px;
  }
}

@media (min-width: 1000px) {
  .c-home-header-video__wrap {
    position: absolute;
    bottom: 5vw;
    left: 50vw;
    z-index: 2;
  }
}

.c-home-header-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about {
  position: relative;
}

.c-about:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: var(--theme-1-color);
}

@media (min-width: 700px) {
  .c-about .o-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-about .o-half {
    width: 50%;
  }
}

.c-about__video {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.c-about__video video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-about__content {
  padding: 50px 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1000px) {
  .c-about__content {
    padding: 70px 10px 60px 0;
  }
}

.c-about__text {
  margin-bottom: 3.5rem;
  font-family: Karla, Helvetica, Arial, sans-serif;
  line-height: 1.3;
  opacity: 0;
}

@media (max-width: 319px) {
  .c-about__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 320px) {
  .c-about__text {
    font-size: 1.7rem;
  }
}

@media (min-width: 500px) {
  .c-about__text {
    font-size: 1.9rem;
  }
}

@media (min-width: 700px) {
  .c-about__text {
    font-size: 2.2rem;
  }
}

@media (min-width: 1000px) {
  .c-about__text {
    font-size: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .c-about__text {
    font-size: 2.6rem;
  }
}

.c-about .o-about-button-wrap {
  width: 100%;
  padding-left: 4.2rem;
}

.c-work {
  position: relative;
  padding-bottom: 80px;
}

.c-work:before, .c-work:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-1-color);
}

.c-work:after {
  bottom: 0;
}

@media (min-width: 1000px) {
  .c-work .o-work-button-wrap {
    padding: 50px 0 90px 30px;
  }
}

@media (max-width: 999px) {
  .c-work .o-work-button-wrap {
    text-align: center;
    padding: 70px 0 30px 0;
  }
}

.c-work__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 999px) {
  .c-work__list {
    margin-top: 25px;
  }
}

.c-work__item {
  position: relative;
  width: 100%;
}

@media (min-width: 700px) {
  .c-work__item {
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .c-work__item {
    margin-bottom: 70px;
  }
  .c-work__item:nth-child(1) {
    padding: 0 4vw;
  }
  .c-work__item:nth-child(2) {
    padding-left: 11vw;
  }
  .c-work__item:nth-child(3) {
    padding-left: 11.3vw;
  }
  .c-work__item:nth-child(4) {
    padding: 0 11vw 0 6vw;
  }
  .c-work__item:nth-child(5) {
    padding-left: 5vw;
    margin-left: 17vw;
  }
}

@media (max-width: 999px) {
  .c-work__item {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.c-work__link {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}

@media (hover) {
  .c-work__link:hover .c-quickview__label {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .c-work__link:hover .c-work__marquee,
  .c-work__link:hover .c-work__video {
    opacity: 1;
  }
  .c-work__link:hover .c-work__text,
  .c-work__link:hover .c-work__thumbnail {
    opacity: 0;
  }
}

.c-work__showcase {
  position: relative;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.c-work__thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  -webkit-transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-work__title {
  padding: 15px 0;
  position: relative;
  font-size: 1.3rem;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  .c-work__title:before {
    position: absolute;
    content: "";
    background-color: var(--theme-1-color);
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}

.c-work__text {
  -webkit-transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-work__marquee {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-work__marquee span {
  margin-left: 20px;
}

.c-work__video {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100%;
  opacity: 0;
  z-index: 3;
  -webkit-transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-work-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 100px;
}

@media (min-width: 1000px) {
  .c-work-header {
    height: 100vh;
    padding-top: 65px;
  }
}

@media (max-width: 999px) {
  .c-work-header {
    padding-top: 120px;
  }
}

.c-work-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

@media (min-width: 1000px) {
  .c-work-header__title {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (max-width: 319px) {
  .c-work-header__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 320px) {
  .c-work-header__title {
    font-size: 3rem;
  }
}

@media (min-width: 500px) {
  .c-work-header__title {
    font-size: 3.7rem;
  }
}

@media (min-width: 700px) {
  .c-work-header__title {
    font-size: 5rem;
  }
}

@media (min-width: 1000px) {
  .c-work-header__title {
    font-size: 6.2rem;
  }
}

@media (min-width: 1200px) {
  .c-work-header__title {
    font-size: 5vw;
  }
}

.c-quickview {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  z-index: 20;
  background: none;
  border: 0;
}

@media (min-width: 1000px) {
  .c-quickview {
    width: 100px;
    height: 100px;
  }
}

.c-quickview__label {
  color: var(--theme-1-color);
  background-color: var(--theme-1-bg);
  display: inline-block;
  -webkit-transform: translate(-105%, -50%);
          transform: translate(-105%, -50%);
  -webkit-transition: border-radius 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: border-radius 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), border-radius 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), border-radius 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media (min-width: 1000px) {
  .c-quickview__label {
    padding: 5px 10px;
  }
}

@media (max-width: 999px) {
  .c-quickview__label {
    display: none;
  }
}

.c-quickview__play {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

@media (min-width: 1000px) {
  .c-quickview__play {
    width: 80px;
    height: 80px;
  }
}

.c-quickview__play:before, .c-quickview__play:after {
  position: absolute;
  content: "";
  border-radius: 100%;
  background-color: var(--theme-1-bg);
  -webkit-transition: opacity 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-quickview__play:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale3d(2, 2, 1);
          transform: scale3d(2, 2, 1);
  opacity: 0;
}

.c-quickview__play:after {
  top: 6px;
  left: 6px;
  bottom: 6px;
  right: 6px;
  border: 1px solid var(--theme-1-color);
  width: 68px;
  height: 68px;
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
}

.c-quickview__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  fill: var(--theme-1-color);
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
          transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
  -webkit-transition: -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.3s 0s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media (min-width: 1000px) {
  .c-quickview__svg {
    width: 30px;
    height: 45px;
    margin-left: 3.1px;
  }
}

@media (hover) {
  .c-quickview:hover .c-quickview__play:before {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  .c-quickview:hover .c-quickview__play:after {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  .c-quickview:hover .c-quickview__label {
    border-radius: 100%;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(0, 1, 1);
            transform: translate3d(0, -50%, 0) scale3d(0, 1, 1);
  }
  .c-quickview:hover .c-quickview__svg {
    -webkit-transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
            transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
  }
}

.c-clients__header {
  position: relative;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: Karla, Helvetica, Arial, sans-serif;
}

@media (min-width: 1000px) {
  .c-clients__header {
    font-size: 1.9rem;
  }
}

@media (min-width: 500px) {
  .c-clients__header {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .c-clients__header {
    font-size: 1.5rem;
  }
}

.c-clients__header:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-1-color);
}

.c-clients__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.c-clients__item {
  position: relative;
}

@media (min-width: 1000px) {
  .c-clients__item {
    width: 25%;
  }
}

@media (max-width: 999px) {
  .c-clients__item {
    width: 33.33333%;
  }
}

@media (max-width: 699px) {
  .c-clients__item {
    width: 50%;
  }
}

.c-clients__item:before, .c-clients__item:after {
  position: absolute;
  content: "";
  background-color: var(--theme-1-color);
}

.c-clients__item:before {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

.c-clients__item:after {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

@media (min-width: 1000px) {
  .c-clients__item:nth-child(4):before, .c-clients__item:nth-child(8):before {
    display: none;
  }
}

@media (max-width: 999px) {
  .c-clients__item:nth-child(3):before, .c-clients__item:nth-child(6):before, .c-clients__item:nth-child(9):before {
    display: none;
  }
}

@media (max-width: 699px) {
  .c-clients__item:nth-child(2):before, .c-clients__item:nth-child(4):before, .c-clients__item:nth-child(6):before, .c-clients__item:nth-child(8):before {
    display: none;
  }
  .c-clients__item:nth-child(3):before {
    display: block;
  }
}

.c-clients__item--desktop {
  display: none;
}

@media (max-width: 999px) {
  .c-clients__item--desktop {
    display: block;
  }
}

@media (min-width: 700px) {
  .c-clients__item--desktop {
    display: block;
  }
}

@media (min-width: 1000px) {
  .c-clients__item--desktop {
    display: none;
  }
}

@media (max-width: 699px) {
  .c-clients__item--desktop {
    display: none;
  }
}

.c-clients__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1000px) {
  .c-clients__link {
    height: 9vw;
  }
}

@media (max-width: 999px) {
  .c-clients__link {
    height: 12vw;
  }
}

@media (max-width: 699px) {
  .c-clients__link {
    height: 13vw;
  }
}

.c-clients__link svg {
  fill: var(--theme-1-color);
}

@media (min-width: 1000px) {
  .c-clients__link svg {
    max-width: 13vw;
    max-height: 3vw;
  }
}

@media (max-width: 999px) {
  .c-clients__link svg {
    max-width: 17vw;
    max-height: 5vw;
  }
}

@media (max-width: 699px) {
  .c-clients__link svg {
    max-width: 23vw;
    max-height: 5.5vw;
  }
}

.c-clients__link path {
  fill: var(--theme-1-color);
}

.c-clients__link .ford1 {
  fill: var(--theme-1-bg);
}

.c-clients__text {
  position: relative;
  padding: 25px 0;
  text-transform: uppercase;
}

.c-clients__text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--theme-1-color);
}

@media (min-width: 1000px) {
  .c-clients__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 999px) {
  .c-clients__text {
    text-align: center;
    font-size: 1.5rem;
  }
}

@media (max-width: 499px) {
  .c-clients__text {
    text-align: center;
    font-size: 1.4rem;
  }
}

.c-footer {
  position: relative;
}

.c-footer__links-container, .c-footer__copyright-container {
  padding: 60px 0;
  overflow: hidden;
}

@media (max-width: 999px) {
  .c-footer__copyright-container {
    display: none;
  }
}

.c-footer__copyright--desktop {
  overflow: hidden;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-footer__copyright--desktop:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-footer__copyright--mobile {
  display: none;
}

@media (max-width: 999px) {
  .c-footer__copyright--mobile {
    display: block;
  }
}

.c-footer__copyright--hide {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-footer__copyright:hover .c-footer__copyright--hide {
  opacity: 1;
}

.c-footer__text {
  text-transform: uppercase;
  line-height: 1.6;
}

.c-footer__text--space {
  margin-left: 2rem;
}

@media (max-width: 999px) {
  .c-footer__text--space {
    margin-left: 0;
  }
}

@media (min-width: 1000px) {
  .c-footer__text {
    font-size: 1.44rem;
  }
}

@media (max-width: 999px) {
  .c-footer__text {
    text-align: center;
    padding-bottom: 20px;
    font-size: 1.4rem;
  }
  .c-footer__text--social {
    margin: 0 10px;
  }
}

.c-footer__link {
  line-height: 1.8;
  position: relative;
}

@media (max-width: 999px) {
  .c-footer__link--social {
    margin-left: 10px;
  }
}

@media (max-width: 999px) {
  .c-footer__br--mobile {
    display: none;
  }
}

.c-footer__buttons {
  padding: 80px 0 15px 0;
}

@media (max-width: 999px) {
  .c-footer__buttons {
    display: none;
  }
}

.c-footer__buttons .c-button__wrap {
  padding: 20px 0;
}

.c-footer__buttons .c-button {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.c-marquee {
  padding: 30px 0;
  position: relative;
}

.c-marquee:before, .c-marquee:after {
  position: absolute;
  content: "";
  background-color: var(--theme-1-color);
  height: 1px;
  width: 100%;
}

.c-marquee:before {
  top: 0;
}

.c-marquee:after {
  bottom: 0;
}

.c-marquee__text {
  font-family: perpetua titling mt, Georgia, times new roman, Times, serif;
  margin-left: 60px;
}

@media (min-width: 1000px) {
  .c-marquee__text {
    font-size: 5vw;
  }
}

@media (max-width: 999px) {
  .c-marquee__text {
    font-size: 50px;
  }
}

@media (max-width: 499px) {
  .c-marquee__text {
    font-size: 30px;
  }
}
/*# sourceMappingURL=main.css.map */