@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
/* Media Query breakpoints
--------------------------------------------- */
/* Columns
--------------------------------------------- */
/* Styling
--------------------------------------------- */
/* Media Queries */
:root {
  --main-bg-color: #a20000;
}

.btn-outline-danger {
  --bs-btn-color: var(--main-bg-color) !important;
  --bs-btn-border-color: var(--main-bg-color) !important;
  --bs-btn-hover-bg: var(--main-bg-color) !important;
  --bs-btn-hover-border-color: var(--main-bg-color) !important;
  --bs-btn-active-bg: var(--main-bg-color) !important;
  --bs-btn-active-border-color: var(--main-bg-color) !important;
  --bs-btn-disabled-color: var(--main-bg-color) !important;
  --bs-btn-disabled-border-color: var(--main-bg-color) !important;
}

.btn-with-icon svg {
  width: 3rem;
  height: 3rem;
}

.btn-back {
  padding: 4px !important;
  background: #222222 !important;
  border-radius: 0 !important;
  color: #fff !important;
}
.btn-back:hover {
  opacity: 0.75;
}
.btn-back svg {
  width: 30px;
  height: 30px;
}

.btn-red {
  color: #fff;
  border-radius: 0;
  min-width: 160px;
  display: block;
  padding: 16px 32px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  background: linear-gradient(to right, transparent 50%, #a20000 50%) right bottom;
  background-size: 200% 100%;
  transition: all 0.3s ease-in-out;
  border: 2px solid #a20000;
}
.btn-red:hover {
  color: #fff;
  background-position: left bottom;
  border-color: #a20000;
}

.btn-underline {
  color: #fff;
  border-radius: 0;
  min-width: 160px;
  display: block;
  padding: 16px 32px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  background: linear-gradient(to right, transparent 50%, transparent 50%) right bottom;
  background-size: 200% 100%;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  text-decoration: underline;
  padding: 0;
}
.btn-underline:hover {
  color: rgba(255, 255, 255, 0.75);
  background-position: left bottom;
  border-color: transparent;
}

.btn-circle {
  background-color: #a20000;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  padding: 0.5rem;
  position: relative;
  display: block;
  z-index: 2;
}
.btn-circle:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-arrow-up-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/%3E%3C/svg%3E");
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.btn-circle:hover:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-circle .rounded-text {
  width: 9rem;
  height: 9rem;
  text-transform: uppercase;
  transform: rotate(-103deg);
  color: #fff;
  font-weight: bold;
  z-index: -1;
}
.btn-circle .rounded-text textPath {
  fill: #fff;
}
.btn-circle .rotating {
  animation: rotating 12s linear infinite;
}

button[type=submit] {
  color: #fff;
  border-radius: 0;
  min-width: 160px;
  display: block;
  padding: 16px 32px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  background: linear-gradient(to right, transparent 50%, #a20000 50%) right bottom;
  background-size: 200% 100%;
  transition: all 0.3s ease-in-out;
  border: 2px solid #a20000;
}
button[type=submit]:hover {
  color: #a20000;
  background-position: left bottom;
  border-color: #a20000;
}

@keyframes rotating {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.primary-table {
  margin: auto;
  font-size: 16px;
  border-color: #a20000 !important;
}
.primary-table a {
  color: #000 !important;
  text-decoration: none;
}
.primary-table a:hover {
  color: #a20000 !important;
}
.primary-table thead th, .primary-table thead td {
  border-width: 1px 0 0 0 !important;
  border-color: #a20000 !important;
  vertical-align: middle !important;
  background-color: #a20000;
  color: #fff;
}
.primary-table > tbody th, .primary-table > tbody td {
  border-width: 0 0 1px 0;
  border-color: #a20000 !important;
}
.primary-table > tbody > tr:nth-of-type(odd) td, .primary-table > tbody > tr:nth-of-type(odd) th {
  background-color: rgba(219, 39, 35, 0.1);
  box-shadow: none;
}

input:not([type=submit]), select, textarea {
  border-radius: 0;
  display: block;
  font-size: 14px;
  height: 50px;
  line-height: 1.5;
  padding: 10px 12px;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  color: #222;
  margin-bottom: 20px;
}
input:not([type=submit]):focus, select:focus, textarea:focus {
  border-color: #a20000;
}

select {
  font-size: 14px !important;
}

label {
  max-width: 100%;
  margin-bottom: 5px;
  font-size: 18px;
}

form[name=patient_info_form] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form[name=patient_info_form] > div {
  flex-basis: 100%;
  margin-bottom: 20px;
}
form[name=patient_info_form] input {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  form[name=patient_info_form] > div:has(#patient_info_form_morningTime),
form[name=patient_info_form] > div:has(#patient_info_form_dinnerTime),
form[name=patient_info_form] > div:has(#patient_info_form_eveningTime) {
    flex-basis: 30%;
  }
  form[name=patient_info_form] > div:has(#patient_info_form_treatment),
form[name=patient_info_form] > div:has(#patient_info_form_treatmentSizeRange) {
    flex-basis: 47%;
  }
}

.login-form {
  max-width: 600px;
  margin: auto;
}
.login-form label {
  font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  border: 1px solid #fff;
  display: block;
  top: 24px !important;
}
.swiper-button-next:before,
.swiper-button-prev:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='white' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: -40%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  color: #fff;
  background-color: #222;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: #a20000;
}
.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23a20000' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  left: -20%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev {
  transform: scale(-1);
  left: auto !important;
  right: 100px !important;
}

.testimonials .swiper-slide {
  width: 300px;
  padding: 10px 10px 12px 10px;
  height: auto;
}
.testimonials .swiper-wrapper {
  padding-top: 100px;
}
.testimonials-card {
  box-shadow: 0 4px 12px rgba(28, 27, 28, 0.1);
  padding: 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  background-color: #fff;
}
.testimonials-card__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 24px;
}
.testimonials-card__name {
  font-weight: 600;
  font-size: 1.8rem;
}
.testimonials-card__text {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.33;
}
.testimonials-card:hover {
  box-shadow: 0 4px 12px rgba(28, 27, 28, 0.15);
}
@media only screen and (min-width: 992px) {
  .testimonials .swiper-slide {
    width: 350px;
  }
  .testimonials-card {
    padding: 40px;
  }
}

.modal-backdrop.show {
  --bs-backdrop-opacity: 0.9!important;
  background: #000;
}

.modal.search-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.modal.search-modal .header-search-field {
  background: transparent;
  border-width: 0 0 2px 0;
  border-color: #fff;
  border-radius: 0;
  font-size: 20px;
  color: #fff;
  padding: 2rem;
  font-weight: 600;
  width: 100%;
}
.modal.search-modal .header-search-field::placeholder {
  color: #a20000;
  font-weight: 600;
}
.modal__btn-close {
  display: flex;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #222;
  border: none;
  font-size: 20px;
  margin-left: auto;
  margin-bottom: 20px;
  color: #fff;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
  font-size: 10px;
  background-color: #f5f5f5;
}

body {
  position: relative;
  scroll-behavior: smooth;
  max-width: 1920px;
  width: 100%;
  margin: auto !important;
  background-color: #fff !important;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

.top-scroll {
  bottom: 2%;
  display: none;
  height: 40px;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 12px;
  text-align: center;
  width: 40px;
  padding: 0;
  z-index: 9999;
  border-width: 2px;
  border-style: solid;
  animation: bounce 2s infinite;
  border-radius: 50%;
  color: #a20000;
}
.top-scroll:hover {
  opacity: 1;
}
.top-scroll:hover, .top-scroll:focus {
  border-width: 2px;
  border-style: solid;
  transition: all 0.3s ease 0s;
}
.top-scroll i {
  font-size: 18px;
  line-height: 36px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
}

p, ul, li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

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

.text-danger {
  color: #a20000 !important;
}

.section-title, .section-title * {
  text-transform: capitalize;
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  line-height: 1.33;
}
@media only screen and (min-width: 992px) {
  .section-title, .section-title * {
    font-size: 3.2rem;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

figure {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  object-fit: cover;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

.header-main {
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  max-width: 1400px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 100%;
  transition: all 0.5s ease-in-out;
  border-radius: 0;
}
.header-main .navbar-brand {
  max-width: 140px;
}
.header-main .navbar-brand__dark {
  display: none;
  width: 100%;
}
.header-main .navbar-brand__light {
  display: block;
  width: 100%;
}
.header-main .hamburger {
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
}
.header-main .hamburger:focus {
  box-shadow: none;
}
.header-main .hamburger-inner, .header-main .hamburger-inner:before, .header-main .hamburger-inner:after {
  width: 2.4rem;
  background-color: #fff;
  border-radius: 0;
  height: 2px;
}
.header-main__cart-icon {
  color: #fff;
  padding-right: 20px;
}
.header-main__cart-count {
  width: 20px;
  height: 20px;
  color: #fff;
  background-color: #a20000;
  border-radius: 50%;
  position: absolute;
  top: -14px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-main__cart-count:hover {
  color: #a20000;
}
.header-main__btn-search {
  color: #fff;
  padding: 0;
  background: transparent;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.header-main__btn-search:hover {
  color: #a20000;
}
.header-main__collapse {
  padding-top: 2.4rem;
}
.header-main .nav-item {
  margin-bottom: 2.4rem;
}
.header-main .nav-link {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.header-main .nav-link.show {
  color: #fff !important;
}
.header-main .nav-link.dropdown-toggle {
  display: flex;
}
.header-main .nav-link.dropdown-toggle:after {
  content: "\f282";
  font-family: "Bootstrap-icons";
  border: none;
  font-size: 12px;
  height: 10px;
  align-self: center;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}
.header-main .nav-link.dropdown-toggle.show:after {
  transform: rotate(180deg);
}
.header-main .dropdown-menu.show {
  margin-top: 20px;
  border: none;
  font-size: 16px;
}
.header-main .dropdown-menu li {
  margin-bottom: 1.6rem;
}
.header-main .dropdown-menu li:last-of-type {
  margin-bottom: 0;
}
.header-main .dropdown-menu .dropdown-item {
  white-space: normal !important;
}
.header-main .dropdown-menu .dropdown-item.active, .header-main .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}
.header-main:is(.header-main-sticky), .header-main:has(.collapse.show) {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  max-width: 100%;
  top: 0 !important;
}
.header-main:is(.header-main-sticky) .navbar-brand__dark, .header-main:has(.collapse.show) .navbar-brand__dark {
  display: block;
}
.header-main:is(.header-main-sticky) .navbar-brand__light, .header-main:has(.collapse.show) .navbar-brand__light {
  display: none;
}
.header-main:is(.header-main-sticky) .header-main__btn-search, .header-main:has(.collapse.show) .header-main__btn-search {
  color: #222;
}
.header-main:is(.header-main-sticky) .header-main__cart-icon, .header-main:has(.collapse.show) .header-main__cart-icon {
  color: #222;
}
.header-main:is(.header-main-sticky) .nav-link, .header-main:has(.collapse.show) .nav-link {
  color: #222;
}
.header-main:is(.header-main-sticky) .nav-link.show, .header-main:has(.collapse.show) .nav-link.show {
  color: #222 !important;
}
.header-main:is(.header-main-sticky) .hamburger-inner, .header-main:is(.header-main-sticky) .hamburger-inner:before, .header-main:is(.header-main-sticky) .hamburger-inner:after, .header-main:has(.collapse.show) .hamburger-inner, .header-main:has(.collapse.show) .hamburger-inner:before, .header-main:has(.collapse.show) .hamburger-inner:after {
  background-color: #222;
}
.header-main:has(.collapse.show) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .header-main .navbar-brand {
    max-width: 180px;
  }
}
@media only screen and (min-width: 992px) {
  .header-main {
    top: 20px !important;
  }
  .header-main__collapse {
    padding-top: 0;
    flex-grow: 0 !important;
  }
  .header-main .nav-item {
    margin: 0;
  }
  .header-main .nav-item:hover {
    background-color: #a20000;
    transition: all 0.3s ease-in-out;
  }
  .header-main .nav-item:hover .nav-link {
    color: #fff;
  }
  .header-main .nav-link {
    padding: 1rem 1.6rem !important;
  }
  .header-main .nav-link.dropdown-toggle:after {
    margin-left: 1rem;
  }
  .header-main .dropdown-menu {
    border-radius: 0;
    border-top: 3px solid #a20000 !important;
    padding: 16px;
  }
  .header-main .dropdown-menu.show {
    margin-top: 0;
    top: 50px;
  }
  .header-main .dropdown-menu .dropdown-item {
    white-space: nowrap !important;
  }
}

.hero-img {
  -webkit-filter: brightness(76%);
  filter: brightness(66%);
  min-height: 250px;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

.footer {
  background-color: #222;
  padding: 40px 0;
}
.footer__link, .footer .copyright {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  margin: auto;
  display: block;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer__link, .footer .copyright {
    margin: 0 16px 0;
    display: inline-block;
    text-align: left;
  }
  .footer__link:last-of-type, .footer .copyright:last-of-type {
    margin-right: 0;
  }
  .footer__link .copyright, .footer .copyright .copyright {
    text-align: left;
  }
}

body:has(.home) .hero-img {
  display: none;
}
@media only screen and (min-width: 992px) {
  body:has(.home) .header:not(:has(.sticky-menu)) .menu-item a, body:has(.home) .header:not(:has(.sticky-menu)) .header-top-info a, body:has(.home) .header:not(:has(.sticky-menu)) .header-search-toggle, body:has(.home) .header:not(:has(.sticky-menu)) .cart-icon-wrap .fa-shopping-bag {
    color: #fff;
  }
  body:has(.home) .header:not(:has(.sticky-menu)) .dropdown-menu .menu-item a {
    color: #000;
  }
  body:has(.home) .header:not(:has(.sticky-menu)) .menu-item a, body:has(.home) .header:not(:has(.sticky-menu)) .header-top-info a, body:has(.home) .header:not(:has(.sticky-menu)) .header-search-toggle {
    font-weight: 400;
  }
}

.home-hero {
  background-color: #222;
  padding-top: 120px;
}
.home-hero__content {
  max-width: 300px;
}
.home-hero__content h1 {
  margin-bottom: 30px;
}
.home-hero__content h1 span {
  color: #a20000;
}
.home-hero__content .primary-text {
  color: rgba(255, 255, 255, 0.75);
}
.home-hero__content .section-subtitle {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  display: inline-block;
}
.home-hero__content .section-subtitle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}
.home-hero__buttons-group {
  padding-bottom: 80px;
}
.home-hero__img {
  min-height: 200px;
  object-fit: cover;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .home-hero__img {
    min-height: 400px;
  }
  .home-hero__content {
    max-width: 400px;
  }
}
@media only screen and (min-width: 992px) {
  .home-hero {
    padding-top: 180px;
  }
  .home-hero__img {
    min-height: 600px;
  }
}

.companies {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .companies {
    padding: 100px 0;
  }
}
.companies h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  font-size: 2rem;
}
.companies h4 span {
  color: #222;
  flex-grow: 1;
  flex-shrink: 0;
}
.companies h4:after {
  content: "";
  display: block;
  margin-left: 50px;
  height: 1px;
  width: 100%;
  background-color: #222;
  flex-shrink: 1;
  flex-grow: 0;
}
.companies .swiper-slide {
  max-width: 200px;
  display: flex;
  align-items: center;
}
.companies .swiper-slide img {
  width: 100%;
  height: auto;
}
.companies .swiper-wrapper {
  transition-timing-function: linear;
}

.about-us {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .about-us {
    padding: 100px 0;
  }
}
.about-us .section-subtitle {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #f5f6fa;
  margin-bottom: 20px;
  display: inline-block;
  margin-bottom: 2.4rem;
}
.about-us .section-subtitle p {
  margin-bottom: 0;
  color: #222;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}
.about-us .section-title, .about-us .primary-text {
  max-width: 500px;
  margin-bottom: 3.2rem;
}
.about-us .btn-red {
  color: #fff;
  border-radius: 0;
  min-width: 160px;
  display: block;
  padding: 16px 32px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  background: linear-gradient(to right, transparent 50%, #a20000 50%) right bottom;
  background-size: 200% 100%;
  transition: all 0.3s ease-in-out;
  border: 2px solid #a20000;
}
.about-us .btn-red:hover {
  color: #a20000;
  background-position: left bottom;
  border-color: #a20000;
}
@media only screen and (min-width: 992px) {
  .about-us__container {
    padding-left: 5rem;
  }
}

.program-benefits {
  padding: 80px 0;
  background-color: #f5f6fa;
}
@media only screen and (min-width: 992px) {
  .program-benefits {
    padding: 100px 0;
  }
}
.program-benefits .container {
  display: grid;
  gap: 30px 30px;
}
.program-benefits .container:before, .program-benefits .container:after {
  display: none;
}
.program-benefits .section-subtitle {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  margin-bottom: 24px;
}
.program-benefits .section-subtitle p {
  margin-bottom: 0;
  color: #222;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}
.program-benefits__card {
  background-color: #fff;
  width: 100%;
  padding: 20px 10px;
}
.program-benefits__card p, .program-benefits__card h3 {
  color: #222;
}
.program-benefits__card-img {
  margin-bottom: 20px;
}
.program-benefits__card-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.program-benefits__card-description {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.program-benefits__card-red {
  background-color: #a20000;
}
.program-benefits__card-red p, .program-benefits__card-red h3 {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .program-benefits .container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .program-benefits__card {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .program-benefits .container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
  }
}
@media only screen and (min-width: 1400px) {
  .program-benefits .section-title {
    font-size: 3.8rem;
  }
}

.testimonials {
  padding: 80px 0;
  background-color: #222;
}
@media only screen and (min-width: 992px) {
  .testimonials {
    padding: 100px 0;
  }
}
.testimonials .section-subtitle {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  display: inline-block;
}
.testimonials .section-subtitle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}
.testimonials h2 {
  max-width: 300px;
  margin: 0 auto 32px;
  color: #fff;
}

.patient-treatment-info .nav {
  font-size: 14px;
  flex-wrap: nowrap;
  overflow: scroll;
  padding-bottom: 2rem;
  column-gap: 10px;
}
.patient-treatment-info .nav::-webkit-scrollbar {
  height: 2px;
}
.patient-treatment-info .nav::-webkit-scrollbar-thumb {
  background-color: #a20000;
}
.patient-treatment-info .nav-link {
  flex: 1 0 40%;
  color: #222;
  border-radius: 0;
  --bs-nav-pills-border-radius: 0;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #A20000;
  border: 1px solid #222;
}
.patient-treatment-info .nav-link.active {
  border-color: #a20000;
}
.patient-treatment-info .nav-link:hover {
  color: #a20000;
}
.patient-treatment-info .tab-content {
  padding-top: 30px;
}
.patient-treatment-info .tab-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.patient-treatment-info .tab-content p, .patient-treatment-info .tab-content img {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .patient-treatment-info .nav-link {
    flex: 1 0 30%;
  }
}
@media only screen and (min-width: 992px) {
  .patient-treatment-info .nav {
    font-size: 16px;
    flex-wrap: wrap;
    flex-direction: column;
    position: sticky;
    top: 100px;
  }
  .patient-treatment-info .nav-link {
    flex: 1 0 auto;
    margin-bottom: 16px;
    height: 60px;
  }
  .patient-treatment-info .tab-content {
    padding-top: 0;
    padding-left: 30px;
  }
}

.about-us__hero {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .about-us__hero {
    padding: 100px 0;
  }
}
.about-us__hero .primary-text {
  max-width: 450px;
}
.about-us__progalit {
  padding: 80px 0;
  background: #f5f6fa;
}
@media only screen and (min-width: 992px) {
  .about-us__progalit {
    padding: 100px 0;
  }
}
.about-us__video {
  padding: 80px 0;
  background: url("../site_images/online-marketing-hIgeoQjS_iE-unsplash.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .about-us__video {
    padding: 100px 0;
  }
}
.about-us__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.75);
}
.about-us__video .section-title {
  max-width: 600px;
}
.about-us__video .btn-red {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: block;
  min-width: auto;
  padding: 0;
  box-sizing: border-box;
}
.about-us__functions {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .about-us__functions {
    padding: 100px 0;
  }
}
.about-us__functions-timeline {
  max-width: 950px;
  margin: auto;
}
.about-us .square {
  padding: 13px 20px;
  background-color: #a20000;
  color: #fff;
  max-height: 50px;
  z-index: 2;
  font-size: 16px;
}
.about-us .how-it-works.row .col-2 {
  align-self: stretch;
}
.about-us .how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #a20000;
  z-index: 1;
}
.about-us .how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.about-us .how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.about-us .how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}
.about-us .timeline div {
  padding: 0;
  height: 40px;
}
.about-us .timeline hr {
  border-top: 3px solid #a20000;
  margin: 0;
  top: 17px;
  position: relative;
  opacity: 1;
}
.about-us .timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.about-us .timeline .corner {
  border: 3px solid #a20000;
  width: 100%;
  position: relative;
}
.about-us .timeline .top-right {
  left: 50%;
  top: -50%;
}
.about-us .timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.about-us .timeline .top-left {
  left: -50%;
  top: -50%;
}
.about-us .timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}

/* Components
--------------------------------------------- */
/* Base
--------------------------------------------- */
/* Pages
--------------------------------------------- */

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