@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/bg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100vh;
}
.wrapper header, .wrapper footer, .wrapper main {
  position: relative;
  z-index: 2;
}

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

.header {
  padding-top: 11px;
  position: relative;
  padding-bottom: 20px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 590px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 20px;
  z-index: 3;
}
.header__danger {
  position: absolute;
  right: 0;
  top: 0;
}

.footer {
  padding: 20px 0 10px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.footer__container {
  max-width: 380px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 3;
}
.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 {
  position: relative;
  z-index: 3;
}
.main__title {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 35px;
  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: 25px;
  }
}
.main__title--block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__title--block img {
  display: block;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 90px;
  margin-bottom: 20px;
}
@media (max-height: 827px) {
  .main__title--block img {
    padding-top: 15px;
  }
}
.main__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.main__content--title {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 390px) {
  .main__content--title {
    font-size: 22px;
  }
}
.main__date {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  margin-bottom: 10px;
}
.main__date span:nth-child(1) {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 390px) {
  .main__date span:nth-child(1) {
    font-size: 20px;
  }
}
.main__date span:nth-child(2) {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 390px) {
  .main__date span:nth-child(2) {
    font-size: 17px;
  }
}
.main__vs {
  display: flex;
  justify-content: space-between;
}
.main__vs img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__vs {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.main__team {
  max-width: 46%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__team div {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.main__team div img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
@media (max-width: 390px) {
  .main__team div {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
}
.main__team h2 {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 827px) {
  .main__team h2 {
    font-size: 25px;
  }
}
.main__submit {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.main__btn {
  width: 100%;
  text-decoration: none;
  padding: 20px;
  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: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.main__price {
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.main__back {
  font-size: 15.982px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  border: #FFFFFF 1px solid;
  color: #FFFFFF;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 5px 20px;
  border-radius: 100px;
  opacity: 0.9;
}
@media (max-height: 827px) {
  .main__back {
    font-size: 12px;
  }
}/*# sourceMappingURL=style2.css.map */