/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  color: #212529;
  background: #F9F9F9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

ul {
  padding: 0;
}

img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
}

a:hover {
  filter: brightness(105%);
}

.container {
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.flex-center {
  align-items: center;
}

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

.text-red {
  color: #ff0000;
}

.text-green {
  color: #7db33e;
}

.text-blue {
  color: #15467a;
}

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

.clouds {
  background-image: url("../img/bg.jpg");
  width: 100%;
  background-position: center;
  background-size: cover;
}

.header {
  width: 100%;
}
.header__top {
  padding: 20px 0;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__logoImg {
  width: 45px;
  height: 45px;
}
.header__logoText {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .header__logoText {
    font-size: 20px;
  }
}
.header__nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .header__nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    width: 100%;
    justify-content: center;
  }
}
.header .nav__link {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: color 0.3s;
}
.header .nav__link:hover {
  color: #7db33e;
}
@media (max-width: 992px) {
  .header .nav__link {
    font-size: 16px;
    display: none;
  }
}
.header__hero {
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .header__hero {
    padding: 0px 0 0;
  }
}
.header .hero__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  .header .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}
.header .hero__left {
  position: relative;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .header .hero__left {
    padding-right: 0;
  }
}
.header .hero__title {
  margin-bottom: 15px;
  line-height: 1.1;
}
.header .hero__title .title__line1 {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #114581;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .header .hero__title .title__line1 {
    font-size: 36px;
  }
}
.header .hero__title .title__line2 {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #cf140e;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .header .hero__title .title__line2 {
    font-size: 36px;
  }
}
.header .hero__title .title__line3 {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .header .hero__title .title__line3 {
    font-size: 28px;
  }
}
.header .hero__description {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .header .hero__description {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .header .hero__description {
    font-size: 15px;
  }
}
.header .hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-left: 160px;
}
@media (max-width: 992px) {
  .header .hero__right {
    padding-left: 0;
    align-self: center;
    justify-self: center;
    margin-top: 30px;
    margin-right: -200px;
  }
}
.header .hero__images {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .hero__noPills {
  position: absolute;
  top: -40px;
  left: -50px;
  width: 124px;
  height: 121px;
  z-index: 4;
  animation: float 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .header .hero__noPills {
    width: 100px;
    height: 98px;
  }
}
.header .hero__noPills .noPills__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 0, 0, 0.4));
}
.header .hero__tablet {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translate(-50%, -50%) rotate(5deg);
  width: 200px;
  height: auto;
  z-index: 3;
  border-radius: 12px;
}
.header .hero__tablet .tablet__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.header .hero__arrow {
  position: absolute;
  bottom: 30px;
  left: -40px;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.header .hero__arrow .arrow__img {
  width: 100%;
  height: auto;
  width: 198px;
  height: 94px;
}
.header .hero__woman {
  width: 380px;
  height: auto;
  z-index: 2;
  transform: scaleX(-1);
}
@media (max-width: 992px) {
  .header .hero__woman {
    width: 240px;
    right: -10px;
    bottom: -10px;
  }
}
.header .hero__woman .woman__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mainSection {
  display: grid;
  grid-template-columns: 1fr 362px;
  gap: 25px;
  margin-top: 20px;
  max-width: 1263px;
}
@media (max-width: 1300px) {
  .mainSection {
    grid-template-columns: 1fr;
  }
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .main {
    padding: 10px 20px;
  }
}
.main ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.main ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.main ul li::before {
  content: "symbol here";
  margin-right: 15px;
  align-self: center;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  position: relative;
}
.intro__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .intro__wrapper {
    grid-template-columns: 1fr;
  }
}
.intro__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
.intro__text strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .intro__text {
    font-size: 16px;
  }
}
.intro__sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: auto;
}
@media (max-width: 1300px) {
  .intro__sidebar {
    display: none;
  }
}
.intro__sidebar .sidebar__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}
.intro__sidebar .sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.intro__sidebar .sidebar__links li {
  margin-bottom: 15px;
  border: none;
}
.intro__sidebar .sidebar__links li::before {
  display: none;
}
.intro__sidebar .sidebar__links li a {
  font-size: 18px;
  color: #0f7b93;
  text-decoration: underline;
  transition: color 0.3s;
}
.intro__sidebar .sidebar__links li a:hover {
  color: #7db33e;
}
@media (max-width: 768px) {
  .intro__sidebar .sidebar__links li a {
    font-size: 16px;
  }
}

.support {
  margin-top: 40px;
}
.support__title {
  font-size: 29px;
  font-weight: 700;
  color: #ef4953;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .support__title {
    font-size: 24px;
  }
}
.support__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
.support__text strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .support__text {
    font-size: 16px;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  background-color: #fff5da;
  border-radius: 10px;
  margin-top: 100px;
  padding: 20px;
}
.testimonial__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .testimonial__img {
    width: 150px;
    height: 150px;
  }
}
.testimonial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 768px) {
  .testimonial__text {
    font-size: 16px;
  }
}

.howItWorks {
  margin-top: 40px;
}
.howItWorks__title {
  font-size: 29px;
  font-weight: 700;
  color: #ef4953;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .howItWorks__title {
    font-size: 24px;
  }
}
.howItWorks__description {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 40px;
}
.howItWorks__description strong {
  font-weight: 700;
}
.howItWorks__description em {
  font-weight: 700;
  font-style: italic;
}
@media (max-width: 768px) {
  .howItWorks__description {
    font-size: 16px;
  }
}
.howItWorks__features {
  background-color: #ddf6fb;
  border: 5px solid #5da92e;
  border-radius: 10px;
  overflow: hidden;
}
.howItWorks .features__header {
  background-color: #5da92e;
  padding: 25px 30px;
}
@media (max-width: 768px) {
  .howItWorks .features__header {
    padding: 20px;
  }
}
.howItWorks .features__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 768px) {
  .howItWorks .features__title {
    font-size: 20px;
  }
}
.howItWorks .features__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media (max-width: 992px) {
  .howItWorks .features__list {
    padding: 0;
    gap: 5px;
  }
}
.howItWorks .feature__item {
  display: flex;
  gap: 25px;
  background: linear-gradient(90deg, transparent 0%, transparent 10%, #FFF5DA 10%, #FFF5DA 80%, transparent 100%);
}
@media (max-width: 992px) {
  .howItWorks .feature__item {
    flex-direction: column;
    background: none;
    gap: 0;
    margin: auto;
  }
}
.howItWorks .feature__icon {
  width: 159px;
  height: 159px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .howItWorks .feature__icon {
    width: 100px;
    height: 100px;
    padding: 15px;
    justify-self: center;
    align-self: center;
    margin-bottom: -40px;
    z-index: 2;
  }
}
.howItWorks .feature__icon img {
  width: 100%;
  height: 100%;
}
.howItWorks .feature__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howItWorks .feature__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}
.howItWorks .feature__text strong {
  font-weight: 700;
}
@media (max-width: 992px) {
  .howItWorks .feature__text {
    padding: 43px 10px 10px;
    background: linear-gradient(90deg, #FFF5DA 51.44%, rgba(255, 245, 218, 0) 100%);
  }
}
@media (max-width: 768px) {
  .howItWorks .feature__text {
    font-size: 16px;
  }
}

.testimonial2 {
  margin-top: 40px;
}
.testimonial2 .testimonial2__section {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .testimonial2 .testimonial2__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.testimonial2__img {
  width: 120px;
  height: 162px;
  border-radius: 10px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial2__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
  border-left: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .testimonial2__content {
    border-left: none;
  }
}
.testimonial2__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 768px) {
  .testimonial2__text {
    font-size: 16px;
  }
}
.testimonial2__author {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .testimonial2__author {
    font-size: 16px;
    text-align: end;
  }
}

.availability {
  margin-top: 40px;
}
.availability__title {
  font-size: 29px;
  font-weight: 700;
  color: red;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .availability__title {
    font-size: 24px;
  }
}
.availability__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.availability__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
.availability__text strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .availability__text {
    font-size: 16px;
  }
}
.availability__cta {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: blue;
  text-decoration: underline;
  text-align: center;
  transition: filter 0.3s;
}
.availability__cta:hover {
  filter: brightness(1.2);
}
@media (max-width: 768px) {
  .availability__cta {
    font-size: 20px;
    padding: 12px 20px;
  }
}

.comments {
  padding: 60px 0;
}
.comments__title {
  font-size: 29px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .comments__title {
    font-size: 24px;
  }
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.comments .comment__item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .comments .comment__item {
    gap: 15px;
    padding: 20px 0;
  }
}
.comments .comment__avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.comments .comment__avatar img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .comments .comment__avatar {
    width: 50px;
    height: 50px;
  }
}
.comments .comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comments .comment__author {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .comments .comment__author {
    font-size: 16px;
  }
}
.comments .comment__text {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 768px) {
  .comments .comment__text {
    font-size: 16px;
  }
}
.comments__cta {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: blue;
  text-decoration: underline;
  text-align: center;
  margin: 0 auto;
  transition: filter 0.3s;
}
.comments__cta:hover {
  filter: brightness(1.2);
}
@media (max-width: 768px) {
  .comments__cta {
    font-size: 20px;
    padding: 12px 20px;
  }
}

.summaryHeader {
  width: 100%;
  padding: 30px 0;
}
.summaryHeader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.summaryHeader__logoImg {
  width: 45px;
  height: 45px;
}
.summaryHeader__logoText {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .summaryHeader__logoText {
    font-size: 20px;
  }
}

.summaryMain {
  min-height: 60vh;
  padding: 40px 0 60px;
  width: 100%;
}
@media (max-width: 768px) {
  .summaryMain {
    padding: 30px 0 40px;
  }
}

.summary__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .summary__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.summary__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary__title {
  font-size: 72px;
  font-weight: 700;
  color: #7db33e;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 768px) {
  .summary__title {
    font-size: 48px;
  }
}

.summary__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
.summary__subtitle strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary__subtitle {
    font-size: 16px;
  }
}

.summary__info {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.summary__info strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary__info {
    font-size: 15px;
  }
}

.summary__description {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.summary__description strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary__description {
    font-size: 15px;
  }
}

.summary__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary__productImg {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .summary__productImg {
    max-width: 350px;
  }
}

.productImg__woman {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.summary__callBox {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (max-width: 768px) {
  .summary__callBox {
    padding: 30px 20px;
  }
}

.callBox__title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .callBox__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.callBox__button {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  margin-bottom: 20px;
}
.callBox__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}
.callBox__button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .callBox__button {
    font-size: 18px;
    padding: 15px 30px;
  }
}

.callBox__phone {
  margin: 30px 0;
}

.callBox__phoneLink {
  font-size: 36px;
  font-weight: 700;
  color: #7db33e;
  text-decoration: none;
  transition: color 0.3s;
}
.callBox__phoneLink:hover {
  color: #5da92e;
}
@media (max-width: 768px) {
  .callBox__phoneLink {
    font-size: 28px;
  }
}

.callBox__hours {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .callBox__hours {
    font-size: 14px;
  }
}

.callBox__info {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .callBox__info {
    font-size: 14px;
  }
}

.callBox__warning {
  font-size: 16px;
  line-height: 1.6;
  color: #cf140e;
  margin: 20px 0;
  font-weight: 600;
}
.callBox__warning strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .callBox__warning {
    font-size: 14px;
  }
}

.footer {
  width: 100%;
  padding: 20px 0 60px;
  text-align: center;
  margin-top: 44px;
}
.footer .footer__copyright {
  font-size: 12px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  max-width: 800px;
}
.footer .footer__linksBox {
  margin-bottom: 15px;
}
.footer .footer__linksBox .linksBox__link {
  text-decoration: underline;
  font-size: 12px;
  color: #000;
}/*# sourceMappingURL=styles.css.map */