*,
*::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,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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: "Open Sans", sans-serif;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.header {
  padding: 16px;
  background: #1e6fb8;
}
@media (min-width: 768px) {
  .header {
    padding: 24px 32px;
  }
}

.header__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.header__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  z-index: -10;
  transition: opacity 0.2s ease 0s, visibility 0s 0.2s, z-index 0s 0.2s;
}
@media (min-width: 1100px) {
  .header__content::before {
    display: none;
    visibility: hidden;
    opacity: 0;
    z-index: -10;
  }
}

.header__logo {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.48px;
}

.header__button {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
@media (min-width: 1100px) {
  .header__button {
    display: none;
  }
}

.header-menu__button {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  align-self: flex-end;
}
@media (min-width: 1100px) {
  .header-menu__button {
    display: none;
  }
}

.header-menu {
  position: fixed;
  width: 320px;
  height: 100vh;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  z-index: 200;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, visibility 0s 0.2s;
}
@media (min-width: 500px) {
  .header-menu {
    padding: 24px;
  }
}
@media (min-width: 1100px) {
  .header-menu {
    padding: 0;
    gap: 0;
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0);
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    z-index: 200;
  }
}

.header__content.header__content--menu-open::before {
  transition: visibility 0s 0s, opacity 0.2s ease 0.1s, z-index 0s 0s;
  visibility: visible;
  opacity: 1;
  z-index: 150;
}
@media (min-width: 1100px) {
  .header__content.header__content--menu-open::before {
    display: none;
    visibility: hidden;
    opacity: 0;
    z-index: -10;
  }
}
.header__content.header__content--menu-open .header-menu {
  transition: visibility 0s 0s, opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1100px) {
  .header__content.header__content--menu-open .header-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1100px) {
  .nav {
    flex-direction: row;
  }
}
.nav a {
  position: relative;
  color: #3d3d3d;
}
@media (min-width: 1100px) {
  .nav a {
    color: #fff;
  }
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 100vmax;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
  will-change: transform;
}
.nav a:not(.active):hover::after {
  transform: scaleX(1);
}
.nav a.active {
  font-weight: 700;
}

.footer {
  padding: 16px;
  border-top: 1px solid #1e6fb8;
  background: #e7e7e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer {
    padding: 24px 32px;
  }
}
.footer p {
  max-width: 1200px;
  margin: 0 auto;
  color: #888;
  text-align: center;
  font-size: 14px;
}
.footer .footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-wrap: wrap;
}
.footer .footer__links a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s ease-in-out;
}
.footer .footer__links a:hover {
  color: #333;
}

.footer--main {
  padding-bottom: 130px;
}
@media (min-width: 1200px) {
  .footer--main {
    padding-bottom: 100px;
  }
}

.modal {
  display: none;
  z-index: 1000;
  position: fixed;
  inset: 0;
  padding: 16px;
  background: rgba(220, 220, 220, 0.5);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
}

.modal__content {
  width: 100%;
  overflow-y: auto;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  font-size: 16px;
}
@media (min-width: 550px) {
  .modal__content {
    font-size: 18px;
  }
}
.modal__content ul {
  border: 1px solid rgba(30, 111, 184, 0.5);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-wrap: balance;
}
.modal__content ul li img {
  display: block;
  margin-top: 4px;
  width: 16px;
  height: auto;
  min-width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
}
.modal__header button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid #888;
  border-radius: 50%;
}

.about,
.contact {
  padding: 48px 16px;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .about,
  .contact {
    padding: 64px 32px;
  }
}
@media (min-width: 992px) {
  .about,
  .contact {
    align-items: center;
  }
}

.about__content,
.contact__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .about__content,
  .contact__content {
    display: grid;
    grid-template-columns: 384px 1fr;
    gap: 24px;
    align-items: center;
  }
}

.about__title,
.contact__title {
  color: #3d3d3d;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 384px;
}
@media (min-width: 992px) {
  .about__title,
  .contact__title {
    color: #e7e7e7;
  }
}

.about__text,
.contact__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sticky {
  z-index: 50;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px;
  background: #dc2626;
  color: #fff;
}
@media (min-width: 768px) {
  .sticky {
    padding: 24px 32px;
  }
}
.sticky p {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 2.2135416667vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.hero {
  background-image: url("../img/product-section-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 16px;
}
@media (min-width: 768px) {
  .hero {
    padding: 24px 32px;
  }
}

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

.hero__image {
  max-width: 588px;
  width: 100%;
  aspect-ratio: 1/1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__content {
  max-width: 588px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__badge {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 100vmax;
  background: #16a34a;
  color: #fff;
  font-size: clamp(10px, 1.3020833333vw, 12px);
  font-weight: 700;
  line-height: 1.3;
}

.hero__title {
  color: #3d3d3d;
  font-family: "Lora", serif;
  font-size: clamp(32px, 4.8177083333vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.hero__category {
  color: #888;
  font-size: clamp(10px, 1.3020833333vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}

.hero__rating {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__rating span {
  color: #888;
  font-size: 14px;
}

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

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

.text-red {
  color: #dc2626;
}

.text-green {
  color: #16a34a;
}

.hero__price--new {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-wrap: wrap;
}
.hero__price--new p {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
}
.hero__price--new p:last-child {
  text-transform: uppercase;
}

@property --gradient-color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #ed8821;
}
@property --gradient-color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #cd6f0f;
}
.btn {
  --gradient-color-1: #ed8821;
  --gradient-color-2: #cd6f0f;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  background: linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
  box-shadow: 0 2px 8px 0 rgba(237, 136, 33, 0.45);
  padding: 22px;
  outline: 2px solid #fff;
  outline-offset: -8px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-wrap: balance;
  transition: --gradient-color-1 0.3s ease-in-out, --gradient-color-2 0.3s ease-in-out, transform 0.3s ease-in-out;
  will-change: --gradient-color-1, --gradient-color-2, transform;
}
.btn:hover {
  --gradient-color-1: #ed8821;
  --gradient-color-2: #ed8821;
}
.btn:active {
  transform: scale(0.97);
}
@media (min-width: 768px) {
  .btn {
    padding: 30px 38px;
  }
}

.tabs__nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.tabs__nav-item {
  padding: 10px 10px 14px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  will-change: transform;
  transform: translateY(4px);
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
}
.tabs__nav-item.active {
  transform: translateY(0);
  border-color: #1e6fb8;
  background-color: #f6f6f6;
}
.tabs__nav-item:hover {
  background-color: #f6f6f6;
}

.tabs__container {
  position: relative;
  z-index: 2;
  display: none;
}
.tabs__container.active {
  display: block;
}

.reviews__wrapper {
  background: #f6f6f6;
  padding: 48px 16px;
}
@media (min-width: 768px) {
  .reviews__wrapper {
    padding: 64px 32px;
  }
}

.reviews__form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.6041666667vw, 24px);
}
.reviews__form h2 {
  font-family: "Lora", serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}
.reviews__form.hidden {
  display: none;
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__rating p {
  color: #888;
  font-size: 14px;
}

.stars-buttons {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #dad2af;
  transition: color 0.2s ease;
}
.stars-buttons label {
  cursor: pointer;
}
.stars-buttons label img {
  width: 17.243px;
  height: 16.497px;
  min-width: 17.243px;
  min-height: 16.497px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.stars-buttons:has(input[value="5"]:checked) label.rating-button-5,
.stars-buttons:has(input[value="5"]:checked) label.rating-button-4,
.stars-buttons:has(input[value="5"]:checked) label.rating-button-3,
.stars-buttons:has(input[value="5"]:checked) label.rating-button-2,
.stars-buttons:has(input[value="5"]:checked) label.rating-button-1 {
  color: #f4d255;
}
.stars-buttons:has(input[value="4"]:checked) label.rating-button-4,
.stars-buttons:has(input[value="4"]:checked) label.rating-button-3,
.stars-buttons:has(input[value="4"]:checked) label.rating-button-2,
.stars-buttons:has(input[value="4"]:checked) label.rating-button-1 {
  color: #f4d255;
}
.stars-buttons:has(input[value="4"]:checked) label.rating-button-5 {
  color: #dad2af;
}
.stars-buttons:has(input[value="3"]:checked) label.rating-button-3,
.stars-buttons:has(input[value="3"]:checked) label.rating-button-1,
.stars-buttons:has(input[value="3"]:checked) label.rating-button-2 {
  color: #f4d255;
}
.stars-buttons:has(input[value="3"]:checked) label.rating-button-4,
.stars-buttons:has(input[value="3"]:checked) label.rating-button-5 {
  color: #dad2af;
}
.stars-buttons:has(input[value="2"]:checked) label.rating-button-2,
.stars-buttons:has(input[value="2"]:checked) label.rating-button-1 {
  color: #f4d255;
}
.stars-buttons:has(input[value="2"]:checked) label.rating-button-3,
.stars-buttons:has(input[value="2"]:checked) label.rating-button-4,
.stars-buttons:has(input[value="2"]:checked) label.rating-button-5 {
  color: #dad2af;
}
.stars-buttons:has(input[value="1"]:checked) label.rating-button-2,
.stars-buttons:has(input[value="1"]:checked) label.rating-button-3,
.stars-buttons:has(input[value="1"]:checked) label.rating-button-4,
.stars-buttons:has(input[value="1"]:checked) label.rating-button-5 {
  color: #dad2af;
}
.stars-buttons:has(input[value="1"]:checked) label.rating-button-1 {
  color: #f4d255;
}

.reviews__textarea {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__textarea label {
  color: #888;
  font-size: 14px;
}
.reviews__textarea textarea {
  width: 100%;
  resize: none;
  overflow-y: auto;
  height: 96px;
  border-radius: 8px;
  border: 1px solid #d1d1d1;
  background: #fff;
  padding: 16px;
}

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

.reviews__input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__input label {
  color: #888;
  font-size: 14px;
}
.reviews__input input {
  height: 40px;
  padding: 0px 8px;
  border-radius: 8px;
  border: 1px solid #d1d1d1;
  background: #fff;
}

.reviews__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 600px) {
  .reviews__controls {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.reviews__button {
  order: 2;
  border-radius: 8px;
  border: 1px solid #1e6fb8;
  background-color: #fff;
  padding: 8px 16px;
  color: #1e6fb8;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
.reviews__button:hover {
  background-color: #f6f6f6;
}
@media (min-width: 600px) {
  .reviews__button {
    order: 1;
  }
}

.reviews__checkbox {
  order: 1;
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .reviews__checkbox {
    order: 2;
  }
}

.reviews__checkbox label {
  font-size: 14px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__checkbox-box {
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
  will-change: border-color;
}
.reviews__checkbox-box svg {
  width: 6px;
  height: 8px;
  color: transparent;
  transition: color 0.2s ease;
  will-change: color;
}
.reviews__checkbox-box:hover svg {
  color: #888;
}

.reviews__checkbox input[type=checkbox]:checked + label .reviews__checkbox-box {
  border-color: #1e6fb8;
}
.reviews__checkbox input[type=checkbox]:checked + label .reviews__checkbox-box svg {
  color: #1e6fb8;
}

.reviews__success {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.reviews__success img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.reviews__success p {
  font-family: "Lora", serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}
.reviews__success.hidden {
  display: none;
}

.description {
  padding: 48px 16px 32px;
  background: #f6f6f6;
}
@media (min-width: 768px) {
  .description {
    padding: 64px 32px 48px;
  }
}

.description__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .description__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
  }
}

.description__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .description__content {
    gap: 24px;
  }
}

.description__image {
  width: 100%;
  max-width: 588px;
  aspect-ratio: 1/1;
}
.description__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.h2 {
  font-family: "Lora", serif;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.specifications {
  padding: 32px 16px;
  background-image: url("../img/specification-and-when-use-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .specifications {
    padding: 48px 32px;
  }
}

.specifications__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .specifications__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.specifications__box {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid #d1d1d1;
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .specifications__box {
    padding: 32px;
  }
}

.specifications__box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.bullet {
  width: 4px;
  height: 4px;
  min-width: 4px;
  min-height: 4px;
  border-radius: 50%;
  background-color: #3d3d3d;
}

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

.text-section--gray {
  background: #f6f6f6;
}

.text-section--white {
  background: #fff;
}

.text-section__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .text-section__container {
    gap: 24px;
  }
}

.text-section__container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section__container ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials {
  padding: 32px 16px;
  background: #ebf0f4;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 48px 32px;
  }
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 992px) {
  .testimonials__container {
    gap: 24px;
  }
}
.testimonials__container .h2 {
  text-align: center;
}
.testimonials__container .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.testimonials__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
}

.testimonials__item {
  max-width: 384px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonials__item p {
  text-wrap: balance;
}

.testimonials__author {
  color: #1e6fb8;
  font-weight: 700;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 16px 8px;
  border-left: 8px solid #1e6fb8;
}
.quote p:first-child {
  color: #3d3d3d;
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
.quote p.font-bold {
  font-size: clamp(18px, 2.6041666667vw, 20px);
}
@media (min-width: 768px) {
  .quote {
    padding: 16px 0 16px 24px;
  }
}

.font-bold {
  font-weight: 700;
}

.img-wrapper {
  padding-top: 24px;
  max-width: 860px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.features-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features-item h3 {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-section .btn-wrapper {
  padding: 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-section .btn-wrapper .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.section-wrapper {
  background-image: url("../img/faq-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item h3 {
  color: #1e6fb8;
  font-family: "Lora", serif;
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}
.faq-item p {
  border-radius: 8px;
  background: #f6f6f6;
  padding: 16px;
}/*# sourceMappingURL=style.css.map */