@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

.navigation-section {
  position: sticky;
  top: 0;
  z-index: 30;
}

.promotion-block {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  background-color: #003a55;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
}

.navigation-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 5%;
  background-color: white;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 34px;
  color: #d10000;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 25px;
  text-decoration: none;
  align-items: center;
}

.nav-menu li {
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #003a55;
  font-size: 22px;
  position: relative;
  font-weight: 500;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  background: #d10000;
  transform: scaleX(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
  transform: scaleX(1);
}

.nav-menu li a.nav-cta::after {
  display: none;
}

.nav-cta {
  display: inline-block;
  padding: 10px 15px;
  background-color: #d10000;
  color: #fff !important;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.nav-cta:hover {
  background: none;
  color: #d10000 !important;
  border-color: #d10000;
}

@media (max-width: 768px) {
  .promotion-block {
    font-size: 10px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #003a55;
  }

  .nav-menu {
    position: fixed;
    top: 30px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    border-radius: 5px;
    background-color: #fff;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0;
  }

  .nav-cta {
    display: inline-block !important;
    padding: 10px 15px !important;
    background-color: #d10000;
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
  }

  .menu-toggle {
    z-index: 1000;
    position: relative;
    width: 30px;
    height: 24px;
  }

  .menu-toggle span {
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 10px;
  }

  .menu-toggle span:nth-child(3) {
    top: 20px;
  }

  .menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}

.hero-section {
  width: 100%;
  height: auto;
  position: relative;
}

.hero-back {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-title-block {
  position: absolute;
  top: 10%;
  left: 10%;
  color: white;
  max-width: 45%;
}

.hero-title {
  font-size: 64px;
}

.hero-title-block p {
  font-size: 72px;
}

.hero-title-slides {
  position: relative;
  height: 18em;
  overflow: hidden;
}

.hero-title-slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  margin: 0;
}

.hero-title-slide.active {
  opacity: 1;
}

.order-button {
  background-color: white;
  color: #003a55;
  text-decoration: none;
  font-size: 38px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 35px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transition: all 0.9s ease;
}

.order-button:hover {
  background-color: #d10000;
  color: white;
}

.order-button span {
  transition: transform 0.3s ease;
}

.order-button:hover span {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .hero-back {
    height: auto;
  }

  .hero-title-block {
    position: relative;
    top: 0;
    left: 0;
    color: #111;
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-title-block p {
    font-size: 34px;
    font-weight: 700;
  }

  .hero-title-slides {
    position: relative;
    height: 7em;
    overflow: hidden;
  }

  .order-button {
    background-color: #d10000;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    gap: 5px;
  }
}

.container {
  width: 80%;
  margin: auto;
  padding: 5% 0;
}

.ingredients-title {
  font-size: 54px;
  max-width: 80%;
}

.ingredients-flex-block {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

.ingredients-block {
  margin-top: 10%;
  max-width: 700px;
}

.ingredients-block p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15%;
}

.ingredients-button {
  font-size: 28px;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 35px;
  border: 2px solid #003a55;
  color: #003a55;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
}

.ingredients-button:hover {
  background-color: #d10000;
  border: 2px solid transparent;
  color: #fff;
}

.ingredients-button span {
  font-size: 52px;
}

.ingredients-flex-block img {
  flex-shrink: 1;
  width: 45%;
}

.ingredients-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  display: none;
}

.ingredients-list {
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.1);
  width: 35%;
  height: auto;
  padding: 30px 50px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.ingredients-list-title {
  position: relative;
}

.ingredients-list-title::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #003a55;
  position: absolute;
  margin: auto;
  top: 50px;
}

.ingredients-list-title h3 {
  font-size: 26px;
  text-transform: uppercase;
}

.close-ingredients-list {
  position: absolute;
  top: 5px;
  right: -20px;
  background-color: #d10000;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.close-ingredients-list:hover {
  background-color: #ff0000;
  transform: rotate(-90deg);
}

.description-composition {
  margin: 20px auto;
}

.description-composition p {
  margin-bottom: 5px;
}

.composition-table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  border-collapse: collapse;
  margin: 20px auto;
}

.composition-table th,
.composition-table td {
  padding: 5px;
  font-weight: normal;
  border-top: 1px solid #003a55;
}

.composition p {
  margin-bottom: 10px;
}

.expiration-date {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 10px;
  }

  .ingredients-section {
    margin-top: 40px;
  }

  .ingredients-title {
    font-size: 34px;
    max-width: 100%;
  }

  .ingredients-flex-block {
    flex-direction: column-reverse;
  }

  .ingredients-block {
    margin-top: 20px;
    text-align: center;
  }

  .ingredients-block p {
    font-size: 18px;
    margin-bottom: 35px;
    text-align: left;
  }

  .ingredients-button {
    font-size: 18px;
    padding: 5px 10px;
    gap: 10px;
  }

  .ingredients-button span {
    font-size: 28px;
  }

  .ingredients-flex-block img {
    width: 100%;
  }

  .ingredients-list {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 5px;
  }

  .ingredients-list-title::after {
    top: 35px;
  }

  .ingredients-list-title h3 {
    font-size: 20px;
  }

  .close-ingredients-list {
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
  }

  .description-composition {
    margin-top: 15px;
  }

  .description-composition p {
    font-size: 14px;
  }

  .composition-table {
    font-size: 12px;
  }

  .composition p {
    font-size: 14px;
  }
}

.benefits-title {
  font-size: 48px;
}

.benefits-description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.benefits-description p {
  font-size: 1em;
  line-height: 1.1;
  color: #555;
}

.benefits-container {
  width: 100%;
  overflow: hidden;
}

.benefits-container h2,
.benefits-description {
  margin: 20px 5%;
}

.benefits-block {
  width: 100%;
  overflow: visible;
  margin: 30px auto;
}

.benefits-card {
  width: 400px !important;
  height: 500px !important;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.benefits-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits-card-text {
  position: absolute;
  bottom: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  color: #fff;
  width: 100%;
  height: 35%;
}

.benefits-card-text h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.benefits-controls {
  display: flex;
  justify-content: end;
  gap: 18px;
  padding-right: 5%;
}

.benefits-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefits-controls .arrow-btn:hover {
  color: #d10000;
}

@media (max-width: 768px) {
  .benefits-title {
    font-size: 34px;
  }

  .benefits-container h2,
  .benefits-description {
    margin: 20px 10px;
  }

  .benefits-block {
    margin: 15px auto;
  }

  .benefits-card {
    width: 95% !important;
    height: 500px !important;
  }

  .benefits-card-text {
    padding: 10px;
    width: 100%;
    height: 30%;
  }

  .benefits-card-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .benefits-card-text p {
    font-size: 16px;
  }

  .benefits-controls {
    justify-content: center;
    gap: 200px;
  }
}

.experts-section {
  margin: 90px auto;
}

.experts-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 20px auto;
}

.experts-title {
  font-size: 48px;
}

.experts-flex p {
  font-size: 1.15em;
  line-height: 1.1;
  color: #555;
}

.experts-slider {
  width: 80%;
  margin: 0 auto;
}

.swiper-experts {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  border-radius: 5px;
}
.card-experts {
  background: #fff;
  border-radius: 5px;
}
.image-experts {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 5px;
}
.name-expert {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.expert-description {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
}
.card-experts p:last-child {
  font-size: 1.05em;
  line-height: 1.5;
}

.expertsSwiper {
  overflow: hidden;
  border-radius: 5px;
}

.expertsThumbs {
  display: none;
  margin-bottom: 10px;
}

.expert-thumb {
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.55;
  cursor: pointer;
}

.expert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertsThumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(211, 95, 0, 0.4);
  outline-offset: 2px;
}

.experts-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}
.experts-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

@media (min-width: 769px) {
  .expertsThumbs {
    display: none;
  }
}

@media (max-width: 768px) {
  .experts-section {
    margin: 50px auto;
  }
  .experts-flex {
    max-width: 100%;
    padding: 10px;
  }
  .experts-title {
    font-size: 34px;
  }
  .swiper-experts {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
  }
  .name-expert {
    font-size: 20px;
    font-weight: 600;
  }
  .expert-description {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
  }
  .card-experts p:last-child {
    font-size: 16px;
    line-height: 1.5;
  }

  .experts-slider {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .expertsThumbs {
    display: block;
    overflow: hidden;
  }

  .experts-controls {
    display: none;
  }
}

.offers-section {
  background-color: #003a55;
  color: white;
}

.offers-block {
  display: grid;
  grid-template-areas:
    "title image"
    "offer image";
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
}

.offers-title {
  grid-area: title;
  font-size: 42px;
  max-width: 600px;
  margin-left: 20%;
  margin-top: 40px;
}

.offer-switch {
  position: relative;
  grid-area: offer;
  height: 400px;
}

.switch-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  margin-left: 20%;
  padding: 10px 0;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  will-change: opacity, transform;
}

.switch-panel.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.switch-panel.is-entering {
  opacity: 0;
  transform: translateY(20px);
}

.switch-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.product-line,
.course-line,
.economy-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.product-line,
.course-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.economy-line {
  margin-bottom: 32px;
}

.product-name,
.course-label,
.economy-label {
  color: #e0e0e0;
  font-size: 15px;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.old-price {
  color: #888;
  font-size: 15px;
  text-decoration: line-through;
}

.new-price,
.economy-value {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.course-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

.cta-button {
  width: 100%;
  background: #f5f5f5;
  color: #1a3a2e;
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button:hover {
  background: #d10000;
  color: #f5f5f5;
}

.back-button {
  width: 100%;
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.back-button:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 100px;
  justify-content: center;
}

.benefits li {
  color: #e0e0e0;
  font-size: 14px;
}

.order-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
}

.order-form-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row:last-of-type {
  border-bottom: none;
}

.field-label {
  display: block;
  color: #e0e0e0;
  font-size: 14px;
  margin: 0 0 8px;
  font-weight: 400;
}

.order-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.order-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.order-input:focus {
  border-color: rgba(245, 245, 245, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.form-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.35;
}

.offers-image {
  grid-area: image;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .offers-block {
    grid-template-areas:
      "title"
      "image"
      "offer";
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .offers-title {
    font-size: 32px;
    max-width: 100%;
    margin: 30px auto;
    padding: 0 10px;
  }

  .offer-switch {
    height: 510px;
    margin-top: 10px;
  }

  .switch-panel {
    max-width: 100%;
    margin: 30px auto;
    padding: 0 10px;
  }

  .product-name,
  .course-label {
    font-size: 14px;
    max-width: 180px;
  }

  .old-price {
    font-size: 13px;
  }

  .new-price {
    font-size: 16px;
  }
}
.quality-section {
  position: relative;
}

.section-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.content-column {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 20%;
  margin-top: 50px;
}

.section-heading {
  font-size: 38px;
  margin-bottom: 30px;
}

.content-block {
  margin-bottom: 20px;
}

.content-block p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.accordion {
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 2rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0;
  padding-bottom: 0;
}

.accordion-text p {
  margin-bottom: 10px;
}

.accordion-text li {
  list-style: inside;
  margin-bottom: 5px;
}

.accordion-content.active {
  margin-bottom: 10px;
}

.image-column {
  position: relative;
}

.quality-image {
  width: 100%;
  height: auto;
}

.quality-image.is-fixed {
  position: fixed;
  top: 100px;

  width: 50%;
  z-index: 5;
}

.image-placeholder {
  width: 100%;
  height: 0;
  visibility: hidden;
}

.image-placeholder.active {
  height: auto;
}

.how-to-use-section,
.reviews-section,
.faq-section {
  position: relative;
  z-index: 10;
  background: white;
}

.how-to-use-content {
  margin: 0 10%;
}

.how-to-use-content h2 {
  font-size: 3em;
  margin-bottom: 10px;
  font-weight: 700;
}

.how-to-use-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
}

.hts-text {
  width: 50%;
  font-size: 1.15em;
  line-height: 1.8;
  color: #555;
}

.hts-text p {
  margin-bottom: 15px;
}

.how-to-use-image-block {
  width: 50%;
  text-align: center;
}
.how-to-use-image {
  width: 600px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .how-to-use-content {
    margin: 0 10px;
  }

  .how-to-use-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
  }

  .how-to-use-flex {
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }

  .hts-text {
    width: 100%;
  }

  .how-to-use-image-block {
    width: 100%;
  }

  .how-to-use-image {
    width: 100%;
  }
}

@media (max-width: 1440px) {
  .quality-image.is-fixed {
    right: 40px;
    width: calc((100vw - 80px) / 2 - 40px);
  }
}

@media (max-width: 1024px) {
  .section-heading {
    font-size: 32px;
  }
  .section-inner {
    grid-template-columns: 1fr;
  }

  .image-column {
    order: -1;
  }

  .content-column {
    order: 1;
    margin-left: 0;
    padding: 10px;
  }

  .quality-image.is-fixed {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
  }
}

.reviews-section {
  padding-bottom: 70px;
}

.reviews-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 0 auto 20px;
  padding-top: 70px;
}

.reviews-title {
  font-size: 48px;
}

.reviews-flex p {
  font-size: 1.15em;
  line-height: 1.1;
  color: #555;
}

.reviews-slider {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.swiper-reviews {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  border-radius: 5px;
}
.card-reviews {
  background: #fff;
  border-radius: 5px;
}
.image-reviews {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 5px;
}
.name-reviews {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-reviews p:last-child {
  font-size: 1.05em;
  line-height: 1.5;
}

.reviewsSwiper {
  overflow: hidden;
  border-radius: 5px;
}

.reviewsThumbs {
  display: none;
  margin-bottom: 10px;
}

.reviews-thumb {
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.55;
  cursor: pointer;
}

.reviews-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewsThumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(211, 95, 0, 0.4);
  outline-offset: 2px;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.reviews-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

@media (min-width: 769px) {
  .reviewsThumbs {
    display: none;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    margin: 50px auto 0;
    padding-bottom: 20px;
  }
  .reviews-flex {
    max-width: 100%;
    padding: 10px;
  }
  .reviews-title {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .swiper-reviews {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
  }
  .name-reviews {
    font-size: 20px;
    font-weight: 600;
  }

  .card-reviews p:last-child {
    font-size: 16px;
    line-height: 1.5;
  }

  .reviews-slider {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .reviewsThumbs {
    display: block;
    overflow: hidden;
  }

  .reviews-controls {
    display: none;
  }
}

.faq-section-flex {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 150px;
  padding: 70px 0;
}

.title-section {
  width: 100%;
  font-size: 32px;
}

.faq-block {
  max-width: 600px;
}

@media (max-width: 768px) {
  .faq-section-flex {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px 30px;
  }

  .title-section {
    width: 100%;
    font-size: 24px;
  }

  .faq-block {
    max-width: 600px;
  }
}

.footer {
  background-color: #111;
  width: 100%;
  position: relative;
  z-index: 10;
  color: white;
  padding-bottom: 10px;
}

.logo-footer {
  font-size: 28px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer p {
  font-size: 12px;
  width: 1200px;
  margin: auto;
  text-align: center;
}

.logo-footer img {
  width: 100px;
}

.copyrating {
  text-align: center;
  padding: 15px;
}

.copyrating p {
  font-size: 16px;
  margin-bottom: 10px;
}

.copyrating a {
  font-size: 16px;

  color: white;
}

@media (max-width: 768px) {
  .footer p {
    font-size: 12px;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.iti {
  display: block !important;
}
