@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-image: url("../image/bg4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100vh;
  height: 100%;
}
.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #731982 0%, rgba(0, 185, 86, 0) 100%);
  mix-blend-mode: hard-light;
  opacity: 0.3;
  z-index: 1;
}
.wrapper header, .wrapper footer, .wrapper main {
  position: relative;
  z-index: 2;
}
.wrapper footer {
  position: relative;
}
.wrapper footer::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 140%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  mix-blend-mode: hard-light;
  opacity: 1;
  z-index: 1;
}
.wrapper footer div {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-height: 827px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  padding-top: 11px;
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}
.header__danger {
  position: absolute;
  right: 0;
  top: 0;
}

.footer {
  padding: 20px 0;
}
.footer__container {
  text-align: center;
  color: #FFFFFF;
}
.footer__container p {
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__container p a {
  color: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.main__title {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 50px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 390px) {
  .main__title {
    font-size: 40px;
  }
}
.main__team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  justify-content: space-between;
  margin-bottom: 105px;
}
@media (max-height: 827px) {
  .main__team {
    margin-bottom: 40px;
  }
}
.main__team-container {
  width: 140px;
  height: 140px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 95.29%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.main__team-container img {
  display: block;
}
@media (max-width: 390px) {
  .main__team-container {
    width: 130px;
    height: 130px;
  }
}
.main__team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__team-block h2 {
  color: #000000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 390px) {
  .main__team-block h2 {
    font-size: 20px;
  }
}
.main__submit {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.main__btn {
  width: 100%;
  text-decoration: none;
  padding: 25px;
  border-radius: 14px;
  background: #00B956;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.main__price {
  color: #000000;
  font-weight: 600;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}/*# sourceMappingURL=style4.css.map */