@font-face {
  font-family: Lato;
  src: url(/fonts/Lato/Lato-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: Lato;
  src: url(/fonts/Lato/Lato-Bold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: Rockinsoda;
  src: url(/fonts/rockinsoda.ttf);
}
@font-face {
  font-family: Montserrat;
  src: url(/fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: MyriadPro;
  src: url(/fonts/MyriadPro-Regular.otf);
}
@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-VariableFont_slntwght.ttf);
}
:root {
  --black:#000;
  --white:#fff;
  --pink:#F41E51;
  --yellow:#F6C80D;
  --grey:#E8E8E8;
  --version:"3.0";
}

html {
  padding: 0px;
  margin: 0px;
  scrollbar-width: 1px;
  scrollbar-color: unset;
}

h1, h2, h3, h4 {
  text-align: center;
  margin: 0px;
}

h3 {
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
  }
}

body::-webkit-scrollbar {
  width: 2px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--pink);
}

body::-webkit-scrollbar-track {
  background-color: var(--yellow);
}

body {
  width: 100%;
  display: table;
  padding: 0px;
  margin: 0px;
  font-family: Rockinsoda;
  font-style: normal;
  line-height: normal;
  background: url("/images/home/background.png") #BAB8E9 no-repeat;
  background-size: cover;
  color: var(--black);
  position: relative;
  scroll-behavior: smooth;
}
/*@media only screen and (max-width: 1199px) {
  body {
    background-size: 100% calc(90% + 85px);
  }
}
@media only screen and (max-width: 575px) {
  body {
    background-size: 100% calc(95% - 200px);
  }
}
*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.disabled-button {
  pointer-events: none;
  opacity: 0.7;
}

section.section {
  position: relative;
  z-index: 100;
}
section.section::before {
  content: "";
  background: url(/images/side-image-left.png);
  background-size: 100%;
  position: fixed;
  top: -170px;
  width: 100px;
  height: calc(100% + 170px);
  animation: fadeIn 1s forwards;
}
@media only screen and (max-width: 1199px) {
  section.section::before {
    width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  section.section::before {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  section.section::before {
    width: 50px;
  }
}
@media only screen and (max-width: 399px) {
  section.section::before {
    width: 40px;
  }
}
section.section::after {
  content: "";
  background: url(/images/side-image-right.png);
  background-size: 100%;
  position: fixed;
  right: 0px;
  top: -50px;
  width: 100px;
  height: calc(100% + 50px);
  animation: fadeIn 1s forwards;
}
@media only screen and (max-width: 1199px) {
  section.section::after {
    width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  section.section::after {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  section.section::after {
    width: 50px;
  }
}
@media only screen and (max-width: 399px) {
  section.section::after {
    width: 40px;
  }
}

header {
  background: #FFF;
  width: 100%;
  display: table;
  padding: 20px 0px 0px;
  font-size: 44px;
  font-weight: 400;
  position: relative;
  margin-bottom: 25px;
  z-index: 200;
}
@media only screen and (max-width: 1199px) {
  header {
    padding: 10px 0px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  header {
    padding: 10px 0px;
    margin-bottom: 15px;
  }
}
header::after {
  content: "";
  background: url(/images/header-background.png) no-repeat;
  background-size: 100% 50px;
  height: 85px;
  position: absolute;
  bottom: -83px;
  left: 0px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  header::after {
    height: 48px;
    bottom: -46px;
    background: url(/images/header-background.png) no-repeat;
    background-size: 100% 20px;
  }
}
header .header__left {
  float: left;
  width: 120px;
  display: block;
}
@media only screen and (max-width: 1199px) {
  header .header__left {
    width: 150px;
    text-align: center;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  header .header__left {
    width: 150px;
    text-align: center;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  header .header__left {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 547px) {
  header .header__left {
    width: 60px;
    text-align: center;
    padding-top: 0px;
  }
}
@media only screen and (max-width: 320px) {
  header .header__left {
    width: 40px;
  }
}
header .header__logo {
  width: 90%;
  max-width: 100px;
}
header .header__center {
  float: left;
  width: 300px;
  display: block;
  padding: 30px 0px 0px 30px;
}
@media only screen and (max-width: 1199px) {
  header .header__center {
    width: 300px;
    padding-top: 37px;
  }
}
@media only screen and (max-width: 991px) {
  header .header__center {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header .header__center {
    display: none;
  }
}
@media only screen and (max-width: 547px) {
  header .header__center {
    display: none;
  }
}
header .header__right {
  float: left;
  width: calc(100% - 450px);
  display: block;
  text-align: right;
  padding: 37px 0px 0px 0px;
}
@media only screen and (max-width: 1199px) {
  header .header__right {
    padding-top: 28px;
    padding-right: 20px;
    width: calc(100% - 500px);
  }
}
@media only screen and (max-width: 991px) {
  header .header__right {
    width: calc(100% - 190px);
    padding-top: 24px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  header .header__right {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 651px) {
  header .header__right {
	width: calc(100% - 170px);
  }
}
@media only screen and (max-width: 547px) {
  header .header__right {
    width: calc(100% - 60px);
    padding-top: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 320px) {
  header .header__right {
    width: calc(100% - 40px);
  }
}
header .header__block {
  float: right;
  display: table;
}
header .header__link-block {
  float: left;
  display: flex;
  text-align: right;
  margin-left: 44px;
}
header .header__link-block:hover {
  animation: zoomIn 0.2s forwards;
}
@media only screen and (max-width: 1199px) {
	header .header__link-block {
		display: block;
		margin-left: 38px;
	}
}
@media only screen and (max-width: 991px) {
  header .header__link-block {
    margin-left: 18px;
    display: block;
  }
}
@media only screen and (max-width: 547px) {
  header .header__link-block {
    margin-left: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
  }
}
@media only screen and (max-width: 448px) {
  header .header__link-block {
	height: 48px;
  }
}
@media only screen and (max-width: 320px) {
  header .header__link-block {
    margin-left: 10px;
  }
}
header .header__link-block a {
  font-size: 25px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 1100px) {
	header .header__link-block a {
		font-size: 20px;
	}
}
@media only screen and (max-width: 1030px) {
	header .header__link-block a {
		font-size: 19px;
	}
}
@media only screen and (max-width: 767px) {
	header .header__link-block a {
		font-size: 22px;
	}
}
@media only screen and (max-width: 611px) {
	header .header__link-block a {
		font-size: 21px;
	}
}
@media only screen and (max-width: 600px) {
	header .header__link-block a {
	  font-size: 20px;
	}
}
@media only screen and (max-width: 585px) {
	header .header__link-block a {
	  font-size: 18px;
	}
}
@media only screen and (max-width: 558px) {
	header .header__link-block a {
		font-size: 17px;
	}
}
@media only screen and (max-width: 435px) {
	header .header__link-block a {
		font-size: 15px;
	}
	header .header__link-block {
		height: 48px;
		margin-left: 15px;
	}
}
@media only screen and (max-width: 378px) {
	header .header__link-block a {
		font-size: 13px;
	}
}
@media only screen and (max-width: 352px) {
	header .header__link-block a {
		font-size: 12px;
	}
}
@media only screen and (max-width: 340px) {
	header .header__link-block {
		height: 58px;
		margin-left: 15px;
	}
	header .header__block {
		height: 55px;
		justify-content: center;
		display: flex;
	}
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.section-landing {
  text-align: center;
  padding-top: 50px;
  animation: fadeIn 2s forwards;
}
@media only screen and (max-width: 1199px) {
  .section-landing {
    padding-top: 20px;
  }
}
/*.section-landing .section-landing__top {
  background: url(/images/landing-background.png) no-repeat;
  background-size: 100%;
  max-width: 920px;
  width: 100%;
  margin: 0px auto;
  padding-bottom: 40px;
}*/
@media only screen and (max-width: 1199px) {
  .section-landing .section-landing__top {
    max-width: 750px;
    width: 100%;
    margin: 0px auto;
    background-position: 0px 30px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-landing .section-landing__top {
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
    background-position: 0px 30px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 475px) {
  .section-landing .section-landing__top {
    max-width: 300px;
  }
}
.section-landing .section-landing__logo {
  width: 100%;
  max-width: 500px;
  animation: moving-landing 0.2s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
@media only screen and (max-width: 1199px) {
  .section-landing .section-landing__logo {
    max-width: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .section-landing .section-landing__logo {
    max-width: 300px;
  }
}
@media only screen and (max-width: 475px) {
  .section-landing .section-landing__logo {
    max-width: 200px;
  }
}
@keyframes moving-landing {
  0% {
    transform: rotate(1deg);
  }
  40% {
    transform: rotate(-1deg);
  }
  80% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.section-lineup {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0;
  display: table;
  width: 100%;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .section-lineup {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup {
    margin: 30px 0;
  }
}

.section-lineup__date h2 {
  font-size: 68px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__date h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__date h2 {
    margin-bottom: 0;
    font-size: 26px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__date h2 {
    font-size: 20px;
  }
}

.section-lineup__venue {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .section-lineup__venue {
    margin-bottom: 20px;
  }
}

.section-lineup__venue h3 {
  color: var(--black);
  font-size: 38px;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__venue h3 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__venue h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__venue h3 {
    font-size: 14px;
    max-width: 250px;
    margin: auto;
  }
}


.section-early-bird {
  text-align: center;
  display: table;
  width: 100%;
  position: relative;
  margin-top: 90px;
}

  .section-early-bird__title {
    width: 55%;
    max-width: 850px;
    display: table;
    margin: 0px auto 10px;
    object-fit: contain;
  }

  @media only screen and (max-width: 767px) {
    .section-early-bird__title {
      width: 80%;
      margin: 0px auto 10px;
    }
  }

  .section-early-bird label {
    font-size: 24px;
    font-family: 'Lato';
    font-weight: 600;
    display: table;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  @media only screen and (max-width: 1199px) {
    .section-early-bird label {
      font-size: 22px;
    }
  }

  @media only screen and (max-width: 767px) {
    .section-early-bird {
      margin-top: 20px;
    }

    .section-early-bird label {
      font-size: 12px;
    }
  }

  .section-early-bird img.section-early-bird__seat {
    display: table;
    width: 100%;
    max-width: 655px;
    margin: 0px auto 40px;
    object-fit: cover;
    height: 500px;
  }

  @media only screen and (max-width: 767px) {
    .section-early-bird img.section-early-bird__seat {
      width: 85%;
      margin: 0px auto 20px;
      height: 320px;
    }
  }

.section-pricing {
  display: table;
  width: 85%;
  max-width: 1000px;
  margin: 0px auto 20px;
  padding: 10px;
}

  .section-pricing img.pricing--desktop {
    display: block;
  }

  .section-pricing img.pricing--mobile {
    display: none;
  }

  @media only screen and (max-width: 767px) {
    .section-pricing {
      width: 85%;
      margin: 0px auto 20px;
    }

      .section-pricing img.pricing--desktop {
        display: none;
      }

      .section-pricing img.pricing--mobile {
        display: block;
      }
  }

  .section-pricing-inner {
    display: table;
    width: calc(50% - 40px);
    margin-bottom: 20px;
    float: left;
    padding: 10px;
  }

    .section-pricing-inner:nth-child(odd) {
      padding-right: 20px;
    }

    .section-pricing-inner:nth-child(even) {
      padding-left: 20px;
    }

  @media only screen and (max-width: 767px) {
    .section-pricing-inner {
      display: table;
      width: 100%;
      margin-bottom: 10px;
      padding: 0px 0px 10px;
    }

    .section-pricing-inner:nth-child(odd) {
      padding-right: 0px;
    }

    .section-pricing-inner:nth-child(even) {
      padding-left: 0px;
    }
  }

    .section-pricing-inner img {
      width: 100%;
    }

.section-ticket {
  text-align: center;
  display: table;
  width: 100%;
  margin-bottom: 90px;
}

  .section-ticket .btn__get-ticket {
    background: #c027a6;
    color: #fff;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    padding: 10px 115px;
    text-decoration: none;
    border-radius: 15px;
    display: table;
    margin: 20px auto 0px;
  }

  @media only screen and (max-width: 767px) {
    .section-ticket {
      margin-bottom: 40px;
    }

    .section-ticket .btn__get-ticket {
      font-size: 24px;
      padding: 15px 30px;
    }
  }
  @media only screen and (max-width: 475px) {
    .section-ticket .btn__get-ticket {
      font-size: 16px;
    }
  }

.section-pelago {
  text-align: center;
  display: table;
  width: calc(100% - 40px);
  border-radius: 8px;
  border: 2px solid #e2e2e2;
  max-width: 800px;
  margin: 20px auto 80px;
  background: rgba(255, 255, 255, 0.26);
  padding: 80px 20px;
  text-align: center;
}

  @media only screen and (max-width: 1199px) {
    .section-pelago {
      width: calc(80% - 20px);
      padding: 40px 10px;
    }
  }

  .section-pelago img {
    width: 250px;
    margin: 20px auto;
    max-width: 100%;
  }

  .section-pelago label {
    width: 100%;
    display: table;
    text-align: center;
    font-family: 'Lato';
    font-weight: 100;
    font-size: 24px;
  }

  .section-pelago .btn__get-ticket {
    background: #E5FB7C;
    color: #000;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    padding: 10px 115px;
    text-decoration: none;
    border-radius: 15px;
    display: table;
    margin: 20px auto 0px;
  }

  @media only screen and (max-width: 767px) {
    .section-pelago {
      margin-bottom: 40px;
    }

    .section-pelago label {
      font-size: 16px;
    }

    .section-pelago .btn__get-ticket {
      font-size: 24px;
      padding: 15px 30px;
    }
  }
  @media only screen and (max-width: 475px) {
    .section-pelago .btn__get-ticket {
      font-size: 16px;
    }
  }
  
.section-stadium {
  margin-bottom: 80px;
  display: table;
  justify-content: center;
  width: 100%;
  position: relative;
  text-align: center;
}

  .section-stadium__title {
    width: 70%;
    max-width: 650px;
    display: table;
    margin: 0px auto 0px;
    object-fit: contain;
  }

  @media only screen and (max-width: 767px) {
    .section-stadium {
      margin-bottom: 40px;
    }

    .section-stadium__title {
      margin: 0px auto 10px;
      width: 80%;
    }
  }
  
  .section-stadium__stadium {
    width: 70%;
    max-width: 1000px;
    margin: 0px auto 20px;
    text-align: center;
  }
  @media only screen and (max-width: 767px) {
    .section-stadium__stadium {
      width: 85%;
    }
  }

.section-video {
  margin-top: 0px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-video {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.section-video h3 {
  font-family: "Rockinsoda";
  font-size: 75px;
}
@media only screen and (max-width: 1199px) {
  .section-video h3 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-video h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 475px) {
  .section-video h3 {
    font-size: 24px;
  }
}

.section-video_iframe {
  max-width: 100%;
  margin: auto;
  padding: 40px 0 0;
  height: 380px;
  position: relative;
  width: calc(100% - 10%);
    text-align: center;
}
.section-video_iframe::before {
  content: "";
  background: url(/images/official-trailer.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: -23px;
  width: 100%;
  max-width: 650px;
  height: 80px;
  margin: 0px auto;
  right: 0px;
  left: 0px;
}

@media (max-width: 1319px) {
	.section-video_iframe {
		height: 500px;
		width: calc(100% - 20%);
	}
	.section-video_iframe::before {
/*		left: calc(11.5% - 1%);*/
	}
}
@media (max-width: 1195px) {
	.section-video_iframe {
		height: 500px;
		width: calc(100% - 25%);
	}
	.section-video_iframe::before {
/*		left: calc(9% - 1%);*/
	}
}
@media (max-width: 1139px) {
	.section-video_iframe {
		height: 400px;
		width: calc(100% - 30%);
	}
	.section-video_iframe::before {
/*		left: calc(11.5% - 1%);*/
		width: calc(100% - 22%);
		top: calc(-40px + 3%);
	}
}
@media (max-width: 1045px) {
	.section-video_iframe::before {
		top: calc(-35px + 3%);
	}
}
@media (max-width: 991px) {
	.section-video_iframe::before {
		width: calc(100% - 22%);
		top: calc(-33px + 5.5%);
/*		left: calc(12% - 1%);*/
	}
}
@media (max-width: 900px) {
	.section-video_iframe::before {
		top: calc(-33px + 6.5%);
	}
}
@media (max-width: 820px) {
	.section-video_iframe::before {
		top: calc(-30px + 6.5%);
	}
}
@media (max-width: 767px) {
	.section-video_iframe {
		height: 280px;
		max-width: 100%;
		padding: 20px 0 0;
		width: 85%;
	}
	.section-video_iframe::before {
		top: calc(-26px + 1%);
	}
}
@media (max-width: 710px) {
	.section-video_iframe::before {
		top: calc(-22px + 1%);
	}
}
@media (max-width: 650px) {
	.section-video_iframe::before {
		top: calc(-22px + 2%);
	}
}
@media (max-width: 610px) {
	.section-video_iframe::before {
		top: calc(-22px + 3%);
	}
}
@media (max-width: 575px) {
	.section-video_iframe::before {
		top: -10px;
	}
}
@media (max-width: 525px) {
	.section-video_iframe::before {
		top: -8px;
	}
}
@media (max-width: 500px) {
	.section-video_iframe {
		height: 250px;
	}
}
@media (max-width: 499px) {
	.section-video_iframe::before {
		top: -5px;
	}
}
@media (max-width: 460px) {
	.section-video_iframe::before {
		top: -3px;
	}
}
@media (max-width: 430px) {
	.section-video_iframe::before {
		top: 0px;
	}
}
@media (max-width: 399px) {
	.section-video_iframe {
		height: 100%;
		width: calc(100% - 13%);
	}
	.section-video_iframe::before {
		top: -6px;
	}
}
@media (max-width: 370px) {
	.section-video_iframe::before {
		top: -4px;
	}
}
@media (max-width: 352px) {
	.section-video_iframe::before {
		top: -2px;
	}
}
@media (max-width: 331px) {
	.section-video_iframe::before {
		top: 0px;
	}
}

  .section-video_iframe iframe {
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
  }

.section-artist {
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0 20px;
    display: table;
    width: 100%;
    text-align: center;
}

  .section-artist .section-artist__title {
    width: 55%;
    max-width: 850px;
    display: table;
    margin: 0px auto 40px;
    object-fit: contain;
  }

  .section-artist .section-artist__day1 {
    width: 80%;
    max-width: 800px;
    display: table;
    margin: 0px auto 80px;
    object-fit: contain;
  }

  .section-artist .section-artist__day2 {
    width: 80%;
    max-width: 800px;
    display: table;
    margin: 0px auto 40px;
    object-fit: contain;
  }

  @media only screen and (max-width: 767px) {
    .section-artist .section-artist__title {
      width: 80%;
      margin: 0px auto 10px;
    }
  }
  @media (max-width: 575px) {
    .section-artist .section-artist__title {
      width: 80%;
      margin-bottom: 20px;
    }

    .section-artist .section-artist__day1 {
      width: 100%;
      margin-bottom: 20px;
    }

    .section-artist .section-artist__day2 {
      width: 100%;
      margin-bottom: 0px;
    }
  }
  @media (max-width: 450px) {
    .section-artist .section-artist__day1 {
      width: 80%;
    }

    .section-artist .section-artist__day2 {
      width: 80%;
    }
  }

/*
.section-lineup__description {
  max-width: 650px;
  margin: -40px auto 0;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description {
    max-width: 550px;
    margin: -30px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description {
    max-width: 375px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description {
    max-width: 250px;
  }
}
.section-lineup__description h3 {
  font-family: "MyriadPro";
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description h3 {
    font-size: 14px;
  }
}
.section-lineup__description .section-lineup__description-box {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description .section-lineup__description-box {
    margin-top: 40px;
  }
}
.section-lineup__description .section-lineup__description-box img {
  max-width: 100%;
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__top {
  font-size: 100px;
  line-height: normal;
  margin: 15px auto -20px;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top {
    font-size: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top {
    font-size: 50px;
    margin: 15px auto 0;
    padding: 0 0 10px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top {
    font-size: 36px;
  }
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__top span {
  transform: rotate(0deg);
  display: inline-block;
  background-image: url(../images/lineup-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 35px;
  height: 35px;
  -webkit-animation: waveb 0.6s infinite;
  padding-top: 30px;
}
@keyframes waveb {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@media (max-width: 1199px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top span {
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top span {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 475px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__top span {
    width: 15px;
    height: 15px;
    padding-top: 8px;
  }
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom {
  font-size: 40px;
  line-height: normal;
  margin: -20px auto;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom {
    font-size: 18px;
    margin: -15px auto;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom {
    font-size: 15px;
  }
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateX(-5%);
  transition: opacity 1s ease, transform 1s ease;
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul.fade-in {
  opacity: 1;
  transform: translateX(0);
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-5%);
  }
  80% {
    opacity: 0.8;
    transform: translateX(-1%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li {
  margin-right: 7px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li {
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li {
    margin-right: 3px;
  }
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li:last-child {
  margin-right: 0;
}
.section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li:not(:last-child):after {
  content: "";
  transform: rotate(0deg);
  display: inline-block;
  background-image: url("../images/lineup-icon.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 25px;
  padding-right: 32px;
  -webkit-animation: wave 0.5s infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li:not(:last-child):after {
    background-size: 18px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 475px) {
  .section-lineup__description .section-lineup__description-box .section-lineup__description-box__bottom ul > li:not(:last-child):after {
    background-size: 12px;
    padding-right: 15px;
  }
}
.section-lineup__description .section-lineup__more {
  width: 160px;
  height: 45px;
  color: var(--black);
  background-color: var(--white);
  font-size: 30px;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding-top: 15px;
  margin: 45px auto;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .section-lineup__description .section-lineup__more {
    padding-top: 10px;
    font-size: 25px;
    width: 130px;
    height: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .section-lineup__description .section-lineup__more {
    padding-top: 10px;
    font-size: 16px;
    width: 85px;
    height: 24px;
    margin: 40px auto;
  }
}
.section-lineup__description .section-lineup__more a {
  text-decoration-line: none;
  color: var(--black);
}
.section-lineup__description .section-lineup__more:hover {
  animation: wave 1s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
*/
.section-tickets h3 {
  color: var(--white);
  font-size: 75px;
  padding: 100px 0 10px;
}
@media only screen and (max-width: 1199px) {
  .section-tickets h3 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets h3 {
    font-size: 40px;
    padding: 35px 0 10px;
  }
}
.section-tickets_notice {
  font-size: 24px;
  background-color: rgba(244, 30, 81, 0.7);
  color: var(--white);
  max-width: 400px;
  margin: auto;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
@media (max-width: 475px) {
  .section-tickets_notice {
    font-size: 16px;
    max-width: 250px;
  }
}
@media (max-width: 320px) {
  .section-tickets_notice {
    font-size: 16px;
    max-width: 200px;
  }
}
.section-tickets__box {
  padding: 60px 0 0;
  margin: 30px auto !important;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box {
    padding: 30px 0 0;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box {
    padding: 15px 0 0;
    margin: 10px auto !important;
  }
}
.section-tickets__box-top {
  color: #000;
  font-family: "Montserrat";
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box-top {
    font-size: 20px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box-top {
    font-size: 9px;
  }
}
.section-tickets__box-bottom {
  justify-content: center;
  padding: 40px 7px;
  width: 100%;
  display: flex;
  align-items: baseline;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__box-bottom {
    padding: 45px 7px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__box-bottom {
    padding: 25px 7px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box-bottom {
    padding: 10px 7px;
  }
}
.section-tickets__box-bottom--left {
  font-weight: 400;
  font-size: 100px;
  line-height: normal;
  width: 40%;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__box-bottom--left {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__box-bottom--left {
    font-size: 50px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box-bottom--left {
    font-size: 40px;
  }
}
.section-tickets__box-bottom--right {
  font-size: 55px;
  width: 40%;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box-bottom--right {
    font-size: 40px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box-bottom--right {
    font-size: 30px;
    padding-right: 10px;
  }
}
.section-tickets__box--vip {
  background-image: url(../images/tickets-vip.png);
  background-repeat: no-repeat;
  background-size: 100%;
  max-width: 650px;
  margin: auto;
  position: relative;
  overflow: hidden; /* Hide overflow to prevent ray effect from overflowing */
  /* Sunlight Animation */
}
.section-tickets__box--vip:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to top right, transparent 0%, rgba(255, 255, 0, 0.3) 50%, transparent 100%);
  transform: rotate(45deg);
  animation: rotatingLightRay 2s linear infinite;
}
@keyframes rotatingLightRay {
  0% {
    transform: translateX(-100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(-100%) rotate(45deg);
  }
}
@media only screen and (max-width: 1199px) {
  .section-tickets__box--vip {
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--vip {
    max-width: 370px;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box--vip {
    max-width: 240px;
    height: 90px;
  }
}
.section-tickets__box--cat1 {
  background-image: url(../images/tickets-cat1-new.png);
  background-repeat: no-repeat;
  background-size: 100%;
  max-width: 650px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__box--cat1 {
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--cat1 {
    max-width: 370px;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__box--cat1 {
    max-width: 240px;
    height: 90px;
  }
}
.section-tickets__box--cat2 {
  background-image: url(../images/tickets-cat2-new.png);
  background-repeat: no-repeat;
  width: 50%;
  margin-right: 20px !important;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--cat2 {
    margin-left: 5px;
  }
}
.section-tickets__box--cat3 {
  background-image: url(../images/tickets-cat3-new.png);
  background-repeat: no-repeat;
  width: 50%;
  margin-left: 20px !important;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--cat3 {
    margin-right: 5px;
  }
}
.section-tickets__box--cat4 {
  background-image: url(../images/tickets-cat4-new.png);
  background-repeat: no-repeat;
  width: 50%;
  margin-left: 20px !important;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--cat4 {
    margin-right: 5px;
  }
}
.section-tickets__box--cat5 {
  background-image: url(../images/tickets-cat5-new.png);
  background-repeat: no-repeat;
  width: 50%;
  margin-left: 20px !important;
}
@media only screen and (max-width: 767px) {
  .section-tickets__box--cat5 {
    margin-right: 5px;
  }
}
.section-tickets__row {
  max-width: 850px;
  margin: 20px auto;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__row {
    max-width: 730px;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__row {
    max-width: 450px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__row {
    max-width: 270px;
    height: 60px;
    margin: 20px auto;
  }
}
.section-tickets__row .section-tickets__box {
  background-size: contain;
  margin: 0 20px !important;
  padding: 40px 0 0;
}
@media only screen and (max-width: 767px) {
  .section-tickets__row .section-tickets__box {
    background-size: 100%;
    height: 100px;
    padding: 20px 0;
    margin: 0 5px !important;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__row .section-tickets__box {
    padding: 10px 0;
  }
}
.section-tickets__row .section-tickets__box-top {
  color: #000;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-tickets__row .section-tickets__box-top {
    font-size: 12px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__row .section-tickets__box-top {
    font-size: 8px;
  }
}
.section-tickets__row .section-tickets__box-bottom {
  justify-content: center;
  padding: 40px 7px;
  width: 100%;
  display: flex;
  align-items: baseline;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__row .section-tickets__box-bottom {
    padding: 35px 7px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__row .section-tickets__box-bottom {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__row .section-tickets__box-bottom {
    padding: 10px 0;
  }
}
.section-tickets__row .section-tickets__box-bottom--left {
  font-weight: 400;
  font-size: 60px;
  line-height: normal;
  width: 40%;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__row .section-tickets__box-bottom--left {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__row .section-tickets__box-bottom--left {
    font-size: 30px;
  }
}
@media only screen and (max-width: 475px) {
  .section-tickets__row .section-tickets__box-bottom--left {
    font-size: 20px;
    width: auto;
    padding: 0 5px;
  }
}
.section-tickets__row .section-tickets__box-bottom--right {
  font-size: 45px;
  width: 30%;
  text-align: right;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__row .section-tickets__box-bottom--right {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__row .section-tickets__box-bottom--right {
    font-size: 20px;
  }
}
@media only screen and (max-width: 499px) {
  .section-tickets__row .section-tickets__box-bottom--right {
    font-size: 16px;
    width: auto;
    padding: 0 5px;
  }
}
.section-tickets__btn {
  width: 160px;
  height: 45px;
  color: var(--black);
  background-color: var(--white);
  font-size: 30px;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding-top: 15px;
  margin: 35px auto;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .section-tickets__btn {
    padding-top: 10px;
    font-size: 25px;
    width: 130px;
    height: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .section-tickets__btn {
    padding-top: 10px;
    font-size: 16px;
    width: 85px;
    height: 24px;
    margin: 0 auto;
  }
}
.section-tickets__btn a {
  text-decoration-line: none;
  color: var(--black);
}
.section-tickets__btn:hover {
  animation: wave 1s ease-in-out infinite;
  background-color: var(--yellow);
  color: var(--white);
  border: 2px solid var(--white);
}
@keyframes wave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.section-plan {
  max-width: 100%;
}
.section-plan h3 {
  color: var(--white);
  padding: 100px 0 10px;
}
@media only screen and (max-width: 767px) {
  .section-plan h3 {
    padding: 75px 0 10px;
  }
}
.section-plan .container {
  background-image: url(../images/section-ready-bg.png);
  background-size: 100% 500px;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  color: #fff;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
@media only screen and (max-width: 1199px) {
  .section-plan .container {
    background-size: 100% 400px;
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .section-plan .container {
    background-size: 100% 300px;
    height: 300px;
  }
}
@media only screen and (max-width: 475px) {
  .section-plan .container {
    background-size: 100% 250px;
    height: 250px;
    width: auto;
  }
}
.section-plan .container h4 {
  font-size: 50px;
  color: var(--white);
  margin: 35px auto;
}
@media only screen and (max-width: 1199px) {
  .section-plan .container h4 {
    font-size: 42px;
    margin: 15px auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-plan .container h4 {
    font-size: 26px;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 475px) {
  .section-plan .container h4 {
    font-size: 20px;
    max-width: 250px;
  }
}
.section-plan .container span {
  font-family: Montserrat;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .section-plan .container span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-plan .container span {
    font-weight: 700;
  }
}
@media only screen and (max-width: 475px) {
  .section-plan .container span {
    font-weight: 500;
    max-width: 250px;
    margin: 10px auto;
  }
}
.section-plan .container a.btn {
  text-decoration: none;
  width: 160px;
  height: 45px;
  color: var(--black);
  background-color: var(--white);
  font-size: 30px;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding-top: 15px;
  margin: 40px auto;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .section-plan .container a.btn {
    padding-top: 10px;
    font-size: 25px;
    width: 130px;
    height: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .section-plan .container a.btn {
    padding-top: 10px;
    font-size: 16px;
    width: 85px;
    height: 24px;
    margin: 0 auto;
  }
}

.section-partner {
  margin-top: 80px;
  padding: 70px 0px;
  background: var(--white);
  position: relative;
  z-index: -10;
  bottom: -20px;
}
.section-partner h3 {
  margin-bottom: 42px;
}

.section-partner__row {
  width: 100%;
  display: table;
  padding-bottom: 50px;
  max-width: 800px;
  margin: 0px auto;
}

.section-partner__flex {
  display: flex;
  width: auto;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  position: absolute;
}

.section-partner__box {
  margin-bottom: 50px;
}

.section-partner__box--supported-by {
  position: relative;
  margin: auto;
}
.section-partner__box--supported-by .section-partner__flex {
  position: relative;
  max-width: 480px;
}

.section-partner__box h4 {
  font-size: 16px;
  font-family: "MyriadPro";
  text-align: center;
  margin-bottom: 20px;
}

.section-partner__list {
  margin: 0px 15px 15px;
  height: 60px;
  max-width: 130px;
  width: calc(50% - 30px);
  float: left;
  text-align: center;
}
.section-partner__list img {
  object-fit: contain;
  max-width: 100%;
  height: 100px;
  text-align: center;
  width: 150px;
}

@media only screen and (max-width: 991px) {
  .section-partner {
    padding: 20px 0px;
  }
  .section-partner h3 {
    margin-bottom: 20px;
  }
  .section-partner__row {
    padding-bottom: 20px;
    max-width: 100%;
  }
  .section-partner__box {
    margin-bottom: 20px;
  }
  .section-partner__box--supported-by {
    width: 100%;
    float: left;
    margin: 0px 20px;
    position: relative;
  }
  .section-partner__box--supported-by .section-partner__flex {
    position: relative;
    max-width: 100%;
  }
  .section-partner__list {
    width: calc(50% - 30px);
    max-width: initial;
    height: 87px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .section-partner__box--supported-by {
    width: calc(100% - 40px);
    margin-bottom: 20px;
    display: table;
  }
  .section-partner__box--supported-by .section-partner__flex {
    position: relative;
    display: table;
    width: 100%;
  }
}
footer {
  background: #FFF;
  background-size: 100%;
  width: 100%;
  display: table;
  padding: 40px 0px;
  z-index: 200;
  position: relative;
  bottom: 0;
  height: auto;
}
footer::before {
  content: "";
  background: url(/images/footer-background.png) no-repeat;
  background-size: 100%;
  height: 100px;
  position: absolute;
  top: -100px;
  left: 0px;
  width: 100%;
}

@media only screen and (max-width: 1280px) {
  footer::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 110px;
    z-index: -1;
    padding: 42px 0px 10px;
  }
}
@media only screen and (max-height: 800px) {
  footer::before {
    height: 100px;
  }
}
@media only screen and (max-height: 800px) and (max-width: 574px) {
  footer::before {
    height: 65px;
  }
}
@media (max-width: 1688px) {
	footer::before {
	  top: -80px;
	}
}
@media (max-width: 1519px) {
	footer::before {
	  top: -80px;
	}
}
@media (max-width: 1351px) {
	footer::before {
		top: -70px;
	}
}
@media (max-width: 1280px) {
	footer::before {
		top: -60px;
	}
}
@media (max-width: 1100px) {
	footer::before {
		top: -55px;
	}
}
@media (max-width: 991px) {
	footer::before {
		top: -50px;
	}
}
@media (max-width: 840px) {
	footer::before {
		top: -45px;
	}
}
@media only screen and (min-height: 1041px) and (max-width: 767px) {
  footer::before {
    height: 42vh;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
  footer::before {
    top: -40px;
  }
}
@media (max-width: 685px) {
	footer::before {
		top: -35px;
	}
}
@media (max-width: 595px) {
	footer::before {
		top: -30px;
	}
}
@media only screen and (max-width: 575px) {
  footer::before {
    top: -30px;
  }
}
@media only screen and (max-width: 515px) {
  footer::before {
    top: -25px;
  }
}
@media only screen and (max-width: 422px) {
  footer::before {
    top: -20px;
  }
}
@media only screen and (max-width: 339px) {
  footer::before {
    top: -18px;
  }
}
.footer__left {
  width: 200px;
  float: left;
  display: block;
}

.footer__logo {
  width: 137px;
}

@media only screen and (max-width: 574px) {
  .footer__logo {
    width: 75px;
  }
}
.footer__center {
  width: calc(100% - 500px);
  float: left;
  display: block;
  padding-top: 20px;
}

.footer__social {
  width: auto;
  text-align: center;
  display: table;
  margin: 0px auto;
}

.footer__social-media {
  width: 100px;
  float: left;
  display: block;
  text-align: center;
}
.footer__social-media img {
  width: 43px;
}

@media only screen and (max-width: 1199px) {
  .footer__social-media {
    width: 60px;
  }
}
@media only screen and (max-width: 574px) {
  .footer__social-media img {
    width: 35px;
  }
}
.footer__right {
  width: 300px;
  float: left;
  display: block;
}

.footer__link-block {
  text-align: right;
  width: 100%;
  padding-top: 11px;
}

.footer__link-block--last {
  padding-top: 14px;
}

.footer__link-block a {
  font-size: 23px;
  text-decoration: none;
  color: var(--black);
}

@media only screen and (max-width: 1199px) {
  .footer__left {
    padding-left: 20px;
    width: 100px;
    float: left;
    display: block;
  }
  .footer__center {
    width: calc(100% - 340px);
  }
  .footer__right {
    width: 200px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
    padding-left: 0;
  }
  .footer__center {
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .footer__social {
    margin: 0px auto;
  }
  .footer__social-media {
    text-align: center;
  }
  .footer__right {
    padding-left: 0;
    padding-right: 0px;
    width: 100%;
  }
  .footer__link-block {
    text-align: center;
  }
}
@media only screen and (max-width: 547px) {
  .footer__link-block--last {
    font-size: 14px;
  }
  .footer__link-block a {
    font-size: 18px;
  }
}
.section-content {
  padding: 60px 0px;
}

@media only screen and (max-width: 767px) {
  .section-content {
    padding: 25px 0px;
  }
}
.container {
  max-width: 1140px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.section-content .container {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  min-height: 40vh;
  overflow: scroll;
  font-family: Inter;
}
.section-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .section-content .container {
    background: var(--white);
    padding: 30px;
    margin: 0px 30px;
    width: calc(100% - 120px);
    border-radius: 10px;
    min-height: 50vh;
    max-height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 767px) {
  header .container, footer .container {
    width: calc(100% - 30px);
    padding: 0px;
  }
}
@media only screen and (max-width: 399px) {
  .container {
    width: calc(100% - 40px);
    padding: 0px 20px;
  }
}
.the-keyword {
  display: none;
}

/*# sourceMappingURL=app2.css.map */
