/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Unbounded", sans-serif;
  line-height: 1.6;
  color: #151515;
  overflow-x: hidden;
  background: #8eb3ff;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cookie-icon {
  font-size: 40px;
}

.cookie-text h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #ff6b35;
  color: white;
}

.cookie-btn.accept:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background: transparent;
  color: #ccc;
  border: 2px solid #666;
}

.cookie-btn.decline:hover {
  background: #666;
  color: white;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #8eb3ff;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 30px;
}
.nav-logo span {
  color: #151515;
  font-family: Unbounded;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-link:hover {
  color: #ff6b35;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Main Content */
.main {
  margin-top: 0px;
}

/* Hero Section */
.hero {
  background: #8eb3ff;
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  height: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-title {
  color: #151515;
  font-family: Unbounded;
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero-description {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.penguin-character {
  position: relative;
  z-index: 2;
}

.penguin-img {
  width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.rating-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #333;
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  z-index: 3;
  min-width: 120px;
}

.rating-number {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.rating-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.rating-stars {
  font-size: 20px;
  color: #ffd700;
}

/* Game Preview */
.game-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.game-card {
  width: 180px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.animate_line {
  background: #151515;
  padding: 10px 0;
  overflow: hidden;
}

.brand-strip {
  display: flex;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.brand-item {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-right: 80px;
  letter-spacing: 2px;
  opacity: 0.7;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .penguin-img {
    width: 300px;
  }

  .rating-badge {
    position: static;
    margin: 20px auto 0;
    display: inline-block;
  }

  .game-preview {
    flex-wrap: wrap;
    gap: 20px;
  }

  .game-card {
    width: 150px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .hero-container {
    padding: 60px 20px 40px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 14px;
  }

  .penguin-img {
    width: 250px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-info {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .penguin-img {
    width: 200px;
  }

  .game-preview {
    justify-content: center;
  }

  .game-card {
    width: 130px;
    height: 85px;
  }

  .brand-item {
    font-size: 18px;
    margin-right: 40px;
  }
}
.pingimg {
  position: absolute;
  bottom: 20px;
  left: 180px;
}
@media (max-width: 1300px) {
  .pingimg {
    position: absolute;
    bottom: 20px;
    left: 60px;
  }
}
.blackImg {
  position: absolute;
  right: 0px;
  top: 100px;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #ea4e00;
  color: #fff;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  width: 316px;
  height: 73px;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: 30px;
}
.flex__right {
  display: flex;
  justify-content: flex-end;
}
.right {
  max-width: 400px;
  margin-bottom: 170px;
}
.right p {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mario {
  position: absolute;
  right: 0px;
  bottom: 20px;
}

@media (max-width: 1100px) {
  .pingimg {
    width: 330px;
    bottom: inherit;
    top: 255px;
  }
  .hero-title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .pingimg {
    width: 330px;
    bottom: inherit;
    top: 255px;
  }

  .hero-title {
    font-size: 60px;
  }
  .blackImg {
    width: 80px;
    top: 240px;
  }
  .mario {
    width: 330px;
  }
  .right {
    margin-bottom: 100px;
    margin-top: 200px;
  }
}
@media (max-width: 830px) {
  .pingimg {
    width: 330px;
    bottom: inherit;
    top: 400px;
  }

  .hero-title {
    font-size: 60px;
  }
  .blackImg {
    width: 80px;
    top: 300px;
  }
  .mario {
    width: 330px;
  }
  .right {
    margin-bottom: 100px;
    margin-top: 460px;
  }
  .hero-container {
    padding-top: 140px;
  }
}
@media (max-width: 566px) {
  .pingimg {
    width: 380px;
    bottom: inherit;
    top: 400px;
    left: 0px;
  }

  .hero-title {
    font-size: 42px;
  }
  .blackImg {
    width: 80px;
    top: 300px;
  }
  .mario {
    width: 330px;
  }
  .right {
    margin-bottom: 100px;
    margin-top: 540px;
  }
  .hero-container {
    padding-top: 140px;
  }
}

.story {
  position: relative;
}
h2 {
  color: #151515;
  font-family: Unbounded;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.text {
  margin-top: 30px;
  max-width: 340px;
}
.text p {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.volki {
  position: absolute;
  top: 340px;
  right: 0px;
}
@media (max-width: 1350px) {
  .volki {
    width: 50%;
    top: 350px;
  }
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .volki {
    width: 350px;
    top: inherit;
    bottom: 0px;
  }
  h2 {
    font-size: 36px;
  }
  .story {
    padding-bottom: 200px;
  }
}
.category {
  border-radius: 60px;
  background: #151515;
  padding: 60px 0px 50px 84px;
  position: relative;
}
.category h2 {
  color: #fff;
}
.category .container {
  padding: 0px;
}
.animals_img {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.content .content_top {
  display: flex;
  gap: 20px;
}
.content {
  margin-top: 30px;
}
.content .block {
  max-width: 350px;
  margin-top: 20px;
}
.content .block .title {
  margin-top: 20px;
  color: #fff;
  font-family: Unbounded;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.content .block .subtitle {
  margin-top: 20px;
  color: #fff;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1040px) {
  .category {
    padding-bottom: 300px;
    padding-left: 10px;
  }
  .animals_img {
    width: 400px;
  }
}
@media (max-width: 825px) {
  .content_top {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .category {
    padding-bottom: 400px;
  }
  .animals_img {
    width: 350px;
  }
}

.asked {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 500px;

  border-radius: 20px;
  background: #151515;
}
@media (max-width: 1060px) {
  .faq-item {
    max-width: 100%;
  }
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-header {
  padding: 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-right: 20px;
}

.chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 4px;
}

.chevron svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 200px;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 20px;
  }
}
.game {
  position: relative;
}
.game .container {
  display: flex;
  justify-content: flex-end;
}
.game .content_game {
  max-width: 745px;
}
.bigCat {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
@media (max-width: 1350px) {
  .game {
    padding-top: 500px;
  }
  .game .container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .bigCat {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .game {
    padding-top: 300px;
  }

  .bigCat {
    width: 350px;
    left: 0px;
    transform: translateX(0%);
  }
}

.footer .footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .footer__content .links {
  display: flex;
  gap: 20px;
}
.footer .footer__content .media {
  display: flex;
  gap: 15px;
}
.footer .footer__content p {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .footer__content .links a {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.categories {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.categories .categories__content {
  max-width: 991px;
}
.categories .container {
  display: flex;
  gap: 30px;
}
.categories__content h2 {
  margin-bottom: 30px;
}
.games {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.games__block {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  gap: 20px;
}
.games__block_second {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 380px;
  max-height: 326px;
  justify-content: flex-end;
}
.games__block_second .game {
  max-height: 153px;
}
.game2 {
  max-width: 180px;
}
.game_link {
  position: relative;
  display: inline-block;
}

.game_link img {
  display: block;
  width: 100%;
  height: auto;
}

.game_link .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* полупрозрачный черный */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  font-size: 1.2em;
  padding: 10px;
}

.game_link a:hover .overlay {
  opacity: 1;
}

.black_block {
  position: relative;
}
.category {
  overflow: hidden;
}
.bigLine {
  position: absolute;
  right: 80px;
  top: -60px;
}
@media (max-width: 1100px) {
  .bigLine {
    display: none;
  }
}
@media (max-width: 991px) {
  .categories .container {
    flex-direction: column;
  }
  .categories .container img {
    width: 200px;
  }
  .games {
    flex-wrap: wrap;
    justify-content: center;
  }
  .categories_main .category .black_block h2 {
    text-align: center;
  }
  .categories .container {
    padding-top: 160px;
  }
}
@media (max-width: 600px) {
  .categories_main .category {
    padding-bottom: 160px;
  }
}

.product {
  margin-top: 80px;
}
.product .container {
  padding-top: 0px;
}
.product .desc {
  width: 100%;
  display: inline-flex;
  padding: 50px 84px 42px 84px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #151515;
}
.product .desc h2 {
  color: #fff;
}
.product .desc .title {
  margin-top: 30px;
  color: #fff;
  font-family: Unbounded;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product .desc .subtitle {
  margin-top: 20px;
  color: #fff;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product .desc .desc__contant {
  display: flex;
  gap: 80px;
}
.product .desc .desc__contant .rigth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .desc .desc__contant .btn {
  width: 255px;
  height: 73px;
  flex-shrink: 0;
}

.product .history {
  margin-top: 80px;
}
.product .history .history__contant_top {
  max-width: 1098px;
}
.product .history .history__contant_top .subtitle {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product .history .title {
  color: #151515;
  font-family: Unbounded;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.product .history .subtitle {
  margin-top: 30px;
}
.product .history .advantages {
  margin-top: 30px;
}
.product .history .advantages .title {
  color: #151515;
  font-family: Unbounded;
  font-size: 18px;
  font-style: normal;
  text-transform: none;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
}
.product .history .advantages .advantages__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.product .history .advantages .advantages_bossy .advantages__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0px;
}
.product .history .advantages .advantages__blocks .block {
  border-radius: 20px;
  background: #151515;

  max-width: 285px;

  padding: 20px;
  justify-content: center;
  align-items: center;
}
.product .history .advantages .advantages__blocks .block .title {
  color: #fff;
  font-family: Unbounded;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 0;
}
.product .history .advantages .advantages__blocks .block .subtitle {
  color: #fff;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product .history .advantages .btn {
  width: 255px;
  height: 73px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .links {
    flex-direction: column;
    text-align: center;
  }
  .desc__contant {
    flex-direction: column;
  }
  .product {
    margin-top: 150px;
  }
  .product .container {
    padding: 5px;
  }

  .product .desc {
    padding: 20px 5px;
  }
  .advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .advantages__blocks {
    justify-content: center;
  }
  .footer p {
    text-align: center;
  }
}

.advantages_bossy {
  display: flex;
  gap: 20px;
}
@media (max-width: 1280px) {
  .advantages_bossy {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .advantages_bossy img {
    width: 100%;
  }
}
.advantages_bossy img {
  max-width: 590px;
  margin: 0 auto;
}

.advantages__blocks_ship {
  flex-direction: column;
}
.advantages__blocks_ship .block_ship p {
  margin-top: 0 !important;
}
.history__contant_ship {
  max-width: 800px;
}
.history_ship {
  position: relative;
}
.img_ship {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
.history_ship .container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1330px) {
  .history__contant_ship {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .img_ship {
    position: absolute;
    top: 0;
    transform: translateY(0);
    left: 0px;
  }
  .history_ship {
    padding-top: 800px;
  }
  .history_papas {
    padding-top: 500px;
  }
  .history__contant_top .title {
    font-size: 38px !important;
  }
}
@media (max-width: 450px) {
  .img_ship {
    width: 100%;
  }
  .history_ship {
    padding-top: 700px;
  }
  .history_ship .container {
    display: block;
  }
}
.stages {
  margin-top: 100px;
  position: relative;
}
.stages .container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.stages_block {
  border-radius: 20px;
  background: #151515;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;

  align-self: stretch;
  color: #fff;
  text-align: left;
}
.stages .title_big {
  color: #151515;
  font-family: Unbounded;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.stages .advantages__blocks {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stages .advantages {
  max-width: 590px;
}
.stages_right {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media (max-width: 1325px) {
  .stages_right {
    top: inherit;
    bottom: 0px;
  }
  .stages .container {
    padding-bottom: 400px;
  }
}
@media (max-width: 1035px) {
  .stages_right {
    top: inherit;
    bottom: 0px;
  }
  .stages .container {
    padding-bottom: 600px;
  }
}
@media (max-width: 665px) {
  .stages_right {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .stages_right {
    width: 100%;
  }
  .stages .container {
    padding-bottom: 400px;
  }
  .history_papas {
    padding-top: 500px;
  }
}
.jacksmith ul li {
  color: #151515;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.history__contant_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .history__contant_wrapper {
    flex-direction: column;
  }
  .shark .advantages__blocks img {
    width: 100%;
  }
}
.advantages__blocks .right {
  margin-bottom: 0;
  margin-top: 0;
}
.advantages__blocks_shark {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}
.advantages__blocks_shark .stages_block p {
  color: #fff !important;
  margin-top: 0 !important;
}
.advantages__blocks_shark .stages_block .subtitle {
  margin-top: 15px !important;
}

.motocross {
  text-align: center;
  margin: 0 auto;
}
.motocross .advantages .advantages__blocks {
  justify-content: center;
}
.motocross .advantages .btn {
  margin: 0 auto;
  margin-top: 30px;
}

.privacy ul,
.terms ul {
  margin-left: 20px;
}
.voron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
.categories .container {
  max-width: 1280px;
  width: 100%;
  justify-content: flex-end;
}
@media (max-width: 1450px) {
  .categories__content {
    padding-top: 300px;
  }
  .voron {
    top: 260px;
    width: 200px;
  }
}
@media (max-width: 991px) {
  .categories__content {
    padding-top: 200px;
  }
  .voron {
    top: 260px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .categories__content {
    padding-top: 200px;
  }
  .voron {
    top: 280px;
    width: 200px;
  }
}
