@charset "UTF-8";
.dst-bloq_grid .dst-link a, .dst-community_block .dst-link a, .dst-index_games .dst-link a, .dst-index_first .dst-link a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.dst-bloq_grid .dst-link a:hover::before, .dst-community_block .dst-link a:hover::before, .dst-index_games .dst-link a:hover::before, .dst-index_first .dst-link a:hover::before {
  background-color: #14b8a6;
  left: 0;
  top: 0;
}
.dst-bloq_grid .dst-link a:hover span, .dst-community_block .dst-link a:hover span, .dst-index_games .dst-link a:hover span, .dst-index_first .dst-link a:hover span {
  color: #14b8a6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.dst-bloq_grid .dst-link a::before, .dst-community_block .dst-link a::before, .dst-index_games .dst-link a::before, .dst-index_first .dst-link a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-bloq_grid .dst-link span, .dst-community_block .dst-link span, .dst-index_games .dst-link span, .dst-index_first .dst-link span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #14b8a6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

html {
  min-height: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 12px;
  font-family: "Oswald", Arial, sans-serif;
  text-align: left;
  color: #000;
  background-color: #0b1220;
  overflow-y: overlay;
  overflow-x: clip;
  position: relative;
  touch-action: pan-y;
}

body.dst-overflow {
  overflow: clip;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

:root {
  --app-height: 100%;
}

input, select, textarea {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #fff;
  font-family: "Oswald", Arial, sans-serif;
}

/* Hide images with an empty src attribute */
img[src=""] {
  display: none;
}

img {
  max-width: 100%;
}

/* Full link element styles */
a.dst-full_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: #1B69DE;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.dst-main_header {
  width: 100%;
  height: 120px;
  font-size: 0;
  background-color: rgba(15, 47, 61, 0.25);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-main_header.dst-show_me {
  height: 70px;
  background-color: rgba(15, 47, 61, 0.9);
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 0 7px 0 rgba(0, 0, 0, 0.1);
}
.dst-main_header.dst-show_me .dst-header_right {
  height: 70px;
}
.dst-main_header.dst-show_me .dst-header_contact {
  height: 0;
}
.dst-main_header.dst-show_me .dst-main_nav a {
  padding: 26px 20px;
}
.dst-main_header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 20px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dst-logo {
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-logo a {
  display: inline-block;
  width: 180px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 56px;
  background-image: url(../img/favicon.png);
}

.dst-header_right {
  width: calc(100% - 280px);
  height: 120px;
  padding: 0 0 0 8px;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-header_right::before {
  content: "";
  display: block;
  width: 1px;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: -5%;
  transform: rotate(30deg);
}

.dst-header_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 0 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-header_contact ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.dst-header_contact li {
  padding: 0 0 0 24px;
  margin: 0 48px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 20px;
}
.dst-header_contact li.dst-phone {
  background-image: url(../img/phone_icon.svg);
}
.dst-header_contact li.dst-location {
  background-image: url(../img/location_icon.svg);
}
.dst-header_contact li a {
  color: currentColor;
  text-decoration: none;
}
.dst-header_contact li a:hover {
  text-decoration: underline;
}

.dst-social_links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0;
}
.dst-social_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0 0 24px;
  color: #fff;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-social_links a:hover {
  transform: translate(0, -2px);
}
.dst-social_links a::before {
  content: "";
  display: block;
  width: 1px;
  height: 140%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: -14px;
  top: -20%;
  transform: rotate(30deg);
}
.dst-social_links img {
  width: 18px;
  height: 18px;
}
.dst-social_links svg {
  width: 18px;
  height: 18px;
}
.dst-social_links path {
  fill: currentColor;
}

.dst-main_nav {
  height: 72px;
  font-size: 0;
  text-align: right;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-main_nav li {
  padding: 0 0 0 1px;
  display: inline-block;
}
.dst-main_nav a {
  display: flex;
  align-items: center;
  height: auto;
  padding: 28px 20px 28px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-main_nav a:hover {
  color: #14b8a6;
}

.dst-toggler {
  display: none;
  padding: 0 0 0 32px;
  margin: 0 0 0 32px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.dst-toggler strong {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.dst-toggler span {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}
.dst-toggler em {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-toggler em + em {
  top: calc(50% - 7px);
  width: 50%;
  left: 50%;
}
.dst-toggler em + em + em {
  top: auto;
  left: 0;
  bottom: calc(50% - 7px);
}
.dst-toggler.dst-active em:first-child {
  width: 0;
  left: calc(50% - 0px);
}
.dst-toggler.dst-active em:first-child + em {
  width: 100%;
  left: 0;
  top: calc(50% - 1px);
}
.dst-toggler.dst-active em:first-child + em + em {
  width: 100%;
  bottom: calc(50% - 1px);
}
.dst-toggler.dst-active_second em:first-child + em {
  transform: rotate(135deg);
}
.dst-toggler.dst-active_second em:first-child + em + em {
  transform: rotate(225deg);
}

.dst-index_first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  min-height: 100vh;
  font-size: 0;
  position: relative;
}
.dst-index_first .dst-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.dst-index_first .dst-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.dst-index_first .dst-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 16, 36, 0.9) 0%, rgba(15, 16, 36, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.dst-index_first section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dst-index_first h1 {
  padding: 0 0 24px;
  font-size: 86px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  font-family: "Barlow";
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #14b8a6;
}
.dst-index_first p {
  font-size: 24px;
  line-height: 1.5;
  color: #14b8a6;
  font-weight: 400;
  font-family: "Barlow";
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
}
.dst-index_games {
  padding: 80px 0 120px;
}
.dst-index_games section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-index_games header {
  padding: 0 0 48px;
  text-align: center;
  color: #fff;
}
.dst-index_games h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-index_games h2 {
  padding: 6px 0 0;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-index_games .dst-link {
  padding: 48px 0 0;
  text-align: center;
}

.dst-games_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px 32px;
  font-size: 0;
}
.dst-games_grid article {
  position: relative;
}
.dst-games_grid article:hover h3 {
  opacity: 1;
  transform: scale(1);
}
.dst-games_grid article:hover span::before {
  top: -8px;
}
.dst-games_grid article:hover span::after {
  top: 0;
}
.dst-games_grid article > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.dst-games_grid img {
  width: 100%;
}
.dst-games_grid .dst-image {
  position: relative;
}
.dst-games_grid h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  padding: 0 24px;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Barlow";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 16px;
  top: 16px;
  opacity: 0;
  transform: scale(0.4);
  transition: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dst-games_grid span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
.dst-games_grid span::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 12px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-games_grid span::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 24px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 6px;
  top: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dst-who_wrapper {
  padding: 0 0 80px;
}
.dst-who_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dst-who_sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
}
.dst-who_sides .dst-image {
  padding: 0 48px 48px 64px;
  font-size: 0;
  position: relative;
}
.dst-who_sides .dst-image img {
  box-shadow: 0 0 0 6px #0f2f3d;
}
.dst-who_sides .dst-image img + img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.dst-who_sides .dst-info {
  width: 140px;
  padding: 32px 24px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-family: "Barlow";
  background-color: #14b8a6;
  box-shadow: inset 0 0 0 6px #0f2f3d;
  position: absolute;
  left: 0;
  top: 48px;
}
.dst-who_sides .dst-info p {
  padding: 0 0 12px;
  font-size: 40px;
  font-weight: 600;
}
.dst-who_sides .dst-info span {
  line-height: 1.3;
}
.dst-who_sides .dst-inner {
  padding: 0 0 0 24px;
}
.dst-who_sides header {
  padding: 0 0 48px;
  color: #fff;
}
.dst-who_sides h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-who_sides h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-who_sides h5 {
  font-size: 16px;
  line-height: 1.4;
}
.dst-who_sides ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
}
.dst-who_sides li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dst-who_sides .dst-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #14b8a6;
  border-radius: 50%;
}
.dst-who_sides .dst-inset {
  width: calc(100% - 70px);
  padding: 0 0 0 20px;
  color: #fff;
}
.dst-who_sides h3 {
  padding: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-who_sides p {
  font-size: 16px;
  line-height: 1.3;
}

.dst-players_wrapper {
  padding: 0 0 80px;
}
.dst-players_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dst-players_wrapper header {
  padding: 0 0 48px;
  color: #fff;
  text-align: center;
}
.dst-players_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-players_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}

.dst-players_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}
.dst-players_grid figure {
  padding: 40px 24px;
  border: 6px solid #0f2f3d;
  text-align: center;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1) 50%, #14b8a6 50%);
  position: relative;
}
.dst-players_grid figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(115deg, black 0%, transparent 35%, transparent 65%, black 100%);
  mask-image: linear-gradient(115deg, black 0%, transparent 35%, transparent 65%, black 100%);
  pointer-events: none;
}
.dst-players_grid .dst-image {
  padding: 0 0 48px;
  position: relative;
}
.dst-players_grid figcaption {
  position: relative;
}
.dst-players_grid h3 {
  padding: 0 0 24px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-family: "Barlow";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.dst-players_grid ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.dst-players_grid li img {
  border-radius: 50%;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.8);
}
.dst-players_grid li a {
  display: inline-block;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-players_grid li a:hover {
  transform: translate(0, -4px);
}

.dst-community_wrapper {
  padding: 40px 0 120px;
}
.dst-community_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.dst-community_block {
  font-size: 0;
  position: relative;
}
.dst-community_block article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/community_bg.webp);
  position: relative;
}
.dst-community_block header {
  padding: 0 0 24px;
  color: #fff;
}
.dst-community_block h4 {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.dst-community_block h2 {
  font-size: 28px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-community_block p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.dst-community_block .dst-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 40px;
}
.dst-community_block em {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
.dst-community_block em::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 12px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-community_block em::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 24px);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 6px;
  top: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dst-bloqs_wrapper {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/bloqs_bg.webp);
  position: relative;
}
.dst-bloqs_wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #123748 0%, rgba(18, 55, 72, 0.8) 50%, #123748 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.dst-bloqs_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.dst-bloqs_wrapper header {
  padding: 0 0 40px;
  color: #fff;
  text-align: center;
}
.dst-bloqs_wrapper h4 {
  padding: 0 0 4px;
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Barlow";
}
.dst-bloqs_wrapper h2 {
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}

.dst-bloq_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
  font-size: 0;
}
.dst-bloq_grid article {
  padding: 12px;
  background-color: rgba(15, 47, 61, 0.75);
  backdrop-filter: blur(4px);
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.25);
}
.dst-bloq_grid .dst-inner {
  padding: 24px 12px 20px;
  color: #fff;
}
.dst-bloq_grid h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-bloq_grid ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 20px;
  font-size: 16px;
}
.dst-bloq_grid li {
  padding: 2px 0 2px 48px;
  position: relative;
}
.dst-bloq_grid li:first-child {
  padding: 0;
}
.dst-bloq_grid li:first-child::before {
  display: none;
}
.dst-bloq_grid li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 24px;
  top: 0;
}
.dst-bloq_grid p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.dst-footer_first {
  padding: 0 0 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../img/footer_bg.webp);
  position: relative;
}
.dst-footer_first section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
}
.dst-footer_first .dst-logo {
  padding: 0 0 16px;
}
.dst-footer_first article {
  min-width: 240px;
}
.dst-footer_first h3 {
  padding: 0 0 24px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.dst-footer_first h5 {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.dst-footer_contacts {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dst-footer_contacts ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-footer_contacts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.dst-footer_contacts li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.dst-footer_contacts .dst-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
}
.dst-footer_contacts p {
  width: calc(100% - 40px);
  padding: 0 0 0 16px;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}
.dst-footer_contacts p a {
  color: currentColor;
  text-decoration: none;
}
.dst-footer_contacts p a:hover {
  text-decoration: underline;
}

.dst-games_list {
  font-size: 0;
}
.dst-games_list article {
  display: grid;
  grid-template-columns: 80px calc(100% - 80px);
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 0;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.dst-games_list article:last-child {
  border: none;
}
.dst-games_list article:hover h4 {
  color: #14b8a6;
}
.dst-games_list article:hover .dst-image {
  box-shadow: 0 0 3px 1px rgba(20, 184, 166, 0.6);
}
.dst-games_list article:hover img {
  transform: scale(1.1) rotate(5deg);
}
.dst-games_list .dst-image {
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-games_list .dst-image img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-games_list h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-games_list a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.dst-disclamer h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.dst-disclamer p {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.dst-subscribe_form {
  max-width: 600px;
}
.dst-subscribe_form div {
  margin: 0 0 24px;
  position: relative;
}
.dst-subscribe_form input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 0 0 16px;
  border: none;
  border: 1px solid #0f2f3d;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background-color: #0f2f3d;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-subscribe_form input:focus {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.dst-subscribe_form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.dst-subscribe_form .dst-button {
  padding: 2px 0 0 4px;
}
.dst-subscribe_form .dst-button button {
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  text-decoration: none;
}
.dst-subscribe_form .dst-button button:hover::before {
  background-color: #14b8a6;
  left: 0;
  top: 0;
}
.dst-subscribe_form .dst-button button:hover span {
  color: #14b8a6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.dst-subscribe_form .dst-button button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-subscribe_form .dst-button span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #14b8a6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dst-copyright {
  padding: 0 0;
  background-color: rgba(255, 255, 255, 0.05);
}
.dst-copyright p {
  padding: 24px 20px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.dst-copyright strong {
  font-weight: 500;
}

.dst-inner_first {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 40px;
  padding: 280px 0 120px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  position: relative;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.dst-inner_first.dst-compact {
  padding: 180px 0 30px;
}
.dst-inner_first.dst-compact section {
  position: static;
}
.dst-inner_first.dst-compact h1 {
  font-size: 36px;
}
.dst-inner_first section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.dst-inner_first h1 {
  padding: 0 0 12px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  font-family: "Barlow";
  text-transform: uppercase;
}
.dst-inner_first h3 {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
}
.dst-inner_first ul {
  font-size: 16px;
  line-height: 1.5;
  color: #14b8a6;
  font-weight: 400;
  text-transform: uppercase;
}
.dst-inner_first ul a {
  color: #fff;
  text-decoration: none;
}
.dst-inner_first li {
  display: inline-block;
}
.dst-inner_first li:last-child::after {
  display: none;
}
.dst-inner_first li::after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
  color: #fff;
}
.dst-inner_first p {
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #14b8a6;
  position: absolute;
  right: 0;
  top: 120px;
}
.dst-inner_first p strong {
  color: #fff;
}
.dst-inner_first .dst-date {
  padding: 0 0 8px;
}
.dst-inner_first time {
  display: inline-block;
  padding: 0 0 0 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-image: url(../img/date_icon%EF%B9%96v=2.svg);
  background-size: 20px;
}

.dst-video_wrapper {
  padding: 80px 0;
}
.dst-video_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-video_wrapper header {
  padding: 0 0 48px;
  color: #fff;
  text-align: center;
}
.dst-video_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-video_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}

.dst-video_block {
  border: 8px solid #0f2f3d;
  font-size: 0;
  position: relative;
}
.dst-video_block a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  background-image: url(../img/play_icon.svg);
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-video_block a:hover::before {
  transform: scale(1.3);
}
.dst-video_block a:hover::after {
  transform: scale(1.6);
}
.dst-video_block a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: inset 0 0 1px 10px rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-video_block a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: inset 0 0 1px 0 #fff;
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dst-partners_wrapper {
  padding: 80px 0;
}
.dst-partners_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-partners_wrapper header {
  padding: 0 0 32px;
  color: #fff;
  text-align: center;
}
.dst-partners_wrapper h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-partners_wrapper h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}

.dst-partners_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 32px;
  font-size: 0;
  text-align: center;
}
.dst-partners_grid img {
  height: 64px;
}

.dst-contacts_first {
  padding: 120px 0;
  background: radial-gradient(circle at 0% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(15, 47, 61, 0.5) 0%, transparent 60%);
}
.dst-contacts_first section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-contacts_first header {
  padding: 0 0 32px;
  color: #fff;
  text-align: center;
}
.dst-contacts_first h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #14b8a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: 300;
}
.dst-contacts_first h2 {
  padding: 6px 0 24px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}

.dst-contacts_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
  text-align: center;
  color: #fff;
}
.dst-contacts_grid article {
  padding: 40px 20px;
  background-color: #0f2f3d;
  position: relative;
  border-radius: 4px;
}
.dst-contacts_grid .dst-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #14b8a6;
  border-radius: 50%;
  position: relative;
}
.dst-contacts_grid .dst-icon::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(20, 184, 166, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
}
.dst-contacts_grid .dst-icon::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(20, 184, 166, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.dst-contacts_grid h3 {
  padding: 24px 0 4px;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow";
}
.dst-contacts_grid h3 a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-contacts_grid h3 a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.dst-contacts_grid p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.dst-contacts_grid p a {
  color: currentColor;
  text-decoration: none;
}
.dst-contacts_grid p a:hover {
  text-decoration: underline;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
.dst-contacts_second {
  padding: 110px 0;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/contact_bg.webp);
  background-attachment: fixed;
}
.dst-contacts_second section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-contacts_second h2 {
  padding: 0 0 40px;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Barlow";
  text-align: center;
  color: #fff;
}

.dst-form_side {
  max-width: 900px;
  margin: 0 auto;
}

.dst-form_item {
  position: relative;
  text-align: center;
}
.dst-form_item input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background-color: rgba(15, 47, 61, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-form_item input:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #fff !important;
}
.dst-form_item textarea {
  display: block;
  width: 100%;
  height: 160px;
  padding: 16px 20px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background-color: rgba(15, 47, 61, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-form_item textarea:focus {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #fff !important;
}
.dst-form_item .dst-button {
  padding: 2px 0 0 4px;
}
.dst-form_item .dst-button button {
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  text-decoration: none;
}
.dst-form_item .dst-button button:hover::before {
  background-color: #14b8a6;
  left: 0;
  top: 0;
}
.dst-form_item .dst-button button:hover span {
  color: #14b8a6;
  background-color: #fff;
  top: 4px;
  left: 4px;
}
.dst-form_item .dst-button button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-form_item .dst-button span {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #14b8a6;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.dst-form_item span {
  position: relative;
}

.dst-form_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.dst-form_grid .dst-form_item {
  width: calc(50% - 12px);
}
.dst-form_grid .dst-form_item.dst-full {
  width: 100%;
}

.dst-games_wrapper {
  padding: 40px 0 120px;
  background: radial-gradient(circle at 0% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(15, 47, 61, 0.5) 0%, transparent 60%);
}
.dst-games_wrapper section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.dst-simple_wrapper {
  padding: 40px 0;
  overflow: hidden;
  background: radial-gradient(circle at 0% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(15, 47, 61, 0.5) 0%, transparent 60%);
  background-attachment: fixed;
}
.dst-simple_wrapper section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.dst-simple_text {
  padding: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #0f2f3d;
  position: relative;
}
.dst-simple_text h3 {
  padding: 0 0 12px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.dst-simple_text p {
  padding: 0 0 16px;
  color: #fff;
}
.dst-simple_text ul {
  padding: 0 0 16px;
}
.dst-simple_text li {
  padding: 0 0 0 16px;
  margin: 0 0 8px;
  position: relative;
}
.dst-simple_text li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #14b8a6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.dst-simple_text figure {
  width: calc(100% + 64px);
  margin: 0 0 16px -32px;
  font-size: 0;
  position: relative;
}
.dst-simple_text figure img {
  width: 100%;
}
.dst-simple_text figcaption {
  max-width: calc(100% - 64px);
  padding: 8px 16px;
  font-size: 12px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 32px;
  bottom: 12px;
  backdrop-filter: blur(6px);
}
.dst-simple_text strong {
  font-weight: 700;
}
.dst-simple_text em {
  font-style: italic;
}
.dst-simple_text dl {
  margin: 0 0 24px;
  padding: 12px 0;
  font-size: 14px;
  border-left: 2px solid #fff;
  background-color: #14b8a6;
}
.dst-simple_text dt {
  padding: 0 0 0 12px;
  font-weight: 500;
  color: #fff;
}
.dst-simple_text dd {
  padding: 0 0 8px 24px;
  color: #fff;
  font-weight: 400;
}
.dst-simple_text blockquote {
  position: relative;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  padding: 20px 20px;
  margin: 0 0 20px;
  border-left: 4px solid #fff;
  background: #14b8a6;
}
.dst-simple_text blockquote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 3rem;
  color: #fff;
  font-family: serif;
}
.dst-simple_text blockquote::after {
  content: "”";
  position: absolute;
  bottom: -24px;
  right: 10px;
  font-size: 3rem;
  color: #fff;
  font-family: serif;
}

.dst-index_gradient {
  background: radial-gradient(circle at 0% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 60%), radial-gradient(circle at 100% 50%, rgba(15, 47, 61, 0.5) 0%, transparent 60%);
  background-attachment: fixed;
}

.dst-disclamer_wrapper {
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.dst-disclamer_wrapper section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.dst-disclamer_wrapper header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.dst-disclamer_wrapper h2 {
  padding: 0 0 8px;
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Barlow";
}
.dst-disclamer_wrapper h4 {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  letter-spacing: 1px;
}
.dst-disclamer_wrapper .dst-image {
  text-align: center;
}
.dst-disclamer_wrapper .dst-image img {
  width: 400px;
}

.dst-game_wrapper {
  height: 100vh;
  font-size: 0;
  position: relative;
}
.dst-game_wrapper iframe {
  width: 100%;
  height: 100vh;
}