@charset "UTF-8";
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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}

body, html {
  min-width: 300px;
  overflow-x: clip;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@font-face {
  font-family: "Romie";
  src: url("../fonts/Romie-Regular.woff2") format("woff2"), url("../fonts/Romie-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Romie";
  src: url("../fonts/Romie-Italic.woff2") format("woff2"), url("../fonts/Romie-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Romie";
  src: url("../fonts/Romie-Medium.woff2") format("woff2"), url("../fonts/Romie-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Romie";
  src: url("../fonts/Romie-MediumItalic.woff2") format("woff2"), url("../fonts/Romie-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Romie";
  src: url("../fonts/Romie-BoldItalic.woff2") format("woff2"), url("../fonts/Romie-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BureauSans";
  src: url("../fonts/STKBureauSans-Book.woff2") format("woff2"), url("../fonts/STKBureauSans-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BureauSans";
  src: url("../fonts/STKBureauSans-SemiBold.woff2") format("woff2"), url("../fonts/STKBureauSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary: #FB5F4F;
  --color-text-title: #000;
  --color-text: #051918;
  --color-page-bg: #fff;
  --color-border:#CFD2D1;
  --color-green-dark: #0F1C19;
  --color-pink-light: #FFF2F1;
  --color-gray-bg: #F8F8F8;
  --color-purple: #A893F4;
  --color-purple-bg:#ECEAFC;
  --color-yellow:#F79C00;
  --color-yellow-bg:#FFF7E9;
  --color-blue:#1C89CB;
  --color-blue-bg:#EBF5F9;
  --color-green:#009777;
  --color-green-bg:#EAF9F0;
  --radius-pill: 999px;
  --radius-card: 6px;
  --font-family: "BureauSans", sans-serif;
  --font-family-serif: "Romie", serif;
  --size-16: max(0.88vw, 16px);
  --size-20: max(1.11vw, 20px);
  --size-22: max(1.22vw, 22px);
  --size-24: max(1.33vw, 24px);
  --size-25: max(1.38vw, 25px);
  --size-28: max(1.55vw, 28px);
  --size-30: max(1.66vw, 30px);
  --size-32: max(1.77vw, 32px);
  --size-36: max(2vw, 36px);
  --size-48: max(2.66vw, 48px);
  --size-56: max(3.11vw, 56px);
  --size-64: max(3.55vw, 64px);
  --size-68: max(3.77vw, 68px);
  --size-72: max(4vw, 72px);
  --size-80: max(4.44vw, 80px);
  --size-82: max(4.55vw, 82px);
  --size-96: max(5.33vw, 96px);
  --size-128: max(7.11vw, 128px);
  --size-200: max(11.11vw, 200px);
  --size-224: max(12.44vw, 224px);
  --size-240: max(13.33vw, 240px);
  --size-268: max(14.88vw, 268px);
  --size-364: max(20.02vw, 364px);
}

html, body {
  font-family: var(--font-family);
  font-size: var(--size-20);
  color: var(--color-text);
  background-color: var(--color-page-bg);
}

.icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
}

.icon-arrow {
  -webkit-mask-image: url("data:image/svg+xml,<svg width='25' height='22' viewBox='0 0 25 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.302e-07 10.9184C1.45411e-07 9.64291 1.02041 8.57148 2.7551 8.57148C6.63265 8.57148 6.63265 10.4592 22.5 10.4592C15.5612 7.90822 11.7857 4.23475 11.7857 2.14291C11.7857 0.714342 12.8061 5.35585e-05 13.8776 5.35712e-05C16.9898 5.36084e-05 16.8367 7.65312 25 10.8674L25 10.9694C16.8367 14.1837 16.9898 21.8368 13.8776 21.8368C12.8061 21.8368 11.7857 21.1225 11.7857 19.6939C11.7857 17.6021 15.5612 13.9286 22.5 11.3776C6.63265 11.3776 6.63265 13.2654 2.7551 13.2654C0.969387 13.2654 1.15598e-07 12.1429 1.302e-07 10.9184Z' fill='white'/></svg>");
  mask-image: url("data:image/svg+xml,<svg width='25' height='22' viewBox='0 0 25 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.302e-07 10.9184C1.45411e-07 9.64291 1.02041 8.57148 2.7551 8.57148C6.63265 8.57148 6.63265 10.4592 22.5 10.4592C15.5612 7.90822 11.7857 4.23475 11.7857 2.14291C11.7857 0.714342 12.8061 5.35585e-05 13.8776 5.35712e-05C16.9898 5.36084e-05 16.8367 7.65312 25 10.8674L25 10.9694C16.8367 14.1837 16.9898 21.8368 13.8776 21.8368C12.8061 21.8368 11.7857 21.1225 11.7857 19.6939C11.7857 17.6021 15.5612 13.9286 22.5 11.3776C6.63265 11.3776 6.63265 13.2654 2.7551 13.2654C0.969387 13.2654 1.15598e-07 12.1429 1.302e-07 10.9184Z' fill='white'/></svg>");
}

.icon-instagram {
  -webkit-mask-image: url("data:image/svg+xml,<svg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M17.0152 0L5.67944 0C2.54773 0 0 2.54848 0 5.68111L0 16.0548C0 19.1874 2.54773 21.7359 5.67944 21.7359H17.0152C20.1469 21.7359 22.6947 19.1874 22.6947 16.0548V5.68111C22.6947 2.54848 20.1469 0 17.0152 0ZM2.00353 5.68111C2.00353 3.65389 3.65281 2.00411 5.67944 2.00411L17.0152 2.00411C19.0418 2.00411 20.6911 3.65389 20.6911 5.68111V16.0548C20.6911 18.082 19.0418 19.7318 17.0152 19.7318H5.67944C3.65281 19.7318 2.00353 18.082 2.00353 16.0548L2.00353 5.68111Z' fill='white'/><path d='M11.3474 16.1513C14.2596 16.1513 16.6302 13.7813 16.6302 10.8669C16.6302 7.95253 14.2609 5.58252 11.3474 5.58252C8.43384 5.58252 6.06451 7.95253 6.06451 10.8669C6.06451 13.7813 8.43384 16.1513 11.3474 16.1513ZM11.3474 7.58792C13.1558 7.58792 14.6267 9.05923 14.6267 10.8682C14.6267 12.6772 13.1558 14.1485 11.3474 14.1485C9.53892 14.1485 8.06804 12.6772 8.06804 10.8682C8.06804 9.05923 9.53892 7.58792 11.3474 7.58792Z' fill='white'/><path d='M17.1192 6.436C17.9034 6.436 18.5426 5.79792 18.5426 5.01219C18.5426 4.22646 17.9047 3.58838 17.1192 3.58838C16.3337 3.58838 15.6958 4.22646 15.6958 5.01219C15.6958 5.79792 16.3337 6.436 17.1192 6.436Z' fill='white'/></svg>");
  mask-image: url("data:image/svg+xml,<svg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M17.0152 0L5.67944 0C2.54773 0 0 2.54848 0 5.68111L0 16.0548C0 19.1874 2.54773 21.7359 5.67944 21.7359H17.0152C20.1469 21.7359 22.6947 19.1874 22.6947 16.0548V5.68111C22.6947 2.54848 20.1469 0 17.0152 0ZM2.00353 5.68111C2.00353 3.65389 3.65281 2.00411 5.67944 2.00411L17.0152 2.00411C19.0418 2.00411 20.6911 3.65389 20.6911 5.68111V16.0548C20.6911 18.082 19.0418 19.7318 17.0152 19.7318H5.67944C3.65281 19.7318 2.00353 18.082 2.00353 16.0548L2.00353 5.68111Z' fill='white'/><path d='M11.3474 16.1513C14.2596 16.1513 16.6302 13.7813 16.6302 10.8669C16.6302 7.95253 14.2609 5.58252 11.3474 5.58252C8.43384 5.58252 6.06451 7.95253 6.06451 10.8669C6.06451 13.7813 8.43384 16.1513 11.3474 16.1513ZM11.3474 7.58792C13.1558 7.58792 14.6267 9.05923 14.6267 10.8682C14.6267 12.6772 13.1558 14.1485 11.3474 14.1485C9.53892 14.1485 8.06804 12.6772 8.06804 10.8682C8.06804 9.05923 9.53892 7.58792 11.3474 7.58792Z' fill='white'/><path d='M17.1192 6.436C17.9034 6.436 18.5426 5.79792 18.5426 5.01219C18.5426 4.22646 17.9047 3.58838 17.1192 3.58838C16.3337 3.58838 15.6958 4.22646 15.6958 5.01219C15.6958 5.79792 16.3337 6.436 17.1192 6.436Z' fill='white'/></svg>");
}

.icon-linkedin {
  -webkit-mask-image: url("data:image/svg+xml,<svg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.772402 4.30101C0.256542 3.82205 0 3.2292 0 2.5238C0 1.8184 0.257914 1.19945 0.772402 0.719122C1.28826 0.240164 1.9523 0 2.76588 0C3.57945 0 4.21743 0.240164 4.73192 0.719122C5.24778 1.19808 5.50432 1.80056 5.50432 2.5238C5.50432 3.24704 5.24641 3.82205 4.73192 4.30101C4.21606 4.77997 3.56162 5.02013 2.76588 5.02013C1.97013 5.02013 1.28826 4.77997 0.772402 4.30101ZM5.07079 7.0485L5.07079 21.7329H0.432157L0.432157 7.0485H5.07079Z' fill='%23FEFFFC'/><path d='M20.5123 8.4989C21.5234 9.5968 22.0283 11.1037 22.0283 13.0222V21.4733H17.6229V13.6179C17.6229 12.6503 17.3719 11.8983 16.8711 11.363C16.3703 10.8278 15.6953 10.5588 14.8502 10.5588C14.005 10.5588 13.33 10.8264 12.8292 11.363C12.3285 11.8983 12.0774 12.6503 12.0774 13.6179V21.4733H7.64597L7.64597 7.00713H12.0774V8.9257C12.526 8.28618 13.1311 7.78116 13.8912 7.40924C14.6512 7.03733 15.506 6.85205 16.4567 6.85205C18.1498 6.85205 19.5025 7.401 20.5123 8.49752V8.4989Z' fill='%23FEFFFC'/></svg>");
  mask-image: url("data:image/svg+xml,<svg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.772402 4.30101C0.256542 3.82205 0 3.2292 0 2.5238C0 1.8184 0.257914 1.19945 0.772402 0.719122C1.28826 0.240164 1.9523 0 2.76588 0C3.57945 0 4.21743 0.240164 4.73192 0.719122C5.24778 1.19808 5.50432 1.80056 5.50432 2.5238C5.50432 3.24704 5.24641 3.82205 4.73192 4.30101C4.21606 4.77997 3.56162 5.02013 2.76588 5.02013C1.97013 5.02013 1.28826 4.77997 0.772402 4.30101ZM5.07079 7.0485L5.07079 21.7329H0.432157L0.432157 7.0485H5.07079Z' fill='%23FEFFFC'/><path d='M20.5123 8.4989C21.5234 9.5968 22.0283 11.1037 22.0283 13.0222V21.4733H17.6229V13.6179C17.6229 12.6503 17.3719 11.8983 16.8711 11.363C16.3703 10.8278 15.6953 10.5588 14.8502 10.5588C14.005 10.5588 13.33 10.8264 12.8292 11.363C12.3285 11.8983 12.0774 12.6503 12.0774 13.6179V21.4733H7.64597L7.64597 7.00713H12.0774V8.9257C12.526 8.28618 13.1311 7.78116 13.8912 7.40924C14.6512 7.03733 15.506 6.85205 16.4567 6.85205C18.1498 6.85205 19.5025 7.401 20.5123 8.49752V8.4989Z' fill='%23FEFFFC'/></svg>");
}

@media all and (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
.font-italic {
  font-style: italic;
}

.tac {
  text-align: center;
}

p .font-italic {
  font-family: var(--font-family-serif);
  font-weight: 500;
}

.title-1, .title-2, .title-3, .title-4, .title-5 {
  font-family: var(--font-family-serif);
  line-height: 115%;
  color: var(--color-text-title);
}

.title-1 {
  font-size: var(--size-96);
}

.title-2 {
  font-size: var(--size-72);
}

.title-3 {
  font-size: var(--size-56);
}

.title-4 {
  font-size: var(--size-48);
}

.title-5 {
  font-size: var(--size-36);
  font-weight: 500;
}

.title-6 {
  font-family: var(--font-family);
  line-height: 110%;
  color: var(--color-primary);
  font-size: var(--size-20);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media all and (max-width: 1024px) {
  .title-1 {
    font-size: 72px;
  }
  .title-2 {
    font-size: 64px;
  }
  .title-3 {
    font-size: 48px;
  }
  .title-4 {
    font-size: 42px;
  }
  .title-5 {
    font-size: 32px;
  }
}
@media all and (max-width: 660px) {
  .title-1 {
    font-size: 56px;
  }
  .title-2 {
    font-size: 48px;
  }
  .title-3 {
    font-size: 42px;
  }
  .title-4 {
    font-size: 36px;
  }
}
@media all and (max-width: 380px) {
  .title-2 {
    font-size: 42px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wrap {
  margin: 0 auto;
  width: max(65.55vw, 1180px);
  max-width: 100%;
  box-sizing: border-box;
}

@media all and (max-width: 1280px) {
  .wrap {
    width: 1024px;
  }
}
@media all and (max-width: 1024px) {
  .wrap {
    width: 100%;
  }
}
.btn, .btn-outline {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s;
  font-family: var(--font-family);
  font-size: var(--size-20);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--size-24);
  min-height: var(--size-48);
  min-width: var(--size-224);
  color: #fff;
  background-color: var(--color-primary);
  letter-spacing: -0.02em;
}
.btn .icon-arrow, .btn-outline .icon-arrow {
  width: var(--size-25);
  height: var(--size-22);
  transition: transform 0.3s;
  transform: translateX(0);
}
.btn:hover, .btn-outline:hover {
  color: var(--color-primary);
  background-color: transparent;
}
.btn:hover .icon-arrow, .btn-outline:hover .icon-arrow {
  transform: translateX(5px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
}
.btn-outline:hover {
  color: #fff;
  background-color: var(--color-primary);
}

.btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-32);
}

.separator {
  text-align: center;
}
.separator:not(:last-child) {
  margin-bottom: var(--size-32);
}
.separator::before {
  content: "";
  display: inline-block;
  background-image: url(../images/star.svg);
  width: 14px;
  height: 18px;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.logo-bar {
  background-color: var(--color-pink-light);
  padding: 10px var(--size-24);
  overflow: hidden;
}
.logo-bar_inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--size-32);
}

@media (max-width: 1024px) {
  .logo-bar {
    padding: 18px 24px;
  }
  .logo-bar_inner {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    justify-items: start;
    row-gap: 24px;
    column-gap: 32px;
  }
  .logo-bar_inner > img:nth-child(1) {
    order: 1;
  }
  .logo-bar_inner > img:nth-child(2) {
    order: 3;
  }
  .logo-bar_inner > img:nth-child(3) {
    order: 5;
  }
  .logo-bar_inner > img:nth-child(4) {
    order: 7;
  }
  .logo-bar_inner > img:nth-child(5) {
    order: 9;
  }
  .logo-bar_inner > img:nth-child(6) {
    order: 11;
  }
  .logo-bar_inner > img:nth-child(7) {
    order: 13;
  }
  .logo-bar_inner > img:nth-child(8) {
    order: 20;
  }
  .logo-bar_inner > img:nth-child(9) {
    order: 17;
  }
  .logo-bar_inner > img:nth-child(10) {
    order: 19;
  }
  .logo-bar_inner > img:nth-child(11) {
    order: 2;
  }
  .logo-bar_inner > img:nth-child(12) {
    order: 4;
  }
  .logo-bar_inner > img:nth-child(13) {
    order: 6;
  }
  .logo-bar_inner > img:nth-child(14) {
    order: 15;
  }
  .logo-bar_inner > img:nth-child(15) {
    order: 8;
  }
  .logo-bar_inner > img:nth-child(16) {
    order: 10;
  }
  .logo-bar_inner > img:nth-child(17) {
    order: 12;
  }
  .logo-bar_inner > img:nth-child(18) {
    order: 14;
  }
  .logo-bar_inner > img:nth-child(19) {
    order: 16;
  }
  .logo-bar_inner > img:nth-child(20) {
    order: 18;
  }
  .logo-bar_inner > img:nth-child(21) {
    order: 21;
  }
}
@media all and (max-width: 660px) {
  .btn-row {
    flex-direction: column;
    gap: 16px;
  }
  .logo-bar_inner {
    grid-template-rows: repeat(3, auto);
    justify-items: start;
  }
  .logo-bar_inner > img:nth-child(1) {
    order: 1;
  }
  .logo-bar_inner > img:nth-child(2) {
    order: 4;
  }
  .logo-bar_inner > img:nth-child(3) {
    order: 7;
  }
  .logo-bar_inner > img:nth-child(4) {
    order: 10;
  }
  .logo-bar_inner > img:nth-child(5) {
    order: 13;
  }
  .logo-bar_inner > img:nth-child(6) {
    order: 16;
  }
  .logo-bar_inner > img:nth-child(7) {
    order: 19;
  }
  .logo-bar_inner > img:nth-child(8) {
    order: 2;
  }
  .logo-bar_inner > img:nth-child(9) {
    order: 5;
  }
  .logo-bar_inner > img:nth-child(10) {
    order: 8;
  }
  .logo-bar_inner > img:nth-child(11) {
    order: 11;
  }
  .logo-bar_inner > img:nth-child(12) {
    order: 14;
  }
  .logo-bar_inner > img:nth-child(13) {
    order: 17;
  }
  .logo-bar_inner > img:nth-child(14) {
    order: 20;
  }
  .logo-bar_inner > img:nth-child(15) {
    order: 3;
  }
  .logo-bar_inner > img:nth-child(16) {
    order: 6;
  }
  .logo-bar_inner > img:nth-child(17) {
    order: 9;
  }
  .logo-bar_inner > img:nth-child(18) {
    order: 12;
  }
  .logo-bar_inner > img:nth-child(19) {
    order: 15;
  }
  .logo-bar_inner > img:nth-child(20) {
    order: 18;
  }
  .logo-bar_inner > img:nth-child(21) {
    order: 21;
  }
}
.section-hero {
  text-align: center;
  padding: var(--size-128) 32px;
}
.section-hero .logo-wrap {
  margin: 0 auto var(--size-128);
  width: var(--size-200);
}
.section-hero .logo-wrap a {
  display: block;
}
.section-hero .logo-wrap_img {
  display: block;
  width: 100%;
}
.section-hero .title-1:not(:last-child), .section-hero p:not(:last-child) {
  margin-bottom: var(--size-32);
}
.section-hero p {
  line-height: 120%;
  font-size: var(--size-56);
}
.section-hero .btn-row:not(:first-child), .section-hero .logo-bar:not(:first-child) {
  margin-top: var(--size-128);
}

.section-video-parallax {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  background: #000;
  overflow: hidden;
}
.section-video-parallax_inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.section-video-parallax_inner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 160vh);
  height: max(62.5vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
}
.section-video-parallax_placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000 url("../images/video-placeholder.svg") center/cover no-repeat;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.section-video-parallax.is-playing .section-video-parallax_placeholder {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s 0.8s;
}

.section-approach,
.section-whatwedo,
.section-feedback,
.section-footer {
  position: relative;
  z-index: 1;
}

.section-whatwedo,
.section-footer {
  background-color: var(--color-page-bg);
}

.section-approach {
  background-color: var(--color-green-dark);
  padding: var(--size-268) 32px;
  color: #fff;
}
.section-approach .title-6:not(:last-child) {
  margin-bottom: var(--size-96);
}
.section-approach .title-2 {
  color: inherit;
  padding-right: 2%;
}
.section-approach_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-32);
}
.section-approach_text {
  display: flex;
  flex-direction: column;
  gap: var(--size-32);
  font-size: var(--size-28);
  line-height: 115%;
}

.section-whatwedo {
  padding: var(--size-128) 32px;
  text-align: center;
}
.section-whatwedo .title-6:not(:last-child), .section-whatwedo .title-2:not(:last-child) {
  margin-bottom: var(--size-32);
}
.section-whatwedo .subtitle {
  line-height: 115%;
  font-size: var(--size-28);
  margin: 0 auto;
  width: 60%;
}
.section-whatwedo_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.section-whatwedo_row:not(:first-child) {
  margin-top: var(--size-64);
}
.section-whatwedo_col:first-child {
  padding-right: var(--size-16);
  border-right: 1px solid var(--color-border);
}
.section-whatwedo_col:last-child {
  padding-left: var(--size-16);
}
.section-whatwedo_col .title-6:not(:last-child) {
  margin-bottom: var(--size-24);
}
.section-whatwedo_card {
  border-radius: var(--radius-card);
  padding: var(--size-48) var(--size-32);
  background-color: var(--color-gray-bg);
}
.section-whatwedo_card:not(:last-child) {
  margin-bottom: var(--size-24);
}
.section-whatwedo_card .title-4:not(:last-child), .section-whatwedo_card .separator:not(:last-child) {
  margin-bottom: var(--size-24);
}
.section-whatwedo_card p {
  font-size: var(--size-24);
  line-height: 115%;
  font-style: italic;
}
.section-whatwedo_innerrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-32);
  position: relative;
}
.section-whatwedo_innerrow::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--color-border);
  transform: translateX(-50%);
  left: 50%;
}
.section-whatwedo_innercol {
  --bg-color: var(--color-purple-bg);
  --main-color: var(--color-purple);
  background-color: var(--bg-color);
  border-radius: var(--radius-card);
  padding: var(--size-24) var(--size-16);
}
.section-whatwedo_innercol-icon {
  width: var(--size-36);
  display: block;
  margin: 0 auto 12px;
}
.section-whatwedo_innercol-top {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--size-16);
  margin-bottom: var(--size-16);
}
.section-whatwedo_innercol .title-5 {
  min-height: var(--size-82);
}
.section-whatwedo_innercol p {
  min-height: var(--size-68);
  line-height: 120%;
  font-size: var(--size-20);
  margin-bottom: var(--size-16);
}
.section-whatwedo_innercol .tag-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.section-whatwedo_innercol .tag-row .tag {
  border-radius: var(--radius-pill);
  background-color: var(--main-color);
  color: #fff;
  font-size: var(--size-16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--size-32);
  padding: 6px;
}
.section-whatwedo_innercol.yellow {
  --bg-color: var(--color-yellow-bg);
  --main-color: var(--color-yellow);
}
.section-whatwedo_innercol.blue {
  --bg-color: var(--color-blue-bg);
  --main-color: var(--color-blue);
}
.section-whatwedo_innercol.green {
  --bg-color: var(--color-green-bg);
  --main-color: var(--color-green);
}
.section-whatwedo .btn-row:not(:first-child) {
  margin-top: var(--size-64);
}

.section-footer {
  text-align: center;
  padding: var(--size-128);
}
.section-footer .title-2 {
  margin-inline: auto;
  width: 60%;
}
.section-footer .title-2:not(:last-child) {
  margin-bottom: var(--size-36);
}
.section-footer .subtitle {
  line-height: 115%;
  font-size: var(--size-28);
  margin-inline: auto;
}
.section-footer .actions-row {
  position: relative;
}
.section-footer .actions-row:not(:first-child) {
  margin-top: var(--size-128);
}
.section-footer .actions-row .btn-row {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.section-footer .actions-row .socials-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.section-footer .actions-row .socials-row_btn {
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: var(--size-48);
  height: var(--size-48);
  transition: all 0.3s;
}
.section-footer .actions-row .socials-row_btn .icon {
  width: var(--size-22);
  height: var(--size-22);
}
.section-footer .actions-row .socials-row_btn:hover {
  background-color: transparent;
  color: var(--color-primary);
}
.section-footer .logo-footer:not(:first-child) {
  margin-top: var(--size-128);
}
.section-footer .logo-footer img {
  display: block;
  width: 100%;
}
.section-footer .copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: var(--size-20);
  line-height: 120%;
  letter-spacing: -0.02em;
}
.section-footer .copy:not(:first-child) {
  margin-top: var(--size-128);
}
.section-footer .copy a {
  color: inherit;
}

.section-feedback {
  background-color: var(--color-green-dark);
  color: #fff;
  padding: var(--size-128);
}
.section-feedback .title-6 {
  margin-bottom: var(--size-24);
}
.section-feedback .title-3 {
  color: inherit;
  padding-bottom: var(--size-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.section-feedback_row {
  display: flex;
  flex-flow: row wrap;
  gap: var(--size-20);
}
.section-feedback_row:not(:first-child) {
  margin-top: var(--size-48);
}
.section-feedback_quote {
  width: var(--size-364);
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  position: relative;
}
.section-feedback_quote:before {
  content: "“";
  display: block;
  top: 0;
  left: 0;
  color: var(--color-primary);
  position: absolute;
  line-height: 115%;
  font-size: var(--size-80);
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-style: italic;
}
.section-feedback_quote p {
  font-family: var(--font-family-serif);
  line-height: 115%;
  font-weight: 500;
  font-style: italic;
  font-size: var(--size-30);
}
.section-feedback_quote .auth {
  color: var(--color-primary);
  margin-top: var(--size-24);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.06em;
  font-size: var(--size-16);
}
.section-feedback_video {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}
.section-feedback_placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000 url("../images/vide2.jpg") center/cover no-repeat;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.section-feedback_video.is-playing .section-feedback_placeholder {
  opacity: 0;
}
.section-feedback .logo-bar {
  background-color: transparent;
  margin-top: var(--size-96);
}

.section-getintouch {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 17/9.5;
  height: auto;
}
.section-getintouch .section-video-parallax_placeholder {
  background-image: url("../images/git.jpg");
}
.section-getintouch_btn {
  position: relative;
  z-index: 2;
  width: var(--size-240);
  height: var(--size-240);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--size-24);
  line-height: 120%;
  color: var(--color-text);
  font-family: var(--font-family);
  padding: var(--size-48);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.section-getintouch_btn:hover {
  transform: scale(1.05);
}

@media all and (max-width: 1280px) {
  .section-hero p {
    font-size: 48px;
  }
  .section-feedback {
    padding-inline: 96px;
  }
  .section-feedback .wrap {
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .section-video-parallax {
    height: auto;
    aspect-ratio: 16/10;
  }
  .section-video-parallax.section-getintouch {
    aspect-ratio: 17/9.5;
  }
  .section-video-parallax_inner iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .section-hero .logo-wrap {
    margin-bottom: 96px;
  }
  .section-hero .btn-row:not(:first-child), .section-hero .logo-bar:not(:first-child) {
    margin-top: 96px;
  }
  .section-approach {
    padding-block: 136px;
  }
  .section-approach .title-2 {
    padding-right: 11%;
  }
  .section-approach_text {
    font-size: 24px;
  }
  .section-whatwedo .subtitle {
    font-size: 24px;
    width: 70%;
  }
  .section-whatwedo_card p {
    font-size: 20px;
  }
  .section-whatwedo_innercol {
    padding-inline: 12px;
  }
  .section-whatwedo_innercol .title-5 {
    min-height: 74px;
  }
  .section-whatwedo_innercol p {
    font-size: 18px;
  }
  .section-whatwedo_innercol .tag-row .tag {
    padding: 1px;
  }
  .section-footer {
    text-align: center;
    padding: 64px 32px;
  }
  .section-footer .title-2 {
    width: 90%;
  }
  .section-feedback {
    padding-inline: 32px;
  }
  .section-feedback_quote {
    align-items: center;
  }
  .section-feedback_quote p {
    font-size: 20px;
  }
}
@media all and (max-width: 834px) {
  .section-hero p {
    font-size: 42px;
  }
  .section-approach {
    padding-block: 116px;
    text-align: center;
  }
  .section-approach .title-2 {
    padding-right: 0;
  }
  .section-approach .title-2:not(:last-child) {
    margin-bottom: 32px;
  }
  .section-approach_row {
    display: block;
  }
  .section-whatwedo .subtitle {
    width: 85%;
  }
  .section-whatwedo_row {
    display: block;
  }
  .section-whatwedo_col {
    padding-inline: 0 !important;
  }
  .section-whatwedo_col:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    border-right: none;
  }
  .section-whatwedo_card p {
    font-size: 20px;
  }
  .section-feedback_row {
    display: block;
  }
  .section-feedback_row:not(:first-child) {
    margin-top: 12px;
  }
  .section-feedback_quote {
    margin-bottom: 36px;
    padding-top: 90px;
  }
  .section-feedback .logo-bar {
    margin-top: 72px;
  }
  .section-getintouch .section-video-parallax_placeholder {
    background-image: url("../images/git-mobile.jpg");
  }
  .section-getintouch_btn {
    width: 190px;
    height: 190px;
    font-size: 20px;
    padding: 24px;
  }
}
@media all and (max-width: 660px) {
  .section-hero {
    padding-inline: 24px;
  }
  .section-hero p {
    font-size: 28px;
  }
  .section-approach {
    padding: 128px 24px;
  }
  .section-whatwedo {
    padding-inline: 24px;
  }
  .section-whatwedo .subtitle {
    width: 100%;
  }
  .section-whatwedo .tag-row {
    display: flex;
    flex-flow: column;
  }
  .section-footer {
    padding-inline: 24px;
  }
  .section-footer .title-2 {
    width: 100%;
  }
  .section-footer .subtitle {
    font-size: 20px;
  }
  .section-footer .actions-row .btn-row {
    position: relative;
    transform: unset;
    left: unset;
    top: unset;
  }
  .section-footer .actions-row .socials-row {
    justify-content: center;
  }
  .section-footer .actions-row .socials-row:not(:first-child) {
    margin-top: 64px;
  }
  .section-footer .copy {
    flex-flow: column;
    gap: 12px;
  }
  .section-feedback {
    padding: 72px 24px;
  }
  .section-feedback_quote {
    margin-bottom: 20px;
  }
  .section-feedback .logo-bar {
    margin-top: 64px;
  }
  .section-getintouch .section-video-parallax_placeholder {
    background-image: url("../images/git-mobile.jpg");
  }
  .section-getintouch_btn {
    width: 155px;
    height: 155px;
    font-size: 16px;
    padding: 6px;
  }
}
@media all and (max-width: 420px) {
  .section-whatwedo .subtitle {
    width: 100%;
  }
  .section-whatwedo .tag-row {
    display: grid;
  }
  .section-whatwedo_innerrow {
    display: flex;
    flex-flow: column;
    gap: 16px;
  }
  .section-whatwedo_innerrow:before {
    display: none;
  }
  .section-whatwedo_innercol p {
    min-height: 44px;
  }
}
@media all and (max-width: 380px) {
  .section-hero, .section-approach, .section-whatwedo {
    padding: 72px 20px;
  }
  .section-footer, .section-feedback {
    padding-inline: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
