@font-face {
  font-family: "Rubik";
  src: local("Rubik"), url("../Rubik/Rubik-VariableFont_wght.ttf");
}
:root {
  color: #171412;
  font-family: Rubik;
  scroll-behavior: smooth;
}
@media screen and (max-width: 700px) {
  :root {
    font-size: 10px;
  }
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 1rem;
  background-color: #fcf3ec;
}
@media screen and (min-width: 700px) {
  body {
    padding: 0 2.5rem;
  }
}
body [id] {
  scroll-margin: 4rem;
}
body .mt-8 {
  margin-top: 2rem;
}
body .mt-3 {
  margin-top: 0.75rem;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}
body .btn {
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  border: none;
  transition: background 0.3s ease-in;
  text-decoration: none;
}
body .btn.btn-rounded {
  border-radius: 50%;
  padding: 1rem;
}
body .btn.primary-btn {
  color: #fcf3ec;
  background-color: #f15c00;
  line-height: 1;
  display: inline-block;
}
body .btn.primary-btn:hover {
  background-color: #ff6709;
}
body .btn.primary-btn:active {
  background-color: #da5300;
}
body .btn.link-btn {
  padding-left: 1rem;
  padding-right: 1rem;
  color: inherit;
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  outline: none;
}
body .page-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .card-row {
  --row-gap: 1.25rem;
  gap: var(--row-gap);
  align-items: flex-start;
  justify-content: center;
}
body .container {
  max-width: 1285px;
  margin: 0 auto;
  width: 100%;
}
body em {
  color: #f15c00;
  font-style: normal;
  display: inline-flex;
  flex-direction: column;
}
body em.underline::after {
  content: "";
  background: url(../underline.svg);
  background-repeat: no-repeat;
  height: 1rem;
}
body .alert {
  padding: 0.5rem;
  border: 1px solid var(--alert-color);
  color: var(--alert-color);
  border-radius: 0.5rem;
  background-color: var(--alert-bg);
}
body .alert.error {
  --alert-color: #dc2626;
  --alert-bg: #fee2e2;
}
body .alert.success {
  --alert-color: #15803d;
  --alert-bg: #f0fdf4;
}
body .card {
  display: flex;
  flex-direction: column;
}
body .card h3 {
  margin: 0 0 0.625rem;
  font-size: 1.25rem;
  line-height: 1.4;
}
body .card > * {
  overflow: hidden;
  border-left: 1px solid #171412;
  border-right: 1px solid #171412;
  background-color: #fffbf8;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
body .card > *:first-child {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-top: 1px solid #171412;
  padding-top: 2rem;
}
body .card > *:not(:first-child) {
  padding-top: 0.625rem;
}
body .card > *:last-child {
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  border-bottom: 1px solid #171412;
  padding-bottom: 2rem;
}
body .card > *:not(:last-child) {
  padding-bottom: 0.625rem;
}
body .card .card-footer {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}
body .card .card-footer .small {
  font-weight: 500;
  font-size: 0.8em;
}
body h2.centered {
  text-align: center;
  margin: 0 0 3rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
body header {
  position: sticky;
  background-color: #fcf3ec;
  top: 0;
  z-index: 1;
  padding: 0.5rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
}
body header .header-content-wrapper {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header nav.menu .toggle-menu-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}
@media (min-width: 700px) {
  body header nav.menu .toggle-menu-btn {
    display: none;
  }
}
body header nav.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.5rem;
}
@media (max-width: 700px) {
  body header nav.menu ul {
    font-size: calc(0.85rem + 1.5vw);
    --width: 75vw;
    min-width: 200px;
    width: var(--width);
    right: calc(-1 * var(--width));
    position: fixed;
    background: #f5d7c0;
    bottom: 0;
    top: calc(3rem + 2 * 0.5rem);
    margin-top: 0.5rem;
    transition: right 0.3s ease-in-out;
  }
  body header nav.menu ul.visible {
    right: 0;
  }
}
@media (min-width: 700px) {
  body header nav.menu ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
body header .logo-container img {
  max-height: 3rem;
  height: 100%;
}
body .intro-row {
  line-height: 1.4;
  gap: 2.5rem;
  flex-wrap: wrap-reverse;
  position: relative;
  align-items: center;
}
body .intro-row > * {
  margin-top: 3.25rem;
  margin-bottom: 3rem;
}
body .intro-row > *:first-child {
  flex: 45 1 0;
}
body .intro-row > *:last-child {
  flex: 55 1 0;
}
body .intro-row .text .btn {
  font-size: 1.25rem;
}
body .intro-row .text .lead {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
body .intro-row .text .intro-text {
  font-size: 1.375rem;
  margin: 0 0 1.75rem;
}
body .intro-row .text .heading {
  font-size: 4.5rem;
  font-weight: 500;
  margin: 0 0 1.75rem;
  line-height: 1;
}
body .intro-row .text h2 {
  font-size: 2.5rem;
  margin: 0 0 1.5rem;
  line-height: 1;
}
body .intro-row .text .small-header {
  font-size: 1.5rem;
}
body .intro-row .text article {
  font-size: 1.25rem;
}
body .intro-row .image-wrapper {
  align-self: stretch;
}
body .intro-row .image {
  text-align: center;
  min-width: 400px;
  position: sticky;
  top: 5rem;
}
@media screen and (max-width: 400px) {
  body .intro-row .image {
    min-width: 85vw;
  }
}
body .intro-row .image img {
  width: 100%;
}
body .intro-row.about {
  padding-top: 6.25rem;
  flex-wrap: wrap;
}
body .intro-row.about .image::before {
  content: "";
  background-image: url(../img/about-vector.svg);
  position: absolute;
  width: 25%;
  max-width: 116px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
body .reviews-container {
  padding-top: 6.25rem;
}
body .reviews-container .card {
  --card-width-base: calc(100% - 1.25rem);
  flex: 1 0 var(--card-width-base);
  min-width: var(--card-width-base);
  max-width: var(--card-width-base);
}
@media screen and (min-width: 1024px) {
  body .reviews-container .card {
    --card-width-base: calc(100% / 2 - 1.25rem);
  }
}
body .reviews-container .card .card-header {
  border-width: 0;
  padding: 0;
}
body .reviews-container .card .card-header img {
  width: 100%;
}
body .reviews-container .card .card-body {
  flex-grow: 1;
  padding-top: 2rem;
}
body .reviews-container .card .card-body ul {
  margin: 0;
  line-height: 1.4;
}
body .reviews-container .carousel-wrapper {
  position: relative;
}
body .reviews-container .carousel-wrapper .carousel-btn {
  position: absolute;
  top: 35%;
  z-index: 5;
}
body .reviews-container .carousel-wrapper .carousel-btn.hidden {
  display: none !important;
}
body .reviews-container .carousel-wrapper .carousel-btn.prev-btn {
  left: 0;
}
@media screen and (min-width: 450px) {
  body .reviews-container .carousel-wrapper .carousel-btn.prev-btn {
    transform: translate(calc(-50% - 0.625rem), -50%);
  }
}
body .reviews-container .carousel-wrapper .carousel-btn.prev-btn svg {
  transform: rotate(180deg);
}
body .reviews-container .carousel-wrapper .carousel-btn.next-btn {
  right: 0;
}
@media screen and (min-width: 450px) {
  body .reviews-container .carousel-wrapper .carousel-btn.next-btn {
    transform: translate(calc(50% + 0.625rem), -50%);
  }
}
body .reviews-container .carousel-row {
  overflow: hidden;
}
body .reviews-container .card-row {
  position: relative;
  flex-wrap: nowrap;
  left: 0;
  transition: left 0.65s ease-in, right 0.65s ease-in;
  justify-content: flex-start;
  gap: 0;
  margin: 0 calc(-1 * var(--row-gap) / 2);
}
body .reviews-container .card-row > * {
  padding: 0 calc(var(--row-gap) / 2);
}
body .services-container {
  padding-top: 6.25rem;
}
body .services-container .alert {
  color: #db0d00;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
}
body .services-container .card-row > * {
  --card-width-base: calc(100% - 1.25rem);
  flex: 1 0 var(--card-width-base);
  min-width: var(--card-width-base);
  max-width: var(--card-width-base);
}
@media screen and (min-width: 700px) {
  body .services-container .card-row > * {
    --card-width-base: calc(100% / 2 - 1.25rem);
  }
}
@media screen and (min-width: 1024px) {
  body .services-container .card-row > * {
    --card-width-base: calc(100% / 3 - 1.25rem);
  }
}
body .services-container .card .card-header {
  border-width: 0;
  padding: 0;
}
body .services-container .card .card-header img {
  width: 100%;
}
body .services-container .card .card-body {
  flex-grow: 1;
  padding-top: 2rem;
}
body .services-container .card .card-body ul {
  margin: 0;
  line-height: 1.4;
}
body .contact-section {
  margin-top: 7.5rem;
  margin-bottom: 1.75rem;
  background-color: #171412;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .contact-section .contact-box {
  margin: 1.5rem 1rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 450px) {
  body .contact-section .contact-box {
    margin: 3rem 2rem;
  }
}
body .contact-section .contact-box::before {
  content: "";
  background-image: url(../img/chat-bubble.svg);
  position: absolute;
  width: 35%;
  max-width: 194px;
  height: 100%;
  max-height: 138px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  transform: translateY(-60%);
}
@media screen and (min-width: 450px) {
  body .contact-section .contact-box::before {
    transform: translateY(-90%);
  }
}
@media screen and (min-width: 1024px) {
  body .contact-section .contact-box::before {
    transform: translate(65%, -85%);
  }
}
body .contact-section .contact-box > * {
  display: block;
}
body .contact-section .contact-box h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #fcf3ec;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 450px) {
  body .contact-section .contact-box h2 {
    font-size: 2.5rem;
  }
}
body .contact-section .contact-box .contacts {
  margin-bottom: 1.5rem;
}
body .contact-section .contact-box .contacts .btn,
body .contact-section .contact-box .contacts .phone {
  display: block;
  color: #f15c00;
  text-decoration: underline;
  font-size: 1rem;
}
@media screen and (min-width: 450px) {
  body .contact-section .contact-box .contacts .btn,
  body .contact-section .contact-box .contacts .phone {
    font-size: 2rem;
  }
}
body .contact-section .contact-box .socials-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
body .map-section-container {
  margin-top: 7.5rem;
  margin-bottom: 1.75rem;
}
body .map-section-container .map-container {
  height: 35vh;
}
body .map-section-container .map-container > * {
  height: 100%;
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
