@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Marck+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'BebasNeueCyrillic';
  src: url('fonts/bebasneuecyrillic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #ebb0be;
  --text: #373737;
  --back: #f4f4f4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-size: 20px;
  color: var(--text);
  min-height: 200vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'BebasNeueCyrillic', serif;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav {
  background: #f4f4f4;
  color: var(--text);
  border-bottom: 1px solid #00000010;
  position: sticky;
  top: 0;
  z-index: 300;
}
.nav-wrap {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
}
.logo img {
  max-width: 290px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu li {
  position: relative;
}
.menu.menu--left > li + li,
.menu.menu--right > li + li {
  padding-left: 20px;
}
.menu.menu--left > li + li::before,
.menu.menu--right > li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4em;
  background: currentColor;
  opacity: 0.3;
}
.menu--left {
  justify-content: flex-start;
  justify-self: start;
}
.menu--right {
  justify-content: flex-end;
  justify-self: end;
}

.site-nav a {
  color: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}
.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  position: relative;
  padding-right: 18px;
}
.dropdown-toggle::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 41%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-55%) rotate(45deg);
  transition: transform 0.25s ease;
}
.has-dropdown:hover .dropdown-toggle::after,
.has-dropdown.open .dropdown-toggle::after {
  top: 50%;
  transform: translateY(-45%) rotate(225deg);
}
.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  min-width: 360px;
  background: #fff;
  border: 1px solid #00000014;
  box-shadow: 0 14px 40px #00000018;
  border-radius: 14px;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}
.has-dropdown:hover > .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.dropdown li {
  padding: 0;
}
.dropdown a {
  display: block;
  padding: 20px 15px;
  font-weight: 500;
  white-space: normal;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: none;
}
.dropdown a::first-letter {
  text-transform: uppercase;
}
.dropdown a::marker {
  color: var(--accent);
  font-size: 30px;
}
.dropdown a {
  position: relative;
}
.dropdown a::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--accent);
  font-weight: 800;
}
.dropdown a {
  padding-left: 32px;
}
.dropdown a:hover {
  background: #00000007;
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 48px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: currentColor;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle span:nth-child(1) {
  top: 12px;
  width: 28px;
}
.nav-toggle span:nth-child(2) {
  top: 20px;
  width: 18px;
}
.nav-toggle span:nth-child(3) {
  top: 28px;
  width: 12px;
}
.is-open .nav-toggle span:nth-child(1) {
  top: 20px;
  width: 28px;
  transform: translateX(-50%) rotate(45deg);
}
.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.is-open .nav-toggle span:nth-child(3) {
  top: 20px;
  width: 28px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
  z-index: 400;
  background-color: #fff;
}
.is-open .mobile-panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #00000010;
}
.mobile-logo img {
  width: 180px;
  display: block;
}
.nav-close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  color: var(--text);
  position: absolute;
}
.nav-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: 0.25s;
}
.mobile-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nav-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-body {
  flex: 1;
  overflow: auto;
  padding: 14px 20px 28px;
}
.mnav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mnav > li > a,
.mdd-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text);
  padding: 15px 5px;
  border-bottom: 1px solid #00000014;
}
.mdd-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.mdd-toggle i {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.mdd-toggle i::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-55%) rotate(45deg);
  transition: transform 0.25s ease;
}
.mhas-dropdown.open .mdd-toggle i::after {
  transform: translateY(-45%) rotate(225deg);
}
.mdropdown {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
  width: 88%;
}
.mhas-dropdown.open .mdropdown {
  grid-template-rows: 1fr;
}
.mdropdown > li > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0 12px 40px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  position: relative;
}

.mdropdown > li > a::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  font-weight: 800;
}
@media (max-width: 1120px) {
  .logo img {
    max-width: 180px;
  }
}
@media (max-width: 1048px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }
  .is-open .nav-wrap {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    order: -1;
  }
  .menu {
    display: none;
  }
  .site-nav {
    background-color: white;
  }
  .logo {
    margin: auto;
  }
  .mdd-toggle i {
    display: none;
  }
}
.header {
  width: 100%;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 75%,
      rgba(255, 255, 255, 0.95) 95%,
      #fff 100%
    ),
    url('images/header-back.png');
  background-size: cover;
  background-position: 80%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
  min-height: 100vh;
}

header h1 {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}

.hero-box h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-box {
  position: relative;
  max-width: 600px;
  width: min(92vw, 600px);
  padding: 50px 42px 50px;

  text-align: center;
  isolation: isolate;
}
.hero-box::before {
  content: '';
  position: absolute;
  inset: 16px;
  background: linear-gradient(var(--text) 0 0) left top/180px 2px no-repeat,
    linear-gradient(var(--text) 0 0) left top/2px 180px no-repeat,
    linear-gradient(var(--text) 0 0) right bottom/180px 2px no-repeat,
    linear-gradient(var(--text) 0 0) right bottom/2px 180px no-repeat;
  opacity: 0.22;
}
.hero-box img {
  max-width: 450px;
  margin-bottom: 20px;
}
.hero-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.hero-title span {
  font-size: 70px;
  color: var(--accent);
  font-family: 'Great Vibes', cursive;
  font-weight: 100;
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 22px;
}
.main-btn {
  display: inline-block;
  padding: 15px 20px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border-radius: 0;
  border: 0;
  box-shadow: 0 10px 24px rgba(235, 176, 190, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tg-btn {
  --bg: var(--accent);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font: 700 12px/1.1 'Montserrat', system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(235, 176, 190, 0.35);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.tg-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(235, 176, 190, 0.45);
}
.tg-btn:active {
  transform: translateY(0);
  filter: saturate(0.96);
}
.tg-btn b {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.tg-ico {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.tg-ico::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(6% 44%, 95% 7%, 69% 94%, 55% 58%, 30% 72%, 41% 49%);
}
@media (max-width: 560px) {
  .tg-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
  .tg-btn b {
    display: none;
  }
}
.ig-btn {
  --bg: var(--accent);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font: 700 12px/1.1 'Montserrat', system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(235, 176, 190, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.ig-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(235, 176, 190, 0.45);
}
.ig-btn:active {
  transform: translateY(0);
  filter: saturate(0.96);
}
.ig-btn b {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ig-ico {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.6px solid currentColor;
  border-radius: 5px;
}
.ig-ico::before {
  content: '';
  position: absolute;
  inset: 3.5px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}
.ig-ico::after {
  content: '';
  position: absolute;
  right: 3.3px;
  top: 3.3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 560px) {
  .ig-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
  .ig-btn b {
    display: none;
  }
}
.hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(235, 176, 190, 0.45);
}
@media (max-width: 640px) {
  .hero-box {
    padding: 28px 5px;
  }
  .hero-box::before {
    display: none;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-box img {
    max-width: 100vw;
  }
}

@media (max-width: 1048px) {
  .header {
    min-height: 100vh;
    padding: 0;
    background-position: 80%;
  }
}

section h2 {
  font-size: 40px;
  line-height: 1;
}

section h2 span {
  font-size: 37px;
  color: var(--accent);
  display: inline-flex;
  font-family: 'Montserrat', sans-serif;
}

#about {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 50px 180px;
  min-height: 100vh;
  background-color: var(--back);
  margin-top: -200px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1320px;
  margin: 50px auto;
  position: relative;
  padding-bottom: 100px;
  padding-right: 50px;
}
.about-container img {
  max-width: 600px;
}

section .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}

section .text p span {
  color: var(--accent);
  font-weight: 600;
}

.about-container::before {
  content: '';
  position: absolute;
  inset: 16px;
  background: linear-gradient(var(--text) 0 0) right bottom/180px 2px no-repeat,
    linear-gradient(var(--text) 0 0) right bottom/2px 180px no-repeat;
  opacity: 0.22;
}

@media (max-width: 1048px) {
  #about::before {
    inset: 12px;
    background: linear-gradient(var(--text) 0 0) left top / 56px 1px no-repeat,
      linear-gradient(var(--text) 0 0) left top / 1px 56px no-repeat,
      linear-gradient(var(--text) 0 0) right bottom / 56px 1px no-repeat,
      linear-gradient(var(--text) 0 0) right bottom / 1px 56px no-repeat;
  }
  .about-container {
    flex-direction: column;
  }
  .about-container img {
    max-width: 98vw;
    margin-bottom: 30px;
  }
  section h2 {
    font-size: 30px;
  }
  section h2 span {
    font-size: 20px;
  }
  section .text {
    padding: 15px;
  }
  p {
    font-size: 18px;
  }
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --sep: #37373722;
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
  z-index: 100;
  background-image: linear-gradient(
    to top,
    #fff 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 0) 85%
  );

  padding: 50px 30px 70px;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 28px;
  margin-bottom: 40px;
}

.service-block {
  padding: 22px 32px;
}

.service-block.with-line {
  border-right: 1px solid var(--sep);
}

.services-wrapper > .service-block:nth-child(3n) {
  border-right: none;
}

.service-block h3 {
  margin-bottom: 10px;
  line-height: 1.2;
  min-height: 2.3em;
  color: var(--accent);
}
.service-block p {
  text-align: center;
}

@media (max-width: 1100px) {
  .services-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-wrapper > .service-block {
    border-right: 1px solid var(--sep);
  }
  .services-wrapper > .service-block:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 0 15px 60px;
    margin: 0;
  }
  .services-wrapper {
    grid-template-columns: 1fr;
    border-left: none;
    row-gap: 18px;
  }
  .services-wrapper > .service-block {
    border-right: none;
  }
  .service-block {
    padding: 0;
    margin-bottom: 20px;
  }
  .service-block h3 {
    min-height: auto;
  }
}

.consult {
  position: relative;
  padding: 0 20px 80px;
  width: 100%;
  background-image: linear-gradient(
      to top,
      rgba(244, 244, 244, 0) 0%,
      rgba(244, 244, 244, 0) 70%,
      rgba(244, 244, 244, 1) 95%,
      rgba(244, 244, 244, 1) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(244, 244, 244, 0) 90%,
      rgba(255, 255, 255, 1) 100%
    ),
    url('images/roses-left.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.consult-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.consult-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 100px;
}
.consult-intro img {
  width: 100%;
  height: auto;
  display: block;
}
.consult-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.consult-text h2 {
  margin-bottom: 10px;
}
.consult-text p {
  max-width: 560px;
  text-align: center;
  margin: 20px;
}

@media (max-width: 1048px) {
  .consult-intro {
    grid-template-columns: 1fr;
  }
  .consult-text p {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .consult--flowers::before {
    display: none;
  }
  .consult {
    padding: 60px 15px;
  }
}

.consult-tabs {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.consult-tab {
  background: #fff;
  border: 1.5px solid #00000012;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  backdrop-filter: saturate(1.05);
}
.consult-tab.is-open {
  border-color: rgba(235, 176, 190, 0.6);
  box-shadow: 0 22px 48px rgba(235, 176, 190, 0.28),
    0 8px 22px rgba(0, 0, 0, 0.06);
}
.consult-tab-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(
    180deg,
    rgba(235, 176, 190, 0.08),
    rgba(235, 176, 190, 0)
  );
  border: 0;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  transition: filter 0.2s ease, background 0.2s ease;
}
.consult-tab-head:hover {
  filter: saturate(1.05);
  background: linear-gradient(
    180deg,
    rgba(235, 176, 190, 0.12),
    rgba(235, 176, 190, 0.02)
  );
}
.consult-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: radial-gradient(
    circle at 50% 45%,
    rgba(235, 176, 190, 0.28),
    rgba(235, 176, 190, 0.1) 60%,
    transparent 61%
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(235, 176, 190, 0.22);
}
.consult-icon svg {
  width: 36px;
  height: 36px;
}
.consult-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  flex: 1;
  font-size: 22px;
  line-height: 1.1;
}
.consult-arrow {
  width: 16px;
  height: 16px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.2s ease;
  opacity: 0.8;
}
.consult-tab.is-open .consult-arrow {
  transform: rotate(225deg);
  opacity: 1;
}
.consult-tab-body {
  height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: height 0.38s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease,
    transform 0.25s ease;
  opacity: 0;
  transform: translateY(-8px);
}
.consult-tab.is-open .consult-tab-body {
  opacity: 1;
  transform: translateY(0);
}
.consult-tab-body > p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 20px 20px 20px;
}
.consult-chips {
  margin: 10px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(235, 176, 190, 0.6);
  background: linear-gradient(
    180deg,
    rgba(235, 176, 190, 0.16),
    rgba(235, 176, 190, 0.06)
  );
  font: 700 13px/1 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  color: #3f3f3f;
  box-shadow: 0 6px 16px rgba(235, 176, 190, 0.18);
}
.consult-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 18px;
}
.subcard {
  border: 1px solid #00000010;
  border-radius: 16px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #fff, rgba(235, 176, 190, 0.05));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.subcard h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 800;
  font-size: 18px;
  text-align: left;
  margin-bottom: 8px;
  color: var(--text);
}
.subcard p {
  font-size: 17px;
  line-height: 1.65;
  color: #4a4a4a;
}
@media (max-width: 1048px) {
  .consult-title {
    font-size: 20px;
  }
  .consult-subgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .consult-icon {
    width: 44px;
    height: 44px;
  }
  .consult-icon svg {
    width: 32px;
    height: 32px;
  }
  .consult-tab-head {
    padding: 20px 18px;
  }
  .consult-tab-body {
    padding: 0 18px;
  }
  .consult-title {
    font-size: 19px;
  }
  .consult-tab-body > p {
    font-size: 17px;
  }
  .subcard h4 {
    font-size: 17px;
  }
  .subcard p {
    font-size: 16px;
  }
}

.certs {
  position: relative;
  padding: 20px 120px 70px;
  background: #fff;
}
.head {
  max-width: 900px;
  margin: 60px auto 16px;
  text-align: center;
}
.head h2 {
  margin-bottom: 8px;
}
.lead {
  color: #666;
  font-size: 28px;
  max-width: 760px;
  margin: 40px auto;
}

.certs-carousel {
  position: relative;
  max-width: 1200px;
  margin: 12px auto 0;
}
.certs-viewport {
  position: relative;
  overflow: visible;
  perspective: 1200px;
  padding: 46px 0 64px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.certs-track {
  position: relative;
  list-style: none;
  height: clamp(240px, 48vw, 440px);
}
.certs-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(240px, 56vw, 560px);
  aspect-ratio: 4/3;
  transform: translate3d(-50%, 0, 0);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease, filter 0.35s ease;
  will-change: transform;
  z-index: 1;
  opacity: 0.85;
}
.certs-slide.is-active {
  z-index: 30;
  opacity: 1;
}
.certs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18),
    0 6px 20px rgba(235, 176, 190, 0.25);
  border: 1px solid #00000010;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.certs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(235, 176, 190, 0.45);
  cursor: pointer;
  z-index: 40;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.certs-btn.prev {
  left: -6px;
}
.certs-btn.next {
  right: -6px;
}

.certs-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: #fff;
  clip-path: polygon(30% 50%, 70% 20%, 70% 80%);
  transform: rotate(180deg);
}
.certs-btn.next::before {
  transform: none;
}

.certs-btn:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 34px rgba(235, 176, 190, 0.55);
  filter: saturate(1.05);
}
.certs-btn:active {
  transform: translateY(-50%) scale(0.98);
  box-shadow: 0 10px 20px rgba(235, 176, 190, 0.5);
}
.certs-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(235, 176, 190, 0.85);
}
@media (max-width: 1048px) {
  .certs-btn.prev {
    left: 4px;
  }
  .certs-btn.next {
    right: 4px;
  }
}
@media (max-width: 560px) {
  .certs-btn {
    width: 40px;
    height: 40px;
  }
}

.certs-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.certs-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d7d7d7;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.certs-dot[aria-selected='true'] {
  background: var(--accent);
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(235, 176, 190, 0.15);
}

.certs-progress {
  height: 4px;
  background: #00000010;
  border-radius: 999px;
  overflow: hidden;
  margin: 14px auto 0;
  max-width: 680px;
}
.certs-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(235, 176, 190, 0.45);
}

@media (max-width: 560px) {
  .certs {
    padding: 0 15px;
  }
  .certs-viewport {
    padding: 34px 0 48px;
  }
}

.products-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 34px;
  max-width: 1200px;
  margin: auto;
}

.products-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.products-list.bg .product-item {
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 75%,
      rgba(255, 255, 255, 0.95) 95%,
      #fff 100%
    ),
    url(images/header-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.product-item img {
  max-width: 600px;
}

.product-item h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.product-item h4 {
  font-size: 30px;
}

.product-item p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.product-item p span {
  text-transform: uppercase;
}

#products {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  margin-top: 100px;
}

#products .blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

#products .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(60px);
  animation: float 12s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.products-list ul {
  list-style: none;
  padding: 0;
  margin: auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.products-list ul::before {
  content: '';
  position: absolute;
  inset: -12%;
  z-index: 0;
  background: radial-gradient(
    60% 60% at 30% 40%,
    #d3eaff 0%,
    rgba(211, 234, 255, 0.85) 25%,
    rgba(211, 234, 255, 0.5) 45%,
    rgba(211, 234, 255, 0.18) 70%,
    transparent 100%
  );
  filter: blur(48px) saturate(1.05);
  border-radius: 28%;
  pointer-events: none;
}
.products-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.6;
  color: #444;
}
.products-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 2.2rem;
  height: 2.2rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><defs><radialGradient id='g1' cx='30%25' cy='30%25' r='70%25'><stop offset='0' stop-color='%23fff5f7'/><stop offset='0.5' stop-color='%23ffd2df'/><stop offset='1' stop-color='%23ff8fb3'/></radialGradient><radialGradient id='g2' cx='40%25' cy='50%25' r='60%25'><stop offset='0' stop-color='%23ffeef2'/><stop offset='1' stop-color='%23ff5f9a'/></radialGradient></defs><path d='M32 10c8 0 12 6 14 9 3 4 6 10 2 16-4 6-12 9-16 9s-12-3-16-9c-4-6-1-12 2-16 2-3 6-9 14-9z' fill='url(%23g1)'/><path d='M26 22c4-6 12-8 18-4 6 4 6 10 2 14-4 5-12 6-16 6s-10-2-12-8c-2-6 0-8 8-8z' fill='url(%23g2)'/><path d='M32 30c2 0 4 1 5 2 1 1 1 3 0 4-1 1-3 2-5 2s-4-1-5-2c-1-1-1-3 0-4 1-1 3-2 5-2z' fill='%23fff7f9' opacity='0.95'/></svg>")
    no-repeat center/contain;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.28s;
  filter: drop-shadow(0 6px 12px rgba(214, 81, 131, 0.12));
}
.products-list li:hover::before {
  transform: translateY(-4px) scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 10px 18px rgba(214, 81, 131, 0.18));
}

.cards {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 30px 150px;
  max-width: 1320px;
}
.cards .card {
  position: relative;
  display: flex;

  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  min-height: 220px;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s;
}
.cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.1);
}
.cards .media {
  height: 400px;
  width: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(235, 176, 190, 0.12),
    rgba(235, 176, 190, 0.04)
  );
}
.cards .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}
.cards .body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.cards .label {
  font-family: 'BebasNeueCyrillic', serif;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), #ff7aa2);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  left: 10px;
  min-width: 150px;
  text-align: center;
  margin: auto;
}

.cards h3 {
  font-size: 28px;
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}
.cards h3 .em {
  color: var(--accent);
  font-size: 30px;
  margin-left: 6px;
}
.cards p {
  margin: 6px 0 10px;
  color: #555;
  font-size: 21px;
  text-align: center;
}
.cards p .key {
  color: var(--accent);
  font-weight: 800;
  font-family: 'BebasNeueCyrillic', serif;
}
.cards p b {
  text-transform: uppercase;
  font-weight: 800;
  font-family: 'BebasNeueCyrillic', serif;
}
.cards .cta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1048px) {
  .cards {
    justify-content: center;
  }
  .cards .card {
    width: 100%;
    max-width: 760px;
  }
}
@media (max-width: 640px) {
  .cards .card {
    flex-direction: column;
  }
  .cards .media {
    height: 400px;
    flex: 0 0 auto;
    padding: 20px;
  }
}

#game {
  background: linear-gradient(
    to bottom,
    rgba(244, 244, 244, 1) 0%,
    rgba(244, 244, 244, 1) 80%,
    rgba(244, 244, 244, 0.9) 90%,
    rgba(244, 244, 244, 0) 100%
  );
  padding: 100px 15px;
}

.game-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1320px;
  margin: auto;
}
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s linear;
}
.modal[aria-hidden='false'] {
  pointer-events: auto;
  opacity: 1;
}

.panel {
  width: min(960px, 94%);
  max-height: 86vh;
  overflow: auto;
  background: var(--card);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 28px 90px rgba(10, 8, 20, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(8px);
  transition: transform 0.18s ease;
  background-color: #fff;
}
.modal[aria-hidden='false'] .panel {
  transform: translateY(0);
}

.close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  border-radius: 8px;
}
.close:hover {
  background: #f7f7f7;
}

.panel h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--text);
  font-weight: 800;
}
.panel ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
@media (max-width: 720px) {
  .panel ul {
    grid-template-columns: 1fr;
  }
}
.panel li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fbfafb);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  font-size: 15px;
  color: #333;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

#game .services {
  max-width: 1400px;
}

#game .services-wrapper {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#game .service-block h3 {
  font-size: 28px;
}

#game .service-block img {
  max-height: 300px;
  margin: auto auto 40px;
  display: flex;
}

#game .logo img {
  display: flex;
  width: 100%;
}

#game .services img {
  max-width: 600px;
}
#reviews .certs-carousel {
  max-width: 45vw;
  margin: 24px auto;
  position: relative;
}
@media (max-width: 1048px) {
  #reviews .certs-carousel {
    max-width: 100%;
    padding-inline: 12px;
  }
}
#reviews .certs-viewport {
  perspective: 1200px;
  padding: 36px 0 56px;
}
#reviews .certs-track {
  position: relative;
}
#reviews .certs-slide {
  left: 50%;
  top: 0;
  position: absolute;
  width: 248px;
  aspect-ratio: 9/16;
  transform: translate3d(-50%, 0, 0);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s;
  will-change: transform;
  z-index: 1;
  opacity: 0.9;
}
#reviews .certs-slide img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid #00000010;
  pointer-events: none;
  user-select: none;
}
#reviews .certs-slide.is-active {
  z-index: 40;
  opacity: 1;
}
#reviews .certs-btn {
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(235, 176, 190, 0.45);
}
#reviews .certs-dots {
  margin-top: 18px;
}
#reviews .certs-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
#reviews .certs-dot[aria-selected='true'] {
  transform: scale(1.35);
}
#reviews .certs-progress {
  max-width: 420px;
  margin: 12px auto 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 45vw minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
  max-width: var(--container);
  margin: 24px auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
@media (max-width: 1048px) {
  .reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 0;
  }
}
#reviews .certs-carousel {
  max-width: 100%;
  margin: 0;
}
#reviews .certs-viewport {
  perspective: 1200px;
  padding: 32px 0 56px;
}
#reviews .certs-track {
  height: clamp(260px, 40vw, 420px);
  position: relative;
}
.contacts {
  background: linear-gradient(180deg, #fff, #fff);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-1);
  position: relative;
  align-self: start;
}
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 0;
}
.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(235, 176, 190, 0.03),
    rgba(235, 176, 190, 0.01)
  );
  border: 1px solid rgba(235, 176, 190, 0.06);
}
.contact-label {
  font-weight: 700;
  color: #444;
  font-size: 14px;
}
.contact-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-link:focus {
  outline: 2px solid rgba(235, 176, 190, 0.22);
  outline-offset: 4px;
}
.contacts-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
@media (max-width: 1048px) {
  .contacts-cta {
    justify-content: stretch;
    flex-direction: column;
  }
  .contact-btn {
    width: 100%;
  }
}
.contact-btn {
  font-weight: 800;
}

.contacts {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
  background-image: url(images/contacts-back.png);
  border-radius: 14px;
  padding: 50px;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-width: 600px;
}
.contacts h2 {
  font-size: 23px;
  margin: 30px 0;
  text-align: center;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.contacts h2 span {
  font-size: 20px;
  font-weight: 500;
}
.socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(244, 244, 244, 0.6),
    rgba(255, 255, 255, 0.8)
  );
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease, box-shadow 0.18s;
  min-height: 56px;
  min-width: 300px;
  margin: auto;
}
.social-btn .icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.social-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}
.social-btn .text {
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.social-btn .meta {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  opacity: 0.95;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.social-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1100px) {
  .contacts {
    position: sticky;
    top: 140px;
  }
}
@media (max-width: 1048px) {
  .contacts {
    max-width: 100%;
    padding: 14px;
  }
  .socials {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .social-btn {
    min-height: 64px;
  }
  .social-btn .meta {
    display: none;
  }
}

.contacts .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
}

.social-btn i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 8px;
  color: #fff;
}

.social-btn.instagram i {
  background: #e1306c;
}
.social-btn.facebook i {
  background: #1877f2;
}
.social-btn.telegram i {
  background: #2aabee;
}
.social-btn.viber i {
  background: #6654a3;
}
.social-btn.tiktok i {
  background: #000;
}

.social-btn .text {
  font-weight: 500;
}
.social-btn .meta {
  font-size: 0.85em;
  color: #555;
}

@media (max-width: 1340px) {
  .menu {
    gap: 10px;
  }
  .nav-wrap {
    gap: 0;
    display: inline-flex;

    align-items: center;
    justify-content: space-around;
  }
  .menu.menu--left > li + li,
  .menu.menu--right > li + li {
    padding-left: 10px;
  }
  .logo {
    margin-left: 0;
  }
  .logo img {
    max-width: 225px;
  }
}

@media (max-width: 1048px) {
  .logo {
    margin: auto;
  }
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .about-container::before {
    display: none;
  }
  .about-container {
    padding-bottom: 0;
  }
  .lead {
    font-size: 18px;
  }
  #about {
    padding-bottom: 0;
  }
  .certs-viewport {
    padding-bottom: 0;
  }
  .certs-carousel {
    margin-bottom: 30px;
  }
  .certs-slide img {
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.18),
      0 6px 20px rgba(235, 176, 190, 0.25);
  }
  .tg-btn {
    padding: 14px 7px;
    text-align: center;
  }
  .consult-intro {
    margin-bottom: 50px;
  }
  .chip {
    width: 100%;
  }
  .consult-arrow {
    width: 10px;
    height: 10px;
  }
  .products-top,
  .game-wrapper {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .products-top img,
  .game-wrapper img {
    max-width: 90vw;
    order: 2;
  }
  .products-top .head {
    order: 1;
    margin-top: 0;
  }
  #products {
    min-height: auto;
    margin-top: 0;
  }
  .product-item h3,
  .product-item h4,
  .cards h3,
  .cards h3 .em {
    font-size: 24px;
    margin-bottom: 0px;
    line-height: 1.4;
  }
  .products-list li {
    font-size: 19px;
  }
  .cards {
    padding: 15px;
  }
  .cards .label {
    left: 0;
    line-height: 1;
  }
  .main-btn {
    font-size: 12px;
  }
  .cards .body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .cards p {
    font-size: 19px;
  }
  #game {
    padding-top: 50px;
    padding-bottom: 0;
  }
  #game .services-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }
  .game-text .lead {
    margin-bottom: 0;
  }
  #game .services img {
    margin-bottom: 50px;
    max-width: 90vw;
    order: 2;
  }
  #game .services {
    padding-bottom: 0;
  }
  .contacts {
    min-width: auto;
    width: 98vw;
    margin-top: 30px;
  }
  .social-btn {
    min-width: 100%;
  }
  #reviews .certs-track {
    height: 450px;
  }
  .cards .media {
    width: 100%;
    height: auto;
  }
  .reviews-grid {
    margin-top: 0;
  }
  .reviews-grid h3 {
    margin-top: 0;
  }
  #reviews .certs-slide {
    left: 37%;
  }
  .cards .media img {
    object-fit: contain;
  }
}

#products .consult-wrapper {
  width: 100%;
  margin: 30px 0 0;
  max-width: 100%;
  padding: 100px 0;
}

#products .cards {
  padding: 20px 0;
  margin-bottom: 50px;
}

#products .consult {
  background-image: none;
}

@media (max-width: 1048px) {
  #products .consult-wrapper {
    margin: 0;
  }
  .reviews-grid .lead {
    margin-bottom: 0;
  }
  .products-list {
    display: flex;
    margin: 20px auto 0;
  }
  .lead span {
    display: block;
  }
  .reviews-grid > div {
    width: 100%;
  }
  #products .products-list {
    margin-top: 0;
  }
  #products .cards {
    margin-bottom: 30px;
  }
  .products-list.bg .product-item.pb-0 {
    padding-bottom: 0;
  }
}
