.button {
  display: block;
  width: fit-content;
  background: linear-gradient(130deg, #9F4AFF, #A54494);
  padding: 27px 52px;
  border-radius: 100px;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}
.button:hover {
  background: linear-gradient(130deg, #FAFAFA, #DFDFDF);
  color: #9F4AFF;
}
.anim-btn {
  animation: btnScaling 1s ease-in-out infinite;
}

@keyframes btnScaling {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.container {
  position: relative;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.divider {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

body {
  background-image: url('../img/background.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}


/* HEADER */
.header {
  padding: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.header__nav {
  display: flex;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.header__nav-link {
  color: #ABABAB;
  transition: color 0.2s ease-in-out;
}
.header__nav-link:hover {
  color: #fff;
}

.header__money-img {
  position: absolute;
  left: -170px;
  top: -170px;
  transform: rotate(-90deg);
  filter: blur(3px);
  width: 400px;
  z-index: 0;
  pointer-events: none;
}


/* HERO */
.hero {
  position: relative;
  padding: 150px 0;
  overflow-x: hidden;
}

.hero__title {
  font-size: 50px;
  font-weight: bold;
  max-width: 860px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero__list {
  margin-top: 40px;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero__list-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #9F4AFF;
}

.hero__btn {
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.hero__chart-img {
  position: absolute;
  right: 0;
  bottom: -100px;
  max-width: 900px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__chart-img {
    right: auto;
  }
}

.hero__money-img {
  position: absolute;
  right: -250px;
  bottom: -50px;
  width: 400px;
  z-index: 0;
  pointer-events: none;
}

/* ACHIEVEMENTS */
.achievements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-bottom: 74px;
}

.achievements__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.achievements__list-item {
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 90px 32px 32px;
  position: relative;
}

.achievements__item-img {
  position: absolute;
  width: 320px;
  left: 50%;
  transform: translateX(-50%);
  top: -140px;
}

.achievements__item-title {
  color: #9F4AFF;
  font-size: 34px;
  font-weight: bold;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

/* SIGNALS */
.signals__first {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signals__first h3 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.signals__first a {
  margin-top: 70px;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 23px 20px;
}

.signals__second {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.signals__second-content h3 {
  font-size: 58px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 81px;
}

.signals__second-content p {
  font-size: 24px;
  line-height: 37px;
}

.signals__second-content a {
  margin-top: 90px;
}

.signals__second img {
  margin-right: 50px;
}

.signals__second-btn {
  display: block;
}

.signals__second-btn-mobile {
  display: none;
}

/* MISSION */
.mission__text {
  font-size: 28px;
  line-height: 43px;
  text-align: center;
  margin: 45px 0 70px;
}

/* PARTNERSHIP */
.partnership {
  margin-bottom: 64px;
}

.partnership__list {
  display: grid; 
  justify-content: center;
  column-gap: 50px;
  grid-template-areas: "a a b b c c"
                       ". d d e e .";
}

.partnership__list-item:nth-child(1) { grid-area: a }
.partnership__list-item:nth-child(2) { grid-area: b }
.partnership__list-item:nth-child(3) { grid-area: c }
.partnership__list-item:nth-child(4) { grid-area: d }
.partnership__list-item:nth-child(5) { grid-area: e }

.partnership__list-item {
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership__list-item img {
  width: 260px;
}

.partnership__list-content {
  position: relative;
  top: 0px;
  text-align: center;
}

.partnership__list-content h6 {
  color: #9F4AFF;
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  text-transform: uppercase;
}

.footer {
  margin-top: 87px;
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.footer p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

@media (max-width: 980px) {
  .header {
    visibility: hidden;
  }

  /* ACHIEVEMENTS */
  .achievements__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }

  /* HERO */
  .hero div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    text-align: center;
  }

  .hero__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* SIGNALS */
  .signals__first h3 {
    font-size: 30px;
    text-align: center;
  }

  .signals__first img {
    width: 500px;
  }

  .signals__first a {
    font-size: 18px;
  }

  .signals__second {
    padding: 50px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
  }

  .signals__second-content h3 {
    font-size: 38px;
    line-height: 48px;
    text-align: center;
  }

  .signals__second-content p {
    text-align: center;
  }  

  .signals__second img {
    margin-right: 0px;
    width: 250px;
  }

  .signals__second-btn {
    display: none;
  }

  .signals__second-btn-mobile {
    display: block;
    top: -80px;
    padding: 27px 50px;
  }

  /* MISSION */
  .mission__text {
    font-size: 20px;
    line-height: 28px;
  }

  /* PARTNERSHIP */
  .partnership__list {
    display: grid; 
    justify-content: center;
    column-gap: 50px;
    grid-template-areas: "a a b b"
                         ". c c ."
                         "d d e e";
  }
}

@media (max-width: 600px) {
  /* HERO */
  .hero {
    padding: 50px 0 100px;
  }

 /* ACHIEVEMENTS */
  .achievements__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 60px;
  }

  /* PARTNERSHIP */
  .partnership__list {
    display: grid; 
    justify-content: center;
    column-gap: 50px;
    grid-template-areas: "a a"
                         "b b"
                         "c c"
                         "d d"
                         "e e";
  }

  .signals__first img {
    margin-right: 0px;
    width: 370px;
  }
}