/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: Asap, sans-serif;
}

.container {
  max-width: 994px;
  padding: 0 24px;
  margin: 0 auto;
}

.link {
  padding: 16px 24px;
  background-image: linear-gradient(283.31deg, #FFA800 -0.59%, #FD4C00 88.64%);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  border-radius: 100px;
  color: #ffffff;
  text-decoration: none;
  transition: box-shadow 0.4s;
}
.link:after {
  content: "";
  background-image: url("../images/arrow-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 26px;
  height: 12px;
  margin-left: 10px;
  position: relative;
  transition: right 0.4s;
  right: 0;
}
@media (min-width: 993px) {
  .link:hover {
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.6);
  }
  .link:hover:after {
    right: -10px;
  }
}

.mobile-event-link {
  max-width: 305px;
  margin: 0 auto;
}
.mobile-event-link__wrapper {
  border: 1px solid #E5E5E5;
  border-radius: 32px 32px 0 0;
  padding: 12px 12px 20px;
  background-color: #ffffff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  transition: bottom 0.4s;
  z-index: 10;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 769px) {
  .mobile-event-link__wrapper {
    display: none;
  }
}
.mobile-event-link__wrapper.sticky {
  bottom: -2px;
}

@keyframes showStickyBtnDesktop {
  from {
    top: -70px;
  }
  to {
    top: 24px;
  }
}
@keyframes hideStickyBtnDesktop {
  from {
    top: 24px;
  }
  to {
    top: -70px;
  }
}
.header {
  display: flex;
}
.header__wrapper {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 576px) {
  .header__wrapper {
    top: 7px;
  }
}
.header__wrapper.sticky {
  position: fixed;
  animation: showStickyBtnDesktop 0.4s;
}
.header__wrapper.sticky .header__event-link {
  display: flex;
  padding: 13px 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
}
.header__wrapper.sticky .header__col {
  border: 1px solid #E5E5E5;
}
.header__wrapper.sticky .header__event {
  flex-grow: 1;
  position: relative;
  align-items: flex-start;
}
.header__wrapper.hide-sticky {
  animation: hideStickyBtnDesktop 0.4s;
}
@media (max-width: 576px) {
  .header__wrapper .container {
    padding: 0 7px;
  }
}
.header__col {
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
}
.header__logo {
  padding: 16px 20px;
}
@media (max-width: 992px) {
  .header__logo {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    padding: 9px 16px;
  }
}
@media (max-width: 389px) {
  .header__logo {
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    max-width: 180px;
    width: 100%;
  }
}
.header__event {
  margin-left: 2px;
  flex-direction: column;
}
@media (max-width: 992px) {
  .header__event {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .header__event {
    padding: 9px 16px;
  }
}
@media (max-width: 389px) {
  .header__event {
    padding: 8px;
  }
}
.header__event span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #FE8836;
}
.header__event span:first-of-type {
  font-weight: 700;
}
.header__event-link {
  display: none;
}

.fs {
  background-image: url("../images/fs-bg-desktop.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  padding: 150px 0 88px;
}
@media (max-width: 576px) {
  .fs {
    text-align: center;
    padding: 174px 0 107px;
    background-image: url("../images/fs-bg-mobile.jpg");
  }
}
.fs h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 6px;
  max-width: 515px;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .fs h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .fs h1 {
    font-size: 38px;
    max-width: 350px;
    margin: 0 auto 6px;
  }
}
@media (max-width: 389px) {
  .fs h1 {
    font-size: 35px;
  }
}
.fs__subtitle {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 490px;
}
@media (max-width: 576px) {
  .fs__subtitle {
    font-size: 17px;
    max-width: 305px;
    margin: 0 auto 171px;
  }
}
.fs__subtitle span {
  font-weight: 500;
}
.fs__btn {
  max-width: 305px;
}
@media (max-width: 576px) {
  .fs__btn {
    max-width: 340px;
    margin: 0 auto;
    justify-content: center;
  }
}

.info {
  border-radius: 49px;
  background-color: #ffffff;
  margin-top: -50px;
  padding: 72px 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 576px) {
  .info {
    padding: 32px 0 38px;
    border-radius: 25px;
  }
}
.info__top {
  display: flex;
}
@media (max-width: 768px) {
  .info__top {
    display: block;
  }
}
.info__top-content {
  margin-left: 56px;
  max-width: 390px;
}
@media (max-width: 992px) {
  .info__top-content {
    margin-left: 35px;
  }
}
@media (max-width: 768px) {
  .info__top-content {
    max-width: 340px;
    margin: 42px auto 0;
  }
}
@media (max-width: 768px) {
  .info__top-img {
    max-width: 400px;
    margin: 0 auto;
  }
}
.info__top-img img {
  width: 100%;
  display: block;
}
.info__top-title {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #1D1D1D;
  margin: 32px 0 21px;
}
@media (max-width: 992px) {
  .info__top-title {
    font-size: 30px;
    max-width: 340px;
    margin-top: 0;
  }
}
.info__top-title span {
  color: #13BBB2;
}
.info__top-text {
  font-size: 20px;
  line-height: 1.4;
  color: #585858;
}
@media (max-width: 768px) {
  .info__top-text {
    font-size: 17px;
  }
}
.info__utp {
  margin-top: 73px;
}
@media (max-width: 768px) {
  .info__utp {
    max-width: 340px;
    margin: 60px auto 0;
  }
}
.info__utp-title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #1D1D1D;
  max-width: 620px;
  text-align: center;
  margin: 0 auto 37px;
}
@media (max-width: 768px) {
  .info__utp-title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 29px;
  }
}
.info__utp-ct1 {
  color: #005EAB;
}
.info__utp-tc2 {
  color: #13BBB2;
}
.info__list {
  display: flex;
  justify-content: space-between;
  max-width: 692px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info__list {
    display: block;
  }
}
.info__item {
  max-width: 192px;
  text-align: center;
}
@media (max-width: 768px) {
  .info__item {
    display: flex;
    max-width: unset;
    text-align: left;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .info__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
.info__item-title {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
  color: #005EAB;
  margin-top: 18px;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .info__item-title {
    margin: 0 0 0 17px;
  }
}
.info__item-img {
  max-width: 76px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info__item-img {
    flex: 0 0 56px;
    margin: 0;
  }
}
.info__item-img img {
  max-width: 100%;
  display: block;
}

.event {
  color: #ffffff;
  position: relative;
}
.event__wrapper {
  margin-top: -50px;
  padding: 155px 0 120px;
  background-image: linear-gradient(360deg, #0A2740 23.89%, #113d62 96.03%);
  overflow: hidden;
}
@media (max-width: 576px) {
  .event__wrapper {
    padding: 50px 0 98px;
  }
}
.event__map {
  position: absolute;
  top: -105px;
  left: 52%;
  z-index: 1;
}
@media (max-width: 992px) {
  .event__map {
    top: -150px;
    left: 44%;
  }
}
@media (max-width: 768px) {
  .event__map {
    position: relative;
    top: -105px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  .event__map {
    max-width: 384px;
    top: -14px;
  }
}
@media (max-width: 420px) {
  .event__map {
    margin-left: 10px;
  }
}
.event__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 360px;
}
@media (max-width: 768px) {
  .event__title {
    margin: 0 auto;
    max-width: 430px;
  }
}
@media (max-width: 576px) {
  .event__title {
    font-size: 20px;
    max-width: 340px;
    margin-top: 25px;
  }
}
.event__title span {
  color: #42C3FF;
}
.event__info {
  margin-top: 44px;
  display: grid;
  grid-template-areas: "a b" "a c" "a .";
  justify-content: flex-start;
  gap: 20px 43px;
  max-width: 427px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .event__info {
    column-gap: 30px;
  }
}
@media (max-width: 768px) {
  .event__info {
    margin: 44px auto 0;
  }
}
@media (max-width: 576px) {
  .event__info {
    margin-top: 30px;
    max-width: 340px;
  }
}
.event__info-item {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .event__info-item {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .event__info-item {
    font-size: 14px;
  }
}
.event__info-item svg {
  margin-right: 5px;
  position: relative;
  top: 3px;
  height: 22px;
}
@media (max-width: 576px) {
  .event__info-item svg {
    margin: 0 0 8px;
    display: block;
    top: 0;
  }
}
.event__info-item span {
  font-weight: 400;
  line-height: 1.39;
  display: block;
  margin: 3px 0 0 22px;
}
@media (max-width: 576px) {
  .event__info-item span {
    margin: 4px 0 0;
  }
}
.event__info-item:nth-child(1) {
  grid-area: a;
}
.event__info-item:nth-child(2) {
  grid-area: b;
}
.event__info-item:nth-child(3) {
  grid-area: c;
}
.event__btn {
  max-width: 440px;
  margin: 73px auto 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .event__btn {
    margin-top: 20px;
    font-size: 18px;
  }
}

.gallery {
  margin-top: 48px;
  display: flex;
  column-gap: 19px;
}
@media (max-width: 576px) {
  .gallery {
    display: block;
    margin-top: 28px;
  }
}
.gallery__wrapper {
  padding: 72px 0 96px;
  margin-top: -40px;
  border-radius: 49px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .gallery__wrapper {
    padding: 33px 0 40px;
    border-radius: 25px;
  }
}
.gallery__title {
  font-size: 40px;
  font-weight: 700;
  color: #1D1D1D;
  text-align: center;
}
@media (max-width: 768px) {
  .gallery__title {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .gallery__title {
    font-size: 30px;
  }
}
.gallery__title span {
  color: #13BBB2;
}
@media (max-width: 576px) {
  .gallery__img:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.gallery__img img {
  width: 100%;
  display: block;
}

.footer {
  font-size: 14px;
  color: #ffffff;
  display: flex;
}
@media (max-width: 768px) {
  .footer {
    display: block;
    font-size: 13px;
    text-align: center;
  }
}
.footer__wrapper {
  background-color: #0a2740;
  padding: 117px 0 67px;
  margin-top: -50px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 84px 0 127px;
  }
}
.footer__links {
  display: flex;
  margin: 0 5px 0 auto;
}
@media (max-width: 768px) {
  .footer__links {
    margin: 18px 0 0;
    justify-content: center;
  }
}
.footer__link {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.4s;
}
.footer__link:not(:last-of-type) {
  margin-right: 32px;
}
@media (max-width: 768px) {
  .footer__link:not(:last-of-type) {
    margin-right: 17px;
  }
}
@media (max-width: 389px) {
  .footer__link:not(:last-of-type) {
    margin-right: 8px;
  }
}
.footer__link:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.4s;
}
@media (min-width: 993px) {
  .footer__link:hover {
    opacity: 0.7;
  }
  .footer__link:hover:after {
    width: 0;
  }
}

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