@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #181818;
  color: #fff;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  text-align: center;
  display: block;
  margin: 0 auto;
  /* background: url("/images/btn-bg.png") no-repeat center center/cover; */
  background: linear-gradient(120deg, #fbda81 30%, #f7e2b2 50%, #eecd70 70%);
  color: #000;
  width: 100%;
  max-width: 300px;
  padding: 18px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 0 20px rgb(249, 224, 126, 0.5);
}

/* HERO */
.hero {
  position: relative;
  background: url("/images/hero-bg.png") no-repeat center center/cover;
}

.hero__inner {
  position: relative;
  display: flex;
  padding-top: 200px;
}

.hero__hood {
  position: relative;
  width: 50%;
}

.hero__hood-item {
  position: absolute;
  display: flex;
  align-items: center;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15));
  backdrop-filter: blur(10px);
  width: fit-content;
  padding: 6px 30px 6px 6px;
  border-radius: 6px;
}

.hero__hood-item .icon {
  width: 32px;
  background-color: #fff;
  padding: 6px;
  border-radius: 6px;
}

.hero__hood-item .text {
  margin-left: 12px;
}

.hero__hood-item .text__title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* HERO - item 1 */
.hero__hood-item.item1 {
  top: 100px;
  left: -60px;
}

.hero__hood-item.item1 .icon {
  width: 50px;
}

.hero__hood-item.item1 .text__title {
  font-size: 14px;
}

.hero__hood-item.item1 .text__value {
  font-size: 24px;
  font-weight: 800;
}

/* HERO - item 2 */
.hero__hood-item.item2 {
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  z-index: 2;
}

.hero__hood-item.item2 .icon {
  width: 40px;
}

.hero__hood-item.item2 .text__title {
  font-size: 12px;
}

.hero__hood-item.item2 .text__value {
  font-size: 18px;
  font-weight: 800;
}

/* HERO - item 3 */
.hero__hood-item.item3 {
  bottom: 130px;
  left: 90px;
  z-index: 2;
}

.hero__hood-item.item3 .icon {
  width: 32px;
}

.hero__hood-item.item3 .text__title {
  font-size: 10px;
}

.hero__hood-item.item3 .text__value {
  font-size: 14px;
  font-weight: 800;
}

.hero__hood-img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 500px;
}

.hero__content h1 {
  position: relative;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
}

.hero__content h1::after {
  content: "";
  position: absolute;
  width: 256px;
  height: 110px;
  top: -50px;
  right: 80px;
  background: url("/images/hero-h.png") no-repeat center center/contain;
}

.hero__content h1 span {
  margin-left: -235px;
}

.hero__content p {
  margin: 24px 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.hero__content p span {
  color: rgba(255, 255, 255, 1);
}

.hero__btn {
  margin: 0;
}

.hero__companies {
  width: 100%;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  bottom: 24px;
}

.hero__companies img {
  height: 32px;
}

@media (max-width: 800px) {
  .hero__content h1 {
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 72px;
    line-height: 72px;
  }

  .hero__content h1::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    top: 6px;
    right: 20px;
    background: url("/images/hero-h.png") no-repeat center center/contain;
  }

  .hero__content h1 span {
    margin-left: 0px;
  }
}

@media (max-width: 640px) {
  .hero__inner {
    display: flex;
    align-items: end;
    justify-content: end;
  }

  .hero__content {
    position: relative;
    margin-top: auto;
  }

  .hero__content h1::after {
    display: none;
  }

  .hero__hood {
    position: absolute;
    width: 100%;
    opacity: 0.5;
  }

  .hero__companies {
    width: 100%;
    gap: 24px;
    bottom: 24px;
  }

  .hero__companies img {
    height: 16px;
  }

  .hero__content h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .hero__content p {
    font-size: 14px;
  }

}

/* +-----------------------------+ */
/*              FOR WHO            */
/* +-----------------------------+ */
.for-who {
  position: relative;
  padding-top: 50px;
}

.for-who__inner {
  min-height: 945px;
  position: relative;
  padding-bottom: 50px;
}

.for-who__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 50px;
}

.for-who__content {}

.for-who__items {}

.for-who__item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(32, 32, 32, 1), rgb(79, 79, 79, 0.5));
  backdrop-filter: blur(10px);
  border-radius: 6px;
  margin-bottom: 12px;
  z-index: 1;
}

.for-who__item.item1 .for-who__item-text {
  opacity: 0.8;
}

/* item1 */
.for-who__item.item1 {
  display: flex;
  justify-content: end;
  align-items: end;
}

.for-who__item.item1 .for-who__item-text {
  position: absolute;
  top: 20px;
  left: 20px;
}

/* item2 */
.for-who__item.item2 {
  display: flex;
  justify-content: end;
  align-items: end;
}

.for-who__item.item2 .for-who__item-text {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.8;
}

/* item3 */
.for-who__item.item3 {
  padding: 20px;
}

.for-who__item.item3 .for-who__item-text {
  opacity: 0.8;
}

.for-who__item.item3 .for-who__item-text br {
  display: none;
}

.for-who__item.item3 .for-who__item-img {
  margin: 20px auto 0;
}

.for-who__saif {
  position: absolute;
  bottom: 50px;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.for-who__bottom-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #202020;
  z-index: -2;
}

.for-who__blurs-1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  width: 200px;
  height: 200px;
  background: #7d5fb3;
  opacity: 0.2;
  filter: blur(100px);
  z-index: -5;
}

.for-who__blurs-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  width: 200px;
  height: 200px;
  background: #d2ad7d;
  opacity: 0.2;
  filter: blur(100px);
  z-index: -5;
}

@media (min-width: 640px) {
  .for-who__title {
    font-size: 52px;
  }

  .for-who__saif {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .for-who__item {
    width: 320px;
    position: absolute;
    overflow: visible;
  }

  .for-who__item.item1 {
    top: 30%;
    left: 18%;
    transform: translate(-50%, -50%);
  }

  .for-who__item.item2 {
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
  }

  .for-who__item.item3 {
    top: 75%;
    left: 14%;
    transform: translate(-50%, -50%);
  }

  .for-who__blurs-1 {
    width: 500px;
    height: 500px;
  }

  .for-who__blurs-2 {
    width: 500px;
    height: 500px;
  }
}

/* RESULTS */
.results__inner {
  position: relative;
  background-color: #343434;
  border-radius: 12px;
  padding: 32px 32px 50px 32px;
  margin: 50px 0;
}

.results__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 24px;
}

.results__items {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.results__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  padding: 24px;
}

.results__item h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
}

.results__item.item1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: #7A5CAF;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results__subitem1 {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results__subitem1 img {
  position: relative;
  bottom: -80px;
}

.results__subitem2 {
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  color: #414141;
  padding: 24px;
}

.results__item.item2 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  background: #ffdd90;
  color: #444135;
  display: flex;
  padding: 0;
}

.results__item.item2 .texts {
  position: relative;
  z-index: 1;
  padding: 24px;
  flex: 1;
}

.results__item.item2 img {}

.results__item.item3 {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #fff;
  color: #414141;
}

.results__item.item3 p,
.results__item.item3 h6 {
  position: relative;
  z-index: 1;
}

.results__item.item3 img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.results__item.item4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: #fff;
  color: #414141;
}

.results__item.item4 img {
  margin: 12px auto 0;
}

.results__btn {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.results-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 12px 0;
}

@media (max-width: 800px) {

  .results__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .results__items {
    grid-template-columns: 1fr;
  }

  .results__item.item1,
  .results__item.item2,
  .results__item.item3,
  .results__item.item4 {
    grid-column: auto;
    grid-row: auto;
  }

  .results__subitem1 img {
    position: relative;
    bottom: -20px;
  }
}

@media (max-width: 640px) {
  .results__item.item2 img {
    z-index: 0;
    bottom: 0;
    right: 0;
    position: absolute;
  }
}

/* BUILD ON */
.buildon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(32, 32, 32, 1), rgba(114, 114, 114, 0.5));
  gap: 24px;
  padding: 64px 32px;
  border-radius: 12px;
}

.buildon::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: url("/images/icons/checkmark.png") no-repeat center center/cover;
}

.buildon h3 {
  font-size: 48px;
  line-height: 52px;
  text-transform: uppercase;
  font-weight: 700;
}

.buildon h3 span {
  color: #ffdd90
}

.buildon p {
  max-width: 500px;
  opacity: .6;
}

@media (max-width: 640px) {
  .buildon h3 {
    font-size: 32px;
    line-height: 32px;
  }

  .buildon {
    flex-direction: column;
    text-align: center;
  }
}

/* SKILLS */
.skills {
  position: relative;
  margin: 50px 0;
}

.skills__inner {}

.skills__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 42px;
}

.skills__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
  max-width: 1000px;
  margin-top: 50px;
}

.skills__item.wide {
  grid-column: 2 / 3;
}

.skills__item {
  position: relative;
  background: linear-gradient(45deg, rgba(32, 32, 32, 1), rgb(79, 79, 79, 0.5));
  padding: 48px 24px 24px;
  text-align: center;
  border-radius: 6px;
}

.skills__item p {
  opacity: 0.6;
}

.skills__item img {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.skills__blurs-1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  width: 500px;
  height: 500px;
  background: #7d5fb3;
  opacity: 0.2;
  filter: blur(100px);
  z-index: -5;
}

.skills__blurs-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  width: 500px;
  height: 500px;
  background: #d2ad7d;
  opacity: 0.2;
  filter: blur(100px);
  z-index: -5;
}

@media (max-width: 640px) {
  .skills__title {
    font-size: 24px;
  }

  .skills__list {
    grid-template-columns: 1fr;
  }

  .skills__item.wide {
    grid-column: auto;
  }

  .skills__blurs-1,
  .skills__blurs-2 {
    width: 200px;
    height: 200px;
  }
}

/* questions */
.questions {
  padding: 50px 0;
}

.questions__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 48px;
}

.questions__desc {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
}

.form {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 0;
}

.form input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  margin-bottom: 18px;
  color: #000;
  font-weight: 600;
}

.form__btn {
  width: 100%;
  max-width: none;
}

.form__checkbox {
  margin-top: 12px;
  opacity: 0.5;
}

.form__checkbox input {
  width: fit-content;
  display: inline;
}

@media (max-width: 640px) {
  .questions__title {
    font-size: 24px;
  }

  .questions__desc {
    font-size: 16px;
    font-weight: 600;
  }
}