*,
*::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: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #2a2638;
  --color-grey-darker: #333333;
  --color-grey-light: #d9dddc;
  --color-grey-lighten: #f6f7f9;
  --color-orange: #ff8000;
  --color-red-light: #fff2ef;
  --color-red: #e62e00;
  --color-green-lighter: #eeffd4;
  --color-green: #00af12;
  --color-blue-light: #82adb8;
  --color-blue-lighter: #aedfeb;
  --color-blue-lighten: #ebfbff;
  --color-hyperlink: #0000ff;
  --font-primary: "Lato", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-logo: "Varela Round", sans-serif;
  --font-hyperlink: "Open Sans", sans-serif;
  --font-footer: "Noto Sans", sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-md-plus: 20px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xl-plus: 40px;
  --spacing-xxl: 48px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-xl: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--color-grey-darker);
  background-color: var(--color-grey-lighten);
  margin: 0;
  padding: 0;
}

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}

.advertisement {
  padding: 2px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.advertisement__text {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.42;
  color: var(--color-grey-darker);
}
.advertisement__text a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

.page-wrap {
  width: 100%;
  background-color: var(--color-grey-lighten);
  padding-bottom: var(--spacing-xl);
}

.page {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 0 var(--spacing-lg) var(--spacing-xl-plus);
}

.header {
  padding: var(--spacing-sm) 0;
}

.header__logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 104px;
  gap: 18px;
}

.header__logo-sygnet {
  width: 80px;
  height: 80px;
}

.header__logo-title {
  font-family: var(--font-logo);
  font-size: 36px;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 480px) {
  .header__logo-title {
    font-size: 24px;
  }
}

.header__logo-title--primary {
  color: var(--color-grey-darker);
}

.header__logo-title--accent {
  color: var(--color-orange);
}

.header__logo-subtitle {
  font-family: var(--font-logo);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
  margin: 0;
}
@media (max-width: 480px) {
  .header__logo-subtitle {
    font-size: 14px;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 0;
}
@media (max-width: 890px) {
  .nav {
    display: none;
  }
}

.nav__divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-black);
}

.nav__hamburger {
  display: none;
}

.nav__list {
  display: grid;
  gap: var(--spacing-md-plus);
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-md-plus);
  max-width: 1014px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.nav__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
}

.nav__icon-container {
  width: 41px;
  height: 41px;
  min-width: 41px;
  min-height: 41px;
}

.nav__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav__text {
  flex: 1;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-blue-light);
}

.categories {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}
@media (max-width: 890px) {
  .categories {
    display: none;
  }
}

.categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
}

.categories__text {
  font-size: 14px;
  line-height: 1.42;
  color: var(--color-grey-darker);
}

.layout {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-md) 0;
}

.layout__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md-plus);
}

.layout__aside {
  width: 296px;
  flex-shrink: 0;
  position: sticky;
  top: var(--spacing-md-plus);
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.hero__title {
  font-family: var(--font-secondary);
  font-size: 42px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0;
}

.hero__title--bold {
  font-weight: 800;
}

.hero__title--red {
  color: var(--color-red);
  font-weight: 800;
}

.hero__gallery {
  display: flex;
  gap: var(--spacing-lg);
}

.hero__image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__lead {
  font-family: var(--font-secondary);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-grey-darker);
}
.hero__lead strong {
  font-weight: 800;
}

.hero__list {
  padding-left: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.hero__bullet {
  width: 7px;
  height: 7px;
  background-color: var(--color-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__list-text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}
.hero__list-text strong {
  font-weight: 700;
  line-height: 1.7;
}

.cta-section {
  padding: var(--spacing-xl-plus) 0;
}

.cta {
  background-color: var(--color-blue-lighten);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl-plus);
  display: flex;
  align-items: center;
  gap: var(--spacing-xl-plus);
}

.cta--column {
  flex-direction: column;
}

.cta__layout {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.cta__media {
  background-color: var(--color-blue-lighter);
  border-radius: var(--spacing-md-plus);
  width: 273px;
  height: 252px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md-plus);
}

.cta__product-image {
  max-width: 100%;
  height: auto;
}

.cta__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: flex-start;
}

.cta__content--large {
  gap: 31px;
}

.cta__text {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  color: var(--color-dark);
}

.cta__text-large {
  font-size: 33px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-dark);
}

.button-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
  padding: var(--spacing-md-plus) var(--spacing-xl-plus);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: opacity 0.2s;
}
.button-orange:hover {
  opacity: 0.9;
}

.button-orange--wide {
  padding: var(--spacing-md-plus) var(--spacing-xxl);
  max-width: 478px;
}

.button-orange--small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding: var(--spacing-md-plus) var(--spacing-xl-plus);
  width: 100%;
}

.button-orange--compact {
  font-size: 18px;
  font-weight: 700;
  padding: 15px var(--spacing-md-plus);
}

.content-paragraph {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}
.content-paragraph strong {
  font-weight: 700;
}

.content-heading {
  font-family: var(--font-secondary);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-grey-darker);
  margin: 0;
}

.content-heading--red {
  color: var(--color-red);
}

.content-split {
  display: flex;
  gap: 32px;
}

.content-split__media {
  width: 215px;
  height: 273px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
}

.content-split__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-split__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content-split__paragraph {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.testimonials {
  padding: var(--spacing-xl-plus) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl-plus);
}

.testimonial {
  display: flex;
  gap: var(--spacing-xl-plus);
}

.testimonial__image {
  width: 215px;
  height: 273px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.testimonial__title {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  font-style: italic;
  color: var(--color-grey-darker);
}

.testimonial__text {
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--color-grey-darker);
}

.testimonial__author {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.expert {
  display: flex;
  gap: 32px;
}

.expert__media {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
}

.expert__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.expert__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.expert__title {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  font-style: italic;
  color: var(--color-grey-darker);
}

.expert__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.expert__footer {
  display: flex;
  flex-direction: column;
}

.expert__author {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-grey-darker);
}

.expert__role {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.compare {
  padding: var(--spacing-xl-plus) 0;
  display: flex;
  gap: 32px;
}

.compare__card {
  flex: 1;
  border-radius: var(--radius-md);
  padding: var(--spacing-md-plus) var(--spacing-md-plus) var(--spacing-xl-plus);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.compare__card--negative {
  background-color: var(--color-red-light);
}

.compare__card--positive {
  background-color: var(--color-green-lighter);
}

.compare__title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-grey-darker);
  text-align: center;
  margin: 0;
}

.compare__title--red {
  color: var(--color-red);
}

.compare__title--green {
  color: var(--color-green);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-right: var(--spacing-xl-plus);
}

.compare__item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.compare__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.compare__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
  flex: 1;
}

.product-cta {
  padding: var(--spacing-xxl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl-plus);
}

.product-cta__media {
  background-color: var(--color-blue-lighter);
  border-radius: var(--spacing-md-plus);
  width: 400px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl-plus);
}

.product-cta__image {
  max-width: 320px;
  max-height: 252.992px;
}

.product-cta__link {
  font-family: var(--font-hyperlink);
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-hyperlink);
  text-decoration: underline;
  text-underline-position: from-font;
}
.product-cta__link:hover {
  opacity: 0.8;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md-plus);
}

.comments__head {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.comments__title {
  font-family: var(--font-secondary);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-grey-darker);
  margin: 0;
}

.comments__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.comments__list {
  display: flex;
  flex-direction: column;
}

.comment {
  display: flex;
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-lg);
}

.comment__avatar {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.comment__author {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-grey-darker);
}

.comment__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.comment__image {
  max-width: 155px;
  max-height: 155px;
  border-radius: var(--spacing-xs);
}

.aside-banner {
  background-color: var(--color-blue-lighten);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md-plus);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aside-banner__title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-grey-darker);
  text-align: center;
}

.aside-banner__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: var(--spacing-lg);
}

.aside-banner__image {
  width: 273px;
  height: 216px;
  -o-object-fit: contain;
     object-fit: contain;
}

.aside-banner__text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-grey-darker);
  text-align: center;
  padding: 0 var(--spacing-md);
}

.footer {
  background-color: var(--color-grey-light);
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-xs);
}

.footer__container {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  font-family: var(--font-footer);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-grey-darker);
  text-align: center;
}

.footer__nav {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-footer);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}
.footer__nav a {
  text-decoration: underline;
  text-underline-position: from-font;
}
.footer__nav a:hover {
  opacity: 0.7;
}

.footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  font-family: var(--font-footer);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-grey-darker);
  text-align: center;
}

.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.sticky-bar__content {
  max-width: 757px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md-plus);
  border-radius: 10px;
  border: 2px solid #ff8000;
  background: #ebfbff;
  padding: 20px;
}

.sticky-bar__title {
  font-size: 24px;
  line-height: 1.67;
  font-weight: 600;
  color: var(--color-grey-darker);
  text-align: center;
  display: grid;
  place-items: center;
}

@media (max-width: 1024px) {
  .page {
    max-width: 991px;
    padding: 0 var(--spacing-lg) var(--spacing-xl-plus);
  }
  .header__logo {
    height: 104px;
  }
  .nav__list {
    max-width: 943px;
  }
  .layout {
    justify-content: center;
  }
  .layout__main {
    max-width: 738px;
  }
  .layout__aside {
    display: none;
  }
  .hero__title {
    font-size: 42px;
    line-height: 1.3;
  }
  .content-split__body {
    max-width: 491px;
  }
  .testimonial__content {
    max-width: 483px;
  }
  .expert__content {
    max-width: 406px;
  }
  .compare__card {
    max-width: 353px;
  }
  .sticky-bar {
    display: block;
  }
  .sticky-bar__content {
    max-width: 757px;
  }
  .button-orange--compact {
    font-size: 18px;
    padding: 15px var(--spacing-md-plus);
  }
  .footer {
    background-color: var(--color-grey-light);
    width: 100%;
    padding: var(--spacing-md-plus) var(--spacing-xs) 160px;
  }
}
@media (max-width: 768px) {
  .page {
    max-width: 767px;
    padding: 0 var(--spacing-lg) var(--spacing-xl-plus);
  }
  .header__logo {
    height: 104px;
  }
  .categories {
    display: none;
  }
  .layout {
    padding: var(--spacing-md) 0;
  }
  .layout__main {
    max-width: 719px;
    width: 100%;
  }
  .layout__aside {
    display: none;
  }
  .hero__title {
    font-size: 36px;
    line-height: 1.3;
  }
  .hero__gallery {
    flex-direction: row;
    gap: var(--spacing-lg);
  }
  .hero__image {
    flex: 1;
  }
  .hero__list-text {
    font-size: 18px;
  }
  .cta {
    flex-direction: column;
    padding: var(--spacing-xl-plus);
  }
  .cta--column {
    flex-direction: column;
  }
  .cta__layout {
    flex-direction: column;
    align-items: center;
  }
  .cta__media {
    width: 273px;
    height: 252px;
  }
  .cta__content {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .cta__text {
    font-size: 22px;
    text-align: center;
  }
  .cta__text-large {
    text-align: center;
  }
  .button-orange {
    width: 100%;
    max-width: 379px;
    font-size: 24px;
    padding: var(--spacing-md-plus) var(--spacing-xl);
  }
  .button-orange--wide {
    max-width: 478px;
    font-size: 22px;
  }
  .content-paragraph {
    font-size: 18px;
  }
  .content-split {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  .content-split__media {
    width: 215px;
    height: 273px;
    margin: 0 auto;
    position: static;
  }
  .content-split__body {
    width: 100%;
    max-width: 100%;
  }
  .testimonials {
    gap: var(--spacing-xl-plus);
  }
  .testimonial {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  .testimonial__image {
    width: 215px;
    height: 273px;
    margin: 0 auto;
  }
  .testimonial__content {
    width: 100%;
    max-width: 100%;
  }
  .testimonial__text {
    font-size: 16px;
  }
  .testimonial__author {
    font-size: 16px;
  }
  .expert {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  .expert__media {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: static;
  }
  .expert__content {
    width: 100%;
    max-width: 100%;
  }
  .compare {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  .compare__card {
    width: 100%;
    max-width: 100%;
  }
  .compare__list {
    padding-right: 0;
  }
  .product-cta__media {
    width: 400px;
    max-width: 100%;
  }
  .footer__container {
    max-width: 751px;
    padding: 0 var(--spacing-xs);
  }
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
  }
  .footer__disclaimer {
    font-size: 12px;
  }
  .sticky-bar {
    display: block;
  }
  .sticky-bar__content {
    max-width: 533px;
    flex-direction: row;
    gap: var(--spacing-md-plus);
  }
  .sticky-bar__title {
    font-size: 16px;
    flex: 1;
  }
  .button-orange--compact {
    font-size: 16px;
    padding: 15px var(--spacing-md);
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__lead {
    font-size: 20px;
    line-height: 26px;
  }
  .hero__list {
    padding-left: 8px;
  }
  .cta {
    padding: 16px;
  }
  .button-orange {
    font-size: 20px;
  }
  .content-heading {
    font-size: 20px;
  }
  .cta__text-large {
    font-size: 28px;
  }
  .testimonial__title {
    font-size: 20px;
  }
  .expert__title {
    font-size: 20px;
  }
  .expert__text {
    font-size: 16px;
  }
  .expert__author,
  .expert__role {
    font-size: 16px;
  }
  .compare__title {
    font-size: 22px;
  }
  .compare__text {
    font-size: 16px;
  }
  .product-cta__link {
    font-size: 28px;
    padding: 0 var(--spacing-md);
  }
  .comments__title {
    font-size: 22px;
  }
  .comments__subtitle {
    font-size: 16px;
  }
  .comment__avatar {
    width: 60px;
    height: 60px;
  }
  .comment__author {
    font-size: 16px;
  }
  .comment__text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .hero__gallery {
    flex-direction: column;
  }
}
@media (max-width: 532px) {
  .sticky-bar {
    background: transparent;
  }
  .sticky-bar__content {
    grid-template-columns: 1fr;
  }
  .sticky-bar__title {
    font-size: 18px;
  }
}
.page-wrap-call {
  padding: 24px 0;
}
@media (min-width: 768px) {
  .page-wrap-call {
    padding: 64px 0;
  }
}

.call {
  max-width: 1160px;
  margin: 0 auto;
  background-color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 992px) {
  .call {
    display: grid;
    grid-template-columns: 376px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    -moz-column-gap: 18px;
         column-gap: 18px;
    row-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .call {
    grid-template-columns: 491px 1fr;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 40px;
  }
}

@media (min-width: 992px) {
  .call__media {
    grid-row: 1/2;
    grid-column: 1/2;
    overflow: hidden;
    height: 378px;
  }
}
@media (min-width: 1200px) {
  .call__media {
    grid-row: 1/3;
    min-height: 742px;
  }
}
@media (min-width: 992px) {
  .call__media img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 559px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .call__media img {
    height: auto;
    width: 100%;
    min-height: 742px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.call__image-mobile {
  max-width: 234px;
  display: block;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .call__image-mobile {
    display: none;
  }
}

.call__image-desktop {
  display: none;
}
@media (min-width: 992px) {
  .call__image-desktop {
    display: block;
  }
}

.call__content {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .call__content {
    grid-row: 1/2;
    grid-column: 2/3;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .call__content {
    align-self: end;
  }
}

.call__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-darker);
}

.call__cta-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .call__cta-container {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (min-width: 1200px) {
  .call__cta-container {
    grid-row: 2/3;
    grid-column: 2/3;
    align-self: start;
  }
}

.call__title {
  font-family: var(--font-secondary);
  font-size: clamp(32px, 4.435483871vw, 56px);
  color: #49cf0a;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .call__title {
    padding: 40px 0 20px;
  }
}

.call__cta-lead {
  font-weight: 700;
}
.call__cta-lead span {
  color: #ff8000;
}

.call__cta-button,
.call__cta-number {
  display: grid;
  place-items: center;
  max-width: 605px;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 16px;
  color: #49cf0a;
  border: 2px solid #49cf0a;
  margin: 16px auto 24px;
  padding: clamp(12px, 2.0833333333vw, 24px) 8px;
  font-size: clamp(24px, 3.90625vw, 30px);
  font-weight: 900;
  /* ds-md */
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.call__cta-button:hover,
.call__cta-number:hover {
  background-color: #49cf0a;
  color: #fff;
}
.call__cta-button.hidden,
.call__cta-number.hidden {
  display: none;
}

.call__cta-number {
  color: #fff;
  background-color: #49cf0a;
}

.call__hours {
  font-weight: 700;
}

.call__warning {
  color: #e62e00;
}/*# sourceMappingURL=style.css.map */