@charset "UTF-8";
:root {
  --c0: #FFFFFF;
  --c1: #EFEEEE;
  --c2: #868686;
  --c3: #92B522;
  --c4: #242F2B;
  --c5: #F27A2F;
  --c6: #A8D7F6;
  --c7: #F8F8F8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, video {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}

body {
  background: var(--c0);
  font-family: Regular;
  font-size: 16px;
}
@media only screen and (max-width: 860px) {
  body {
    font-size: 12px;
    background-attachment: fixed;
  }
}
body.noScroll {
  overflow: hidden;
  padding-right: 16px;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
  outline: none !important;
}

a {
  text-decoration: none;
  color: var(--Blue);
}
a:hover {
  text-decoration: underline;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.flex.left {
  justify-content: flex-start;
}
.flex.right {
  justify-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.flex.top {
  align-items: flex-start;
}
@media only screen and (max-width: 500px) {
  .flex.mediaFlex {
    flex-direction: column;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 500px) {
  .mobile {
    display: block;
  }
}

.flexColumn {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flexColumn.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.grid {
  display: grid;
  gap: 8px;
}
.grid.two {
  grid-template-columns: 1fr 1fr;
}
.grid.four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.container {
  width: 1400px;
  margin: auto;
}
@media only screen and (max-width: 1600px) {
  .container {
    width: 1200px;
  }
}
@media only screen and (max-width: 1400px) {
  .container {
    width: 1000px;
  }
}
@media only screen and (max-width: 1100px) {
  .container {
    width: 800px;
  }
}
@media only screen and (max-width: 860px) {
  .container {
    width: 600px;
  }
}
@media only screen and (max-width: 640px) {
  .container {
    width: 440px;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    width: 320px;
    position: relative;
  }
}

@font-face {
  font-family: "Medium";
  src: url("../../public/css/fonts/Arimo/Arimo-Medium.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Bold";
  src: url("../../public/css/fonts/Arimo/Arimo-Bold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "SemiBold";
  src: url("../../public/css/fonts/Arimo/Arimo-SemiBold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Regular";
  src: url("../../public/css/fonts/Arimo/Arimo-Regular.ttf") format("truetype");
  font-weight: 100;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--c4);
}

.h1 {
  font-family: Bold;
  font-size: 70px;
  line-height: 95%;
  letter-spacing: -3%;
}
@media only screen and (max-width: 1400px) {
  .h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1100px) {
  .h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 860px) {
  .h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .h1 {
    font-size: 34px;
    text-align: center;
    margin: 40px 0;
  }
}

.h2 {
  font-family: Bold;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -2%;
}
@media only screen and (max-width: 1400px) {
  .h2 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1100px) {
  .h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 860px) {
  .h2 {
    font-size: 24px;
  }
}

.h3 {
  font-family: Bold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1%;
}
@media only screen and (max-width: 1400px) {
  .h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1100px) {
  .h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 860px) {
  .h3 {
    font-size: 16px;
  }
}

.h4 {
  font-family: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}

.t16b {
  font-family: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}
@media only screen and (max-width: 860px) {
  .t16b {
    font-size: 12px;
  }
}

.t16 {
  font-family: Regular;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
}
@media only screen and (max-width: 1100px) {
  .t16 {
    font-size: 12px;
  }
}

.t14 {
  font-family: Regular;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
}
@media only screen and (max-width: 1100px) {
  .t14 {
    font-size: 10px;
  }
}

.t30B {
  font-family: Bold;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0;
}

.t100B {
  font-family: Bold;
  font-size: 100px;
  line-height: 120%;
  letter-spacing: 0;
}

.t100SB {
  font-family: SemiBold;
  font-size: 100px;
  line-height: 120%;
  letter-spacing: 0;
}
@media only screen and (max-width: 1100px) {
  .t100SB {
    font-size: 60px;
  }
}

.button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--c3);
  color: var(--c4);
  padding: 10px 16px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  min-height: 46px;
}
@media only screen and (max-width: 860px) {
  .button {
    font-size: 12px;
    padding: 5px 8px;
    min-height: 30px;
  }
}
@media only screen and (max-width: 860px) {
  .button {
    font-size: 16px;
    padding: 10px 16px;
    min-height: 30px;
  }
}
.button.icon::after {
  content: "→";
  position: relative;
  z-index: 2;
  font-size: 20px;
  right: -8px;
  transition: 0.3s;
  color: var(--c4);
  width: 26px;
  height: 26px;
  font-family: Bold;
}
@media only screen and (max-width: 860px) {
  .button.icon::after {
    width: 20px;
    height: 20px;
    right: 0px;
    font-size: 16px;
  }
}
.button.icon::before {
  content: " ";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--c0);
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  right: 10px;
  z-index: 1;
}
@media only screen and (max-width: 860px) {
  .button.icon::before {
    width: 20px;
    height: 20px;
    right: 7px;
  }
}
.button.icon:hover::after {
  right: -16px;
}
@media only screen and (max-width: 860px) {
  .button.icon:hover::after {
    right: -8px;
  }
}
.button:hover {
  background: var(--c4);
  color: var(--c3);
}
.button.white {
  background: var(--c0);
  color: var(--c4);
}
.button.white.icon::after {
  color: var(--c0);
}
.button.white.icon::before {
  background: var(--c4);
}
.button.white.icon:hover::after {
  right: -9px;
}
.button.white:hover {
  background: var(--c4);
  color: var(--c3);
}

.burger {
  width: 30px;
  height: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 12000;
  display: none;
}
@media only screen and (max-width: 640px) {
  .burger {
    display: flex;
  }
}
.burger span {
  width: 30px;
  height: 4px;
  background: var(--c3);
  position: absolute;
  display: block;
  border-radius: 5px;
}
.burger span.top {
  top: 4px;
}
.burger span.bottom {
  bottom: 4px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px) rotateY(90deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0) rotateY(0);
}

.reveal-1 .reveal-item {
  transition-delay: 0s;
}

.reveal-2 .reveal-item:nth-child(1) {
  transition-delay: 0s;
}

.reveal-2 .reveal-item:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal-3 .reveal-item:nth-child(1) {
  transition-delay: 0s;
}

.reveal-3 .reveal-item:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-3 .reveal-item:nth-child(3) {
  transition-delay: 0.4s;
}

.reveal-4 .reveal-item:nth-child(1) {
  transition-delay: 0s;
}

.reveal-4 .reveal-item:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-4 .reveal-item:nth-child(3) {
  transition-delay: 0.4s;
}

.reveal-4 .reveal-item:nth-child(4) {
  transition-delay: 0.6s;
}/*# sourceMappingURL=root.css.map */