/*
Theme Name: Only Devils
Author: v.v
Version: 1.0 
*/
@font-face {
  font-family: "Red Hat Display";
  src: url("fonts/RedHatDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
body {
  background: #f2ebfa;
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
}

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

.section {
  font-size: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1,
.h1 {
  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 64px; /* 100% */
  letter-spacing: -3.2px;
}
h1 span,
.h1 span {
  background: #8033cc;
  padding: 0 4px;
  border-radius: 3px;
}

h2,
.h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 122.222% */
  letter-spacing: -1.8px;
}

h3,
.h3 {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 122.222% */
  letter-spacing: -1.8px;
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
}

.flex {
  display: flex;
}

.flexCenter {
  align-items: center;
  justify-content: center;
}

.inline-flex {
  display: inline-flex;
}

.direction-column {
  flex-direction: column;
}

.direction-row {
  flex-direction: row;
}

.row-reverse {
  flex-direction: row-reverse;
}

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

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.align-stretch {
  align-items: stretch;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.fullFlex {
  flex: 1 1 auto;
}

.nowrap {
  word-wrap: nowrap;
}

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

h3 {
  color: #001903;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px;
}

.btn {
  border-radius: 100px;
  background: #8033cc;
  text-decoration: none;
  padding: 12px 32px;
  padding-bottom: 10px;
  text-align: center;
  height: 46px;
  color: #fff;
  font-weight: 800;
}
.btn:hover {
  background: #4d1f7a;
  transition: 0.3s all;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header .logo {
  height: 64px;
  width: auto;
}
header .header-menu ul {
  gap: 32px;
}
header .header-menu ul li {
  list-style-type: none;
  list-style-position: outside;
}
header .header-menu ul li a {
  color: #fff;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  position: relative;
}
header .header-menu ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -5px;
  left: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
  transform: translateX(-50%);
}
header .header-menu ul li a:hover::after {
  width: 100%;
}
header.scrolled {
  background-color: #331452;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #331452;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  transition: top 0.4s ease;
  z-index: 999;
}
.mobile-menu.active {
  top: 0;
}
.mobile-menu__header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__header .logo img {
  width: auto;
  max-height: 64px;
}
.mobile-menu__header .close-menu {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.2s ease;
}
.mobile-menu__header .close-menu:hover {
  opacity: 0.7;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 60px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}
.mobile-menu__list a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.mobile-menu__list a:hover {
  opacity: 0.7;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding-top: 96px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url(img/hero.jpg) lightgray 50%/cover no-repeat;
  min-height: 800px;
}
.hero .hero-content {
  width: 100%;
  gap: 48px;
  text-align: center;
}
.hero .hero-content .hero-text {
  gap: 24px;
}
.hero .hero-content .hero-text .hero-welcome {
  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Red Hat Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero .hero-content .hero-text .hero-italic {
  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Red Hat Display";
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.partners {
  background: #331452;
  padding: 112px 0;
}
.partners .partners-img {
  flex: 0 0 calc(50% - 56px);
  height: 444px;
}
.partners .partners-img img {
  width: 100%;
  height: auto;
}
.partners .partners-info {
  gap: 16px;
  flex: 0 0 calc(50% - 56px);
}
.partners .partners-info .h2 {
  color: #fff;
}
.partners .partners-info .partners-subtitle {
  margin-bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.partners .partners-info .partners-items {
  gap: 8px;
}
.partners .partners-info .partners-items .partners-item {
  display: flex;
  padding: 20px 24px 24px 24px;
  gap: 0;
  flex: 0 0 calc(50% - 4px);
  border-radius: 12px;
  background: #4c1f7a;
}
.partners .partners-info .partners-items .partners-item .partners-item-number {
  color: #ccadeb;
  font-family: "Red Hat Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px; /* 133.333% */
  letter-spacing: -0.72px;
}
.partners .partners-info .partners-items .partners-item .partners-item-text {
  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Red Hat Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.goals {
  padding-top: 96px;
}
.goals .goals-content {
  gap: 24px;
}
.goals .goals-content .goals-img {
  width: 403px;
}
.goals .goals-content .goals-img img {
  width: 100%;
  height: auto;
}
.goals .goals-content .goals-text {
  width: 57%;
}
.goals .goals-content .goals-text .h2 {
  color: #000;
  margin-bottom: 16px;
}
.goals .goals-content .goals-text .goals-subtitle {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 48px;
}
.goals .goals-content .goals-text .goals-items {
  gap: 24px;
}
.goals .goals-content .goals-text .goals-items .goal-item {
  gap: 16px;
}
.goals .goals-content .goals-text .goals-items .goal-item .goal-item-img {
  width: 56px;
}
.goals .goals-content .goals-text .goals-items .goal-item .goal-item-img img {
  width: 56px;
  height: auto;
}
.goals .goals-content .goals-text .goals-items .goal-item .goal-item-text {
  gap: 2px;
}
.goals .goals-content .goals-text .goals-items .goal-item .goal-item-text .goal-item-title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px; /* 157.143% */
}
.goals .goals-content .goals-text .goals-items .goal-item .goal-item-text .goal-item-subtitle {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

.cta {
  background: #331452;
  padding: 80px 0;
  margin-top: -4px;
}
.cta .cta-content {
  gap: 112px;
  padding: 0 6%;
  min-width: none;
}
.cta .cta-content .h3 {
  text-align: center;
  color: #fff;
  min-width: 363px;
}
.cta .cta-content .cta-right {
  gap: 12px;
}
.cta .cta-content .cta-right .cta-text {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.ambition {
  padding: 96px 0;
  border-bottom: 1px solid #b9bfca;
  background: #f2ebfa;
}
.ambition .ambition-top {
  width: 83%;
  text-align: center;
  margin: 0 auto;
}
.ambition .ambition-top .h2 {
  color: #000;
  margin-bottom: 16px;
}
.ambition .ambition-top .ambition-subtitle {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  margin-bottom: 48px;
}
.ambition .ambition-items {
  gap: 24px;
}
.ambition .ambition-items .ambition-item {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.ambition .ambition-items .ambition-item .ambition-item-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px; /* 144.444% */
  padding: 16px;
  padding-bottom: 0;
}
.ambition .ambition-items .ambition-item .ambition-item-row {
  padding: 12px 16px;
  gap: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.ambition .ambition-items .ambition-item .ambition-item-row:last-child {
  border-bottom: none;
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-left .ambition-item-row-title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-left .ambition-item-bottom {
  gap: 10px;
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-left .ambition-item-bottom .ambition-sum {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px; /* 144.444% */
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-left .ambition-item-bottom .ambition-item-percent {
  gap: 4px;
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-left .ambition-item-bottom .ambition-item-percent div {
  color: #6dcd75;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Red Hat Display";
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 18px;
}
.ambition .ambition-items .ambition-item .ambition-item-row .ambition-item-row-right img {
  max-width: 133px;
}

.stories {
  padding: 96px 0;
  background: #f2ebfa;
}
.stories .stories-top {
  width: 83%;
  text-align: center;
  margin: 0 auto;
}
.stories .stories-top .h2 {
  color: #000;
  margin-bottom: 16px;
}
.stories .stories-top .stories-subtitle {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 48px;
}
.stories .stories-items {
  gap: 24px;
}
.stories .stories-items .stories-item {
  flex: 0 0 calc(33.333% - 16px);
}
.stories .stories-items .stories-item .stories-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  margin-bottom: 16px;
}
.stories .stories-items .stories-item .stories-meta {
  gap: 12px;
}
.stories .stories-items .stories-item .stories-meta .stories-meta-img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
}
.stories .stories-items .stories-item .stories-meta .stories-meta-img img {
  width: 100%;
  height: auto;
}
.stories .stories-items .stories-item .stories-meta .stories-meta-content .stories-meta-position {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px; /* 100% */
}
.stories .stories-items .stories-item .stories-meta .stories-meta-content .stories-meta-name {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 22px; /* 157.143% */
}

.faq {
  padding: 96px 0;
  background: #f2ebfa;
}
.faq .h2 {
  text-align: center;
  margin-bottom: 48px;
}
.faq .faq-items {
  max-width: 830px;
  gap: 16px;
  margin: 0 auto;
}
.faq .faq-items .faq-item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq .faq-items .faq-item .faq-header {
  gap: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 12px 16px;
}
.faq .faq-items .faq-item .faq-header span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.32px;
}
.faq .faq-items .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq .faq-items .faq-item.open .faq-content {
  max-height: 200px;
  padding: 12px 16px;
  padding-top: 0;
}
.faq .faq-items .faq-item.open .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq .faq-items .faq-item.open .icon-minus {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq .icon-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.faq .icon-plus {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq .icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
  width: 18px;
  height: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

footer {
  background: #331452;
  padding-top: 48px;
  padding-bottom: 24px;
}
footer .footer-top {
  padding-bottom: 48px;
}
footer .footer-top .logo {
  width: 96px;
}
footer .footer-top .logo a {
  width: 100%;
}
footer .footer-top .logo a img {
  width: 100%;
  height: auto;
}
footer .footer-top .footer-menu {
  gap: 12px;
}
footer .footer-top .footer-menu ul li {
  list-style-type: none;
  margin-bottom: 12px;
}
footer .footer-top .footer-menu ul li :last-child {
  margin-bottom: 0;
}
footer .footer-top .footer-menu ul li a {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  text-decoration: none;
  position: relative;
}
footer .footer-top .footer-menu ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -5px;
  left: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
  transform: translateX(-50%);
}
footer .footer-top .footer-menu ul li a:hover::after {
  width: 100%;
}
footer .footer-top .footer-cta {
  max-width: 300px;
}
footer .footer-top .footer-cta .footer-cta-title {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.36px;
}
footer .footer-top .footer-cta .footer-cta-subtitle {
  margin-bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
footer .footer-line {
  width: 100%;
  height: 1px;
  background-color: #4d1f7a;
}
footer .footer-copy {
  padding-top: 24px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.popup-form .popup-title {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 122.222% */
  letter-spacing: -1.8px;
  margin-bottom: 8px;
}
.popup-form .popup-subtitle {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  margin-bottom: 16px;
}
.popup-form .popup-bottom {
  color: #81828c;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 14px; /* 140% */
}

@media (max-width: 1019px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .partners .partners-img,
  .partners .partners-info {
    flex: 0 0 calc(50% - 26px);
  }
  .cta {
    margin-top: 0;
  }
  .goals .goals-content {
    align-items: flex-end;
  }
  .goals .goals-content .goals-text {
    padding-bottom: 20px;
  }
  .ambition .ambition-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .burger {
    display: flex;
  }
  .header-menu,
  .header-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 54px;
    line-height: 54px;
  }
  h2,
  .h2,
  h3,
  .h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .partners {
    padding: 60px 0;
  }
  .partners .partners-content {
    flex-wrap: wrap;
  }
  .partners .partners-content .partners-img {
    flex: 100%;
    order: 2;
  }
  .partners .partners-content .partners-info {
    flex: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .partners .partners-content .partners-info .partners-items .partners-item {
    padding: 15px;
  }
  .goals {
    padding-top: 80px;
  }
  .goals .goals-content {
    flex-wrap: wrap;
  }
  .goals .goals-content .goals-img {
    flex: 100%;
    order: 2;
    max-width: 100%;
  }
  .goals .goals-content .goals-text {
    flex: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .cta {
    padding: 60px 0;
    margin-top: -5px;
  }
  .cta .cta-content {
    flex-wrap: wrap;
    gap: 40px;
  }
  .cta .cta-content h3 {
    text-align: left;
  }
  .ambition {
    padding: 60px 0;
  }
  .stories {
    padding: 60px 0;
  }
  .stories .stories-items {
    flex-wrap: wrap;
    gap: 40px;
  }
  .stories .stories-items .stories-item {
    flex: 100%;
  }
  .faq {
    padding: 60px 0;
  }
  .faq .faq-items {
    padding: 0 10px;
  }
  footer .footer-top .footer-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  footer .footer-top .footer-wrap .logo {
    margin-bottom: 40px;
  }
  footer .footer-top .footer-wrap .footer-cta {
    margin-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */