@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --dark: #828282;
  --color-brand: #2aec7c;
  --color-bg: #f7f7f7;
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-bg);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  font: 400 24px/1.2 "Gilroy", sans-serif;
  color: var(--dark);
}
@media (max-width: 1360px) {
  body {
    font-size: calc(18px + 6 * (100vw - 390px) / 970);
  }
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  transition: all 0.3s;
  color: var(--color-brand);
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 24px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
  display: block;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #000;
}

h1, .heading-1 {
  font-size: 60px;
}
@media (max-width: 1360px) {
  h1, .heading-1 {
    font-size: calc(26px + 34 * (100vw - 390px) / 970);
  }
}

h2, .heading-2 {
  font-size: 56px;
}
@media (max-width: 1360px) {
  h2, .heading-2 {
    font-size: calc(26px + 30 * (100vw - 390px) / 970);
  }
}

h3, .heading-3 {
  font-size: 40px;
}
@media (max-width: 1360px) {
  h3, .heading-3 {
    font-size: calc(26px + 14 * (100vw - 390px) / 970);
  }
}
@media (max-width: 900px) {
  h3, .heading-3 {
    margin-bottom: 24px;
  }
}

/* COMMON */
.text-up {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-underline {
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: clip;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 99;
}

.container {
  width: 100%;
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.button {
  display: inline-flex;
  gap: 0 2px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-brand);
  border-radius: 50px;
  padding: 5px 18px 7px;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  text-decoration: none;
}
.button__txt {
  text-decoration: underline;
}
.button:hover {
  background-color: var(--color-brand);
  color: #fff;
}
.button:hover .button__txt {
  text-decoration: none;
}
.button_v1 {
  background-color: #000;
  color: var(--color-brand);
  border-color: #000;
  font-weight: 400;
  padding: 11px 21px;
}
.button_v1:hover {
  border-color: var(--color-brand);
}

/* HEADER */
.header {
  padding: 14px 0 20px;
}
.header__container {
  display: flex;
  gap: 0 30px;
  align-items: center;
}
.header__end {
  margin-left: auto;
}
.header__grid {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media (max-width: 575px) {
  .header__grid {
    gap: 0 20px;
  }
}

.lang {
  display: flex;
}
.lang__item {
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  line-height: 1;
  font-size: 16px;
  color: #828282;
}
.lang__item:after {
  content: "";
  margin: 0 6px;
  width: 1px;
  height: 100%;
  background-color: #828282;
}
.lang__item:last-child:after {
  display: none;
}
.lang__item:hover {
  opacity: 0.7;
}
.lang__item.is-current {
  color: var(--color-brand);
}

/* SECTION */
.section {
  margin-bottom: 90px;
}
@media (max-width: 1360px) {
  .section {
    margin-bottom: calc(40px + 50 * (100vw - 390px) / 970);
  }
}

/* INTRO */
.intro-box {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.intro {
  display: flex;
  flex-direction: column;
  row-gap: 65px;
}
@media (max-width: 575px) {
  .intro {
    row-gap: 20px;
  }
}
.intro__media {
  max-width: 77%;
  margin-left: auto;
  margin-right: auto;
}
.intro__title {
  margin-bottom: 0;
}

/* BOX */
.box {
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 60px;
}
@media (max-width: 991px) {
  .box {
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .box {
    padding-top: 24px;
    padding-bottom: 30px;
  }
}
@media (min-width: 576px) {
  .box_py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.box_bg {
  background-color: #000;
  color: #fff;
}
.box__item:not(:last-child) {
  border-bottom: 1px solid #ececec;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .box__item:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}

/* PROJECT */
.project__media {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .project__media {
    margin-bottom: 24px;
  }
}
.project__media img {
  border-radius: 40px;
}
@media (max-width: 991px) {
  .project__media img {
    border-radius: 16px;
  }
}
.project__header {
  margin-bottom: 20px;
}
.project__title {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .project__main {
    display: flex;
    gap: 0 30px;
  }
  .project__body {
    width: 100%;
    max-width: 854px;
  }
  .project__footer {
    align-self: flex-end;
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .project__footer {
    margin-top: 16px;
  }
}

/* FEATURE */
.feature-title {
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  .feature-title {
    text-align: center;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (min-width: 576px) {
  .feature-grid {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .feature-grid {
    gap: 6px;
  }
}
.feature-grid_w {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.feature {
  color: var(--color-brand);
  border-radius: 50px;
  background-color: #000;
  font-size: 40px;
  font-weight: 500;
  padding: 0.25em 0.9em;
}
@media (max-width: 1360px) {
  .feature {
    font-size: calc(22px + 18 * (100vw - 390px) / 970);
  }
}

/* GRID */
@media (min-width: 901px) {
  .grid {
    display: flex;
    gap: 0 50px;
  }
  .grid__aside {
    width: 28.084%;
    flex-shrink: 0;
  }
  .grid__main {
    flex-grow: 1;
    max-width: 100%;
    min-width: 1px;
  }
}

/* TITLE-MAIN */
.title-main {
  color: var(--color-brand);
  font-size: 131px;
  line-height: 1;
  margin: 0;
}
@media (min-width: 901px) {
  .title-main {
    white-space: nowrap;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@media (max-width: 1360px) {
  .title-main {
    font-size: calc(26px + 105 * (100vw - 390px) / 970);
  }
}
@media (max-width: 900px) {
  .title-main {
    margin-bottom: 24px;
  }
}

/* INFO */
.info-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 54px;
}
.info__title {
  margin-bottom: 20px;
}
.info__content {
  color: #b5b5b5;
  line-height: 1.16;
}

/* FOOTER */
.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding: 133px 0 48px;
  position: sticky;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .footer {
    border-radius: 20px 20px 0 0;
    padding: 100px 0 5px;
  }
}

.sprite {
  display: none;
}

/* HELPERS */
.color-txt {
  color: var(--color-brand);
}

.f-bold {
  font-weight: 700;
}

.size-lg {
  font-size: 44px;
}
@media (max-width: 1360px) {
  .size-lg {
    font-size: calc(26px + 18 * (100vw - 390px) / 970);
  }
}

.size-md {
  font-size: 40px;
}
@media (max-width: 1360px) {
  .size-md {
    font-size: calc(18px + 22 * (100vw - 390px) / 970);
  }
}

.color-inherit {
  color: inherit;
}

.color-dark {
  color: #000;
}