@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: rgb(34, 34, 34);
  min-width: 450px;
}

.wrapper {
  overflow-x: hidden;
}

my-container {
  display: block;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  color: white;
  text-transform: uppercase;
  background-color: purple;
  padding: 20px 40px;
  transition: 0.3s;
}
.btn:hover {
  background-color: red;
}

company-logo {
  display: block;
  font-size: 20px;
  color: purple;
  font-weight: 700;
  transition: 0.5s;
}

.header {
  padding: 20px 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: 0.5s;
}
.header.fixed {
  padding: 10px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.header__content ul {
  display: flex;
  align-items: center;
}
.header__content li {
  font-size: 15px;
  font-weight: 700;
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  display: block;
  transition: 0.3s;
}
.header__logo a:hover {
  opacity: 0.6;
}
.header__logo img {
  width: 200px;
}
.header__nav {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: block;
  padding: 10px;
  position: relative;
}
.header__nav a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 10px;
  background-color: purple;
  transition: 0.3s;
}
.header a:hover {
  color: purple;
}
.header a:hover::after {
  width: 100%;
  height: 2px;
}

.header #burger-trigger {
  display: block;
}
.header #burger-trigger img {
  width: 30px;
}
@media (min-width: 900px) {
  .header #burger-trigger {
    display: none;
  }
}
.header #burger-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 11;
}
.header #burger-content.active {
  grid-template-rows: 1fr;
}
.header #burger-content .header__nav {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.header #burger-content .header__nav ul {
  flex-direction: column;
}
@media (min-width: 900px) {
  .header #burger-content {
    display: none;
  }
}
.header .min-h-0 {
  min-height: 0;
}

.intro {
  margin-top: 75px;
  padding: 150px 0;
  position: relative;
  background-image: url("../img/intro-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(128, 0, 128, 0.2);
  background-blend-mode: multiply;
}
.intro__content {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background-color: rgba(128, 0, 128, 0.4);
}
@media (max-width: 900px) {
  .intro__content {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .intro__content {
    padding: 20px;
  }
}
.intro__content h1 {
  font-size: 57px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 0.8;
  margin: 10px 0;
  color: white;
}
.intro__content h1::after {
  content: "|";
  animation: pulsing 0.6s linear infinite;
}
.intro__content p {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 8px;
}
.intro__content hgroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.intro__triangle {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

@keyframes pulsing {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.advantages {
  margin-top: -140px;
  position: relative;
  z-index: 2;
}
.advantages__content i {
  font-size: 55px;
  color: purple;
  padding: 40px;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 800px) {
  .advantages__content i {
    font-size: 100px;
  }
}
.advantages__content h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 15px 0;
  text-transform: uppercase;
}
.advantages__content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 20px;
}
@media (max-width: 800px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  padding: 50px 40px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0);
  transition: 0.5s;
}
.advantages__item:nth-child(2) {
  transform: translateY(-20px);
}
@media (max-width: 800px) {
  .advantages__item:nth-child(2) {
    transform: unset;
  }
}
@media (max-width: 1000px) {
  .advantages__item {
    padding: 20px;
  }
}
.advantages__item:hover {
  transform: translateY(-40px);
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.1);
}

.earn {
  padding: 40px 0;
}
.earn__content h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 800px) {
  .earn__content h2 {
    font-size: 30px;
  }
}
.earn__content p {
  font-size: 15px;
  letter-spacing: 3.7px;
  margin-bottom: 50px;
  text-align: center;
}
.earn__content img {
  width: 85px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .earn__content img {
    width: 200px;
  }
}
.earn__content h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 15px;
}
.earn__content .btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 50px;
}
.earn__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}
@media (max-width: 1000px) {
  .earn__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.earn__item {
  display: flex;
  gap: 16px;
}
.earn__item i {
  display: block;
  font-size: 80px;
  color: purple;
}
@media (max-width: 1000px) {
  .earn__item i {
    font-size: 100px;
  }
}
@media (max-width: 1000px) {
  .earn__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.form {
  padding-top: 100px;
  padding-bottom: 140px;
  position: relative;
  background-image: url("../img/form-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(128, 0, 128, 0.4);
  background-blend-mode: multiply;
}
.form__content {
  max-width: 480px;
}
@media (max-width: 1000px) {
  .form__content {
    margin: 0 auto;
  }
}
.form__content h2 {
  font-size: 51px;
  letter-spacing: -2px;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .form__content h2 {
    font-size: 30px;
  }
}
.form__content p {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 6.7px;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}
.form__content label {
  display: block;
  margin-bottom: 20px;
}
.form__content label span {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.form__content label input,
.form__content label select {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 2px solid black;
  padding: 8px 15px;
}
.form__triangle {
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.about {
  padding: 40px 0;
}
.about__content {
  text-align: center;
  background-image: url("../img/about-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: color;
}
.about__content h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 20px 0;
}
.about__content h2 company-logo {
  font-size: 52px;
}
@media (max-width: 800px) {
  .about__content h2 company-logo {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .about__content h2 {
    font-size: 30px;
  }
}
.about__content img {
  margin-bottom: 50px;
}
.about__content p {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
}
.about__content p:first-child {
  font-size: 14px;
  color: #888888;
  letter-spacing: 8px;
}

.outcome__bg {
  padding: 300px 0;
  background-image: url("../img/outcome-bg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
}
.outcome__content h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .outcome__content h2 {
    font-size: 30px;
  }
}
.outcome__content p {
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
  text-align: center;
}
.outcome__triangle {
  width: 100%;
  height: 130px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}
.outcome__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 3;
  bottom: 160px;
  margin-bottom: -100px;
}
@media (max-width: 800px) {
  .outcome__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.outcome__item img:first-child {
  margin-bottom: 40px;
  padding: 10px;
  background-color: #fff;
}
.outcome__item img:last-child {
  display: block;
  width: 150px;
  margin: 0 auto;
}

.reviews {
  padding: 40px 0;
}
.reviews__content h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .reviews__content h2 {
    font-size: 30px;
  }
}
.reviews__content p {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}
.reviews__content img {
  width: 80px;
}
.reviews__content h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
@media (max-width: 1000px) {
  .reviews__grid {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.reviews__item {
  border-radius: 5px;
  padding: 30px;
  border-bottom: 4px solid transparent;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .reviews__item {
    padding: 10px;
  }
}
.reviews__item:hover {
  box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid black;
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 800px) {
  .reviews__author {
    justify-content: center;
  }
}
.reviews__author span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1.6;
}
.reviews__name {
  max-width: 150px;
}

.faq {
  padding: 70px 0;
}
.faq__content h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .faq__content h2 {
    font-size: 30px;
  }
}
.faq__content dl {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq__content dl.opened i {
  transform: rotate(-90deg);
}
.faq__content dl.opened dt {
  color: purple;
}
.faq__content dl.opened dd {
  grid-template-rows: 1fr;
  padding: 30px 15px;
}
.faq__content dt {
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
}
.faq__content dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  padding: 0 15px;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s;
  overflow: hidden;
}
.faq .min-h-0 {
  min-height: 0;
}

.manager {
  background-image: linear-gradient(30deg, #3957ff 0%, #f2295b 100%);
  padding: 40px 0;
}
.manager:hover {
  background-image: linear-gradient(190deg, #3957ff 0%, #f2295b 100%);
}
.manager__content h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .manager__content h2 {
    text-align: center;
    font-size: 30px;
  }
}
.manager__content p {
  font-size: 25px;
  font-weight: 700;
  color: white;
}
@media (max-width: 800px) {
  .manager__content p {
    text-align: center;
  }
}
.manager__content label {
  display: block;
  margin-bottom: 20px;
}
.manager__content label span {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.manager__content label input,
.manager__content label select {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 2px solid black;
  padding: 8px 15px;
}
.manager__row {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 800px) {
  .manager__row {
    flex-direction: column;
    align-items: unset;
  }
  .manager__row form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}
.manager__item {
  flex: 1;
}

.footer {
  padding: 60px 0;
  background-color: rgb(17, 17, 17);
}
.footer__content {
  text-align: center;
}
.footer__content company-logo {
  margin-bottom: 40px;
}
.footer__content ul {
  color: white;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__content ul {
    flex-direction: column;
  }
}
.footer__content li a {
  display: block;
  padding: 10px;
}
.footer__content p {
  color: white;
  opacity: 0.7;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}