* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PoppinsRegular", sans-serif;
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  color: #0C1742;
  background-color: #f5f6fb;
}

.main {
  height: 100%;
}

.section {
  width: 100%;
}

.section__btn-wrapper {
  padding: 40px;
}

.section__ad-ticket-wrapper--left-top {
  position: absolute;
  left: -13%;
  top: -52%;
  transform: rotate(-9deg);
}

.section__ad-ticket-wrapper--right-bottom {
  position: absolute;
  right: -8%;
  bottom: -68%;
  transform: rotate(18deg);
}

.section__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.section__inner--border {
  border-radius: 16px;
  border: 2px solid #9ca6be;
  padding: 65px 70px;
}

.section__inner--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section__inner--width-initial {
  width: initial;
}

.section__inner--row {
  display: flex;
  justify-content: space-between;
}

.section__inner--right-top {
  position: absolute;
  right: 18%;
  top: -6%;
  transform: rotate(-9deg);
  z-index: 2;
}

.section__inner--wrap {
  flex-wrap: wrap;
}

.section__inner--position-relative {
  position: relative;
}

.section__item {
  padding-top: 200px;
}

.section--padding-bottom {
  padding-bottom: 200px;
}

.section--padding-top {
  padding-top: 100px;
  margin-top: -3px;
}

.section__position-relative {
  position: relative;
}

.section--oval {
  background-image: url(/images/bg.png?a57b35589fb709f4c0d92da473455b5c);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 85vw;
  max-height: calc(100vh - 170px);
}

.section__title {
  font-family: PoppinsBold, sans-serif;
  font-size: 50px;
}

.section__title--max-width {
  max-width: 358px;
  font-size: 34px;
}

@media screen and (max-width: 1400px) {
  .section {
    padding: 40px 10% 200px 10%;
  }
}

@media screen and (max-width: 920px) {
  .section__ad-ticket-wrapper--left-top {
    position: absolute;
    left: -13%;
    top: -29%;
    transform: rotate(-9deg);
  }

  .section__ad-ticket-wrapper--right-bottom {
    position: absolute;
    right: 9%;
    top: 100%;
    transform: rotate(18deg);
  }

  .section__inner--border {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .section__inner--column {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .section__inner--right-top {
    right: 6%;
    top: -4%;
  }

  .section__title {
    flex-direction: column;
    text-align: center;
  }

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

  .section__title--max-width {
    font-size: 28px;
  }
}

@media screen and (max-width: 860px) {
  .section__item {
    padding-top: 44px;
  }

  .section__item--margin-bottom {
    margin-bottom: 100px;
  }

  .section__item--padding-top-120 {
    padding-top: 120px;
  }

  .section--padding--bottom-20 {
    padding-bottom: 20px;
  }
}

.ad-ticket {
  width: 318px;
  height: 162px;
  font-family: PoppinsMedium, sans-serif;
  padding: 20px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5f6fb;
  box-shadow: 12px 15px 40px 0 rgba(181, 208, 244, 0.35);
  position: relative;
}

.ad-ticket__img-wrapper {
  position: absolute;
  top: -13%;
  left: 9%;
  border: 3px solid #017cf7;
  border-radius: 7px;
  width: 69px;
  height: 69px;
  background-color: #f5f6fb;
  display: flex;
  align-items: center;
}

.ad-ticket__img {
  width: 100%;
  border-radius: 10px;
}

.ad-ticket__inner {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.ad-ticket__inner:first-child {
  justify-content: flex-end;
}

.ad-ticket__title {
  font-size: 20px;
  font-family: PoppinsSemibold, sans-serif;
  font-weight: 700;
  color: #0c1742;
  margin-left: auto;
  max-width: 160px;
  text-align: center;
}

.ad-ticket__price {
  color: #017cf7;
  font-size: 33px;
  font-weight: 700;
  font-family: PoppinsSemibold, sans-serif;
}

.ad-ticket__description {
  font-size: 15px;
  color: #697697;
}

.block-image {
  width: 40%;
}

.block-image__img {
  width: 100%;
}

.block-image__img--position-absolute {
  position: absolute;
  width: 23%;
  top: 58%;
  right: 7%;
  box-shadow: 12px 15px 40px 0 rgba(181, 208, 244, 0.35);
}

.block-image__inner {
  position: relative;
}

@media screen and (max-width: 860px) {
  .block-image {
    width: 80%;
    margin: 0 auto;
  }
}

.block-title {
  width: 40%;
}

.block-title__img {
  display: inline-block;
  border-radius: 13px;
  margin-right: 10px;
  box-shadow: 14px 11px 18px 6px rgba(181, 208, 244, 0.75);
}

.block-title__img--padding-top {
  padding-top: 13px;
}

.block-title__img--box-shadow-none {
  box-shadow: none;
}

.block-title__img--margin {
  margin: 0 0 25px 0;
}

.block-title__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.block-title__title {
  color: #0c1742;
  font-family: PoppinsBold, sans-serif;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 700;
}

.block-title__title span {
  color: #0271c9;
  font-family: PoppinsBold, sans-serif;
}

.block-title__title--sm {
  color: #697697;
  font-size: 16px;
  line-height: 2;
}

.block-title__description {
  padding-top: 25px;
}

.block-title__description--padding-left {
  padding-left: 40px;
}

@media screen and (max-width: 860px) {
  .block-title {
    width: 100%;
  }
}

.menu__toggle {
  opacity: 0;
  position: absolute;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.4s ease;
}

.menu__btn > span:hover,
.menu__btn > span::before:hover,
.menu__btn > span::after:hover {
  cursor: pointer;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

.menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

.menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

.menu__toggle:checked ~ .header__item {
  visibility: visible;
  left: 0;
}

@media screen and (max-width: 790px) {
  .menu__toggle {
    position: initial;
  }
}

@media screen and (min-width: 790px) {
  .menu__btn {
    display: none;
  }
}

.btn {
  width: 165px;
  height: 50px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: #017ffa;
  font-family: "PoppinsMedium", sans-serif;
  font-size: 16px;
}

.btn:hover {
  transition: all 0.3s ease;
  background-color: #697697;
  color: #ffffff;
  cursor: pointer;
}

.btn-blue {
  width: 165px;
  height: 50px;
  background-color: #017ffa;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 14px 11px 18px 6px rgba(181, 208, 244, 0.75);
  outline: none;
}

.btn-blue:hover {
  cursor: pointer;
  background-color: #0d70d1;
  transition: background-color 0.3s ease;
}

.footer {
  width: 100%;
  background-color: #ebecf1;
  padding: 60px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  font-size: 40px;
  font-family: "PoppinsSemiBoldItalic", sans-serif;
  color: #017ffa;
  text-transform: uppercase;
}

.footer__text {
  color: #28335e;
  font-family: Poppins-Regular, sans-serif;
  font-size: 16px;
  padding-left: 30px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .footer__inner {
    max-width: initial;
    width: 80%;
  }
}

@media screen and (max-width: 520px) {
  .footer__logo {
    font-size: 31px;
  }
}

.header {
  width: 100%;
  background-color: #0B1643;
  max-height: 170px;
  height: 25vh;
  margin: 0 auto;
}

.header__inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1020px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header__item {
  display: flex;
  align-items: center;
}

.header__item p {
  font-size: 40px;
  font-family: "PoppinsSemiBoldItalic", sans-serif;
  color: #017ffa;
  text-transform: uppercase;
}

.header__item:nth-child(4) {
  margin-left: auto;
}

.header__image {
  align-self: center;
}

@media screen and (max-width: 1400px) {
  .header {
    padding: 0 10%;
  }

  .header__inner {
    max-width: 1200px;
  }
}

@media screen and (max-width: 790px) {
  .header__item {
    order: -1;
  }

  .header__item:nth-child(4) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 3;
    visibility: hidden;
    top: 120px;
    left: 0;
    background-color: #131932;
    width: 100%;
    height: calc(50vh - 120px);
    min-height: 240px;
  }

  .header__item:nth-child(4) li {
    padding: 10px 0;
  }

  .header__item:nth-child(4) a {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
  }

  .header__item:nth-child(4) a:hover {
    color: #697697;
  }
}

.image-block {
  position: relative;
}

.image-block__img--width-100 {
  width: 100%;
}

.image-block__img--absolute {
  position: absolute;
  bottom: -43px;
  right: -126px;
  z-index: -1;
}

.image-block__img--box-shadow {
  border-radius: 15px;
  box-shadow: 14px 11px 18px 6px rgba(181, 208, 244, 0.75);
}

@media screen and (max-width: 920px) {
  .image-block__img--width-100 {
    width: 70%;
  }

  .image-block__img--absolute {
    bottom: -98px;
    right: 0px;
    width: 50%;
  }
}

.list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 388px;
  width: 100%;
}

.list__item {
  padding: 0 40px;
}

.list__item:last-child {
  padding: 0;
}

.list__item a {
  color: #ffffff;
  font-family: "PoppinsMedium", sans-serif;
  font-size: 16px;
}

.list__item a:hover {
  color: #697697;
  transition: color 0.3s ease;
}

.main-grid {
  display: grid;
  grid-template-columns: 0% 48% 10% 21% 21% 0%;
  grid-template-rows: 15vw 15vw;
  color: #ffffff;
  position: relative;
  width: 100%;
}

.main-grid__inner {
  position: absolute;
  background-color: #0B1643;
}

.main-grid__inner--lg {
  width: 16%;
  filter: blur(43px);
}

.main-grid__inner--position-initial {
  position: initial;
  padding: 0 5% 0 5%;
  width: 82%;
}

.main-grid__inner--position-top {
  top: -16%;
  right: -20%;
  width: 45%;
}

.main-grid__inner--position-bottom {
  bottom: -16%;
  width: 29%;
  right: -5.5%;
  padding-left: 10px;
}

.main-grid__inner--position-bottom-right {
  bottom: -23%;
  right: 7%;
}

.main-grid__inner--position-bottom-left {
  bottom: -23%;
  left: -6.5%;
  padding: 10px 0 0 0;
  width: 12%;
}

.main-grid__image {
  display: inline-block;
  width: 100%;
}

.main-grid__text {
  display: inline-block;
  width: 100%;
  font-size: 9.4vw;
  font-family: "PoppinsBold", sans-serif;
  color: #017ffa;
  line-height: 1;
  letter-spacing: 5px;
}

.main-grid__item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-grid__item:first-child {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 3;
}

.main-grid__item:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 4;
  border-top: 1px solid #5568b8;
  border-left: 1px solid #5568b8;
}

.main-grid__item:nth-child(3) {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 4;
  grid-column-end: 6;
  border-bottom: 1px solid #5568b8;
  border-right: 1px solid #5568b8;
}

.main-grid__item:nth-child(4) {
  border-left: 1px solid #5568b8;
  border-top: 1px solid #5568b8;
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 4;
}

.main-grid__item:nth-child(5) {
  border-bottom: 1px solid #5568b8;
  border-left: 1px solid #5568b8;
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 4;
  grid-column-end: 5;
}

.main-grid__item:nth-child(6) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-grid__item:nth-child(2),
.main-grid__item:nth-child(3),
.main-grid__item:nth-child(5) {
  position: relative;
}

.main-grid__subtitle--grey {
  color: #5568b8;
  font-size: 2vw;
  letter-spacing: 0.4vw;
  transform: translate(14%, -54%);
}

.main-grid__subtitle--blue {
  color: #017ffa;
  font-weight: 700;
  font-size: 10.5vw;
  letter-spacing: 0.8vw;
  line-height: 1.1;
}

.main-grid__subtitle--lg {
  font-size: 2.8vw;
  transform: translate(6%, 18%);
}

@media screen and (min-width: 1300px) {
  .main-grid__text {
    font-size: 122px;
  }
}

@media screen and (min-width: 1200px) {
  .main-grid {
    grid-template-rows: 180px 180px;
  }

  .main-grid__inner--position-initial {
    width: 100%;
    max-width: 759px;
    transform: translateX(-45px);
  }

  .main-grid__subtitle--lg {
    font-size: 34px;
  }

  .main-grid__subtitle--blue {
    font-size: 128px;
    letter-spacing: 10px;
  }

  .main-grid__subtitle--grey {
    font-size: 22px;
    letter-spacing: 5px;
  }
}

@media screen and (max-width: 820px) {
  .main-grid__inner--position-bottom {
    top: 79%;
    width: 43%;
    right: -5.5%;
  }
}

@media screen and (max-width: 380px) {
  .main-grid__inner--position-top {
    top: -25%;
    right: -20%;
    width: 45%;
    padding-left: 2px;
  }
}

@media screen and (max-width: 460px) {
  .main-grid__text {
    font-size: 9vw;
    letter-spacing: 3px;
  }
}

@font-face {
  font-family: "PoppinsRegular";
  src: url(/fonts/Poppins-Regular.ttf?8b6af8e5e8324edfd77af8b3b35d7f9c) format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url(/fonts/Poppins-Medium.ttf?f61a4eb27371b7453bf5b12ab3648b9e) format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "PoppinsBold";
  src: url(/fonts/Poppins-Bold.ttf?a3e0b5f427803a187c1b62c5919196aa) format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "PoppinsSemibold";
  src: url(/fonts/Poppins-SemiBold.ttf?4cdacb8f89d588d69e8570edcbe49507) format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "PoppinsBoldItalic";
  src: url(/fonts/Poppins-BoldItalic.ttf?09775bde3e9448b38c063b746e21cb6b) format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "PoppinsExtraBoldItalic";
  src: url(/fonts/Poppins-ExtraBoldItalic.ttf?29f7dd016eeed2bcd79ba482eb3f27ec) format("truetype");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "PoppinsExtraBold";
  src: url(/fonts/Poppins-ExtraBold.ttf?544fa4f2678a8285eb88b8dfe503c90c) format("truetype");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "PoppinsSemiBoldItalic";
  src: url(/fonts/Poppins-SemiBoldItalic.ttf?378a091bc1b1e6e6d6327beb6bfb07b9) format("truetype");
  font-style: normal;
  font-weight: 600;
}

