*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 360px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.5;
  color: #262626;
  background-color: #ffffff;
}

.payments {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .payments {
    padding-top: 32px;
    gap: 16px;
  }
}
.payments p {
  color: #888;
  text-align: center;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}
.payments > p {
  text-align: left;
}

.payment-provider__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}
.payment-provider__header p {
  color: #888;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}

.payment-provider__line {
  height: 1px;
  width: 100%;
  background: #888;
  border-radius: 100vmax;
}

@keyframes fade-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  from {
    transform: translateX(-15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  from {
    transform: translateX(15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.topbar {
  width: 100%;
  padding: 8px 32px;
  background: #ffdf20;
  display: none;
}
@media (min-width: 769px) {
  .topbar {
    display: block;
  }
}

.topbar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.topbar__container img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.topbar__container p {
  color: #262626;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.topbar__container p span {
  color: #3590c9;
}

.header {
  padding: 8px 16px;
}
@media (min-width: 769px) {
  .header {
    padding: 16px 32px;
  }
}

.header__container {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__container img {
  width: 142.535px;
  height: 44px;
  min-width: 142.535px;
  min-height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@property --btn-gradient {
  syntax: "<color>";
  inherits: false;
  initial-value: #14bc5f;
}
.btn {
  --btn-gradient: #14bc5f;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--btn-gradient) 0%, #10934b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform-origin: center;
  transform: scale(1);
  transition: --btn-gradient 0.3s ease-in-out, transform 0.3s ease-in-out;
  will-change: --btn-gradient, transform;
  cursor: pointer;
  padding: 16px 8px;
}
@media (min-width: 769px) {
  .btn {
    padding: 24px 16px;
  }
}
.btn:hover {
  --btn-gradient: #10934b;
}
.btn:active {
  transform: scale(0.95);
}
.btn img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.btn span {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  font-size: var(--typography-font-size-button-md, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18px;
}

.btn.btn--header {
  padding: 8px 10px 8px 8px;
}
@media (min-width: 769px) {
  .btn.btn--header {
    padding: 16px;
  }
}
.btn.btn--header span {
  display: none;
}
@media (min-width: 769px) {
  .btn.btn--header span {
    display: block;
  }
}

.hero {
  width: 100%;
  background-color: #f2faff;
}

.hero__container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
@media (min-width: 1200px) {
  .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    justify-content: center;
  }
}

.hero__image {
  width: 100%;
  max-width: 948px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}

.hero__content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__content {
  padding: 16px;
  max-width: 544px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-blue {
  color: #3590c9;
}

.hero__title {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 100ms;
}

.rating {
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 200ms;
}

.rating__number {
  font-size: clamp(18px, 2.8645833333vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.rating__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  align-items: center;
}
.stars img {
  width: 15px;
  height: auto;
  min-width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.rating__text {
  font-size: clamp(10px, 1.5625vw, 12px);
  line-height: 1.2;
}

.hero__divider,
.offer__divider {
  width: 100%;
  height: 1px;
  border-radius: 100vmax;
  background-color: #e7e7e7;
}

.hero__divider {
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 300ms;
}

.hero__list,
.offer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__list li,
.offer__list li {
  display: grid;
  gap: 8px;
  grid-template-columns: 24px 1fr;
}
.hero__list li img,
.offer__list li img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.hero__list li span,
.offer__list li span {
  font-size: clamp(14px, 2.0833333333vw, 16px);
}

.hero__list {
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 400ms;
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 500ms;
}

.prices--old {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prices--old s {
  color: #888;
  font-size: clamp(18px, 2.6041666667vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.discount-badge {
  color: #fff;
  font-size: clamp(18px, 2.6041666667vw, 24px);
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 100vmax;
  background: #d73316;
}

.prices--new {
  color: #d73316;
  font-size: clamp(32px, 4.6875vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.hero .btn {
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
  animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 600ms;
}

.images-carousel {
  background: #001938;
  padding: 16px 0;
}
@media (min-width: 850px) {
  .images-carousel {
    padding: 24px 0;
  }
}

.images-carousel__content {
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.images-carousel__list {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 16px;
  animation: carousel 20s linear infinite;
  animation-play-state: running;
}
@keyframes carousel {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@media (min-width: 850px) {
  .images-carousel__list {
    gap: 24px;
  }
  @keyframes carousel {
    to {
      transform: translateX(calc(-50% - 12px));
    }
  }
}

.images-carousel__item {
  width: clamp(120px, 26.0416666667vw, 240px);
  aspect-ratio: 1/1;
  height: clamp(120px, 26.0416666667vw, 240px);
  border-radius: 8px;
  overflow: hidden;
}
.images-carousel__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.media {
  background: #f2faff;
}

.media__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 1000/607;
  position: relative;
  overflow: hidden;
}
.media__container::before, .media__container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 308px;
  display: none;
}
@media (min-width: 1000px) {
  .media__container::before, .media__container::after {
    display: block;
  }
}
.media__container::before {
  left: -1px;
  background: linear-gradient(90deg, #f2faff 0%, rgba(255, 255, 255, 0) 100%);
}
.media__container::after {
  right: -1px;
  background: linear-gradient(-90deg, #f2faff 0%, rgba(255, 255, 255, 0) 100%);
}
.media__container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.description {
  padding: 16px;
  background: #fff;
  position: relative;
}
@media (min-width: 769px) {
  .description {
    padding: 48px 24px;
  }
}
.description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: clamp(208px, 55.7291666667vw, 646px);
  background: radial-gradient(50% 50% at 50% 50%, #63bbf2 0%, #3590c9 100%);
  z-index: 0;
}

.description__container {
  position: relative;
  z-index: 1;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .description__container {
    gap: 24px;
  }
}

.description__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
  font-size: clamp(32px, 6.25vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .description__title {
    padding: 24px 0;
  }
}

.description__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.description__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .description__content {
    gap: 24px;
    padding: 24px 0;
  }
}
.description__content h3 {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .main.animate-init .description__content :where(h3, p) {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
  }
  .main.animate-init .description__content.in-view h3 {
    animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 100ms;
  }
  .main.animate-init .description__content.in-view p {
    animation: fade-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }
  .main.animate-init .description__content.in-view p:nth-of-type(1) {
    animation-delay: 200ms;
  }
  .main.animate-init .description__content.in-view p:nth-of-type(2) {
    animation-delay: 300ms;
  }
}
.modes {
  padding: 32px 16px 16px;
}
@media (min-width: 768px) {
  .modes {
    padding: 48px 24px 24px;
  }
}

.modes__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  -moz-column-gap: 48px;
       column-gap: 48px;
  max-width: 1110px;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .modes__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }
}

.modes__content {
  max-width: 531px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 850px) {
  .modes__content {
    gap: 24px;
    order: 2;
  }
}

@media (min-width: 850px) {
  .main.animate-init .modes .modes__content {
    opacity: 0;
    transform: translateX(15px);
    will-change: transform, opacity;
  }
  .main.animate-init .modes.in-view .modes__content {
    animation: fade-in-right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 150ms;
  }
}
.modes__title {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.modes__list {
  list-style: disc;
  padding-left: 18px;
}

.modes__video {
  width: 100%;
  max-width: 531px;
  aspect-ratio: 1/1;
}
@media (min-width: 850px) {
  .modes__video {
    order: 1;
  }
}
.modes__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 850px) {
  .main.animate-init .modes .modes__video {
    transform: translateX(-15px);
    opacity: 0;
    will-change: transform, opacity;
  }
  .main.animate-init .modes.in-view .modes__video {
    animation: fade-in-left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 150ms;
  }
}
.size {
  padding: 16px 16px 32px;
}
@media (min-width: 768px) {
  .size {
    padding: 24px 24px 48px;
  }
}

.size__container {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (min-width: 768px) {
  .size__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.size__title {
  max-width: 531px;
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .size__title {
    text-align: left;
  }
}

.size__image {
  width: 100%;
  max-width: 531px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 768px) {
  .main.animate-init .size .size__title {
    opacity: 0;
    transform: translateX(-15px);
    will-change: transform, opacity;
  }
  .main.animate-init .size .size__image {
    opacity: 0;
    transform: translateX(15px);
    will-change: transform, opacity;
  }
  .main.animate-init .size.in-view .size__title {
    animation: fade-in-left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 150ms;
  }
  .main.animate-init .size.in-view .size__image {
    animation: fade-in-right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 150ms;
  }
}
.accessories {
  background-color: #001938;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px;
  max-width: 1110px;
  margin: 0 auto;
  color: #fff;
}
@media (min-width: 768px) {
  .accessories {
    padding: 48px;
    background-image: url("../img/bg-8-koncowek.jpg");
    background-color: #001938;
  }
}
@media (min-width: 1110px) {
  .accessories {
    border-radius: 8px;
  }
}
.accessories > p {
  margin-bottom: 32px;
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .accessories > p {
    margin-bottom: 48px;
  }
}

.accessories__title {
  text-wrap: balance;
  margin-bottom: 16px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .accessories__title {
    margin-bottom: 24px;
    font-size: 56px;
  }
}

.accessories__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 786px) {
  .accessories__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 786px) {
  .main.animate-init .accessories__list .accessories__item {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
  }
}
.accessories__item {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 16px;
}
@media (min-width: 543px) {
  .accessories__item {
    display: grid;
    grid-template-columns: 239.5px 1fr;
    align-items: center;
  }
}
@media (min-width: 786px) {
  .accessories__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 1110px) {
  .accessories__item {
    display: grid;
    grid-template-columns: 239.5px 1fr;
    align-items: center;
  }
}
.accessories__item img {
  width: 100%;
  max-width: 312px;
  height: auto;
}
@media (min-width: 543px) {
  .accessories__item img {
    max-width: 239.5px;
  }
}
.accessories__item p {
  color: #fff;
}

@media (min-width: 786px) {
  .main.animate-init .accessories__list.in-view .accessories__item {
    animation: fade-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(1) {
    animation-delay: 100ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(2) {
    animation-delay: 200ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(3) {
    animation-delay: 300ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(4) {
    animation-delay: 400ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(5) {
    animation-delay: 500ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(6) {
    animation-delay: 600ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(7) {
    animation-delay: 700ms;
  }
  .main.animate-init .accessories__list.in-view .accessories__item:nth-of-type(8) {
    animation-delay: 800ms;
  }
}
.features {
  padding: 32px 16px 16px;
}
@media (min-width: 768px) {
  .features {
    padding: 24px;
  }
}

.features__container {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (min-width: 850px) {
  .features__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.features__content {
  width: 100%;
  max-width: 531px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 850px) {
  .features__content {
    padding: 16px;
    gap: 24px;
  }
}

.features__image {
  max-width: 499px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.features__title {
  color: #262626;
  text-align: center;
  font-size: clamp(24px, 3.6458333333vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.features__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}
@media (min-width: 768px) {
  .features__badges {
    gap: 16px;
  }
}
.features__badges li {
  width: 100%;
  text-align: center;
  padding: 12px 4px;
  border-radius: 100vmax;
  border: 1px solid #def2ff;
  background: #f2faff;
  color: #3590c9;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 700;
  line-height: 1.5;
}

.features__subtitle {
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.features__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.features__list li {
  width: 100%;
  color: #5d5d5d;
  text-align: center;
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  padding: 4px;
}
.features__list li:not(:first-child) {
  border-bottom: 1px solid #e7e7e7;
}
@media (min-width: 768px) {
  .features__list li {
    padding: 8px 4px;
  }
}

.benefits {
  background: #3590c9;
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .benefits {
    padding: 48px 24px;
  }
}

.benefits__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 475px) {
  .benefits__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .benefits__container {
    gap: 16px;
  }
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 475px) {
  .benefits__item {
    width: 200px;
    min-width: 200px;
  }
}
.benefits__item img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.benefits__item p {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: clamp(15px, 2.0833333333vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.comments {
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .comments {
    padding: 48px 24px;
  }
}

.comments__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 1110px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comments__container {
    gap: 16px;
  }
}

.comments__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comments__header {
    gap: 16px;
  }
}
.comments__header h2 {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.comments__content {
  width: 100%;
  display: column;
  -moz-columns: 1;
       columns: 1;
  gap: 16px;
}
@media (min-width: 490px) {
  .comments__content {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 759px) {
  .comments__content {
    -moz-columns: 3;
         columns: 3;
  }
}

.comment {
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.comment > * {
  width: 100%;
}
.comment img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.comment__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment__content h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.comment__content h3 strong {
  font-size: clamp(12px, 1.8229166667vw, 14px);
  font-weight: 600;
  line-height: 1.3;
}
.comment__content h3 span {
  color: #10934b;
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}
.comment__content p {
  color: #4f4f4f;
  font-size: clamp(12px, 1.8229166667vw, 14px);
  font-weight: 400;
  line-height: 1.4;
}

.offer {
  padding: 32px 16px;
  background: #f2faff;
}

.offer__container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  -moz-column-gap: 48px;
       column-gap: 48px;
  align-items: center;
  max-width: 992px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .offer__container {
    display: grid;
    grid-template-columns: 400fr 544fr;
    align-items: center;
    justify-content: center;
  }
}

.offer__image {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.offer__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 544px;
}

.offer__title {
  font-size: clamp(24px, 3.6458333333vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.btn__wrapper {
  padding: clamp(8px, 1.5625vw, 12px) 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */