@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto;
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #05090d;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.site-header {
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 18px;
  background: #05090d;
  -webkit-box-shadow: 0 0 32px 8px #05090d;
  box-shadow: 0 0 32px 8px #05090d;
}

.logo {
  justify-self: start;
  display: inline-flex;
}

.logo img {
  display: block;
  max-height: 48px;
  width: auto;
}

.main-nav {
  justify-self: center;
}

.mobile-menu-toggle {
  display: none;
}

.main-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.main-nav a,
.more-link,
.mobile-menu-list a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.more-item {
  display: none;
  position: relative;
}

.more-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.main-nav .more-link {
  padding: 8px 14px;
}

.more-link::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  background-color: currentColor;
  -webkit-mask-image: url("../img/arrow-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/arrow-down.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-transform: translateY(1px) rotate(0deg);
  transform: translateY(1px) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  float: right;
}

.more-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 12px 0 0;
  padding: 8px;
  border-radius: 18px;
  list-style: none;
  border: 1px solid #0e233c;
  background: -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background: linear-gradient(90deg, #081321 0%, #07101a 100%);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.more-dropdown li + li {
  margin-top: 4px;
}

.more-dropdown a {
  display: block;
  width: 100%;
}

.more-item.is-open .more-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.more-item.is-open .more-link::after {
  -webkit-transform: translateY(1px) rotate(180deg);
  transform: translateY(1px) rotate(180deg);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-radius: 12px;
  background: rgba(49, 129, 221, 0.2);
  color: #3181dd;
}

.cta-link {
  justify-self: end;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 12px;
  border: 2px solid #db6a31;
  background: -webkit-linear-gradient(7deg, #db6a31 0%, #bb511b 100%);
  background: linear-gradient(83deg, #db6a31 0%, #bb511b 100%);
  -webkit-box-shadow: 0 0 8px 0 #db6a31;
  box-shadow: 0 0 8px 0 #db6a31;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-filter 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0 14px 0 #db6a31;
  box-shadow: 0 0 14px 0 #db6a31;
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}

.mobile-menu-panel {
  display: none;
}

.hero-block {
  position: relative;
  width: 100%;
  height: 800px;
  background: #05090d;
  overflow: hidden;
}

.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("../img/hero-block.png") center center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  border: 2px solid #3180db;
  background: -webkit-linear-gradient(7deg, #3181dd 0%, #2566b2 100%);
  background: linear-gradient(83deg, #3181dd 0%, #2566b2 100%);
  -webkit-box-shadow: 0 0 8px 0 #3180da;
  box-shadow: 0 0 8px 0 #3180da;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.hero-title {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
}

.hero-text {
  width: 100%;
  max-width: 520px;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

.scroll-indicator img {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-animation: scroll-hint 1.8s ease-in-out infinite;
  animation: scroll-hint 1.8s ease-in-out infinite;
}

@-webkit-keyframes scroll-hint {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes scroll-hint {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

.countdown-section {
  width: 100%;
  padding-top: 240px;
  padding-bottom: 240px;
}

.countdown-wrap {
  position: relative;
  isolation: isolate;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countdown-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 100%;
  height: 220px;
  background: url("../img/bg_round_1.svg") center center / contain no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.85;
  -webkit-filter: blur(0.2px);
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 0;
}

.countdown-subtitle,
.countdown-card {
  position: relative;
  z-index: 1;
}

.countdown-card {
  width: 100%;
  max-width: 840px;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #0e233c;
  background: -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background: linear-gradient(90deg, #081321 0%, #07101a 100%);
  -webkit-box-shadow: 0 0 32px 8px #05090d;
  box-shadow: 0 0 32px 8px #05090d;
}

.countdown-subtitle {
  margin: 0 0 32px;
  color: #ffffff;
  text-align: center;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.countdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.time-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 8px;
  border-radius: 12px;
  border: 2px solid #3180db;
  background: -webkit-linear-gradient(7deg, #3181dd 0%, #2566b2 100%);
  background: linear-gradient(83deg, #3181dd 0%, #2566b2 100%);
  -webkit-box-shadow: 0 0 8px 0 #3180da;
  box-shadow: 0 0 8px 0 #3180da;
  text-align: center;
}

.time-value {
  display: block;
  color: #ffffff;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.time-label {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.time-divider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 44px;
  opacity: 1;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.time-divider.is-dim {
  opacity: 0.22;
}

.info-section {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 120px;
}

.info-section-dog {
  position: relative;
  overflow: hidden;
  padding-top: 520px;
}

.info-section-dog::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: 800px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("../img/dogimg2.png") center top / cover no-repeat;
  pointer-events: none;
}

.info-section-dog .container {
  position: relative;
  z-index: 1;
}

.info-title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.info-card {
  min-height: 100%;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #0e233c;
  background:
    url("../img/info-block-bg.svg") center center / cover no-repeat,
    -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background:
    url("../img/info-block-bg.svg") center center / cover no-repeat,
    linear-gradient(90deg, #081321 0%, #07101a 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-card-title {
  margin: 24px 0 0;
  color: #3181dd;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  text-transform: none;
}

.info-card-text {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.location-section {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.location-subtitle {
  margin-bottom: 32px;
}

.location-wrap {
  position: relative;
  isolation: isolate;
}

.location-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -100px;
  width: 100%;
  height: 220px;
  background: url("../img/bg_round_1.svg") center center / contain no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.location-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  max-height: 420px;
  border-radius: 18px;
  border: 1px solid #0e233c;
  background:
    url("../img/map.png") center center / cover no-repeat,
    -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background:
    url("../img/map.png") center center / cover no-repeat,
    linear-gradient(90deg, #081321 0%, #07101a 100%);
  overflow: hidden;
}

.location-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
}

.location-icon {
  width: 48px;
  height: 48px;
}

.location-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.64px;
}

.cta-section {
  width: 100%;
}

.cta-block {
  width: 100%;
  max-width: 1920px;
  height: 480px;
  max-height: 480px;
  margin: 80px auto 0;
  background: url("../img/ctabg.svg") center center / cover no-repeat;
}

.cta-content {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cta-subtitle {
  margin: 0;
}

.cta-main-link {
  margin-top: 32px;
}

.packages-section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 120px;
  margin-top: 120px;
  align-items: stretch;
  text-align: center;
}

.packages-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.packages-images img {
  display: block;
  max-width: 100%;
  height: auto;
}

.packages-subtitle {
  margin-top: 32px;
}

.packages-text {
  margin-top: 16px;
}

.packages-cta {
  margin-top: 32px;
}

.team-section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background: url("../img/ctabg.svg") center center / cover no-repeat;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.team-card {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.team-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 10000px;
  border: 6px solid #3180db;
  -webkit-box-shadow: 0 0 34.8px 2px #3180da;
  box-shadow: 0 0 34.8px 2px #3180da;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
  object-fit: none;
  display: block;
}

.team-name {
  margin: 24px 0 0;
  color: #fff;
  text-align: center;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.team-role {
  margin: 8px 0 0;
  color: #3181dd;
  text-align: center;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.cooperation-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 520px;
  padding-bottom: 120px;
}

.cooperation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: 800px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("../img/dogimg3.png") center top / cover no-repeat;
  pointer-events: none;
}

.cooperation-section .container {
  position: relative;
  z-index: 1;
}

.cooperation-logos {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cooperation-logo-card {
  min-height: 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
}

.cooperation-logo-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
}

.cooperation-card {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cooperation-subtitle {
  margin-top: 0;
}

.cooperation-text {
  max-width: 556px;
  margin-top: 16px;
}

.cooperation-cta {
  margin-top: 32px;
}

.media-partners-section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.media-main-logo-wrap {
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.media-main-logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 100%;
  height: 160px;
  background: url("../img/bg_round_1.svg") center center / contain no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.media-main-logo {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 18px;
}

.media-main-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.media-logos-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.media-logo-card {
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
}

.media-logo-card img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

.faq-section {
  width: 100%;
  padding-top: 120px;
}

.faq-box {
  margin-top: 40px;
  border-radius: 18px;
  border: 1px solid #0e233c;
  background: -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background: linear-gradient(90deg, #081321 0%, #07101a 100%);
  padding: 12px;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-question {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  -webkit-transition: background-color 0.2s ease, border-radius 0.2s ease;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  border-radius: 8px;
  background: #0e233c;
}

.faq-plus {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 12px 16px 16px 48px;
}

.faq-answer p {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1249.98px) {
  .site-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .extra-item {
    display: none;
  }

  .more-item {
    display: list-item;
    padding-top: 4px;
  }

  .hero-block {
    height: 660px;
  }

  .countdown-section {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .info-title {
    font-size: 42px;
    line-height: 50px;
  }

  .info-section-dog {
    padding-top: 460px;
  }

  .info-section-dog::before {
    height: 520px;
  }

  .location-wrap::after {
    width: 620px;
    height: 180px;
    bottom: -90px;
  }

  .cta-block {
    height: 440px;
    max-height: 440px;
  }

  .packages-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .cooperation-section {
    padding-top: 460px;
  }

  .cooperation-section::before {
    height: 510px;
  }

  .faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 1023.98px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-line {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: 15px;
    line-height: 20px;
  }

  .cta-link {
    padding: 8px 18px;
    font-size: 15px;
    line-height: 20px;
  }

  .more-dropdown {
    left: auto;
    right: 0;
  }

  .info-section {
    padding-top: 72px;
    padding-bottom: 100px;
  }

  .info-title {
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.76px;
  }

  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-section-dog {
    padding-top: 380px;
  }

  .info-section-dog::before {
    height: 400px;
  }

  .location-card {
    height: 380px;
    max-height: 380px;
  }

  .location-text {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.56px;
  }

  .cta-block {
    height: 400px;
    max-height: 400px;
  }

  .packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .packages-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .team-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cooperation-section {
    padding-top: 380px;
    padding-bottom: 100px;
  }

  .cooperation-section::before {
    height: 400px;
  }

  .cooperation-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .faq-question {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.44px;
  }
}

@media (max-width: 819.98px) {
  .header-line {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .main-nav,
  .cta-link-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: rgba(49, 129, 221, 0.2);
    color: #ffffff;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    background: rgba(49, 129, 221, 0.3);
    color: #3181dd;
  }

  .mobile-menu-toggle img {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .mobile-menu-panel {
    display: block;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease, margin-top 0.2s ease, -webkit-transform 0.2s ease;
    transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease, margin-top 0.2s ease, transform 0.2s ease;
  }

  .site-header.mobile-open .mobile-menu-panel {
    margin-top: 12px;
    max-height: 560px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .mobile-menu-list {
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 18px;
    border: 1px solid #0e233c;
    background: -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
    background: linear-gradient(90deg, #081321 0%, #07101a 100%);
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu-list li + li {
    margin-top: 4px;
  }

  .mobile-menu-list a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .mobile-menu-list a:hover,
  .mobile-menu-list a:focus-visible {
    background: rgba(49, 129, 221, 0.2);
    color: #3181dd;
  }

  .cta-link-mobile {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 20px;
  }

  .hero-block {
    height: 540px;
    background-position: center top;
  }

  .hero-title {
    max-width: 540px;
    margin-top: 20px;
  }

  .hero-text {
    max-width: 520px;
    margin-top: 16px;
    font-size: 18px;
  }

  .countdown-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .countdown-wrap::after {
    width: 100%;
    height: 180px;
    bottom: -86px;
  }

  .countdown-card {
    padding: 24px 16px;
  }

  .countdown-subtitle {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.48px;
  }

  .countdown-row {
    gap: 8px;
  }

  .time-box {
    padding: 14px 6px;
  }

  .time-value {
    font-size: 40px;
  }

  .time-label {
    margin-top: 6px;
    font-size: 14px;
    line-height: 18px;
  }

  .time-divider {
    width: 14px;
    height: 30px;
  }

  .info-section {
    padding-top: 64px;
    padding-bottom: 92px;
  }

  .info-title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.6px;
  }

  .info-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .info-card {
    padding: 24px;
  }

  .info-number {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .info-card-title {
    margin-top: 18px;
    font-size: 24px;
    line-height: 32px;
  }

  .info-section-dog {
    padding-top: 320px;
  }

  .info-section-dog::before {
    height: 330px;
  }

  .location-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .location-subtitle {
    margin-bottom: 24px;
  }

  .location-wrap::after {
    width: 100%;
    height: 170px;
    bottom: -74px;
  }

  .location-card {
    height: 320px;
    max-height: 320px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
  }

  .location-text {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.44px;
  }

  .cta-block {
    height: 340px;
    max-height: 340px;
  }

  .cta-main-link {
    margin-top: 24px;
  }

  .packages-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .packages-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .packages-card {
    padding: 24px;
  }

  .packages-images {
    gap: 28px;
  }

  .packages-subtitle {
    margin-top: 24px;
  }

  .packages-cta {
    margin-top: 24px;
  }

  .team-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .team-grid {
    gap: 24px 16px;
  }

  .team-photo-wrap {
    width: 180px;
    height: 180px;
  }

  .team-name {
    margin-top: 20px;
    font-size: 22px;
    line-height: 30px;
  }

  .cooperation-section {
    padding-top: 320px;
    padding-bottom: 80px;
  }

  .cooperation-section::before {
    height: 320px;
  }

  .cooperation-logos {
    margin-top: 28px;
    gap: 16px;
  }

  .cooperation-logo-card {
    min-height: 110px;
    padding: 16px;
  }

  .cooperation-card {
    margin-top: 24px;
  }

  .cooperation-cta {
    margin-top: 24px;
  }

  .faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .faq-box {
    margin-top: 28px;
  }

  .faq-question {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.4px;
    padding: 14px;
  }

  .faq-plus {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    padding: 10px 14px 14px 44px;
  }
}

@media (max-width: 659.98px) {
  .hero-content {
    gap: 16px;
  }

  .scroll-indicator {
    bottom:8px
  }

  .countdown-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .countdown-wrap::after {
    width: 100%;
    height: 150px;
    bottom: -76px;
  }

  .countdown-subtitle {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }

  .time-box {
    padding: 12px 4px;
  }

  .time-value {
    font-size: 30px;
  }

  .time-label {
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
  }

  .location-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .location-card {
    height: 280px;
    max-height: 280px;
  }

  .location-text {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.36px;
  }

  .info-section-dog {
    padding-top: 270px;
  }

  .info-section-dog::before {
    height: 280px;
  }

  .cta-block {
    height: 300px;
    max-height: 300px;
  }

  .cta-main-link {
    margin-top: 18px;
  }

  .packages-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .packages-images {
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .team-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .team-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .team-name {
    margin-top: 18px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }

  .team-role {
    margin-top: 6px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
  }

  .cooperation-section {
    padding-top: 270px;
    padding-bottom: 72px;
  }

  .cooperation-section::before {
    height: 260px;
  }

  .cooperation-logos {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-question {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.36px;
    gap: 10px;
  }

  .faq-answer {
    padding-left: 40px;
  }
}

@media (max-width: 1249.98px) {
  .media-partners-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 1023.98px) {
  .media-partners-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .media-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 819.98px) {
  .media-partners-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .media-main-logo-wrap {
    margin-top: 28px;
  }

  .media-main-logo-wrap::after {
    width: 100%;
    height: 140px;
    bottom: -60px;
  }

  .media-logos-grid {
    margin-top: 60px;
    gap: 16px;
  }
}

@media (max-width: 659.98px) {
  .media-partners-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .media-main-logo-wrap::after {
    height: 120px;
    bottom: -54px;
  }

  .media-logos-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-footer {
  border-top: 1px solid #0e233c;
  background: -webkit-linear-gradient(left, #081321 0%, #07101a 100%);
  background: linear-gradient(90deg, #081321 0%, #07101a 100%);
  padding-top: 56px;
  padding-bottom: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
}

.footer-subtitle {
  margin: 0 0 20px;
  color: #3181dd;
  font-family: "Exo 2", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.footer-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-list li + li {
  margin-top: 10px;
}

.footer-menu-list a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.footer-menu-list a:hover,
.footer-menu-list a:focus-visible {
  background: rgba(49, 129, 221, 0.2);
  color: #3181dd;
}

.footer-text {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-label {
  margin: 0;
  color: #3181dd;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-gap-sm {
  margin-bottom: 16px;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 180px;
}

.footer-socials a {
  display: inline-flex;
  width: 28px;
  height: 28px;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-cta-text {
  margin-top: 24px;
}

.footer-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 35, 60, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.footer-legal-text {
  color: #ffffff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1023.98px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }
}

@media (max-width: 819.98px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .footer-col + .footer-col {
    margin-top: 40px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
