:root {
  --border-radius-base: 50px;
  --box-shadow: 0px 0px 5.68px 2.32px rgba(0, 0, 0, 0.39);

  --transition-navigate-slide: all 0.5s linear;
  --transition-navigate-hover: all 0.25s ease-in;
  --transition-btn-hover: all ease-in-out 0.2s;

  --width-content-max: 1200px;
  /* colors */
  --color-white: #fff;
  --color-black: #000;

  --color-red-100:#f5f5f5;
  --color-red-150:#F1f1f1;
  --color-red-200:#eaeaea;

  --color-yellow-500: #f1ef17;
  --color-yellow-600: #f4fe0e;

  --color-violet-100: #f3f0ff;
  --color-violet-500: #7f33c7;
  --color-violet-600: #6931ba;
  --color-violet-700: #6938ef;
  
  --color-blue-700: #342c9f;

  --color-greay-200: #999aa480;
  --color-greay-600: #4e4e4e;

  /* gradients */
  --primary-gradient: linear-gradient(160.39deg, var(--color-violet-500)3.78%, var(--color-violet-600) 34.42%, var(--color-blue-700) 89.03%);

  /* Typography */
  --font-family-base: "Montserrat", sans-serif;

  /* --font-size-base: 16px;
  --font-size-title: 45px;
  --font-size-subtitle: 40px;
  --font-size-paragraph: 20px; */
  --font-size-base: 1rem;
  /* --font-size-title: 2.8rem; */
  --font-size-title: 2.5rem;
  /* --font-size-subtitle: 2.5rem; */
  --font-size-subtitle: 2rem;
  --font-size-subtitle-small: 1.5rem;
  --font-size-paragraph: 1.25rem;
  --font-size-btn-text: 1.75rem;
  --font-size-small: 1rem;
  --font-size-little: 0.85rem;
  --font-size-tiny: 0.70rem;



  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-black: 900;

  /* --line-height-title: 55px;
  --line-height-subtitle: 49px;
  --line-height-paragraph: 22px; */
  /* --line-height-title: 3.4rem; */
  --line-height-title: 3.2rem;
  /* --line-height-subtitle: 3rem; */
  --line-height-subtitle: 2.9rem;
  --line-height-paragraph: 1.5rem;
}
@media (max-width: 1200px) {
  :root {
    /* --font-size-title: 40px;
    --font-size-subtitle: 30px;
    --font-size-paragraph: 16px; */
    --font-size-title: 2.5rem;
    --font-size-subtitle: 1.8rem;
    --font-size-paragraph: 1rem;
    --font-size-btn-text: 1.25rem;

    /* --line-height-title: 45px;
    --line-height-subtitle: 30px;
    --line-height-paragraph: 18px; */
    --line-height-title: 2.8rem;
    --line-height-subtitle: 1.8rem;
    --line-height-paragraph: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  :root {
    /* --font-size-base: 15px;
    --font-size-title: 30px;
    --font-size-subtitle: 25px; */
    --font-size-base: 0.8rem;
    --font-size-title: 1.8rem;
    --font-size-subtitle: 1.5rem;
    --font-size-subtitle-small: 1.25rem;
    --font-size-btn-text: 1rem;
    --font-size-little: 0.75rem;
    --font-size-tiny: 0.60rem;

    /* --line-height-title: 35px; */
    --line-height-title: 2rem;

  }
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base);
  color: var(--color-black);
  line-height: 1.42;
  scroll-behavior: smooth;
}
 *::-webkit-scrollbar-track {
  background: #dfdfdf;
}
 *::-webkit-scrollbar-thumb {
  background-color: var(--color-violet-700);
  border-radius: 20px;
}
 *::-webkit-scrollbar-thumb:hover {
  background-color: #883fef;
}

 *::-webkit-scrollbar-thumb:active {
  background-color: #c88dff;
}
 *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-violet-600) #dfdfdf;
}
main {
  max-width: 2000px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: var(--color-black);
}
.link-accent {
  color: var(--color-violet-600);
  font-weight: var(--font-weight-medium);
}
button {
  border: none;
}
iframe {
  display: block;
}
input[type="checkbox"] {
  accent-color: #6930bb;
}
.text {
  margin: 0 0 10px 0;
}
.text--size-s {
  font-size: var(--font-size-little);
}
.text--size-xs {
  font-size: var(--font-size-tiny);
}
.text--color-white {
  color: var(--color-white);
}
.text--base {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}
.pr-20 {
  padding-right: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.ml-5 {
  margin-left: 5px;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.ball {
  width: 25px;
  height: 25px;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  /* border: 3px solid var(--color-violet-600); */
  background-color: var(--color-yellow-500);
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.6s, height 0.6s;
}
@media (max-width: 991.98px) {
  .ball {
    display: none !important;
  }
}
.hidden {
  display: none;
}
.btn {
  padding: 20px 67px 20px 88px;
  border-radius: 40px 20px 20px 0;
  font-size: var(--font-size-btn-text);
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  color: var(--color-yellow-600);
  background: var(--primary-gradient);
  position: relative;
}
@media (max-width: 1200px) {
  .btn {
    padding: 15px 60px 15px 75px;
  }
}
@media (max-width: 575.98px) {
  .btn {
    padding: 15px 50px 15px 50px;
  }
}

.btn--outline {
  border: 2px solid var(--color-violet-600);
  background: #fff;
  color: var(--color-violet-600);
}
.btn.hover {
  background: var(--color-yellow-600);
}
.btn:hover {
  color: var(--color-violet-600);
}
.btn--hover:hover {
  -webkit-box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
  -moz-box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
  box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
  /* color: var(--color-yellow-600); */
}
.btn--hover:not(.btn--outline):hover {
  color: var(--color-yellow-600);
}
.btn svg {
  width: 50px;
  fill: var(--color-yellow-600);
  transition: all 0.2s ease-in-out;
}
.btn:hover svg {
  fill: var(--color-violet-600);
}
.btn--telegram svg {
  margin: -6px 20px 0 0;
}
.btn--flex {
  display: inline-flex !important;
}
.blob-link {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  z-index: 0;
  overflow: hidden;
}
.blob-link span {
  height: 0;
  width: 0;
  display: inline-block;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  /* background: var(--color-yellow-600); */
  background: var(--color-yellow-500);
  transition: width 0.7s ease-in-out, height 0.7s ease-in-out;
}
.blob-link:hover span{
  width: 999px;
  height: 999px;
}

.square-btn {
  padding: 5px 37px 6px;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.1s linear;
  color: #fff;
  background: var(--color-violet-600);
}

.square-btn:hover {
  -webkit-box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
  -moz-box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
  box-shadow: 0px 1px 12px 0px rgba(105, 49, 187, 0.56);
}
.square-btn--outline {
  color: var(--color-violet-600);
  background: #fff;
  border: 1px solid var(--color-violet-600);
}
.subtitle {
  --font-size-subtitle: 1.7rem;
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-black);
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--color-violet-600)
}
@media (max-width: 1200px) {
  .subtitle {
    --font-size-subtitle: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  .subtitle {
    --font-size-subtitle: 1.2rem;
    font-size: var(--font-size-subtitle);
    font-weight: var(--font-weight-black);
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--color-violet-600)
  }
}
.paragraph {
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-medium);
}
.wrapper {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.content {
  margin-top: 93px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background: var(--color-white);
}
@media (max-width: 991.98px) {
  .content {
    margin-top: 65px;
  }
}
.container {
  max-width: var(--width-content-max);
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
@media (min-width: 767.98px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 991.98px) {
  .container {
    width: 970px;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.list {

}
.list--no-marker {
  list-style: none;
}
.list--marker-violet li::marker {
  color: var(--color-violet-600);
}

.base-title {
  padding: 40px 15px;
  text-transform: uppercase;
  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
}

.page-header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}
.page-header__wrap {
  max-width: var(--width-content-max);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 15px 0;
}
@media (max-width: 991.98px) {
  .page-header__wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.page-header__logo {
  width: 60px;
  display: none;
}
@media (max-width: 991.98px) {
  .page-header__logo{
    display: block;
  }
}




.navigate {
  width: 100%;
  transition: var(--transition-navigate-slide);
}
@media (max-width: 991.98px) {
  .navigate {
    /* height: 100%; */
    /* height: 83%; */
    position: fixed;
    top: 97px;
    right: 0;
    left: -1500px;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    background: var(--color-white);
  }
}
.navigate.open {
  left: 0;
  opacity: 1;
  bottom: 0;
}


.menu {
  display: flex;
justify-content: space-between;
  align-items: center;
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 991.98px) {
  .menu {
    display: block;
  }
}

.menu__item--has-child:hover {
  /* background: var(--color-yellow-100); */
  background: var(--color-yellow-500);
}
.menu__item--has-child:hover > .menu__submenu-wrap {
  opacity: 1;
  visibility: visible;
}




.menu__link:not(.menu__link--no-hover):hover {
  background: var(--color-yellow-500);
}
.menu__link {
  display: flex;
  /*padding: 35px 25px;*/
  
    padding: 35px 15px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--color-black);
  transition: var(--transition-navigate-hover);
}
@media (max-width: 1200px) {
  .menu__link {
    /*padding: 35px 10px;*/
    padding: 35px 5px;
    font-size: var(--font-size-base-mob);
  }
}
@media (max-width: 991.98px) {
  .menu__link {
    padding: 15px;
  }
}
.menu__link--no-padding {
  padding: 0;
} 
.menu__link--home {
  margin: 0 8px;
}

@media (max-width: 991.98px) {
  .menu__link--home {
    display: none;
  }
}
.menu__link.active {
  background: var(--color-yellow-500);
}

.menu__submenu-wrap {
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: var(--color-violet-600);
  transition: var(--transition-navigate-hover);
}
@media (max-width: 991.98px) {
  .menu__submenu-wrap {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.menu__submenu {
  max-width: var(--width-content-max);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 15px;
  list-style-type: none;
}
@media (max-width: 991.98px) {
  .menu__submenu {
    display: block;
    padding: 0;
  }
}
.menu__submenu--col-2 {
  flex-wrap: wrap;
}
 .menu__submenu-item {
  flex-basis: calc(100% / 2);
}
.menu__submenu-link {
  width: 100%;
  display: block;
  padding: 13px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
  transition: var(--transition-navigate-hover);
}
.menu__submenu-link--align-left {
  padding: 13px 13px 13px 30%;
  text-align: left;
}
.menu__item--has-child:hover > .menu__submenu-link,
.menu__submenu-link:hover,
.menu__submenu-link--active {
  font-weight: var(--font-weight-semi-bold);
  color: var(--color-violet-600);
  background: var(--color-yellow-500);
}
@media (max-width: 991.98px) {
  .menu__submenu-link {
    padding-left: 20px;
    text-align: left;
  }
}


/* start style for events menu */
.menu__item--col .menu__submenu {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0;
}
.menu__item--col .menu__submenu-item {
  width: 50%;
  flex-basis: calc(100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .menu__item--col .menu__submenu-item {
    width: 100%;
    display: block;
  }
}

.menu__submenu-wrap--col {
  width: 50%;
  height: 100%;
  top: 0%;
  left: 50%;
  right: 0;
}
@media (max-width: 991.98px) {
  .menu__submenu-wrap--col {
    width: 100%;
  }
}

.menu__submenu-wrap--col .menu__submenu-item {
  width: 100%;
  flex-basis: calc(100%);
}
.menu__submenu-wrap--col .menu__submenu-link {
  padding: 13px 0 13px 30%;
  text-align: left;
}
@media (max-width: 991.98px) {
  .menu__submenu-wrap--col .menu__submenu-link {
    padding-left: 40px;
  }
}
/* end style for events menu */




.toggle-menu {
  width: 26px;
  height: 17px;
  display: none;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 9;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  cursor: pointer;
  outline: none;
  background: none;
}
@media (max-width: 991.98px) {
  .toggle-menu {
    display: block;
  }
}
.toggle-menu .icon-bar {
  width: 26px;
  height: 2px;
  display: block;
  margin: auto;
  background-color: var(--color-black);
  transition: var(--transition-navigate-slide);
}
.toggle-menu .icon-bar + .icon-bar {
  margin-top: 5px;
}
.toggle-menu.active .icon-bar:first-child {
  transform: rotate(45deg);
  margin-top: 0;
}
.toggle-menu.active .icon-bar:nth-child(2) {
  display: none;
}
.toggle-menu.active .icon-bar:last-child {
  transform: rotate(-45deg);
  margin-top: -2px;
}



.page-final {
  background: url(/assets/images/bg/vectors/5.png) no-repeat 61% 2360px / 50%,
              url(/assets/images/bg/vectors/6.png) no-repeat 90% 3540px / 50%;
  counter-reset: purposes 0;
}
@media (max-width: 1200px) {
  .page-final {
    background: url(/assets/images/bg/vectors/5.png) no-repeat 60% 103% / 90%,
                url(/assets/images/bg/vectors/6.png) no-repeat 90% 3540px / 50%;
  }
}
@media (max-width: 767.98px) {
  .page-final {
    background: url(/assets/images/bg/vectors/5.png) no-repeat 60% 90% / 90%,
                url(/assets/images/bg/vectors/6.png) no-repeat 90% 3540px / 80%;
  }
}


.olmpics-info__title {
  z-index: 3;
  position: relative;
  margin: 0 0 25px 0;
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-title);
  text-transform: uppercase;
  text-align: left;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .olmpics-info__title {
    margin: 0 0 15px 0;
  }
}
.olmpics-info__subtitle {
  z-index: 3;
  position: relative;
  margin: 0px 0 25px 0;
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-subtitle);
  text-transform: uppercase;
  text-align: left;
  color: var(--color-black);
}
@media (max-width: 1200px) {
  .olmpics-info__subtitle {
    margin: 0 0 15px 0;
  }
}
@media (max-width: 575.98px) {
  .olmpics-info__subtitle {
    margin: 0 0 5px 0;
  }
}
.olmpics-info__text {
  z-index: 3;
  position: relative;
  margin: 0px 0 20px 0;
  --font-size-paragraph: 1.5rem;
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  text-align: left;
  color: var(--color-black);
}
.olmpics-info__text--small {
  --font-size-paragraph: 1.25rem;
  line-height: 22px;
  text-transform: unset;
}
.olmpics-info__btn {
  min-width: 85%;
  margin: 10px 0 0 0;
  font-weight: var(--font-weight-medium);
  letter-spacing: 2px;
}
@media (max-width: 767.98px) {
  .olmpics-info__btn {
    width: 100%;
  }
}

.major-slider__foreground {
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  z-index: 8;
  pointer-events: none;
  background: url(/assets/images/bg/vectors/3.png) no-repeat -14% 5%/ 45%,
              url(/assets/images/bg/vectors/4.png) no-repeat 15% 497px;
}
@media (max-width: 1200px) {
  .major-slider__foreground {
    display: none;
  }
}
.major-slider {
  padding: 68px 0 40px;
  /* background: url(/assets/images/bg/vectors/1.png) no-repeat 145% 112%,
              url(/assets/images/bg/vectors/2.png) no-repeat 110% -7%,
              var(--color-white); */
  background: url(/assets/images/bg/vectors/1.png) no-repeat 192% 88% / 70%,
              url(/assets/images/bg/vectors/2.png) no-repeat 110% -7%,
              var(--color-white);
}

.major-slider__slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  left: -5%;
}
@media (max-width: 1200px) {
  .major-slider__slide {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .major-slider__slide {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.major-slider__img {
  max-width: 50%;
  border-radius: 50px;
  max-height: 500px;
}
@media (max-width: 991.98px) {
  .major-slider__img {
    max-width: 65%;
  }
}
@media (max-width: 575.98px) {
  .major-slider__img {
    max-width: 85%;
  }
}

.major-slider__content {
  max-width: 26%;
  max-height: 100%;
  min-height: 84%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 50px;
}
@media (min-width: 1200px) {
  .major-slider__content {
    justify-content: space-around;
  }
}
@media (max-width: 1200px) {
  .major-slider__content {
    max-width: 40%;
  }
}
@media (max-width: 991.98px) {
  .major-slider__content{
    max-width: 80%;
    margin: 35px 0 0;
  }
}
@media (max-width: 575.98px) {
  .major-slider__content{
    margin: 25px 0 0;
  }
}
.major-slider__btn-next,
.major-slider__btn-prev {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30%;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-greay-200);
}

.major-slider__btn-prev {
  left: 18%;
}
@media (max-width: 1800px) {
  .major-slider__btn-prev {
    left: 13%;
  }
}
@media (max-width: 1400px) {
  .major-slider__btn-prev {
    left: 5%;
  }
}
@media (max-width: 1200px) {
  .major-slider__btn--prev {
    left: 1%;
  }
}
@media (max-width: 991.98px) {
  .major-slider__btn-prev {
    display: none;
  }
}
.major-slider__btn-next {
  right: 18%;
}
@media (max-width: 1800px) {
  .major-slider__btn-next {
    right: 13%;
  }
}
@media (max-width: 1400px) {
  .major-slider__btn-next {
    right: 5%;
  }
}
@media (max-width: 1200px) {
  .major-slider__btn-next {
    right: 1%;
  }
}
@media (max-width: 991.98px) {
  .major-slider__btn-next {
    display: none;
  }
}
.major-slider__btn-next:after {
  content: "";
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--color-white);
}
.major-slider__btn-prev:after {
  content: "";
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 13px solid transparent;
  border-right: 17px solid var(--color-white);
  border-bottom: 13px solid transparent;
} 
.major-slider__pagination {
  position: relative;
  left:45%;
  margin: 50px 0 0;
}
@media (max-width: 991.98px) {
  .major-slider__pagination {
    margin: 50px 0 0;
  }
}
.major-banner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(/assets/images/bg/banners/major-banner.png) no-repeat top / cover; */
  background: url(/assets/images/bg/banners/major-banner.png) no-repeat top / 105%;
}
@media (max-width: 1200px) {
  .major-banner {
    height: 80vh;
  }
}
@media (max-width: 991.98px) {
  .major-banner {
    height: 50vh;
    background: url(/assets/images/bg/banners/major-banner-mob.png) no-repeat top / contain;
  }
}
.major-banner__btn {
  position: relative;
  top: -17%;
  margin: 0 auto;
  padding: 25px 149px 20px 160px;
  font-weight: var(--font-weight-black);
  letter-spacing: 1px;
  text-align: center;
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.6));
}
@media (max-width: 1200px) {
  .major-banner__btn {
    padding: 15px 80px 15px 80px;
  }
}
@media (max-width: 991.98px) {
  .major-banner__btn {
    width: 80%;
    margin: 43% auto 0;
    padding: 25px 10px 20px 10px;
  }
}

.description {
  padding: 40px 0 100px;
  background: url(/assets/images/bg/svg/arrow-1.svg) no-repeat 43% 0% / 130px;
}
@media (max-width: 1200px) {
  .description {
    background: url(/assets/images/bg/svg/arrow-1.svg) no-repeat 40% top / 115px;
  }
}
@media (max-width: 991.98px) {
  .description {
    background: url(/assets/images/bg/svg/arrow-1-left.svg) no-repeat 19% 63% / 10%;
  }
}
@media (max-width: 767.98px) {
  .description {
    background: none;
  }
}
.description--finals {
  padding: 70px 0 100px;
  background: url(/assets/images/bg/svg/arrow-3.svg) no-repeat 48% 67% / 115px,
              url(/assets/images/bg/vectors/7.png) no-repeat 129% 120% / 80%;
}
@media (max-width: 1200px) {
  .description--finals {
    padding: 70px 0;
    background: url(/assets/images/bg/svg/arrow-3.svg) no-repeat 57% 67% / 115px,
                url(/assets/images/bg/vectors/7.png) no-repeat 0% 157% / 115%;
  }
}
@media (max-width: 991.98px) {
  .description--finals {
    padding: 40px 0;
    background: none;
  }
}
.description--league {
  padding: 70px 0 100px;
  background: url(/assets/images/bg/vectors/10.png) no-repeat 60% -15vh / 70%;
}
@media (max-width: 991.98px) {
  .description--league {
    background: url(/assets/images/bg/vectors/10.png) no-repeat 58% 0% / cover;
    overflow: hidden;
  }
}
.description--league-europe {
  background: url(/assets/images/bg/svg/league-attractions/europe.svg) no-repeat 76% 56% / 700px,
              url(/assets/images/bg/vectors/10.png) no-repeat 60% -120% / 70%;
}
@media (max-width: 991.98px) {
  .description--league-europe {
    background: url(/assets/images/bg/svg/league-attractions/europe.svg) no-repeat 75% 50vh / 700px,
                url(/assets/images/bg/vectors/10.png) no-repeat 58% 0% / cover;
  }
}
.description--about-page {
  padding: 50px 0 80px;
  background: url(/assets/images/bg/vectors/12.png) no-repeat 65% -30% / 40%;
}
@media (max-width: 1200px) {
  .description--about-page {
    background: url(/assets/images/bg/vectors/12.png) no-repeat 75% -30% / 50%;
  }
}
.description--finals-two {
  background: url(/assets/images/bg/svg/union-2.svg) no-repeat 49% 96% / 100px;
}
@media (max-width: 991.98px) {
  .description--finals-two {
    background: none;
  }
}
.description__wrap {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .description__wrap {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .description__wrap {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .description--about-page .description__wrap {
    justify-content: space-between;
  }
}
.description__img-wrap {
  width: 50%;
  display: block;
  margin: 0px 0 0 -115px;
}
@media (max-width: 991.98px) {
  .description__img-wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.description__img-wrap--fix-marg {
  margin: 0 -65px 0 0;
}
@media (max-width: 991.98px) {
  .description__img-wrap--fix-marg {
    margin: 40px auto;
  }
}

.description__figure {
  width: 50%;
}

@media (max-width: 1200px) {
  .description__figure {
    /*margin: 0 0 0 70px;*/
    /*padding: 0 0 0 70px;*/
  }
}
@media (max-width: 991.98px) {
  .description__figure {
     width: 100%;
  }
}

.description__img-border {
  width: 100%;
  height: 444px;
}

.description__img {
  /* width: 595px; */
  /* width: 100%; */
  height: 444px;
}

.description--about-page .description__img-wrap {
  width: 55%;
  margin: 0px 0 0 -70px;
}
@media (max-width: 1200px) {
  .description--about-page .description__img-wrap {
    width: 45%;
    margin: 0;
  }
}
@media (max-width: 991.98px) {
  .description--about-page .description__img-wrap {
    width: 90%;
    margin: 0 auto 1rem;
  }
}
/* .description__img {
  margin: 0 0px 0 -80px;
}
@media (max-width: 1200px) {
  .description__img {
    max-width: 50%;
  }
} */
.description__img-wrap--fix-marg .description__img {
  margin: 0;
}
@media (max-width: 991.98px) {
  .description__img {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .description__img {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .description--about-page .description__img {
    max-width: 100%;
  }
}
.blob-union {
  width: 270px;
  display: block;
  position: absolute;
  top: -140px;
  left: 580px;
}
@media (max-width: 1200px) {
  .blob-union {
    width: 220px;
    top: -105px;
    left: 490px;
  }
}
@media (max-width: 991.98px) {
  .blob-union {
    display: none;
  }
}
.blob-union--target {
  top: 170px;
  left: 100px;
}
.description__content {
  width: 50%;
  /* margin: 0 0 0 70px; */
  /* margin: 0 0 0 120px; */
  /* padding: 0 0 0 120px; */
  padding: 0 0 0 80px;
}
@media (max-width: 1200px) {
  .description__content {
    /*margin: 0 0 0 70px;*/
    padding: 0 0 0 70px;
  }
}
@media (max-width: 991.98px) {
  .description__content {
      width: 80%;
      margin: 35px auto;
        padding:  0;
  }
}
.description__content--no-margin {
  margin: 0;
}
.description__content--fix-width-55 {
  width: 55%;
}
@media (max-width: 1200px) {
  .description__content--fix-width-55 {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .description__content--fix-width-55 {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .description__content--fix-width-55 {
    width: 100%;
    margin: 0 auto;
  }
}
.description__content--fix-width-55 .description__paragraph {
  width: 80%;
}
@media (max-width: 1200px) {
  .description__content--fix-width-55 .description__paragraph {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .description__content--fix-width-55 .description__paragraph {
    width: 100%;
  }
}
.description--about-page .description__content {
  width: 46%;
  margin: 0;
}
@media (max-width: 991.98px) {
  .description--about-page .description__content {
    width: 90%;
    margin: 0 auto;
  }
}
.description__title {
  font-size: var(--font-size-title);
  margin: 0;
  font-weight: 900;
  line-height: var(--line-height-title);

  text-transform: uppercase;

  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 991.98px) {
  .description__title{
    margin: 0 auto 1rem;
  }
}
@media (max-width: 575.98px) {
  .description__title{
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
}
.description__subtitle {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .description__subtitle {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .description__subtitle {
    width: 100%;
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  .description__subtitle {
    font-size: 1.25rem;
    text-align: center;
  }
}

.description__paragraph {
  line-height: 25px;
}
@media (max-width: 991.98px) {
  .description__paragraph {
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .description__paragraph {
    width: 100%;
    font-size: 0.8rem;
  }
}


.purposes--league .purposes__item:before {
  padding: 30px;
  background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat 50% 50% / 115%;
}
@media (max-width: 767.98px) {
  .purposes--league .purposes__item:before {
    padding: 0.7rem 0 0.7rem 0.7rem;
    background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat 50% 50% / 130%;
  }
}

.purposes--league {
  padding: 30px 0 0 0;
  background: url(/assets/images/bg/svg/arrow-5.svg) no-repeat 76% 0% / contain;
}
@media (max-width: 991.98px) {
  .purposes--league{
    padding: 0;
    background: none;
  }
}
.purposes--about-page {
  padding: 90px 0 30px;
  /* background: url(/assets/images/bg/svg/union-3.svg) no-repeat 76% 0% / contain; */
}
.purposes--about-page .purposes__item:before {
  padding: 30px;
  background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat 50% 50% / 115%;
}
.purposes__col{
  width: 50%;
}
@media (max-width: 991.98px) {
  .purposes__col{
    width: 100%;
  }
}
.purposes--about-page .purposes__col {
  width: 68%;
}
@media (max-width: 991.98px) {
  .purposes--about-page .purposes__col {
    width: 90%;
  }
}
.purposes__col--right {
  width: 50%;
  position: relative;
  left: 0;
  margin: 30px 0 0 0;
}
@media (max-width: 1200px) {
  .purposes__col--right {
    width: 42%;
  }
}
@media (max-width: 991.98px) {
  .purposes__col--right {
    width: 85%;
    margin: 0;
  }
}
.purposes__subtitle {
  margin: 0 120px 0 0;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  /* --font-size-subtitle: 2.5rem; */
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-black);
  letter-spacing: 0px;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .purposes__subtitle {
    margin: 0 0 50px;
  }
}
.purposes--about-page .purposes__subtitle {
  width: 65%;
  margin: 0 0 40px;
  font-size: var(--font-size-subtitle);
  line-height: var(--line-height-subtitle);
}
@media (max-width: 991.98px) {
  .purposes--about-page .purposes__subtitle {
    width: 90%;
    margin: 0 auto 30px;
    text-align: center;
  }
}
.purposes__wrap {
  display: flex;
}
@media (max-width: 991.98px) {
  .purposes__wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.purposes--about-page .purposes__wrap {
  justify-content: flex-end;
}

.purposes__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .purposes__list {
    width: 90%;
    margin: 0;
  }
}
.purposes__list--left {
  margin: 20px 0 0;
}
@media (max-width: 991.98px) {
  .purposes__list--left {
    margin: 0;
  }
}
.purposes--circles .purposes__subtitle {
  margin: 0 0 25px;
}
@media (max-width: 991.98px) {
  .purposes--circles .purposes__subtitle {
    text-align: center;
  }
}
.purposes--circles .purposes__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .purposes--circles .purposes__list {
    flex-direction: column;
  }
}
.purposes--circles .purposes__item {
  width: calc(100% / 2 - 30px);
  min-height: 175px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .purposes--circles .purposes__item {
    width: 100%;
    min-height: 100px;
  }
}
.purposes--circles .purposes__item span {
  padding: 0 65px 0 15px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 80px 80px 0;
}
@media (max-width: 991.98px) {
  .purposes--circles .purposes__item span {
    padding: 30px 20px 30px 10px;
    background: var(--color-red-150);
  }
}

.purposes--circles .purposes__item:nth-child(4n-3) span,
.purposes--circles .purposes__item:nth-child(4n) span {
  background: var(--color-red-150);
  
}
.blob-union--cup {
  width: 150px;
  top: 0;
  left: 80%;
}
.purposes--circles .purposes__item:before {
  padding: 55px 30px;
  background: url(/assets/images/bg/svg/arrow-6.svg) no-repeat center center / contain, url(/assets/images/bg/vectors/ellipse-2.png) no-repeat 50% 50% / 143%;
}
@media (max-width: 991.98px) {
  .purposes--circles .purposes__item:before {
    padding: 40px 25px;
  }
}
@media (max-width: 575.98px) {
  .purposes--circles .purposes__item:before {
    padding: 30px 25px;
  }
}
.purposes__swiper {
  position: relative;
  right: -10%;
}
@media (max-width: 1200px) {
  .purposes__swiper {
    right: 0%;
  }
}

.purposes__item {
  display: flex;
  /* align-items: flex-start; */
  align-items: center;
  margin: 0 0 40px;
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-paragraph);
  counter-increment: purposes 1;
}
@media (max-width: 991.98px) {
  .purposes__item {
    margin: 0 0 30px;
  }
}
.purposes__item:before {
  content: "0"counter(purposes) "/ ";
  display: block;
  margin: 5px 15px 0 0;
  font-size: var(--font-size-title);
  color: var(--color-violet-600);
}
@media (max-width: 767.98px) {
  .purposes--about-page .purposes__item:before {
    padding: 0.7rem 0 0.7rem 0.7rem;
    background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat 50% 50% / 130%;
  }
}
.bubble-swiper__img {
  max-width: 100%;
  border-radius: 95px;
}
.bubble-swiper__pagination {
  width: 100%;
  margin: 0 auto;
}
.bubble-swiper__pagination .swiper-pagination-bullet {
  width: 70px;
  height: 7px;
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .bubble-swiper__pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
  }
}

.absolute-img {
  position: absolute;
}
.absolute-img--arrow-one {
  width: 112px;
  top: -38px;
  left: 38%;
}
.absolute-img--rocket-one {
  width: 284px;
  /* top: 335%;
  left: 32%; */
  left: 32%;
  top: -20%;
}
@media (max-width: 1200px) {
  .absolute-img--rocket-one {
    display: none;
  }
}
.major-purposes {
  position: relative;
}
.call-registration {
  display: flex;
  flex-direction: column;
  padding: 160px 0 40px;
}
@media (max-width: 991.98px) {
  .call-registration {
    padding: 40px 0 40px;
  }
}
.call-registration--league {
  padding: 50px 0;
}
.call-registration--contacts {
  padding: 50px 0 30px;
}
@media (max-width: 1200px) {
  .call-registration--contacts {
    padding: 50px 0;
  }
}
.call-registration__wrap {
  display: flex;
  flex-direction: column;
}

.call-registration--contacts .call-registration__wrap {
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .call-registration--contacts .call-registration__wrap {
    flex-direction: column;
    max-width: 365px;
    margin:  0 auto;
  }
}
.call-registration__btn {
  margin: 0 auto;
  font-weight: var(--font-weight-medium);
  letter-spacing: 2px;
}

/* .call-registration--contacts .call-registration__btn {
  margin: 0 30px;
  padding-top: 26px;
}
@media (max-width: 991.98px) {
  .call-registration--contacts .call-registration__btn {
    margin: 15px 0 0;
    
  }
} */
.participants--index-page {
  padding: 60px 0 30px;
}
.participants--final-page {
  padding: 10px 0 60px;
}
.participants__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991.98px) {
  .participants__wrap {
    /* width: 85%; */
    margin: 0 auto;
  }
}
.participants__subtitle {
  margin: 0 0 50px;
  font-weight: var(--font-weight-bold);
  color: var(--color-violet-600);
}
.participants__list {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.participants__list--justify-evenly {
  justify-content: space-evenly;
}
.participants__item {
  width: calc(100% / 5 - 20px);
  margin: 0 0 20px 0;
  text-align: center;
}
.participants__item--align-left {
  text-align: left;
}
@media (max-width: 1200px) {
  .participants__item {
    width: calc(100% / 4 - 20px);
  }
}
@media (max-width: 991.98px) {
  .participants__item {
    width: calc(100% / 3 - 20px);
  }
}
@media (max-width: 767.98px) {
  .participants__item {
    width: calc(100% / 2 - 20px);
  }
}
.participants__link {
  height: 100%;
   width: 100%; 
  /*width: 75%;*/
  display: block;
}
.participants__img {
  max-height: 55px;
  margin: 10px 0;
}
@media (max-width: 767.98px) {
  .participants__img {
    max-height: 45px;
    margin: 0;
  }
}
.sponsors {
  padding: 40px 0;
}
.sponsors--index-page {
  padding: 30px 0;
}
.sponsors__wrap {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .sponsors__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.sponsors__row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 40px 0;
}
@media (max-width: 991.98px) {
  .sponsors__row {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}
/* .sponsors__row:first-child {
  margin: 0 0 40px;
} */
.sponsors__row:last-child {
  margin: 40px 0 0;
}
@media (max-width: 991.98px) {
  .sponsors__row:last-child {
    margin: 0;
  }
}
.sponsors__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: calc(100% / 4); */
}
@media (max-width: 991.98px) {
  .sponsors__col {
    width: 100%;
  }
}
.sponsors__subtitle {
  margin: 0 0 30px;
  font-weight: var(--font-weight-bold);
  color: var(--color-violet-600);
}
@media (max-width: 991.98px) {
  .sponsors__subtitle {
    margin: 50px 0 25px;
  }
}
.sponsors__img {
  max-height: 70px;
}
.feedbacks {
  padding: 70px 0;
}
.feedbacks__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991.98px) {
  .feedbacks__wrap {
    width: 85%;
    margin: 0 auto;
  }
}
.feedbacks__subtitle {
  margin: 0 0 30px;
  font-weight: var(--font-weight-bold);
  color: var(--color-violet-600) !important;
}
.feedbacks__swiper {
  width: 100%;
}
.feedbacks__item {
  /* min-height: 400px; */
  height: 96%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 10px 18px 10px 18px;
  padding: 75px 36px 35px 36px;
  font-size: var(--font-size-base);
  background: rgb(255, 255, 255) url(/assets/images/icon/quote.png) no-repeat 25px 20px;
  box-shadow: 0px 4px 12.6px 2.4px rgb(0 0 0 / 20%);
}


.feedbacks__text {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 0;
  margin-bottom: 30px;
  padding-right: 15px;
  font-size: 0.9rem;

  scrollbar-color: var(--color-greay-200) #dfdfdf;
}
.feedbacks__text::-webkit-scrollbar-thumb {
  background-color: var(--color-greay-200);
}
.feedbacks__text::-webkit-scrollbar-thumb:hover,
.feedbacks__text::-webkit-scrollbar-thumb:active
{
  background-color: #a7a7a7;
}
.feedbacks__text::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}


.feedbacks__name {
  margin-bottom: 15px;
  font-weight: 700;
}
.feedbacks__img {
  max-height: 45px;
}
.feedbacks__swiper .swiper-button-next,
.feedbacks__swiper .swiper-button-prev {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-greay-200);
}
.feedbacks__swiper .swiper-button-prev:after {
  content: "";
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 17px solid var(--color-white);
}
.feedbacks__swiper .swiper-button-next:after {
  content: "";
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--color-white);
}

@media (max-width: 991.98px) {
  .feedbacks__swiper .swiper-button-prev,
  .feedbacks__swiper .swiper-button-next {
      display: none;
  }
}
.feedbacks__prev:after,
.feedbacks__next:after {
  display: none;
}





.scale-years__swiper {
  overflow: visible !important;
}
@media (max-width: 1200px) {
  .scale-years__swiper {
    overflow: hidden !important;
  }
}
.scale-years {
  background: var(--color-red-150);
}
.scale-years__swiper {
  width: 88%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.scale-years .swiper-slide {
  width: calc(100% / 4 - 10px);
  text-align: center;
}
.scale-years__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 30px;
  z-index: 1;
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-title);
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.scale-years__link:hover {
  background: var(--color-violet-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.scale-years__link.active {
  background: var(--color-yellow-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.scale-years__link.active:before {
  content: "";
  height: 117%;
  width: 90%;
  position: absolute;
  top: 0;
  display: block;
  z-index: 0;
  border-radius: 0 0 25px 25px;
  text-align: center;
  background: var(--color-violet-600);
  box-shadow: 0px 5px 5px rgb(0 0 0 / 25%);
}
.scale-years__link.active span {
  position: relative;
  color: yellow;
  background: var(--color-yellow-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.scale-years .swiper-button-next,
.scale-years .swiper-button-prev {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
  z-index: 5;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-greay-200);
}
.scale-years .swiper-button-prev {
  left: -5%;
}
.scale-years .swiper-button-prev:after {
  content: "";
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 17px solid var(--color-white);
}
.scale-years .swiper-button-next {
  right: -5%;
}
.scale-years .swiper-button-next:after {
  content: "";
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--color-white);
}

@media (max-width: 991.98px) {
  .scale-years .swiper-button-prev,
  .scale-years .swiper-button-next {
      display: none;
  }
}
.scale-years__prev:after,
.scale-years__next:after {
  display: none;
}


.specialties--league {
  padding: 100px 0 65px;
}
@media (max-width: 991.98px) {
  .specialties--league {
    padding: 0;
  }
}
.specialties__row {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .specialties__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.specialties__col-left {
  width: 40%;
  padding: 10% 4% 10% 18%;
  border-radius: 0 50px 0 0;
  background: url(/assets/images/bg/svg/arrow-4.svg) no-repeat 99% 30% / 144px, var(--color-red-100);
}
@media (max-width: 1200px) {
  .specialties__col-left {
    padding: 5% 4% 3% 5%;
    background: url(/assets/images/bg/svg/arrow-4.svg) no-repeat 99% 15% / 144px, var(--color-red-100);
  }
}
@media (max-width: 991.98px) {
  .specialties__col-left {
    width: 80%;
    background: var(--color-red-100);
  }
}
@media (max-width: 575.98px) {
  .specialties__col-left {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .specialties__col-left {
    width: 100%;
    padding: 5% 8% 5% 14%;
    border-radius: 0;
  }
}
.specialties--league .specialties__col-left {
  padding: 10% 4% 5% 18%;
}
.specialties__paragraph {
  font-size: var(--font-size-paragraph);
  font-weight: 500;
  line-height: 25px;
  color: #000000;
}
.specialties__col-right {
  width: 42%;
  margin: 100px 0 0;
  padding: 0 0 0 45px;
}
@media (max-width: 1600px) {
  .specialties__col-right {
    width: 50%;
  }
}
@media (max-width: 1300px) {
  .specialties__col-right {
    width: 55%;
  }
}
@media (max-width: 1200px) {
  .specialties__col-right {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  .specialties__col-right {
    width: 80%;
    margin: 40px auto;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .specialties__col-right{
    width: 100%;
  }
}

.specialties__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .specialties__list {
    justify-content: center;
  }
}
.specialties__item {
  width: calc(100% / 2);
  padding: 100px 0 50px;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--color-violet-600);
}
@media (max-width: 991.98px) {
  .specialties__item {
    text-align: center;
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .specialties__item {
    width: 85%;
    padding: 30px 0 30px 90px;
    text-align: left;
  }
}
.specialties__item--geology {
  background: url(/assets/images/icon/svg/geology-icon.svg) no-repeat 20% 25px / 60px,
              url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -20% 55%;
}
.specialties__item--intelligence {
  background: url(/assets/images/icon/svg/intelligence-icon.svg) no-repeat 15% 25px / 60px,
              url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -20% 55%;
}
.specialties__item--mining {
  background: url(/assets/images/icon/svg/mining-icon.svg) no-repeat 20% 25px / 60px,
              url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -20% 0%;
}
.specialties__item--exploitation {
  background: url(/assets/images/icon/svg/exploitation-icon.svg) no-repeat 15% 25px / 60px,
              url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -26% 0%;
}
@media (max-width: 991.98px) {
  .specialties__item--geology {
    background: url(/assets/images/icon/svg/geology-icon.svg) no-repeat center 25% / 60px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat center;
  }
  .specialties__item--intelligence {
    background: url(/assets/images/icon/svg/intelligence-icon.svg) no-repeat center 25% / 60px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat center;
  }
  .specialties__item--mining {
    background: url(/assets/images/icon/svg/mining-icon.svg) no-repeat center 15% / 60px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat center;
  }
  .specialties__item--exploitation {
    background: url(/assets/images/icon/svg/exploitation-icon.svg) no-repeat center 15% / 60px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat center;
  }
}
@media (max-width: 575.98px) {
  .specialties__item--geology {
    background: url(/assets/images/icon/svg/geology-icon.svg) no-repeat 10% center / 45px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -7% center / 120px
  }
  .specialties__item--intelligence {
    background: url(/assets/images/icon/svg/intelligence-icon.svg) no-repeat 10% center / 45px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -7% center / 120px
  }
  .specialties__item--mining {
    background: url(/assets/images/icon/svg/mining-icon.svg) no-repeat 10% center / 45px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -7% center / 120px
  }
  .specialties__item--exploitation {
    background: url(/assets/images/icon/svg/exploitation-icon.svg) no-repeat 10% center / 45px,
                url(/assets/images/bg/vectors/ellipse-1.png) no-repeat -7% center / 120px
  }
}
@media (max-width: 1200px) {
  .specialties__item span {
    font-size: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .specialties__item span {
    font-size: 1.25rem;
  }
}

.pedestal--final {
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .pedestal--final {
    padding: 40px 0 20px;
  }
}
.pedestal__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 40px;
  background: url(/assets/images/bg/vectors/8.png) no-repeat center 105%;
}
@media (max-width: 767.98px) {
  .pedestal__wrap--only-desktop {
    display: none;
  }
}
.pedestal__top--only-mob {
  display: none;
}
@media (max-width: 767.98px) {
  .pedestal__top--only-mob {
    display: block;
  }
}

.pedestal__top {
  width: 80%;
  margin: 0 auto;
}
.top__title {
  text-align: center;
}
.top__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.top__item {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-medium);
  line-height: 25px;
}
.top__item:before {
  min-width: 40px;
  display: block;
  margin: 0 15px 0 0;
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-violet-600);
}
.top__item--place-first:before {
  content: "1";
  color: #ffc867;
}
.top__item--place-second:before {
  content: "2";
  color: #b3b5be;
}
.top__item--place-third:before {
  content: "3";
  color: #d5a472;
}

.announcement--league {
  padding: 90px 0 50px;
}
.announcement__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .announcement__row {
    flex-direction: column;
    align-items: flex-end;
  }
}
.announcement__col-left {
  width: 55%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 100px 0;
  background: url(/assets/images/bg/vectors/9.png) no-repeat 118% 0% / 65%;
}
@media (max-width: 991.98px) {
  .announcement__col-left {
    width: 75%;
    margin: 0 auto 30px;
    padding: 0;
  }
}
.announcement__img-wrap {
  position: relative;
  left: 7%;
}
@media (max-width: 991.98px) {
  .announcement__img-wrap {
    left: 0%;
  }
}
.announcement__col-right {
  width: 53%;
  padding: 75px 375px 40px 161px;
  border-radius: 105px 0 0 0;
  background: var(--color-red-100);
}
@media (max-width: 1200px) {
  .announcement__col-right {
    padding: 5% 22% 3% 9%;
  }
}
@media (max-width: 991.98px) {
  .announcement__col-right {
    width: 80%;
    padding: 5% 5% 3% 8%;
  }
}
@media (max-width: 575.98px) {
  .announcement__col-right {
    width: 100%;
    padding: 5% 8% 5% 14%;
    border-radius: 0;
  }
}
.announcement .olmpics-info__title {
  margin: 0 0 20px 0;
  font-size: 27px;
  line-height: 35px;
}
.announcement__link {
  text-decoration: underline;
}


.student-league-gallery {
  padding: 70px 0 30px;
}
@media (max-width: 991.98px) {
  .student-league-gallery {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .student-league-gallery__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.student-league-gallery__swiper {
  max-width: 940px;
  height: 545px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .student-league-gallery__swiper{
    height: 350px;
  }
}
.student-league-gallery__swiper .swiper-wrapper {
  max-height: 100%;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .student-league-gallery__swiper .swiper-wrapper  {
    max-height: 90%;
  }
}
.student-league-gallery__swiper .swiper-slide {
  display: flex;
  align-items: center; 
  justify-content: center;
}
.student-league-gallery__img {
  max-width: 800px;
  max-height: 100%;
  border-radius: 25px;
}
@media (max-width: 991.98px) {
  .student-league-gallery__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 25px;
  }
}
.student-league-gallery__swiper .swiper-button-next,
.student-league-gallery__swiper .swiper-button-prev {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
  z-index: 5;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-greay-200);
}
.student-league-gallery__swiper .swiper-button-prev {
  /* left: 5%; */
  left: 0%;
}
.student-league-gallery__swiper .swiper-button-next {
  /* right: 5%; */
  right: 0%;
}
.student-league-gallery__swiper .swiper-button-prev:after {
  content: "";
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 17px solid var(--color-white);
}
.student-league-gallery__swiper .swiper-button-next:after {
  content: "";
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--color-white);

}

@media (max-width: 991.98px) {
  .student-league-gallery__swiper .swiper-button-prev,
  .student-league-gallery__swiper .swiper-button-next {
      display: none;
  }
}
.student-league-gallery__prev:after,
.student-league-gallery__next:after {
  display: none;
}


.student-league-gallery__thumbs-wrap {
  height: 200px;
  width: 100%;
  margin: 50px 0;
  padding: 25px 10px;
  overflow: hidden;
  background: var(--color-red-150);
}
@media (max-width: 991.98px) {
  .student-league-gallery__thumbs-wrap {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 767.98px) {
  .student-league-gallery__thumbs-wrap {
    display: none;
  }
}
.student-league-gallery__thumbs-wrap--high {
  height: 350px;
}
.student-league-gallery__thumbs {
  height: 150px;
}
.student-league-gallery__thumbs .swiper-wrapper {
  height: 100%;
}
.student-league-gallery__thumbs .swiper-slide:not(.swiper-slide-thumb-active):after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.student-league-gallery .swiper-pagination {
  display: none;
}
@media (max-width: 767.98px) {
  .student-league-gallery .swiper-pagination {
    width: 50%;
    display: block;
    position: relative;
    left: 25%;
  }
}

.video-report--final-page {
  margin: 0 0 60px;
}
@media (max-width: 991.98px) {
  .video-report--final-page {
    margin: 0;
  }
}
.video-report {
  padding: 30px 0 50px;
  background: var(--color-red-100);
}

.video-report__subtitle {
  margin: 0 0 25px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  color: var(--color-violet-600);
}
.video-report__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .video-report__list {
    flex-direction: column;
  }
}
.video-report__item {
  max-width: 48%;
  flex: 0 0 50%;
  margin: 0 auto 30px;
}
@media (max-width: 991.98px) {
  .video-report__item {
    max-width: 80%;
    width: 80%;
    flex: 0 0 80%;
    margin: 0 auto 30px;
  }
}
.organising-committee--final-page {
  padding: 50px 0;
}
.organising-committee--league-page {
  padding: 50px 0;
}
.organising-committee__subtitle {
  font-weight: var(--font-weight-bold);
  text-align: center;
  color: var(--color-violet-600);
}
.organising-committee__additional-subtitle {
  text-align: center;
  font-size: 1.25rem;
}
.organising-committee__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.organising-committee__item {
  width: calc(100% / 3);
  padding: 30px 5px;
  text-align: center;
}

.organising-committee__item--col-2 {
  width: calc(100% / 2);
}
@media (max-width: 991.98px) {
  .organising-committee__item,
  .organising-committee__item--col-2 {
    width: calc(100% / 2);
  }
}
@media (max-width: 575.98px) {
  .organising-committee__item,
  .organising-committee__item--col-2 {
    width: 100%;
  }
}
.organising-committee__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  font-size: 23px;
  color: var(--color-greay-600);
}
.organising-committee__name {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: bold;
  line-height: 30px;
}
.committee__position {
  line-height: 1.5rem;
  font-size: 1rem;
}
.organising-committee__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  font-size: 18.608px;
}
.organising-committee__link {
  font-size: 16px;
  color: var(--color-black);
}
.organising-committee__img {
  border-radius: 50%;
  box-shadow: 4px 1px 0px 5px var(--color-yellow-500);
  width: 130px;
  height: 130px;
  background: #ecf0f3;
}
.organising-committee__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  font-size: 18.608px;
}
.organising-committee__logo {
  max-height: 35px;
}
.page-index {
  background: url(/assets/images/bg/vectors/5.png) no-repeat 61% 2360px / 50%,
              url(/assets/images/bg/vectors/6.png) no-repeat 90% 3540px / 50%;
  counter-reset: purposes 0;
}
.page-final {
  background: url(/assets/images/bg/vectors/5.png) no-repeat 1% 8% / 37%;
}

.league-banner {
  height: 60vh;
  background: url(/assets/images/bg/banners/league-banner.png) no-repeat center / 90vh;
}
@media (max-width: 991.98px) {
  .league-banner {
    background: url(/assets/images/bg/banners/league-banner.png) no-repeat center / 90%;
  }
}
@media (max-width: 767.98px) {
  .league-banner {
    height: 40vh;
  }
}

.league-map {
  /* background: url(assets/img/bg/map-europe-league.png) no-repeat top / 100%; */
}
@media (min-width: 2000px) {
  .league-map {
    /* background: url(assets/img/bg/map-europe-league.png) no-repeat top / 1500px; */
  }
}
@media (max-width: 991.98px) {
  .league-map {
    display: none;
  }
}



.contacts {
  background: url(/assets/images/bg/vectors/11.png) no-repeat 28% 0% / 27%;
}
@media (max-width: 1200px) {
  .contacts {
    background: url(/assets/images/bg/vectors/11.png) no-repeat 24% -2% / 40%;
  }
}
@media (max-width: 991.98px) {
  .contacts {
    background: none;
  }
}
.contacts-map__wrap iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 1200px) {
  .contacts-map__wrap iframe {
    height: 500px;
  }
}
@media (max-width: 767.98px) {
  .contacts-map__wrap iframe {
    height: 300px;
  }
}
.contacts-info {
  padding: 20px 0 0;
}
.contacts-info__title {
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-title);
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contacts-info__title-wrap {
  display: inline-block;
  padding: 15px 75px 15px 60px;
  border-radius: 0 100px 0 0;
  background: var(--color-violet-600);
}
@media (max-width: 991.98px) {
  .contacts-info__title-wrap {
    padding: 10px 20px;
    border-radius: 0 40px 0 0;
  }
}
.contacts-map__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-white);
}
@media (max-width: 991.98px) {
  .contacts-map__title {
    font-size: 20px;
    line-height: 33px;
  }
}

.feedback-form__wrap {
  /* padding: 160px 20% 120px 45%;
  background: url(/assets/images/bg/banners/feedback-banner.png) no-repeat 0% 0% / cover; */
  padding: 80px 20% 40px 45%;
  background: url(/assets/images/bg/banners/feedback-banner.png) no-repeat 0% 0% / 100%, #f1ef17;
}
@media (max-width: 1500px) {
  .feedback-form__wrap {
    background: url(/assets/images/bg/banners/feedback-banner.png) no-repeat 50% 0% / cover;
  }
}
@media (max-width: 991.98px) {
  .feedback-form__wrap {
    padding: 120px 5% 120px 39%;
  }
}
@media (max-width: 767.98px) {
  .feedback-form__wrap {
    padding: 70px 15%;
    background: var(--color-yellow-500);
  }
}
.feedback__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fedback__subtitle {
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--color-black);
}
.feedback__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.feedback__input {
  margin: 0 0 20px 0;
  padding: 15px 25px;
  border: 2px solid var(--color-violet-600);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-greay-600);
  background: var(--color-white);
}
.feedback__input:focus {
  margin: -1px 0 19px 0;
  border: 3px solid var(--color-violet-600);
  outline: none;
}
.feedback__textarea {
  max-width: 100%;
}
.feedback__btn {
  /* width: 50%; */
  margin: 35px auto 0;
}
@media (max-width: 767.98px) {
  .feedback__btn {
    width: 100%;
  }
}
.feedback__btn:hover {
  color: var(--color-yellow-600) !important;
}
.feedback__btn.blob-link span {
  background: var(--color-violet-600) !important;
}


.footer {
  width: 100%;
  background: var(--color-violet-600);
}
.footer__content {
  padding: 45px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__content {
    justify-content: space-evenly;
  }
}
@media (max-width: 575.98px) {
  .footer__content {
    flex-direction: column;
  }
}
.footer__left-col {
  margin: 0 60px 0 0;
}
@media (max-width: 1200px) {
  .footer__left-col {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 575.98px) {
  .footer__left-col {
    margin: 0 0 12px 0;
  }
}
.footer__right-col {
    width: 70%;
}
@media (max-width: 991.98px) {
  .footer__right-col {
    width: 50%;
  }
}
.footer-menu__list {
  margin: 0;
  padding: 0;
  display: flex;
justify-content: space-between;
    gap: 15px;
  list-style: none;
}
@media (max-width: 991.98px) {
  .footer-menu__list {
    flex-direction: column;
  }
}
.footer-menu__item {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #F1EF17;
}
.footer-menu__item:not(:last-child) {
  /*margin: 0 47px 0 0;*/
}
@media (max-width: 1200px) {
  .footer-menu__item:not(:last-child) {
    /*margin: 0 20px 0 0;*/
  }
}
.footer-menu__link {
  color: #F1EF17;
  display: inline-block;
}
.footer-submenu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-submenu__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.footer-submenu__link {
  color: #FFFFFF;
}
.footer-btns-menu {
  display: flex;
  justify-content: flex-end;
  /* margin: 105px 50px 0 0; */
  margin: 105px 0 0 0;
}
@media (max-width: 767.98px) {
  .footer-btns-menu  {
    flex-direction: column;
    margin: 50px 0;
  }
}
.footer-btns-menu__col:not(:last-child) {
  margin: 0 55px 0 0;
}
@media (max-width: 767.98px) {
  .footer-btns-menu__col:not(:last-child)  {
    margin: 0 0 20px 0;
  }
}
.footer-btns-menu__btn {
  background: #F1EF17;
  color: var(--color-violet-600);
  padding: 15px 43px 12px 66px;
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
}
.footer-btns-menu__btn svg {
  fill: var(--color-violet-600);
  width: 42px;
  height: 32px;
}
.lang {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}
.lang__item {
  margin-bottom: 20px;
  /* display: block; */
}

.tab-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 450.98px) {
  .tab-menu__list {
    display: flex;
    flex-direction: column;
  }
}
.tab-menu__item {
  cursor: pointer;
}
.tab-menu__content {
  display: none;
}
@media (max-width: 991.98px) {
  .tab-menu__content {
    width: 100%;
    overflow-x: scroll;
  }
}
.tab-menu__content.active {
  display: block;
}
.description--about-cup {
  padding: 55px 0;
  background: url(/assets/images/bg/vectors/13.png) no-repeat 25% 130% / 29%;
}
@media (max-width: 1200px) {
  .description--about-cup {
    background: url(/assets/images/bg/vectors/13.png) no-repeat 6% 75% / 40%;
  }
}
@media (max-width: 991.98px) {
  .description--about-cup {
    background: none;
  }
}
@media (max-width: 991.98px) {
  .description--about-cup .description__wrap {
    align-items: center;
  }
}

.description--about-cup .description__img-wrap {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.description--about-cup .description__content {
  width: 51%;
  margin: 0px 0 0 100px;
}
@media (max-width: 991.98px) {
  .description--about-cup .description__content {
    width: 90%;
    margin: 0 auto;
  }
}
.description--about-cup .olmpics-info__title {
  font-size: var(--font-size-subtitle);
}
.description--about-cup .olmpics-info__subtitle {
  font-size: 27px;
  font-weight: 700;
  line-height: 35px;
}
@media (max-width: 991.98px) {
  .description--about-cup .olmpics-info__subtitle {
    font-size: 23px;
    line-height: 26px;
  }
}
.text-underline {
  text-decoration: underline;
}

.blob-union--note{
  top: 240px;
  left: 70%;
}

.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
@media (max-width: 991.98px) {
  .w-60, .w-70 {
    width: 100%;
  }
}

.mission__title {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  /* --font-size-subtitle: 2.5rem; */
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-black);
  letter-spacing: 0px;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .mission__title {
    margin: 0 0 20px;
    text-align: center;
}
}
.mission__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .mission__list {
    flex-direction: column;
    align-items: center;
  }
}
.mission__item {
  width: calc(100% / 2 - 30px);
  display: flex;
  align-items: center;
  padding: 40px 0 30px 15px;
  background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat -10% 100% / 55%;
}
@media (max-width: 1200px) {
  .mission__item {
    background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat -10% 45% / 45%;
  }
}
@media (max-width: 991.98px) {
  .mission__item {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .mission__item {
    background: none;
    counter-increment: purposes 1;
    padding: 0;
    margin: 0 0 20px;
  }
}
.mission--objectives-of-event .mission__item {
  padding: 50px 0 40px 15px;
  background: url(/assets/images/bg/vectors/ellipse-2.png) no-repeat -15% 40% / 50%;
}
@media (max-width: 991.98px) {
  .mission--objectives-of-event .mission__item {
    padding: 0;
    margin: 0 0 40px;
    background: none;
  }
}
@media (max-width: 575.98px) {
  .mission__item {
    padding: 0;
    margin: 0 0 20px;
  }
}
@media (max-width: 575.98px) {
  .mission__item:before {
      display: block;
      margin: 5px 15px 0 0;
      font-size: var(--font-size-title);
      color: var(--color-violet-600);
      content: counter(purposes) ".";
  }
}
@media (max-width: 575.98px) {
  .mission--objectives-of-event .mission__item:before {
    content: none;
    display: block;
    margin: 5px 15px 0 0;
    font-size: var(--font-size-title);
    color: var(--color-violet-600);
  }
}
.mission__img-wrap {
  min-width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .mission__img-wrap {
    min-width: 20%;
  }
}
@media (max-width: 575.98px) {
  .mission__img-wrap {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .mission--objectives-of-event .mission__img-wrap {
    min-width: 15%;
    max-width: 15%;
    display: block;
  }
}
.mission__img {

}
.mission__img--shadow {
  border-radius: 50%;
  -webkit-box-shadow: 10px -5px 0px 5px rgb(105 49 187);
  -moz-box-shadow: 10px -5px 0px 5px rgba(105, 49, 187, 1);
  box-shadow: 5px -2px 0px 5px rgb(105 49 187);
}
.mission_text {
  display: inline-block;
  margin: 0 0 0 65px;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-paragraph);
  line-height: var(--line-height-paragraph);
}
@media (max-width: 1200px) {
  .mission_text {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 575.98px) {
  .mission_text {
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  .mission--objectives-of-event .mission_text {
    margin: 0 0 0 30px;
  }
}

.opportunities {
  padding: 70px 0;
}
.opportunities__title {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  /* --font-size-subtitle: 2.5rem; */
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-black);
  letter-spacing: 0px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 991.98px) {
  .opportunities__title {
    text-align: center;
  }
}
.opportunities__description {
  display: flex;
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .opportunities__description {
    flex-direction: column-reverse;
    background: none;
    padding: 30px 0;
  }
}
.opportunities__description--background {
  background: url(/assets/images/bg/vectors/14.png) no-repeat 0% -140% / 45%;
}
@media (max-width: 1200px) {
  .opportunities__description--background {
    background: url(/assets/images/bg/vectors/14.png) no-repeat 0% -50% / 45%;
  }
}
@media (max-width: 991.98px) {
  .opportunities__description--background {
    background: none;
  }
}
.row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-2 {
  width: 50%;
}
@media (max-width: 991.98px) {
  .col-2 {
    width: 100%;
  }
}
.opportunities__subtitle {
  width: 70%;
  margin: 0 auto;
  background: transparent;
}
@media (max-width: 991.98px) {
  .opportunities__subtitle.subtitle {
    margin: 30px auto;
  }
}

.opportunities__text {
  width: 90%;
  margin: 0 auto;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-paragraph);
  line-height: var(--line-height-paragraph);
}

.company__list {
  display: flex;
  list-style: none;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .company__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .company__item {
    width: calc(100% / 2 - 20px);
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .company__item {
    width: calc(100% / 1 - 20px);
    text-align: center;
  }
}
.company__link {
  height: 100%;
  width: 100%;
  display: block;
}
.company__img{
  margin: 10px;
  max-height: 80px;
  max-width: 214px;
}
@media (max-width: 1200px) {
  .company__img{
    max-height: 55px;
  }
}
.company__text {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-paragraph);
  line-height: var(--line-height-paragraph);
}
.opportunities__list {
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .opportunities__list {
    margin: 0 auto;
  }
}
.opportunities__list:first-child {
  width: 73%;
}
.opportunities__list:nth-child(2) {
  width: 67%;
  margin: 0 0 0 50px;
}
.opportunities__list li {
  margin: 0 0 30px;
}


.opportunities__painted-block {
  padding: 50px 20px 50px 18%;
  margin: 120px 40% 0 0;
  border-radius: 0 100px 100px 0;
}
@media (max-width: 991.98px) {
  .opportunities__painted-block {
    width: 100%;
    padding: 10px 20px;
    border-radius: 0;
    margin: 50px 0 0;
  }
}

.painted-block {
  background: var(--color-red-150);
}

.video {
  padding-bottom: 45px;
  background: url(/assets/images/bg/vectors/5.png) no-repeat -25% -10% / 50%,
              url(/assets/images/bg/vectors/6.png) no-repeat 100% 100% / 50%;
}
@media (max-width: 1200px) {
  .video {
    background: url(/assets/images/bg/vectors/5.png) no-repeat -115% -10% / 70%,
                url(/assets/images/bg/vectors/6.png) no-repeat 190% 100% / 70%;
  }
}
@media (max-width: 991.98px) {
  .video {
    background: none;
    padding: 50px 0 0 0;
  }
}
.video__title {
  /* margin-bottom: 45px;
  padding: 40px 15px;
  background: var(--primary-gradient);
  color: var(--color-yellow-600);
  font-size: 44px;
  text-transform: uppercase;
  line-height: 1.113;
  text-align: center;
  font-weight: var(--font-weight-extra-bold); */
  /* padding: 37px 0;
  font-weight: 700;
  font-size: var(--font-size-title);
  color: var(--color-yellow-500);
  text-transform: uppercase;
  line-height: var(--line-height-title);
  text-align: center;
  margin: 45px 10px 45px auto;
  border-radius: 50px;
  border-top: 5px solid var(--color-violet-600);
  border-left: 5px solid var(--color-violet-600);
  color: var(--color-violet-600);
  -webkit-box-shadow: 10px -5px 0px 5px rgb(105 49 187);
  -moz-box-shadow: 10px -5px 0px 5px rgba(105, 49, 187, 1);
  box-shadow: 10px 10px 0px 5px rgb(105 49 187);
  background: var(--color-yellow-500); */
  padding: 40px 15px;
  text-transform: uppercase;
  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
}
.video__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .video__list {
    justify-content: center;
  }
}
.video__item {
  width: calc(100% / 2 - 15px);
  margin-bottom: 30px;
  border: 9px solid var(--color-violet-600);
  background: var(--color-violet-600);
  border-bottom: 0;
  
}
@media (max-width: 991.98px) {
  .video__item {
    margin: 0 0 20px;
    width: 90%;
  }
}
.video__item-name {
  padding: 15px;
  font-size: 15px;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-yellow-500);
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .schedule {
    padding: 50px 0 0 0;
  }
}

.news {
  background: url(/assets/images/bg/vectors/5.png) no-repeat -25% -10% / 50%, url(/assets/images/bg/vectors/6.png) no-repeat 100% 100% / 50%;
}
@media (max-width: 1200px) {
  .news {
    background: url(/assets/images/bg/vectors/5.png) no-repeat -115% -10% / 70%, url(/assets/images/bg/vectors/6.png) no-repeat 190% 100% / 70%;
  }
}
@media (max-width: 991.98px) {
  .news {
    background: none;
    padding: 50px 0 0 0;
  }
}

.news__title {
  /* padding: 37px 0;
  font-weight: 700;
  font-size: var(--font-size-title);
  color: var(--color-yellow-500);
  text-transform: uppercase;
  line-height: var(--line-height-title);
  text-align: center;
  max-width: var(--width-content-max);
  margin: 45px 10px 45px auto;
  border-radius: 50px;
  border-top: 5px solid var(--color-violet-600);
  border-left: 5px solid var(--color-violet-600);
  color: var(--color-violet-600);
  -webkit-box-shadow: 10px -5px 0px 5px rgb(105 49 187);
  -moz-box-shadow: 10px -5px 0px 5px rgba(105, 49, 187, 1);
  box-shadow: 10px 10px 0px 5px rgb(105 49 187);
  background: var(--color-yellow-500); */
  padding: 40px 15px;
  text-transform: uppercase;
  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
}
@media (max-width: 1200px) {
  .news__title {
    /* box-shadow: 5px 5px 0px 5px rgb(105 49 187);
    margin: 45px 5px 45px 0; */
}
}
.news__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.card {
  width: calc(100% / 3 - 20px);
  border: 3px solid var(--color-violet-600);
  border-radius: 50px;
  margin-bottom: 30px;
  /* margin-right: 30px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
}
.card:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media (max-width: 991.98px) {
  .card ,
  .card:not(:nth-child(3n)){
    width: calc(100% / 2 - 15px);
    flex-direction: column-reverse;
    margin: 0 auto 50px;
  }
}
@media (max-width: 575.98px) {
  .card,
  .card:not(:nth-child(3n)) {
    width: 90%;
    margin: 0 auto 30px;
  }
}

.card__link {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 15px 15px 25px;
}
@media (max-width: 1200px) {
  .card__link {
    /* padding: 20px; */
  }
}
.card__img {
  border-radius: 40px;
  width: 100%;
}
.card__title {
  font-size: var(--font-size-base);
  color: #000;
  padding: 0 10px;
  width: 100%;
  margin: 10px 0;
}
.card__date {
  text-align: right;
  padding: 0 10px;
  margin: 0;
  font-size: var(--font-size-little);
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  /* text-align: left; */
  width: 100%;
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .card__date {
    margin: 0 0 10px;
  }
}
.detail-news {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .detail-news {
    margin: 50px 0;
  }
}
@media (max-width: 575.98px) {
  .detail-news {
    padding: 25px 10px 25px 20px;
  }
}
.detail-news__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .detail-news__content {
    flex-direction: column;
    align-items: center;
  }
}
.detail-news__info {
  padding: 0;
  /* width: calc(100% / 2); */
  width: calc(100% / 5);
  margin: 0 20px 0 0;
  border: none;
  position: relative;
}
@media (max-width: 991.98px) {
  .detail-news__info {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .detail-news__info {
    display: none;
    /* width: 90%;
    margin: 0 auto; */
  }
}
.detail-news__text {
  width: 100%;
  font-size: var(--font-size-paragraph);
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 15px;
}
.detail-news__link
{
  color: var(--color-violet-600);
  font-weight: var(--font-weight-medium);
}

.detail-news__btn {
  min-width: 250px;
  padding: 15px 30px;
  font-size: var(--font-size-paragraph);
}
.detail-news__close {
  position: absolute;
  right: -20px;
  top: -20px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 5px;
  background: var(--color-violet-600);
  border-radius: 50px;
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.error-page {
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-page__code {
  font-size: 260px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-violet-600);
}
.error-page__title {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 48px;
  color: #333;
  font-weight: 600;
}
.error-page__link {
  font-size: 20px;
  line-height: 29px;
  padding: 10px 20px;
  background: var(--color-yellow-500);
  color: var(--color-violet-600);
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.league-attractions {
  position: relative;
  /* top: -75px; */
  top: -50px;
  left: -20%;
  max-width: 700px;
  width: 130%;
  pointer-events: none;
  margin: 0 0 -50px 0;
}
@media (max-width: 1200px) {
  .league-attractions {
    top: -60px;
    left: -10%;
    width: 100%;
  }
}
@media (max-width: 757.98px) {
  .league-attractions {
    top: -60px;
    left: -25%;
    width: 150%;
  }
}



.photo-album {
  padding: 40px 0;
}
.photo-album__title {
  padding: 40px 15px;
  text-transform: uppercase;
  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
}

.photo-album__list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .photo-album__list {
    justify-content: space-between;
  }
}
.photo-album__item {
  position: relative;
  width: calc(100% / 3 - 30px);
  height: 0;
  padding-bottom: 20.25%;
  margin-bottom: 30px;
  overflow: hidden;
}
.photo-album__item:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media (max-width: 991.98px) {
  .photo-album__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .photo-album__item{
    width: 46%;
    padding-bottom: 32.25%;
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .photo-album__item {
    width: 100%;
    padding-bottom: 62.25%;
  }
}
.photo-album__img {
  max-width: 100%;
  transition: -webkit-transform 500ms ease-in-out;
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
}
.photo-album__img:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.photo-album__item-title {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding: 12px 20px;
  z-index: 4;
  margin-bottom: 0;
  font-size: 16px;
  background: var(--color-violet-600);
  color: var(--color-yellow-500);
}
.photo-album__photo-count {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  min-width: 90px;
  background: var(--color-violet-600);
  padding: 11px 16px;
  border-radius: 5%;
  color: var(--color-yellow-500);
}
.photo-album__btn {
  margin-top: 20px;
  text-align: center;
}


.photo-list {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 991.98px) {
  .photo-list {
    padding-top: 20px;
  }
}
.photo-list__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  align-items: flex-start;
}
.photo-list__col {
  width: calc(25% - 10px);
  max-height: 200px;
  /* height: 200px; */
  margin: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .photo-list__col {
    height: 160px;
  }
}
@media (max-width: 767.98px) {
  .photo-list__col {
    width: calc(50% - 10px);
    height: 100px;
  }
}
.photo-list__image {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.photo-list__image:hover {
  -webkit-transform: scale(1.5) rotate(-15deg);
  -ms-transform: scale(1.5) rotate(-15deg);
  transform: scale(1.5) rotate(-15deg);
}
.photo-list__pagination {
  margin: auto;
}

.show-more__btn {
  font-size: var(--font-size-base);
  padding: 15px 45px;
  font-weight: var(--font-weight-bold);
}


.bubble-slider {
  background: var(--color-red-150);
}
.bubble-slider__swiper .swiper-wrapper{
  /* justify-content: center; */
  width: 90%;
}
.bubble-slider__slide {
flex-shrink: 0;
position: relative;
transition-property: transform;
display: flex;
align-items: center;
justify-content: center;
}
.bubble-slider__slide::after {
display: block;
content: '';
padding-bottom: 100%;
}
.bubble-slider__link {
border-radius: 50%;
-webkit-box-shadow: 10px -5px 0px 5px rgb(105 49 187);
-moz-box-shadow: 10px -5px 0px 5px rgba(105, 49, 187, 1);
box-shadow: 5px -2px 0px 5px rgb(105 49 187);
display: block;
background: var(--color-yellow-600);
height: 55%;
width: 55%;
display: flex;
align-items: center;
justify-content: center;
}
.bubble-slider__link span {
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: block;
font-size: var(--font-size-title);
font-weight: var(--font-weight-black);
line-height: var(--line-height-title);
text-transform: uppercase;
}
.bubble-slider .swiper-button-next,
.bubble-slider .swiper-button-prev {
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
top: 40%;
z-index: 5;
border-radius: 50%;
color: var(--color-black);
background: var(--color-greay-200);
}
.bubble-slider .swiper-button-prev:after {
content: "";
width: 0;
height: 0;
margin-right: 7px;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-right: 17px solid var(--color-white);
}
.bubble-slider .swiper-button-next:after {
content: "";
margin-left: 7px;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 17px solid var(--color-white);
}

@media (max-width: 991.98px) {
.bubble-slider .swiper-button-prev,
.bubble-slider .swiper-button-next {
    display: none;
}
}
.section-register {
  min-height: 90vh;
  padding-bottom: 60px;
  background: url(/assets/images/bg/svg/registration-banner.svg) no-repeat 53% center / 75%;
}

.page-title {
  padding: 40px 15px;
  text-transform: uppercase;
  background: linear-gradient(160.39deg, #7F33C7 3.78%, #6731BA 34.42%, #342C9F 89.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
}

.b24-form-wrapper {
  max-width: 550px !important;
}


.schedule {
  /* max-width: 1230px; */
  margin-right: auto;
  margin-left: auto;
  /* padding: 70px 15px */
  padding: 20px 0;
}

.schedule__wrap {
  /* padding: 20px 5px; */
}
@media (max-width: 991.98px) {
  .schedule__wrap {
    width: 720px;
  }
}

.schedule__block + .schedule__block {
  margin-top: 45px;
}

.schedule__block-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 6px;
}

.schedule__block-title {
  padding-bottom: 7px;
  font-weight: 700;
}

.schedule__table {
  /* border: 1px solid #fff; */
  /* border-top: 1px solid #fff; */
  /* color: #fff; */
  /* background: var(--primary-gradient); */
  
  border: 3px solid var(--color-violet-600);
  border-bottom: none;
  color: var(--color-greay-600);
  background: #feffe5;
}
@media (max-width: 991.98px) {
  .schedule__table {
    font-size: 14px;
  }
}


.schedule__table p {
  margin: 0;
  width: 100%;
  text-align: left;
}

.schedule__table-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.schedule__table-col {
  width: 10%;
  display: flex;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 10px;
  /* border-right: 1px solid #fff;
  border-bottom: 1px solid #fff; */
  border-right: 3px solid var(--color-violet-600);
  border-bottom: 3px solid var(--color-violet-600);
}
.schedule__table-col:last-child {
  border-right: 0;
}
.schedule__inner-wrap {
  width: 100%;
  margin-bottom: -2px;
}
.schedule__event-time {
  width: 15% !important;
}
.schedule__event-title {
  width: 35% !important;
  justify-content: left;
  text-align: left;
}
.schedule__event-venue {
  width: 20%;
}

.schedule__table-col.schedule__event-spikers {
  width: 20%;
  font-style: italic;
  justify-content: left;
  text-align: left;
}
.schedule-tab-menu {
  /* background: var(--color-violet-600); */
  background: #feffe5;
  /* background: var(--color-white); */
  border: 3px solid var(--color-violet-600);
  border-bottom: none;
  color: var(--color-violet-500);
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  display: inline-block;
  padding: 15px 45px 15px 30px;
  border-radius: 0 100px 0 0;
}
@media (max-width: 1200px) {
  .schedule-tab-menu {
    padding: 15px 55px 15px 40px;
  }
}
@media (max-width: 991.98px) {
  .schedule-tab-menu {
    font-size: 14px;
    padding: 10px 25px 10px 13px;
  }
}
@media (max-width: 450.98px) {
  .schedule-tab-menu {
    border-radius: 0;
    /* width: 100%; */
    width: 80%;
  }
}
.schedule-tab-menu.active {
  background: var(--color-violet-500);
  color: var(--color-white);
}
.tab-menu__swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.tab-menu__swiper .swiper-button-next,
.tab-menu__swiper .swiper-button-prev {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 25%;
  border-radius: 50%;
  color: var(--color-black);
  /* background: var(--color-greay-200); */
}
@media (min-width: 450.98px) {
  .tab-menu__swiper .swiper-button {
    display: none;
  }
}
.tab-menu__swiper .swiper-button-next:after {
  content: "❯";
}
.tab-menu__swiper .swiper-button-prev:after {
  content: "❮";
}

/* .tab-menu__swiper .swiper-wrapper {
  display: flex;
} */

.more {
  /* max-width: 1230px; */
  margin-right: auto;
  margin-left: auto;
  /* padding: 70px 15px */
  padding: 20px 0;
}

.more__content {
  padding: 20px;
  border: 3px solid var(--color-violet-600);
  background: #feffe5;
}

.more__map {
  padding-left: 20px;
}

@media (max-width: 991.98px) {
  .more__map {
    padding-left: 0;
    padding-top: 20px;
  }
}

.feature-card {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.feature-card__item {

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 15px 21px 21px 97px;
  width: calc(100% / 2 - 15px);
  background: #fff;
  border-radius: 8px;
  
  /* background: #fff url(/assets/images/icon/svg/file-types/pdf-icon.svg); */
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 45px 30px;
  background-size: 35px auto;

  transition: all 0.2s linear;
}
@media (max-width: 991.98px) {
  .feature-card__item {
      width: 100%;
  }
}
@media (max-width: 424.98px) {
  .feature-card__item {
      padding-left: 20px;
      background-position: 20px 30px;
  }
}
.feature-card__item:hover {
  -webkit-box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.2);
}

.feature-card__item--pdf {
  background-image: url(/assets/images/icon/svg/file-types/pdf-icon.svg);
}
.feature-card__item--ppt {
  background-image: url(/assets/images/icon/svg/file-types/ppt-icon.svg);
}
.feature-card__item--doc {
  background-image: url(/assets/images/icon/svg/file-types/doc-icon.svg);
}
.feature-card__title {
  font-size: 22px;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 10px 0;
}
@media (max-width: 424.98px) {
  .feature-card__title {
      margin-left: 60px;
  }
}
.feature-card__description {
  font-size: 16px;
}
.feature-card__btn {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  height: 100%;
  align-items: flex-end;
}


.library__title-wrap {
  padding: 86px 0 0px;
  position: relative;
}
@media (max-width: 609.98px) {
  .library__title-wrap {
      padding-bottom: 30px;
  }
}
.library__title {
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-title);
  text-transform: uppercase;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}
.library__list {
  margin: 72px 0;
  gap: 40px 30px;
}
.library__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .library__nav {
      gap: 20px;
  }
}
.library__nav .btn {
  width: 377px;
}
@media (max-width: 991.98px) {
  .library__nav .btn {
      width: calc(50% - 35px);
  }
}
@media (max-width: 565.98px) {
  .library__nav .btn {
      width: 100%;
  }
}
.library__img-bg-1 {
  width: 859px;
  margin: 0 auto;
  top: -20%;
  left: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .library__img-bg-1 {
      width: 100%;
      top: -40px;
  }
}
@media (max-width: 449.98px) {
  .library__img-bg-1 {
      top: 20px;
  }
}
.library__img-bg-2 {
  width: 131px;
  top: 60px;
  left: 80px;
}
@media (max-width: 991.98px) {
  .library__img-bg-2 {
      left: 20px;
  }
}
@media (max-width: 609.98px) {
  .library__img-bg-2 {
      display: none;
  }
}
.library__img-bg-3 {
  width: 138px;
  right: 60px;
  top: 50px;
}
@media (max-width: 991.98px) {
  .library__img-bg-3 {
      right: 20px;
      top: 60px;
  }
}
@media (max-width: 609.98px) {
  .library__img-bg-3 {
      display: none;
  }
}


/* .tooltip {
    cursor: pointer
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    width: 220px;
    margin-top: -65px;
    margin-left: 35px;
    padding: 3px 7px;
    opacity: 0;
    background: #fff;
    border-radius: 8px 8px 8px 0;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 400;
    transition: .4s ease-in-out;
    text-align: center
}

.tooltip:hover::after {
    visibility: visible;
    opacity: 1
}

.tooltip::after:hover {
    opacity: 0
} */

.tooltip {
    cursor: pointer;
    position: relative; /* Добавляем для позиционирования псевдоэлемента */
    display: inline-block; /* Чтобы позиционирование работало корректно */
}

.tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 100%;
    transform: translateX(-29%) translateY(-8px);
    width: 250px;
    padding: 8px 12px;
    opacity: 0;
    background: #fff;
    border-radius: 8px 8px 8px 0;
    color: #000;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: all 0.2s ease-in-out;
    margin: 0;
    z-index: 1000;
}


.tooltip--pdf::after {
    transform: translateX(-122%) translateY(-8px);
    width: 175px;
    border-radius: 8px 8px 0px 8px;
}


.map-icon-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 7px 3px;
}
.map-icon-list_item {
  margin: 0;
  padding: 0;

}
.map-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  
}