:root {
  --white: white;
  --paragraph-gray: #627675;
  --primary: #003c38;
  --yellow-primary: #ffb650;
  --primary-light: #003c380d;
  --light-gray: #f9f9fa;
  --dark-gray: #afafaf;
  --black: black;
  --white-50: #ffffff80;
  --gray: #e9e9e9;
  --dark-gray-50: #afafaf80;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--paragraph-gray);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
}

h1 {
  color: var(--primary);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2em;
}

h2 {
  color: var(--primary);
  text-align: left;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2em;
}

h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2em;
}

h4 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2em;
}

h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2em;
}

h6 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-gray);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--yellow-primary);
}

ul {
  margin-top: 10px;
  padding-left: 0;
}

li {
  list-style-type: none; /* Removes default bullets */
  display: flex; /* Aligns bullet and text horizontally */
  align-items: flex-start; /* Ensures bullet aligns with top of text */
  margin-top: 20px;
}

.item-list li::before {
  content: '•'; /* Bullet */
  font-size: 30px; /* Larger bullet for odd items */
  margin-right: 10px;
  color: var(--primary); /* Default bullet color (blue) */
}

.item-list li:nth-child(even)::before {
  color: var(--yellow-primary); /* Alternate bullet color (pink) */
}

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

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  background-color: var(--primary-light);
  color: var(--primary);
  text-align: center;
  background-image: url('../images/Quote-1_1Quote 1.webp'),
    url('../images/Quote_1Quote.webp');
  background-position: 2% 20px, 98% 20px;
  background-repeat: no-repeat, no-repeat;
  background-size: 45px 45px, 45px 45px;
  border-left: 1px #000;
  border-radius: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px 80px;
  font-size: 30px;
  line-height: 1.2;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.light-background {
  background-color: var(--primary-light);
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.changelog-banner {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.banner-home-2 {
  padding-top: 140px;
  padding-bottom: 100px;
}

.section.banner-home-2.video-hero {
  padding-top: 170px;
}

/* Video Hero Styles */
.section.video-hero {
  overflow: hidden;
}

.base-container.container-hero {
  position: relative;
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.7);
}

.hero-book-appointment-button {
  margin-left: 20px;
}

/* White Button Style */
.button-white {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-white:hover {
  background-color: white;
  color: var(--yellow-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Enhanced Promo Button */
.promo-button {
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #FFD280 100%);
  color: var(--primary);
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 182, 80, 0.4);
  position: relative;
  overflow: hidden;
}

.promo-button:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 182, 80, 0.5);
}

.promo-button:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  from {
    transform: rotate(45deg) translateX(-100%);
  }
  to {
    transform: rotate(45deg) translateX(100%);
  }
}

/* Make content appear on top of video */
.hero-content-left-container {
  position: relative;
  z-index: 1;
  /* background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)); */
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 767px) {
  .hero-content-left-container {
    margin: 0 auto;
    /* width: 90%; */
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 515px) {
  .hero-content-left-container {
    padding-left: 15px;
    padding-right: 15px;
    /* width: 95%; */
  }

  .hero-book-appointment-button {
    margin-left: 0px;
    margin-top: 15px;
  }
}

.section.blog-details-banner {
  padding-top: 160px;
}

.section.services-1-banner {
  background-color: var(--primary);
  padding-top: 250px;
}

.section.banner-services {
  padding-top: 160px;
  padding-bottom: 0;
}

.section.licensing-banner {
  background-color: var(--primary-light);
  padding-top: 160px;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.container-hero {
  /* background-image: url('../images/physio.webp'); */
  /* background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover; */
  justify-content: center;
  max-width: 100%;
  height: 630px;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
}

.base-container.relative {
  position: relative;
}

.base-container.alighn-start {
  align-items: flex-start;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid var(--paragraph-gray);
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  border-right: 1px solid var(--paragraph-gray);
  border-left: 1px none var(--paragraph-gray);
  background-color: var(--yellow-primary);
  color: var(--white);
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  border-left-style: solid;
  border-left-color: var(--paragraph-gray);
  background-color: var(--yellow-primary);
  width: 24%;
  margin-top: 0;
}

.grid-description {
  border-right: 1px solid var(--paragraph-gray);
  border-bottom: 1px solid var(--paragraph-gray);
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-right: 1px solid var(--paragraph-gray);
  border-bottom: 1px solid var(--paragraph-gray);
  border-left: 1px solid var(--paragraph-gray);
  text-align: center;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 50px;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.full-width {
  width: 100%;
  display: block;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.color-wrapper {
  margin-right: 30px;
}

.colors-wrapper {
  margin-right: 60px;
}

.primary-yellow-style-guide {
  background-color: var(--yellow-primary);
  width: 75px;
  height: 75px;
}

.colors-container {
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.color-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 48%;
  margin-bottom: 30px;
  margin-right: 40px;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 60px;
}

.h1-mobile {
  font-size: 42px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.primary-button {
  border: 1px solid var(--yellow-primary);
  background-color: var(--yellow-primary);
  color: var(--primary);
  text-align: center;
  text-transform: none;
  border-radius: 70px;
  padding: 14px 30px;
  font-size: 18px;
  line-height: 1.2em;
  transition: all 0.3s;
  display: inline-block;
}

.primary-button:hover {
  border: 1px solid var(--yellow-primary);
  background-color: var(--white);
  opacity: 1;
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.serch-button {
  margin-left: auto;
  margin-right: auto;
}

.primary-button.stick-bottom {
  margin-top: auto;
  position: static;
}

.stick-bottom {
  margin-top: auto !important;
}

.style-guide-div {
  width: 100%;
  margin-top: 50px;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  width: 100%;
  margin-top: 60px;
}

.link-wrapper {
  width: 50%;
  margin-top: 20px;
}

.navbar {
  background-color: #fff;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar:where(.w-variant-47f971ca-4af6-f36d-6d99-09c296aee705) {
  background-color: var(--primary);
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--yellow-primary);
}

.nav-link.w--current {
  color: var(--yellow-primary);
}

.nav-link.dark-text-header {
  color: var(--primary);
}

.nav-link.dark-text-header:where(
    .w-variant-47f971ca-4af6-f36d-6d99-09c296aee705
  ) {
  color: var(--white);
}

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding-right: 20px;
}

.nav-dropdown-icon {
  font-size: 16px;
  display: none;
}

.nav-dropdown-list {
  border: 1px solid var(--yellow-primary);
  background-color: #fff;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: 250px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 540px;
  display: flex;
  left: -175px;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  text-transform: capitalize;
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  display: flex;
}

.nav-dropdown-link:hover {
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--yellow-primary);
}

.nav-item-title {
  color: var(--white);
  line-height: 20px;
}

.nav-item-title:hover {
  color: var(--yellow-primary);
}

.nav-item-title.dark-text-header {
  color: var(--primary);
}

.nav-item-title.dark-text-header:where(
    .w-variant-47f971ca-4af6-f36d-6d99-09c296aee705
  ) {
  color: var(--white);
}

.nav-item-title.dark-text-header:hover {
  color: var(--yellow-primary);
}

.pages-banner {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #00000012;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--yellow-primary);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link:hover {
  color: var(--primary);
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-paragraph.last-item {
  margin-right: 0;
}

.licensing-font-title {
  color: var(--paragraph-gray);
  text-transform: uppercase;
}

.licensing-icons-wrapper {
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--paragraph-gray);
  color: var(--primary);
  border-radius: 70px;
  min-width: 280px;
  min-height: 52px;
  margin-bottom: 10px;
  padding: 14px 30px;
  font-size: 18px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--yellow-primary);
}

.password-input::placeholder {
  color: var(--paragraph-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.changelog-heading {
  margin-bottom: 20px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-template-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-date {
  background-color: var(--yellow-primary);
  color: var(--primary);
  border-radius: 80px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 5px 20px;
  display: inline-block;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.prev-post-arrow {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: 'Fa solid 900', sans-serif;
}

.next-post-arrow {
  margin-bottom: 0;
  margin-left: 25px;
  font-family: 'Fa solid 900', sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 60px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  text-align: center;
  border-top: 1px solid #62767566;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.footer-rights {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.footer-copyright {
  color: var(--paragraph-gray);
  width: 100%;
  font-size: 18px;
}

.footer-copyright-link {
  color: var(--primary);
  margin-right: 5px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-copyright-link:hover {
  color: var(--yellow-primary);
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.style-guide-button-wrapper {
  width: 47%;
}

.text-button-icon {
  color: var(--yellow-primary);
  margin-top: 2px;
  margin-left: 10px;
  font-family: 'Fa solid 900', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.text-button-icon:hover {
  color: var(--primary);
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

.text-white {
  color: var(--white);
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.pricing-plan-item {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-flow: column;
  width: 100%;
  max-width: 500px;
  padding: 40px 30px;
  display: flex;
  box-shadow: 0 15px 40px #00000012;
}

.item-list {
  align-items: flex-start;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

.pricing-plan-price-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.pricing-plan-price {
  color: var(--primary);
  font-size: 56px;
}

.pricing-plan-currency-icon {
  color: var(--yellow-primary);
  margin-right: 6px;
  padding-bottom: 7px;
  font-size: 22px;
}

.section-title {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin-bottom: 50px;
  display: flex;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-item {
  background-color: #ffffff1a;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 15px 40px #00000012;
}

.accordion-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: 'Fa solid 900', sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  margin-top: 10px;
}

.light-background {
  background-color: var(--light-gray);
}

.link-with-icon {
  flex-flow: row;
  justify-content: flex-start;
  transition: color 0.3s;
  display: flex;
}

.link-with-icon:hover {
  color: var(--yellow-primary);
}

.contacts-wrapper {
  grid-column-gap: 60px;
  align-items: center;
  width: 100%;
  display: flex;
}

.contacts-content-wrapper {
  width: 50%;
}

.contacts-form-wrapper {
  border-radius: 10px;
  width: 50%;
}

.contacts-detail {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  padding: 8px 10px;
  display: flex;
}

.contacts-icon {
  color: var(--yellow-primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: 'Fa solid 900', sans-serif;
  font-size: 20px;
}

.paragraph-no-margin {
  color: var(--yellow-primary);
  margin-top: 0;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px solid var(--paragraph-gray);
  color: var(--primary);
  border-radius: 30px;
  min-height: 200px;
  margin-bottom: 30px;
  padding: 14px 30px;
  font-size: 18px;
}

.contacts-textarea:focus {
  border: 1px solid var(--yellow-primary);
}

.contacts-textarea::placeholder {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.contacts-input {
  border: 1px solid var(--paragraph-gray);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 70px;
  height: 54px;
  padding: 14px 30px;
  font-size: 18px;
  transition: all 0.2s;
}

.contacts-input:focus {
  border: 1px solid var(--yellow-primary);
}

.contacts-input::placeholder {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.footer-link {
  color: var(--paragraph-gray);
  padding-top: 4px;
  padding-bottom: 0;
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--yellow-primary);
}

.footer-link.w--current {
  color: var(--primary);
}

.footer-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.white-text {
  color: #fff !important;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.footer-brand {
  color: #fff;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.social-icon {
  border: 1px solid var(--yellow-primary);
  color: var(--yellow-primary);
  border-radius: 100px;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  font-family: 'Fa brands 400', sans-serif;
  font-size: 18px;
  line-height: 1em;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
  display: flex;
}

.social-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-icon.last-child {
  margin-right: 0;
}

.footer-links-wrapper {
  grid-column-gap: 40px;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  max-width: 300px;
  height: auto;
}

.search-wrap-input {
  color: var(--yellow-primary);
  background-color: #0000;
  border: 1px solid #0000;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

.search-wrap-input::placeholder {
  color: var(--dark-gray);
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.search-close-button {
  cursor: pointer;
  font-family: 'Fa solid 900', sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 50px 50px auto auto;
}

.search-bottom-line {
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  color: var(--primary);
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 20px;
  font-weight: 800;
  transition: all 0.3s;
  display: inline-block;
}

.search-link:hover {
  opacity: 0.7;
}

.search-input {
  border: 1px solid var(--paragraph-gray);
  color: var(--primary);
  border-radius: 70px;
  height: 54px;
  margin-bottom: 0;
  padding: 14px 30px;
  font-size: 18px;
}

.search-input:focus {
  border: 1px solid var(--yellow-primary);
}

.search-input::placeholder {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.search-section {
  padding-top: 160px;
}

.service-details-content-wrapper {
  margin-right: 40px;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.accordion-wrapper-one-column {
  justify-content: center;
  height: 100%;
  margin-top: 50px;
}

.accordion-wrapper-one-column.mt-0 {
  margin-top: 0;
}

.headings-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  margin-top: 50px;
}

.service-list-item {
  position: relative;
}

.style-guide-content-wrapper {
  display: flex;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all 0.3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.nav-dropdown-column {
  width: 180px;
}

.secondary-button {
  border: 1px solid var(--yellow-primary);
  color: var(--primary);
  background-color: #0000;
  border-radius: 70px;
  text-align: center;
  padding: 14px 30px;
  transition: background-color 0.3s;
}

.secondary-button:hover {
  background-color: var(--yellow-primary);
  color: var(--primary);
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper,
.testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--yellow-primary);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color 0.2s;
  display: flex;
}

.dropdown-nav-link:hover,
.dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.rich-text-style h2 {
  margin-bottom: 15px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h4 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.rich-text-style h5,
.rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style li {
  background-image: url('../images/List-bullet_1List-bullet.png');
  font-size: 18px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.paragraph-gray-style-guide {
  background-color: var(--paragraph-gray);
  width: 75px;
  height: 75px;
}

.style-guide-subtitle {
  margin-bottom: 20px;
}

.details-page-title {
  color: var(--white);
  font-size: 60px;
}

.logo-header {
  width: 170px;
  height: auto;
}

.button-header.mobile-menu {
  display: none;
}

.buttons-banner-wrapper {
  grid-column-gap: 40px;
  display: flex;
}

.buttons-banner-wrapper.center-banner {
  align-items: center;
  justify-content: center;
}

.appointment-section {
  background-image: url('../images/Appointment-Img-1_1Appointment Img (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.success-message {
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 5px;
}

.success-message.appointment {
  background-color: var(--primary);
  color: var(--yellow-primary);
}

.error-message {
  background-color: var(--yellow-primary);
  color: var(--primary);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
}

.form-wrapper {
  grid-column-gap: 30px;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.form-wrapper.mb-50 {
  margin-bottom: 50px;
}

.form-appointmant {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-field-with-icon {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #ffffff0d;
  background-image: url('../images/Full-Name-Icon_1Full Name Icon.png');
  background-position: 30px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 70px;
  height: 55px;
  margin-bottom: 0;
  padding: 14px 30px 14px 64px;
  font-size: 18px;
}

.text-field-with-icon:focus {
  border-color: var(--yellow-primary);
}

.text-field-with-icon::placeholder {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.text-field-with-icon.email {
  background-image: url('../images/Email-Icon_1Email Icon.png');
}

.text-field-with-icon.phone {
  background-image: url('../images/Phone-Icon_1Phone Icon.png');
}

.text-field-with-icon.date {
  background-image: url('../images/Email-Icon_1Email Icon.png');
}

.form-block-appointment {
  width: 100%;
  max-width: 740px;
}

.info-number {
  color: var(--yellow-primary);
  font-family: Raleway, sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1em;
}

.about-wrapper {
  z-index: 11;
  grid-column-gap: 40px;
  background-color: var(--white);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px 20px 40px;
  display: flex;
  position: relative;
  box-shadow: 0 15px 40px #00000012;
}

.about-img-home-1 {
  object-fit: cover;
  border-radius: 4px;
  width: 480px;
  height: 100%;
}

.mt-30 {
  margin-top: 30px;
}

.mt-30.left-align {
  text-align: left;
}

.subtitle-wrap {
  background-color: var(--yellow-primary);
  border-radius: 80px;
  padding: 10px 20px;
  display: inline-block;
}

.subtitle-wrap.opacity-30 {
  background-color: #ffb6504d;
}

.subtitle-wrap.green {
  background-color: rgb(124, 167, 88);
}

.name-subtitle {
  color: var(--primary);
  align-items: center;
  line-height: 1em;
  display: flex;
}

.name-subtitle.text-white {
  color: var(--white);
}

.circle {
  margin-right: 8px;
  font-family: 'Fa solid 900', sans-serif;
  font-size: 10px;
  font-weight: 400;
  display: inline-block;
}

.link-block {
  flex: auto;
  width: 47%;
}

.section-title-left {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.slider-wrapper {
  width: 55%;
}

.slider-wrapper.home-2 {
  width: 100%;
}

.slider-reviews {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.left-arrow-review {
  background-color: var(--yellow-primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: background-color 0.3s;
  display: flex;
  inset: auto 84px 118px auto;
}

.left-arrow-review:hover {
  background-color: var(--primary);
}

.left-arrow-review.home-2 {
  bottom: 0;
}

.arrow-icon-slide {
  font-family: 'Fa solid 900', sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.right-arrow-review {
  background-color: var(--yellow-primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: background-color 0.3s;
  display: flex;
  inset: auto 0% 118px auto;
}

.right-arrow-review:hover {
  background-color: var(--primary);
}

.right-arrow-review.home-2 {
  bottom: 0;
}

.testimonial-info {
  grid-column-gap: 20px;
  flex: auto;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.testimonials-img {
  object-fit: cover;
  border-radius: 100px;
  width: 64px;
  height: 64px;
}

.stars {
  margin-top: 6px;
}

.name-testimonial {
  color: var(--primary);
  font-family: Raleway, sans-serif;
}

.numbering {
  grid-column-gap: 10px;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.line {
  background-color: var(--paragraph-gray);
  width: 100px;
  height: 1px;
}

.hero-content-left {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  margin-left: 25px;
  margin-right: 25px;
}

.info-banner-home-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  max-width: 720px;
  margin-top: 60px;
  display: grid;
  position: relative;
}

.line-horizontal {
  background-color: #62767533;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 50% 0% auto;
}

.line-vertical {
  background-color: #62767533;
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 50%;
}

.img-left-banner {
  z-index: 1;
  width: 250px;
  position: absolute;
  inset: auto auto 20px -44px;
}

.img-right-banner {
  z-index: 1;
  width: 250px;
  position: absolute;
  inset: auto -14px -20px auto;
}

.image-services {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 380px;
}

.image-services:hover {
  opacity: 0.8;
}

.image-services.image-massage-therapy-service {
  object-fit: cover;
  object-position: 50% 15%;
}

.name-services {
  margin-bottom: 0;
  font-size: 24px;
  transition: color 0.3s;
}

.name-services:hover {
  color: var(--paragraph-gray);
}

.about-img-2 {
  object-fit: contain;
  border-radius: 10px;
  width: 50%;
  height: 400px;
  box-shadow: 0 16px 40px #00000012;
}

.content-about {
  width: 100%;
}

.flex-faq-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.content-faq {
  width: 37%;
}

.faq-wrapper-home-3 {
  width: 59%;
}

.banner-content-about {
  position: relative;
}

.customers-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
}

.customer-name {
  color: var(--yellow-primary);
}

.info-customer {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.quote {
  width: 30px;
  margin-bottom: 10px;
}

.testimonials-white-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  padding: 30px;
  display: flex;
  box-shadow: 0 15px 40px #00000012;
}

.image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.color-img {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.details-title-banner {
  z-index: 1;
  position: relative;
}

.mt-20 {
  margin-top: 20px;
}

.info-contact {
  background-color: var(--primary);
  border-radius: 10px;
  justify-content: space-between;
  width: 100%;
  margin-top: -30px;
  padding: 30px 40px;
  display: flex;
  box-shadow: 0 15px 40px #00000012;
}

.contact-wrapper {
  width: 33.33%;
}

.contact-wrapper.center-borders {
  border-left: 1px solid #fff3;
  border-right: 1px solid #fff3;
}

.phone-number {
  color: var(--white);
  font-size: 20px;
}

.phone-number:hover {
  color: var(--yellow-primary);
}

.email {
  color: var(--white);
  font-size: 20px;
}

.email:hover {
  color: var(--yellow-primary);
}

.address {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2em;
}

.form-block {
  margin-bottom: 0;
}

.price {
  color: var(--yellow-primary);
}

.collection-list-services-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.collection-list-wrapper {
  width: 100%;
}

.collection-item-services-3 {
  flex: 1;
  width: 48%;
}

.link-block-services-img {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.content-services {
  margin-top: 10px;
}

.links-services {
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.details-img {
  object-fit: cover;
  width: 100%;
  height: 360px;
  margin-top: 80px;
}

.faq-details-wrapper {
  margin-top: 50px;
}

.field-label {
  margin-bottom: 20px;
}

._404-header {
  color: var(--paragraph-gray);
  margin-bottom: 30px;
  font-size: 120px;
}

.mt-10 {
  margin-top: 10px;
}

.promotion-icon {
  margin-right: 8px;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  color: #000;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-labels-wrapper {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-text-block {
  font-size: 14px;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
    Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
    Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  color: #ffffffb3;
}

.close-image {
  width: 12px;
  height: 12px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-left {
  z-index: 1000;
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  color: #000;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

.collection-list-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mb-0 {
  margin-bottom: 0;
}

.text-span-2 {
  color: var(--yellow-primary);
}

.block {
  display: block;
}

._5star {
  width: 130px;
}

.heading {
  text-transform: none;
}

.mt-0 {
  margin-top: 0;
}

.mb-60 {
  margin-bottom: 60px;
}

.banner-info {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 15px;
  display: flex;
}

.heading-2 {
  font-size: 50px;
}

.hero-content-left-container {
  /* background-image: linear-gradient(#ffffffb3, #ffffffb3); */
  justify-content: flex-start;
  align-items: center;
  /* width: 50%; */
  height: 100%;
  display: flex;
  position: relative;
}

.bold-text {
  color: var(--black);
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 80px;
  }

  h3 {
    font-size: 34px;
  }

  blockquote {
    background-position: 2% 30px, 98% 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 32px;
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.changelog-banner {
    padding-top: 180px;
  }

  .section.blog-details-banner,
  .section.services-1-banner,
  .section.banner-services,
  .section.licensing-banner {
    padding-top: 250px;
  }

  .grid-description.first-description {
    text-align: left;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: -30px;
  }

  .pages-banner {
    padding-top: 180px;
    padding-bottom: 120px;
  }

  .footer {
    padding-top: 120px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .item-list {
    width: 100%;
  }

  .contacts-wrapper {
    grid-column-gap: 100px;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .search-section {
    padding-top: 180px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .details-page-title {
    font-size: 62px;
  }

  .appointment-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .form-block-appointment {
    width: 70%;
  }

  .about-wrapper {
    grid-column-gap: 100px;
    padding-left: 50px;
  }

  .circle {
    margin-right: 10px;
  }

  .info-banner-home-2 {
    margin-top: 100px;
  }

  .img-left-banner {
    width: 310px;
    bottom: -60px;
  }

  .img-right-banner {
    width: 310px;
    bottom: -120px;
  }

  .image-services:hover {
    opacity: 1;
  }

  .about-img-2 {
    height: 400px;
  }

  .content-about {
    width: 62%;
  }

  .flex-faq-wrapper {
    grid-column-gap: 60px;
  }

  .content-faq {
    padding-right: 30px;
  }

  .faq-wrapper-home-3 {
    width: 60%;
  }

  .collection-item-services-3 {
    width: 31.5%;
  }

  .details-img {
    height: 400px;
    margin-top: 80px;
  }

  ._404-header {
    font-size: 140px;
  }
}

@media screen and (min-width: 1440px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: 0;
  }

  .footer {
    padding-top: 0;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .details-img {
    height: 450px;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 100px;
  }

  blockquote {
    padding-right: 100px;
  }

  .base-container.container-hero {
    background-position: 50% 45%;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .search {
    margin-top: 20px;
  }

  .appointment-section {
    padding-top: 170px;
    padding-bottom: 170px;
  }


  .search-heading {
    font-size: 20px;
  }

  .details-img {
    height: 500px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    text-align: center;
  }

  blockquote {
    text-align: center;
    background-size: 35px 35px, 35px 35px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.changelog-banner,
  .section.banner-home-2,
  .section.blog-details-banner,
  .section.services-1-banner,
  .section.banner-services,
  .section.licensing-banner {
    padding-top: 200px;
  }

  .section.banner-home-2.video-hero {
    padding-top: 80px;
  }
  

  .grid-system {
    width: 100%;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-wrapper {
    margin-right: 40px;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .style-guide-body-wrapper {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-menu {
    border-right: 1px solid var(--yellow-primary);
    background-color: var(--primary);
    flex-direction: column;
    width: 320px;
    position: fixed;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.dark-text-header {
    color: var(--white);
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity 0.5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    filter: invert();
    margin-right: 0;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    background-color: var(--primary);
    border-style: none;
    flex-direction: column;
    width: 100%;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: 320px;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
  }

  .nav-dropdown-link:hover {
    color: var(--yellow-primary);
  }

  .close-menu-button,
  .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 10px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    filter: invert();
    align-self: stretch;
    max-width: 60%;
  }

  .nav-item-title.dark-text-header {
    color: var(--white);
  }

  .pages-banner {
    padding-top: 140px;
  }

  .licensing-grid,
  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .blog-template-date {
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .text-button-icon {
    transform: rotate(45deg);
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-plan-item {
    max-width: 360px;
  }

  .contacts-wrapper {
    flex-direction: column;
  }

  .contacts-content-wrapper {
    text-align: center;
    width: 95%;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 15px;
  }

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

  .footer-link {
    padding-top: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-brand-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-links-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .search-section {
    padding-top: 140px;
  }

  .service-details-content-wrapper {
    margin-right: 20px;
  }

  .headings-container,
  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    background-color: var(--primary);
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    filter: invert(0%);
    margin-bottom: 4px;
  }

  .image-burger:where(
      .w-variant-47f971ca-4af6-f36d-6d99-09c296aee705
    ) {
    filter: invert();
  }

  .brand-tablet {
    display: block;
  }

  .details-page-title {
    font-size: 48px;
  }

  .button-header {
    display: none;
  }

  .button-header.mobile-menu {
    margin-top: 30px;
    display: block;
  }

  .buttons-banner-wrapper {
    justify-content: center;
  }

  .form-block-appointment {
    width: 90%;
    max-width: 560px;
  }

  .about-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
  }

  .about-img-home-1 {
    object-fit: cover;
    width: 100%;
    height: 350px;
  }

  .link-block,
  .slider-wrapper {
    width: 100%;
  }

  .left-arrow-review,
  .right-arrow-review {
    bottom: 68px;
  }

  .img-left-banner {
    width: 280px;
    position: static;
    bottom: 40px;
  }

  .img-right-banner {
    width: 280px;
    position: relative;
  }

  .ima-banner-home-2 {
    justify-content: space-between;
    width: 100%;
    margin-top: 80px;
    display: flex;
  }

  .left-img-wrapper {
    width: 50%;
    display: flex;
    position: relative;
  }

  .right-img-wrapper {
    justify-content: flex-end;
    width: 50%;
    display: flex;
    position: relative;
  }

  .about-img-2 {
    order: 1;
    width: 100%;
  }

  .content-about {
    width: 60%;
  }

  .flex-faq-wrapper {
    flex-direction: column;
  }

  .content-faq {
    text-align: center;
    width: 65%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-wrapper-home-3 {
    width: 100%;
  }

  .customers-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .info-contact {
    grid-column-gap: 10px;
    align-items: center;
    padding: 20px;
  }

  .contact-wrapper {
    width: 34%;
  }

  .contact-wrapper.center-borders {
    width: 30%;
  }

  .phone-number,
  .email,
  .address {
    font-size: 18px;
  }

  .collection-list-services-3 {
    grid-column-gap: 28px;
  }

  .collection-item-services-3 {
    width: 48%;
  }

  .promotion-labels-wrapper,
  .promotion-label-holder {
    display: none;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .collection-list-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .hero-content-left {
    z-index: 10;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    text-align: center;
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  p {
    text-align: left;
  }

  blockquote {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 22px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.changelog-banner {
    padding-top: 120px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.banner-home-2 {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .section.blog-details-banner,
  .section.services-1-banner,
  .section.banner-services,
  .section.licensing-banner {
    padding-top: 180px;
  }

  .base-container.container-hero {
    background-size: contain;
    height: 670px;
    background-position: 50% 0%;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px 0.5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .colors-container {
    margin-top: 0;
  }

  .headers-wrapper,
  .style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .primary-button.full-width-mobile,
  .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    margin-top: 35px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .grid-header {
    width: 100%;
    margin-top: 35px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .nav-dropdown-toggle {
    padding-right: 0;
  }

  .nav-dropdown-list,
  .nav-dropdown-list.megamenu {
    padding-left: 40px;
  }

  .pages-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-paragraph.last-item {
    margin-bottom: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .password-image {
    width: 100px;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .item-list {
    text-align: left;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
  }

  .footer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-section {
    padding-top: 120px;
  }

  .service-details-content-wrapper {
    margin-right: 0;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1,
  .about-img._5,
  .about-img._3,
  .about-img._4,
  .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

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

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .details-page-title {
    font-size: 40px;
  }

  .logo-header {
    width: 150px;
  }

  .appointment-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .form-block-appointment {
    width: 100%;
  }

  .about-wrapper {
    text-align: center;
    justify-content: center;
  }

  .hero-content-left {
    /* background: linear-gradient(0deg, #e6f2fd 0, #fdfeff 50%); */
    max-width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 15px;

    /* position: absolute; */
    inset: auto 0% 0%;
  }

  .img-left-banner,
  .img-right-banner {
    width: 240px;
  }

  .ima-banner-home-2 {
    margin-top: 60px;
  }

  .content-faq {
    width: 100%;
  }

  .banner-content-about {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

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

  .search-heading {
    text-align: left;
  }

  .details-title-banner {
    text-align: center;
  }

  .info-contact {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .contact-wrapper {
    width: 100%;
  }

  .contact-wrapper.center-borders {
    border-width: 1px 0;
    border-top-style: solid;
    border-top-color: #fff3;
    border-bottom-style: solid;
    border-bottom-color: #fff3;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .collection-list-services-3 {
    grid-column-gap: 0px;
  }

  .collection-item-services-3,
  .link-block-services-img {
    width: 100%;
  }

  .content-services {
    margin-top: 20px;
  }

  .details-img {
    margin-top: 60px;
  }

  ._404-header {
    font-size: 100px;
  }

  .promotion-label-left {
    max-width: 300px;
  }

  .heading-2 {
    font-size: 35px;
  }

  .services-grid-container {
    grid-template-columns: 1fr;
  }

  
}

@media screen and (max-width: 479px) {
  .base-container.container-hero {
    height: 630px;
    background-position: 50% -5%;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
    height: 95px;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button,
  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button,
  .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .footer-rights {
    text-align: center;
    line-height: 1.4em;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .pricing-plan-item {
    padding: 30px 30px 20px;
  }

  .footer-wrapper {
    margin-bottom: 10px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .secondary-button {
    width: 100%;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap,
  .home-9-team-item,
  .home-23-team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .buttons-banner-wrapper.center-banner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    width: 100%;
  }

  .form-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .info-number {
    font-size: 23px;
  }

  .section-title-left {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .left-arrow-review {
    inset: auto auto 0 60px;
  }

  .right-arrow-review {
    inset: auto 60px 0 auto;
  }

  .numbering {
    justify-content: center;
    margin-bottom: 100px;
  }

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

  .img-left-banner,
  .img-right-banner {
    width: 150px;
  }

  .name-services {
    font-size: 22px;
  }

  .content-about {
    text-align: center;
    width: 100%;
  }

  .content-faq {
    width: 100%;
  }

  .banner-content-about {
    align-items: center;
  }

  .info-contact {
    grid-row-gap: 10px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .banner-info {
    padding: 15px 10px;
  }

  .hero-content-left {
    padding-top: 15px;
    padding-bottom: 15px;
    bottom: -6%;
  }
}

#w-node-dc27f2a2-9197-08df-f4de-6a5c3bff511f-a780a9a3,
#w-node-_746935cd-7d79-e271-d519-c392b6e1dece-a780a9a3,
#w-node-_3c295c0d-5dfa-72b2-c1b1-f7b7bff6687d-a780a9a3,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a62d-5442a61c,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a639-5442a61c,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a645-5442a61c,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a653-5442a61c,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a65f-5442a61c,
#w-node-_74a934ed-4bb8-8fdd-9232-b5c15442a66d-5442a61c,
#w-node-_98b94ddf-d75e-5c4d-1f91-d6a59de1f192-a780a9a5,
#w-node-_499d8f90-82c9-cede-e3ea-28bd44c090cb-a780a9a5,
#w-node-fb71b7ab-4dc8-52d3-eb6e-a935af440b71-a780a9a5,
#w-node-e87e46c8-1c8c-632b-5d4c-60c13a639477-a780a9a5,
#w-node-_31d16e36-9f67-8f7c-66f9-9f4c7c908f7e-a780a9a5,
#w-node-d5a25980-fa86-a13b-e339-ab28871f8208-a780a9a5,
#w-node-_76071ef9-d9f3-7b48-0c04-800668fbbb55-a780a9a5,
#w-node-c37829fb-93cb-614c-220b-c146ed24d557-a780a9a5,
#w-node-e872a619-96db-dc6f-1679-8ef5b268a3e5-a780a9a5,
#w-node-_166acd99-811a-3dc8-2568-eea41ff7a906-a780a9a5,
#w-node-a9ce8f52-c4db-efa8-52c7-4b3858c13e0d-a780a9a5,
#w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cdd-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cdf-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8ce5-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8ce9-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cf3-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cf5-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cf7-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cf9-a780a9a5,
#w-node-d6859443-b347-4eae-1972-51018ebd8cfb-a780a9a5,
#w-node-fb65e094-be98-3e76-b15a-7b763272ecda-a780a9a5,
#w-node-_5cc30402-155c-5c76-e779-680bcf3c6017-a780a9a5,
#w-node-_347a02c1-ab0d-3480-a48e-04b71c267643-a780a9a5,
#w-node-_98c1ff74-55ff-4bf9-0c5b-dd905f7461db-a780a9a5,
#w-node-bab76b9b-aa0f-6ea4-d530-c218052c7fb2-a780a9a5,
#w-node-e0bb0627-4796-1b02-eb37-db42c62bdbfa-a780a9a5,
#w-node-_9a426f70-4d6e-8cb8-23f9-9f2813fc8f5e-a780a9a5,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e948-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e950-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e953-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e955-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e957-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e959-a780a9ab,
#w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-a780a9ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_0010e4f4-3ca8-8e68-1d33-bfef452cd8f6-a780a9a3,
  #w-node-_0010e4f4-3ca8-8e68-1d33-bfef452cd8fb-a780a9a3,
  #w-node-_0010e4f4-3ca8-8e68-1d33-bfef452cd900-a780a9a3,
  #w-node-d65f788e-18e9-ff6c-9209-e69a277e8831-a780a9a3 {
    place-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a9ce8f52-c4db-efa8-52c7-4b3858c13e0d-a780a9a5,
  #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cdd-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cdf-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8ce5-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8ce9-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cf3-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cf5-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cf7-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cf9-a780a9a5,
  #w-node-d6859443-b347-4eae-1972-51018ebd8cfb-a780a9a5,
  #w-node-fb65e094-be98-3e76-b15a-7b763272ecda-a780a9a5,
  #w-node-_5cc30402-155c-5c76-e779-680bcf3c6017-a780a9a5,
  #w-node-_347a02c1-ab0d-3480-a48e-04b71c267643-a780a9a5,
  #w-node-_98c1ff74-55ff-4bf9-0c5b-dd905f7461db-a780a9a5,
  #w-node-bab76b9b-aa0f-6ea4-d530-c218052c7fb2-a780a9a5,
  #w-node-e0bb0627-4796-1b02-eb37-db42c62bdbfa-a780a9a5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@font-face {
  font-family: 'Fa v4compatibility';
  src: url('../fonts/fa-v4compatibility.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Service Condition Card Styles */
.condition-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.condition-title {
  color: #4CAF50;
  margin-bottom: 15px;
  font-weight: 700;
}

.condition-list {
  margin: 0;
}

.services-grid-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

.services-grid-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-grid-header {
  color: #4CAF50;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.services-grid-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.services-grid-list li {
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}

.services-grid-list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.services-grid-list li:nth-child(even)::before {
  color: var(--yellow-primary);
}

.services-grid-note {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: var(--primary-light);
  border-radius: 8px;
}

.service-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.service-image  {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.service-title-image-container {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between title and image */
}

@media screen and (max-width: 479px) {
  .service-title-image-container {
    gap: 8px;
  }
  
  .service-title {
    font-size: 18px;
  }

}


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

.service-features-container {
  background: rgba(240, 240, 255, 0.85);
  border-radius: 12px;
  padding: 20px;
  margin: 0 auto 30px;
  max-width: 650px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service-feature-item {
  display: flex;
  align-items: center;
}

.service-feature-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-feature-text {
  text-align: left;
  color: #333;
}

.service-feature-title {
  margin: 0;
  font-size: 20px;
}

@media screen and (max-width: 479px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }
}

.top-bar {
  background-color: var(--primary);
  width: 100%;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  gap: 10px;
}

.top-bar .primary-button {
  padding: 8px 20px;
  font-size: 14px;
  margin: 0;
}

.top-bar .secondary-button {
  padding: 8px 20px;
  font-size: 14px;
  margin: 0;
}

.navbar {
  background-color: #ffff;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hide top bar buttons in main nav */
.navbar .button-header {
  display: none;
}

@media screen and (max-width: 991px) {

  /* Show buttons in mobile menu instead */
  .navbar .button-header.mobile-menu {
    display: block;
  }
}

.calendly-inline-widget {
  width: 100%;
}

/* Value Propositions Section Above the Fold */
.value-props-section {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 30px 0;
  margin: 0;
}

.value-props-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.value-prop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 10px;
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-prop-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-prop-item:hover .value-prop-icon svg {
  transform: scale(1.1);
}

.value-prop-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .value-props-wrapper {
    justify-content: center;
    gap: 15px;
  }
  
  .value-prop-item {
    min-width: 120px;
  }
  
  .value-prop-icon {
    width: 40px;
    height: 40px;
  }
  
  .value-prop-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .value-props-section {
    padding: 20px 0;
  }
  
  .value-props-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .value-prop-item {
    flex-direction: row;
    min-width: auto;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .value-prop-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .value-prop-text {
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
  }
}
