/* *****************************************************************

Stylesheet: Main Stylesheet

Here is where you import
all of your Sass files so they can compile into one
CSS file. 

***************************************************************** */

.transition-mix {
  transition: all 0.25s ease-in-out;
}

/* ----------------------------------------
   DESKTOP NAVIGATION
---------------------------------------- */

.upper-bar {
  position: relative;
}

.upper-bar:after {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
}

.upper-bar > .kt-inside-inner-col {
  position: relative;
  z-index: 2;
}

.upper-bar .wp-block-social-link:hover {
  color: var(--accent) !important;
}

@media (min-width: 1025px) {
  .lower-bar {
    background: white;
    background-image: none !important;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .lower-bar > .kt-row-column-wrap {
    background: var(--primary-color);
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .lower-bar > .kt-row-column-wrap {
    grid-template-columns: 90px 1fr;
  }

  .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column:first-of-type {
    overflow: hidden;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column:last-of-type {
    width: 630px;
    max-width: 630px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column .fm-responsive-image-block {
    width: 260px;
    max-width: 260px;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column .mobile-nav-trigger {
    width: 80px;
  }
}

.main-nav-container {
  max-width: 100vw;
}

/* ----------------------------------------
   STATIC NAVIGATION
---------------------------------------- */

@media (min-width: 0px) and (max-width: 1024px) {
  body.home:not(.scrolled) .navigation_menu .tel-link {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  body.home:not(.scrolled) .main-nav-container {
    background-color: transparent !important;
    border-bottom: 1px solid var(--accent);
    box-shadow: none;
  }

  body.home:not(.scrolled) .main-nav-container .upper-bar {
    display: none;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col {
    background-color: transparent;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar {
    background: transparent;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column:first-of-type {
    display: none;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container {
    background: transparent;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation {
    background-color: transparent !important;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu {
    display: flex;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }

  @media screen and (min-width: 1025px) and (max-width: 1200px) {
    body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu {
      -moz-column-gap: 20px;
           column-gap: 20px;
    }
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu > li.menu-item {
    background-color: transparent !important;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu > li.menu-item > p, body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu > li.menu-item > p > a {
    color: white !important;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu > li.menu-item > p .nav-arrow svg path, body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu > li.menu-item > p > a .nav-arrow svg path {
    fill: white !important;
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu .tel-link {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    margin-top: -1px;
  }

  @media screen and (min-width: 1025px) and (max-width: 1200px) {
    body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu .tel-link {
      display: none;
    }
  }

  body.home:not(.scrolled) .main-nav-container .kt-inside-inner-col .lower-bar > .kt-row-column-wrap .inner-nav-open-container .site-navigation .navigation_menu .tel-link a {
    color: white !important;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
  }
}

body.home.scrolled .navigation_menu .tel-link, body:not(.home) .navigation_menu .tel-link {
  display: none !important;
}

/* ----------------------------------------
   MOBILE NAVIGATION
---------------------------------------- */

@media (min-width: 0px) and (max-width: 1024px) {
  body:has(.mobile-nav-open) {
    overflow: hidden;
  }
}

.fm-mobile-nav-wrapper .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg {
  height: 24px;
  width: 24px;
}

.mobile-tiles .kb-section-has-link.is-active {
  background-color: var(--primary-color);
}

.mobile-tiles .kb-section-has-link.is-active .kt-inside-inner-col {
  background-color: var(--secondary-light-color);
}

.mobile-tiles .kb-section-has-link.is-active .kt-inside-inner-col img {
  filter: invert(88%) sepia(25%) saturate(3930%) hue-rotate(331deg) brightness(95%) contrast(96%);
}

.mobile-tiles .kb-section-has-link.is-active .kt-inside-inner-col p {
  color: var(--accent);
  text-decoration: underline;
}

.mobile-tiles .kb-section-has-link .kt-inside-inner-col img {
  filter: invert(93%) sepia(18%) saturate(540%) hue-rotate(309deg) brightness(107%) contrast(104%);
}

.mobile-tiles p {
  color: inherit;
}

@media (min-width: 0px) and (max-width: 1024px) {
  .lower-bar > .kt-row-column-wrap > .wp-block-kadence-column:first-of-type {
    position: relative;
    z-index: 4;
  }
}

.inner-nav-open-container {
  top: 67px;
}

.inner-nav-open-container.mobile-nav-open {
  top: 67px;
  height: calc(100vh - 120px);
}

@media (min-width: 641px) {
  .inner-nav-open-container.mobile-nav-open {
    right: calc((100vw - 100%) / 2 * -1);
  }
}

/* ----------------------------------------
   NAV LOADING
---------------------------------------- */

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fm-mobile-nav-wrapper .navigation_menu {
  animation-name: fadeInAnimation;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* *****************************************************************

Stylesheet: Main Stylesheet

Here is where you import
all of your Sass files so they can compile into one
CSS file. 

***************************************************************** */

/* ----------------------------------------
   GLOBAL LINK STYLES
---------------------------------------- */

[class*=with-icon] a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

[class*=with-icon] a:after {
  display: block;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

[style*="text-decoration:underline"] a {
  text-decoration: underline;
}

/* ----------------------------------------
   GLOBAL BUTTON STYLES
---------------------------------------- */

@keyframes borderAnimationIn {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-color: transparent;
  }

  50% {
    border-color: var(--secondary-color);
  }

  100% {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border-color: transparent;
  }
}

@keyframes borderAnimationOut {
  0% {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border-color: transparent;
  }

  50% {
    border-color: var(--secondary-color);
  }

  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-color: transparent;
  }
}

.wp-block-button .wp-block-button__link {
  min-width: 258px;
  max-width: 100%;
  transition: all 0.25s ease-in-out;
  position: relative;
}

.wp-block-button .wp-block-button__link:before {
  content: "";
  position: absolute;
  border: transparent solid 1px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left, border;
}

.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:active, .wp-block-button .wp-block-button__link:focus {
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
}

.wp-block-button .wp-block-button__link:hover:before, .wp-block-button .wp-block-button__link:active:before, .wp-block-button .wp-block-button__link:focus:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  animation: borderAnimationIn 0.3s ease-in-out;
}

.wp-block-button .wp-block-button__link:not(:hover):before {
  animation: borderAnimationOut 0.3s ease-in-out;
}

.wp-block-button.mb-0 .wp-block-button__link {
  margin-bottom: 0;
}

/* ----------------------------------------
   KADENCE OVERLAY LINK
---------------------------------------- */

.kb-section-link-overlay {
  margin-bottom: 0;
}

/* ----------------------------------------
   PLAY BUTTON
---------------------------------------- */

.wp-block-buttons [class*=play] .wp-block-button__link {
  border-radius: 100%;
  min-width: 10px;
  font-size: 0;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-buttons [class*=play] .wp-block-button__link:before {
  content: "";
  -webkit-mask-image: url("../../assets/images/play-button-icon.svg");
          mask-image: url("../../assets/images/play-button-icon.svg");
  --webkit-mask-image: url("../../assets/images/play-button-icon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  --webkit-mask-size: contain;
  background-color: currentcolor;
  width: 11px;
  height: 12px;
  display: block;
  position: relative;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: all 0.25s ease-in-out;
}

.wp-block-buttons [class*=play] .wp-block-button__link.hovered {
  background-color: var(--secondary-light-color);
}

/* ----------------------------------------
   DOWNLOAD BUTTON
---------------------------------------- */

.wp-block-button.download .wp-block-button__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6px;
}

.wp-block-button.download .wp-block-button__link .download-icon {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  display: block;
}

.wp-block-button.download .wp-block-button__link .download-icon:after {
  content: "";
  -webkit-mask-image: url("../../assets/images/download-icon.svg");
          mask-image: url("../../assets/images/download-icon.svg");
  --webkit-mask-image: url("../../assets/images/download-icon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  --webkit-mask-size: contain;
  background-color: var(--accent);
  width: 16px;
  height: 16px;
  display: block;
  transition: all 0.25s ease-in-out;
}

/* ----------------------------------------
   BACK TO TOP BUTTON
---------------------------------------- */

.back-to-top .wp-block-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.back-to-top .wp-block-button__link .back-to-top-icon {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  display: block;
}

.back-to-top .wp-block-button__link .back-to-top-icon:after {
  content: "";
  -webkit-mask-image: url("../../assets/images/back-to-top-icon.svg");
          mask-image: url("../../assets/images/back-to-top-icon.svg");
  --webkit-mask-image: url("../../assets/images/back-to-top-icon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  --webkit-mask-size: contain;
  background-color: currentcolor;
  width: 12px;
  height: 14px;
  display: block;
  transition: all 0.25s ease-in-out;
}

/* ----------------------------------------
   HIDING AND SHOWING
---------------------------------------- */

@media (min-width: 0px) and (max-width: 640px) {
  .hidden-sm-only {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .hidden-md-only {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hidden-xmd-only {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .hidden-xmd-down {
    display: none;
  }
}

@media (min-width: 1025px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 641px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 769px) {
  .hidden-xmd {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .important-hidden-sm-only {
    display: none !important;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .important-hidden-md-only {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .important-hidden-xmd-only {
    display: none !important;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .important-hidden-xmd-down {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .important-hidden-lg {
    display: none !important;
  }
}

@media (min-width: 641px) {
  .important-hidden-md {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .important-hidden-xmd {
    display: none !important;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .mobile-hide {
    display: none;
  }
}

[x-cloak] {
  visibility: hidden;
  overflow: hidden;
}

/* ----------------------------------------
   PAGE TEMPLATE SIZING
---------------------------------------- */

.main-content {
  max-width: 100%;
  padding: 0 15px;
  margin: auto;
}

@media (min-width: 641px) {
  .main-content {
    max-width: 600px;
  }
}

@media (min-width: 769px) {
  .main-content {
    max-width: 850px;
  }
}

@media (min-width: 1025px) {
  .main-content {
    max-width: 970px;
  }
}

.main-content:has(.sidebar-template-part), .main-content:has(.wp-block-template-part) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

@media (min-width: 1025px) {
  .main-content:has(.sidebar-template-part), .main-content:has(.wp-block-template-part) {
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 0 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1200px;
  }
}

.main-content:has(.sidebar-template-part) .entry-content, .main-content:has(.wp-block-template-part) .entry-content {
  max-width: 100%;
}

.main-content:has(.sidebar-template-part) .sidebar-template-part, .main-content:has(.sidebar-template-part) .wp-block-template-part, .main-content:has(.wp-block-template-part) .sidebar-template-part, .main-content:has(.wp-block-template-part) .wp-block-template-part {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1025px) {
  .main-content:has(.sidebar-template-part) .sidebar-template-part, .main-content:has(.sidebar-template-part) .wp-block-template-part, .main-content:has(.wp-block-template-part) .sidebar-template-part, .main-content:has(.wp-block-template-part) .wp-block-template-part {
    width: 370px;
    min-width: 370px;
    margin-top: 0 !important;
  }
}

.main-content .entry-content {
  max-width: 100%;
}

.main-content > .wp-block-template-part:last-of-type {
  margin-top: 50px;
}

.main-content > ul:first-child, .main-content div:first-child {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .wide-content {
    max-width: 1170px;
  }
}

.wide-content .entry-content {
  width: 100%;
}

/* ----------------------------------------
   FULL WIDTH CONTENT
---------------------------------------- */

.full-width-content {
  width: 100vw;
  left: calc((100vw - 100%) / 2 * -1);
}

@media (min-width: 641px) {
  .full-width-content {
    left: calc((100vw - 100%) / 2 * -1);
  }
}

@media (min-width: 769px) {
  .full-width-content {
    left: calc((100vw - 100%) / 2 * -1);
  }
}

@media (min-width: 1025px) {
  .full-width-content {
    left: calc((100vw - 970px) / 2 * -1);
  }

  body.home .full-width-content {
    left: calc((100vw - 940px) / 2 * -1);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .regular-width-md-xmd-only {
    width: 100%;
    max-width: 100%;
    left: auto;
  }
}

/* ----------------------------------------
   CONTACT PAGE AND THANK YOU PAGE
---------------------------------------- */

.wp-site-blocks:has(.contact-page), .wp-site-blocks:has(.thank-you-content) {
  position: relative;
}

.wp-site-blocks:has(.contact-page):after, .wp-site-blocks:has(.thank-you-content):after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
}

/* ----------------------------------------
   SPACING AND ALIGNMENT
---------------------------------------- */

.justify-center {
  justify-content: center;
}

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

@media (min-width: 1025px) {
  body.logged-in {
    margin-top: 32px;
  }
}

p.mb-0 > a {
  margin-bottom: 0;
}

/* ----------------------------------------
   LAYOUT AND POSITIONING
---------------------------------------- */

@media (min-width: 0px) and (max-width: 1024px) {
  .xmd-down-column {
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .mobile-column {
    flex-direction: column;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .xmd-down-center {
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .mobile-text-center {
    text-align: center;
  }
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (min-width: 1025px) {
  body.logged-in .fixed-top {
    top: 32px;
  }
}

/* ----------------------------------------
   OPACITY
---------------------------------------- */

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* ----------------------------------------
   SELECTION
---------------------------------------- */

::-moz-selection {
  background-color: var(--tertiary-color);
}

::selection {
  background-color: var(--tertiary-color);
}

.has-light-color::-moz-selection, .has-white-color::-moz-selection {
  background-color: grey;
}

.has-light-color::selection, .has-white-color::selection {
  background-color: grey;
}

/* ----------------------------------------
   LISTS
---------------------------------------- */

.entry-content ul:not(.fm-accordion-block, .kt-title-item) {
  list-style: none;
  padding: 0;
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li {
  display: flex;
  align-items: flex-start;
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li:last-of-type {
  margin-bottom: 0;
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li::marker {
  content: none;
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li:before {
  content: "";
  height: 7px;
  width: 7px;
  min-width: 7px;
  display: block;
  margin-right: 15px;
  border-radius: 100%;
  background: currentColor;
  margin-top: 0.5em;
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li ul {
  margin-left: 15px;
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .entry-content ul:not(.fm-accordion-block, .kt-title-item) li ul {
    margin-left: 45px;
  }
}

.entry-content ul:not(.fm-accordion-block, .kt-title-item) li ul li:before {
  background: transparent;
  border: 1px solid currentColor;
  height: 5px;
  width: 5px;
  min-width: 5px;
}

ul.kb-query-grid-wrap li.kb-query-item, ul.kb-query-grid-wrap li.wp-block-post, ul.kb-query-grid-wrap li.cat-item, ul.wp-block-post-template li.kb-query-item, ul.wp-block-post-template li.wp-block-post, ul.wp-block-post-template li.cat-item, ul.wp-block-categories-list li.kb-query-item, ul.wp-block-categories-list li.wp-block-post, ul.wp-block-categories-list li.cat-item {
  display: block;
}

ul.kb-query-grid-wrap li.kb-query-item:before, ul.kb-query-grid-wrap li.wp-block-post:before, ul.kb-query-grid-wrap li.cat-item:before, ul.wp-block-post-template li.kb-query-item:before, ul.wp-block-post-template li.wp-block-post:before, ul.wp-block-post-template li.cat-item:before, ul.wp-block-categories-list li.kb-query-item:before, ul.wp-block-categories-list li.wp-block-post:before, ul.wp-block-categories-list li.cat-item:before {
  content: none;
}

.entry-content ol {
  margin: 0;
  padding: 0;
}

.entry-content ol li {
  margin-left: 15px;
  padding-left: 10px;
}

.entry-content ol li:last-of-type {
  margin-bottom: 0;
}

.entry-content ol li::marker {
  font-weight: 600;
}

.kt-svg-icon-list {
  list-style: none;
}

.kt-svg-icon-list li:before {
  content: none !important;
}

/* ----------------------------------------
   BREADCRUMBS
---------------------------------------- */

.aioseo-breadcrumbs {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: var(--secondary-color);
}

.aioseo-breadcrumbs .aioseo-breadcrumb a:hover {
  color: var(--secondary-color);
}

.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  color: var(--secondary-color);
}

/* ----------------------------------------
   SIDEBAR WIDGET
---------------------------------------- */

.reviews-sidebar-widget .fm-slider {
  margin-bottom: 0;
  padding-bottom: 50px;
}

.reviews-sidebar-widget .fm-slider .fm-slider-navigation {
  margin-top: 0;
}

/* ----------------------------------------
   DROPCAPS
---------------------------------------- */

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.is-style-Dropcap .first-letter-dropcap {
  font-size: 90px;
  line-height: 0.75em;
  float: left;
  width: 80px;
  position: relative;
}

.is-style-Dropcap.draw-svg svg {
  stroke-dashoffset: 1661.109375px;
  stroke-dasharray: 1661.109375px;
  opacity: 1 !important;
  width: 93px;
  height: 30px;
  position: absolute;
  left: -13px;
  top: -1px;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

@media (min-width: 641px) {
  .is-style-Dropcap.draw-svg svg {
    left: -23px;
  }
}

.is-style-Dropcap.draw-svg.in-view svg {
  animation: draw 3s linear forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ----------------------------------------
   TABBED CONTENT
---------------------------------------- */

.kt-tabs-title-list .kt-title-item:before {
  content: none !important;
}

.kt-tabs-title-list .kt-title-item a {
  height: auto !important;
  font-weight: 300;
  font-family: var(--global-font);
}

.kt-tabs-title-list .kt-title-item a:hover {
  text-decoration: underline !important;
}

.kt-tabs-title-list .kt-title-item .kt-tab-title {
  width: 100%;
}

.kt-tabs-title-list .kt-title-item .kt-tab-title .kt-title-text {
  font-family: var(--heading-font);
  font-size: inherit;
  line-height: inherit;
}

/* ----------------------------------------
   M BACKGROUND
---------------------------------------- */

.background-m {
  position: relative;
}

.background-m:after {
  content: "";
  background-image: url("../images/background-m-tablet.png");
  background-repeat: no-repeat;
  width: 145px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -12px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 641px) {
  .background-m:after {
    top: 12px;
  }
}

@media (min-width: 1025px) {
  .background-m:after {
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("../images/background-m.png");
  }
}

/* ----------------------------------------
   DIVIDERS
---------------------------------------- */

hr.wp-block-separator {
  height: 1px;
  border: none;
  width: 100%;
  position: relative;
  overflow: visible;
  background: linear-gradient(to right, var(--secondary-color) 0%, var(--secondary-color) calc(50% - 52.5px), transparent calc(50% - 52.5px), transparent calc(50% + 52.5px), var(--secondary-color) calc(50% + 52.5px), var(--secondary-color) 100%);
}

@media (min-width: 0px) and (max-width: 1024px) {
  hr.wp-block-separator {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

hr.wp-block-separator:after {
  content: url("../../assets/images/divider-logo.svg");
  height: 30px;
  width: 75px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  mix-blend-mode: destination-out;
}

hr.wp-block-separator.simple-divider {
  background: currentColor;
}

hr.wp-block-separator.simple-divider:after {
  content: none;
}

.gallery-separator {
  grid-column-start: 1;
  grid-column-end: 3;
  display: grid;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (min-width: 1025px) {
  .gallery-separator.hidden-xmd-down {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
}

/* ----------------------------------------
   DOWNLOAD LINKS
---------------------------------------- */

@media (min-width: 0px) and (max-width: 1024px) {
  .download-links .wp-block-group {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
}

/* ----------------------------------------
   KADENCE BLOCKS
---------------------------------------- */

.wp-block-kadence-column:has(.column-overlay) .kt-inside-inner-col {
  position: relative;
}

.wp-block-kadence-column:has(.column-overlay) .kt-inside-inner-col > * {
  position: relative;
  z-index: 4;
}

.wp-block-kadence-column:has(.column-overlay) .kt-inside-inner-col .column-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

.wp-block-social-links .wp-social-link a {
  margin-bottom: 0;
}

.wp-block-social-links .wp-social-link a svg {
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.wp-block-post-excerpt__more-text {
  margin-top: 15px;
}

.wp-block-post-excerpt__more-text .wp-block-post-excerpt__more-link {
  margin-bottom: 0;
  width: 100%;
  padding: 20px;
  line-height: 1;
}

.alignfull {
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  left: 50%;
  right: 50%;
}

/* ----------------------------------------
   FOOTERS
---------------------------------------- */

@media (min-width: 641px) and (max-width: 768px) {
  .footer-lower-links {
    max-width: 445px;
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .footer-back-to-top-container {
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .raise-links {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    margin-top: -15px;
  }
}

@media (min-width: 1025px) {
  .raise-links {
    margin-top: -45px;
  }

  .footer-widget .wp-block-kadence-column .kt-inside-inner-col {
    position: relative;
  }

  .footer-widget .wp-block-kadence-column .kt-inside-inner-col:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(10, 39, 49, 0) 0%, rgb(0, 0, 0) 100%);
  }
}

@media (min-width: 0px) and (max-width: 1024px) {
  .footer-widget .wp-block-kadence-column .kt-inside-inner-col {
    background-size: contain;
    background-position: top center;
    position: relative;
  }

  .footer-widget .wp-block-kadence-column .kt-inside-inner-col:after {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    background-image: linear-gradient(180deg, rgba(10, 39, 49, 0) 0%, rgb(0, 0, 0) 35%);
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .footer-widget .wp-block-kadence-column .kt-inside-inner-col {
    background-size: 400px;
    padding-top: 50px !important;
  }

  .footer-widget .wp-block-kadence-column .kt-inside-inner-col:after {
    top: 50px;
    background-image: linear-gradient(180deg, rgba(10, 39, 49, 0) 0%, rgb(0, 0, 0) 20%);
  }
}

.footer-widget .wp-block-kadence-column .kt-inside-inner-col > * {
  position: relative;
  z-index: 12;
}

@media (min-width: 0px) and (max-width: 1024px) {
  .footer-widget .wp-block-kadence-column .kt-inside-inner-col .wp-block-buttons, .footer-widget .wp-block-kadence-column .kt-inside-inner-col p {
    margin-right: 0;
    flex-direction: column;
  }
}

/* ----------------------------------------
   LARGE EMPHASIZED HEADERS
---------------------------------------- */

.em-header {
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  text-transform: capitalize;
  color: var(--primary-light-color);
}

@media (min-width: 1025px) {
  .em-header {
    font-size: 82px;
    line-height: 76px;
  }
}

/* ----------------------------------------
   IMAGES
---------------------------------------- */

figure.w-full img {
  width: 100%;
}

figure.min-h-180 {
  min-height: 180px;
}

figure.min-h-180 img {
  min-height: 180px;
}

figure.contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

figure.cover img {
  -o-object-fit: cover;
     object-fit: cover;
}

figure.size-full {
  height: auto;
  width: auto;
}

.entry-content > figure {
  margin-bottom: 30px;
}

/* ----------------------------------------
   SEARCH BAR
---------------------------------------- */

.kb-search-input-wrapper input {
  font-family: var(--global-font);
}

/* ----------------------------------------
   PAGINATION
---------------------------------------- */

.wp-block-query-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers {
  margin-bottom: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  margin-bottom: 0;
  height: 35px;
  min-height: 35px;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-color);
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  color: var(--secondary-color);
  text-decoration: underline;
}

.wp-block-query-pagination .wp-block-query-pagination-next, .wp-block-query-pagination .wp-block-query-pagination-previous {
  font-size: 0;
  position: relative;
  border: 1px solid currentColor !important;
  border-radius: 50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  color: var(--secondary-color);
}

.wp-block-query-pagination .wp-block-query-pagination-next:after, .wp-block-query-pagination .wp-block-query-pagination-previous:after {
  content: "";
  width: 16px;
  height: 10px;
  mask-image: url("../../assets/images/pagination-icon.svg");
  -webkit-mask-image: url("../../assets/images/pagination-icon.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: currentColor;
}

.wp-block-query-pagination .wp-block-query-pagination-next:hover, .wp-block-query-pagination .wp-block-query-pagination-previous:hover {
  background: var(--tertiary-color);
}

.wp-block-query-pagination .wp-block-query-pagination-previous {
  transform: scale(-1);
  margin-right: 15px;
  margin-left: 0;
}

/* ----------------------------------------
   MEET TEAM SECTION
---------------------------------------- */

.meet-team-section .fm-accordion-block {
  margin: 0;
}

.meet-team-section .fm-accordion-block .fm-accordion-item {
  justify-content: center;
  align-items: center;
}

.meet-team-section .fm-accordion-block .fm-accordion-item .item-title {
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  justify-content: center;
  margin: 0 5px 0 0;
  padding: 0;
  font-weight: normal;
}

.meet-team-section .fm-accordion-block .fm-accordion-item .fm-accordion-item-icon {
  height: 22px;
  width: 22px;
}

.meet-team-section .fm-accordion-block .fm-accordion-item .fm-accordion-item-icon svg {
  width: 11px;
  height: 11px;
}

.meet-team-section .fm-accordion-block .fm-accordion-item.expanded .item-title, .meet-team-section .fm-accordion-block .fm-accordion-item:hover .item-title {
  text-decoration: underline;
}

.meet-team-section.option-one {
  height: 450px;
}

@media (min-width: 641px) {
  .meet-team-section.option-one {
    height: 400px;
  }
}

.meet-team-section.option-one.is-expanded:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  opacity: 0.5;
}

.meet-team-section.option-one.is-expanded figure img {
  filter: grayscale(1);
  opacity: 0.75;
}

.meet-team-section.option-one .kt-inside-inner-col {
  position: relative;
}

.meet-team-section.option-one .kt-inside-inner-col .text-container {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
}

.meet-team-section.option-one .kt-inside-inner-col .text-container .fm-accordion-block .fm-accordion-item {
  align-items: flex-start;
}

.meet-team-section.option-one .kt-inside-inner-col .text-container .fm-accordion-block .fm-accordion-item .item-title {
  width: 100%;
}

.meet-team-section.option-one .kt-inside-inner-col .text-container .fm-accordion-block .fm-accordion-item .item-title .fm-accordion-item-icon {
  border: 1px solid white;
}

.meet-team-section.option-one .kt-inside-inner-col .text-container .fm-accordion-block .fm-accordion-item .item-content {
  padding: 0;
  margin-top: 15px;
  max-height: 300px;
  overflow-y: scroll;
}

@media (min-width: 641px) {
  .meet-team-section.option-one .kt-inside-inner-col .text-container .fm-accordion-block .fm-accordion-item .item-content {
    max-height: 250px;
  }
}

.meet-team-section.option-one .kt-inside-inner-col > figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 450px;
  margin-bottom: 0;
}

@media (min-width: 641px) {
  .meet-team-section.option-one .kt-inside-inner-col > figure {
    height: 400px;
  }
}

.meet-team-section.option-one .kt-inside-inner-col > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------
   GALLERY CONTENT
---------------------------------------- */

@media (min-width: 0px) and (max-width: 1024px) {
  .gallery-content .kt-row-column-wrap {
    display: flex;
    flex-direction: column;
  }
}

/* ----------------------------------------
   GALLERY ARCHIVE
---------------------------------------- */

.post-type-archive-gallery .fm-slider {
  margin-top: 15px;
  margin-bottom: 15px;
}

.post-type-archive-gallery .fm-slider figure, .post-type-archive-gallery .fm-slider img {
  margin-bottom: 0;
}

.post-type-archive-gallery .wp-block-button__link {
  margin-bottom: 0;
}

/* ----------------------------------------
   SOCIAL ICONS
---------------------------------------- */

.wp-social-link:before {
  content: none !important;
}

.social-icon-border {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.social-icon-border svg {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------
   ERROR CONTENT
---------------------------------------- */

.error-page-content .geo-footer p, .error-page-content .geo-footer h2, .error-page-content .geo-footer h3, .error-page-content .geo-footer a {
  color: white !important;
}

/* ----------------------------------------
   MEET THE DOC SECTION
---------------------------------------- */

.entry-content > .meet-the-doc-section:first-of-type {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .entry-content > .meet-the-doc-section:first-of-type {
    margin-top: -50px;
  }
}

/* ----------------------------------------
   QUERY LOOPS AND CATEGORY LISTS
---------------------------------------- */

@media (min-width: 0px) and (max-width: 768px) {
  ul.wp-block-post-template {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  ul.wp-block-post-template {
    grid-template-columns: 1fr 1fr;
  }
}

ul.wp-block-post-template li.wp-block-post {
  border: 1px solid var(--accent);
  padding: 15px;
}

ul.wp-block-post-template li.wp-block-post .wp-block-kadence-column, ul.wp-block-post-template li.wp-block-post .kt-inside-inner-col {
  height: 100%;
}

ul.wp-block-post-template li.wp-block-post figure {
  height: auto;
}

ul.wp-block-post-template li.wp-block-post:has(.wp-block-post-featured-image) .wp-block-post-featured-image + figure {
  display: none;
}

ul.wp-block-categories-list {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px !important;
}

ul.wp-block-categories-list li.cat-item a, ul.wp-block-categories-list li.cat-item button {
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  border-radius: 0px;
  padding: 10px 20px;
  min-width: 85px;
  margin-bottom: 0;
  background: var(--light);
  color: var(--primary-color);
}

ul.wp-block-categories-list li.current-cat.cat-item a, ul.wp-block-categories-list li.current-cat.cat-item button {
  background: var(--tertiary-color);
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ----------------------------------------
   CONTACT PAGE CONTENT
---------------------------------------- */

.contact-page-content .form-office-info-section {
  margin-bottom: 90px;
}

.contact-page-content .form-office-info-section .has-primary-light-color-color, .contact-page-content .form-office-info-section .has-white-color:not(.form-heading), .contact-page-content .form-office-info-section .is-style-white-link-with-icon a, .contact-page-content .form-office-info-section .wp-block-button__link:not(.gform_button) {
  color: var(--primary-color) !important;
}

.contact-page-content .form-office-info-section .has-primary-light-color-color a:hover, .contact-page-content .form-office-info-section .has-white-color:not(.form-heading) a:hover, .contact-page-content .form-office-info-section .is-style-white-link-with-icon a a:hover, .contact-page-content .form-office-info-section .wp-block-button__link:not(.gform_button) a:hover {
  color: var(--secondary-color) !important;
}

.contact-page-content .form-office-info-section .wp-block-button__link:hover:not(.gform_button) {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color);
}

/* ----------------------------------------
   GRAVITY FORM STYLES
---------------------------------------- */

.two-col-version .gform_wrapper form .gform_fields {
  row-gap: 0;
}

@media (min-width: 769px) {
  .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(1), .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(2), .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(3), .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(4) {
    width: calc(50% - 15px);
    display: inline-block;
  }

  .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(1), .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(3) {
    margin-right: 15px;
  }

  .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(2), .two-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(4) {
    margin-left: 15px;
  }
}

.two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox {
  min-width: 43%;
  text-align: right;
}

@media (min-width: 0px) and (max-width: 768px) {
  .two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox {
    margin-bottom: 10px;
  }
}

.two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox .gfield_checkbox {
  align-items: flex-end;
}

.two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox .gchoice label p {
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 768px) {
  .two-col-version .gform_wrapper form .gform_fields .ginput_container_select select {
    min-height: 50px;
  }
}

.two-col-version .gform_wrapper form .gform_fields .gfield .modal a {
  font-size: 18px;
  color: var(--primary-color);
}

.gform_wrapper .gform_required_legend {
  display: none;
}

.gform_wrapper form .gform_fields {
  display: block;
}

.gform_wrapper form .gform_fields .gfield:not(.gfield--type-checkbox) label {
  color: white;
  font-family: var(--global-font);
  line-height: var(--mobile-line-height);
  font-size: var(--mobile-font-size);
}

@media (min-width: 641px) {
  .gform_wrapper form .gform_fields .gfield:not(.gfield--type-checkbox) label {
    line-height: var(--tablet-line-height);
    font-size: var(--tablet-font-size);
  }
}

@media (min-width: 1025px) {
  .gform_wrapper form .gform_fields .gfield:not(.gfield--type-checkbox) label {
    line-height: var(--desktop-line-height);
    font-size: var(--desktop-font-size);
  }
}

.gform_wrapper form .gform_fields .gfield:not(.gfield--type-checkbox) label .gfield_required {
  display: none;
}

.gform_wrapper form .gform_fields .gfield .modal a {
  font-size: 14px;
  line-height: 1;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox {
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  margin-right: 5px;
  transform: translateY(2px);
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .ginput_container_checkbox {
  margin-left: 10px;
}

@media screen and (min-width: 400px) and (max-width: 640px) {
  .gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .ginput_container_checkbox {
    margin-left: calc((100vw - 30px - 255px) / 4);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .ginput_container_checkbox {
    margin-left: 112px;
  }
}

@media screen and (min-width: 1200px) {
  .gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .ginput_container_checkbox {
    margin-left: 67px;
  }
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .gchoice {
  display: flex;
  align-items: center;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .gchoice .gfield-choice-input {
  padding-top: 5px;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox .gchoice p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1;
  color: white;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-html {
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-html a {
  color: var(--accent);
  font-size: 16px;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-html a:hover {
  color: white;
}

.gform_wrapper form .gform_fields .gfield .ginput_container:hover input, .gform_wrapper form .gform_fields .gfield .ginput_container:hover select, .gform_wrapper form .gform_fields .gfield .ginput_container:hover textarea {
  color: white !important;
}

.gform_wrapper form .gform_fields .gfield .ginput_container.validated input:not(.gfield-choice-input),
.gform_wrapper form .gform_fields .gfield .ginput_container.validated select,
.gform_wrapper form .gform_fields .gfield .ginput_container.validated textarea {
  color: white;
  background-image: url("../../assets/images/check-circle-regular-green.svg");
  background-origin: content-box;
  padding-right: 1.3em;
  background-position: right -1.1em center;
  background-repeat: no-repeat;
  background-size: 17px;
}

.gform_wrapper form .gform_fields .gfield .ginput_container.gfield_error input:not(.gfield-choice-input),
.gform_wrapper form .gform_fields .gfield .ginput_container.gfield_error select,
.gform_wrapper form .gform_fields .gfield .ginput_container.gfield_error textarea {
  background-image: url("../../assets/images/times-circle-regular-red.svg");
  background-origin: content-box;
  padding-right: 1.3em;
  background-position: right -1.1em center;
  background-repeat: no-repeat;
  background-size: 17px;
}

.gform_wrapper form .gform_fields .gfield .ginput_container input:not(.gfield-choice-input),
.gform_wrapper form .gform_fields .gfield .ginput_container select,
.gform_wrapper form .gform_fields .gfield .ginput_container textarea {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: var(--global-font-weight);
  margin-bottom: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.34);
  transition: color 0.25s ease-in-out;
}

.gform_wrapper form .gform_fields .gfield .ginput_container input:not(.gfield-choice-input):focus,
.gform_wrapper form .gform_fields .gfield .ginput_container select:focus,
.gform_wrapper form .gform_fields .gfield .ginput_container textarea:focus {
  outline: none !important;
  border-top: none;
  border-left: none;
  border-right: none;
}

.gform_wrapper form .gform_fields .gfield .ginput_container select {
  background-image: url("../../assets/images/caret-down-solid.svg");
  background-origin: content-box;
  background-position: right -0.8em center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 1.3em;
  display: flex;
  align-items: center;
}

.gform_wrapper form .gform_fields .gfield .ginput_container textarea {
  min-height: 80px;
  max-height: 200px;
  max-width: 100%;
  height: 80px;
}

.gform_wrapper form .gform_fields .gfield .ginput_container input.gfield-choice-input {
  border: 1px solid rgba(0, 0, 0, 0.5);
  height: 14px;
  width: 14px;
  background-image: none !important;
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  opacity: 1;
  position: static;
  z-index: auto;
}

.gform_wrapper form .gform_fields .gfield .ginput_container input.gfield-choice-input:before {
  content: none !important;
}

.gform_wrapper form .gform_fields .gfield .ginput_container input.gfield-choice-input:focus {
  outline: none;
  border: 1px solid var(--primary-color);
}

.gform_wrapper form .gform_footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gform_wrapper form .gform_footer .gform_button {
  width: 252px !important;
  padding: 12px !important;
  min-width: 252px;
  font-size: 18px !important;
  outline: none !important;
  text-transform: uppercase !important;
  font-weight: var(--global-font-weight) !important;
  border-radius: var(--global-button-border-radius) !important;
  background: var(--secondary-color) !important;
  text-transform: none !important;
}

.gform_wrapper form .gform_footer .gform_button:hover {
  background: var(--tertiary-color) !important;
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
}

/* ----------------------------------------
   ACCESSIBE WIDGET
---------------------------------------- */

.acsb-widget .acsb-main .acsb-hero .acsb-hero-actions .acsb-hero-action {
  margin-bottom: 0;
}

.acsb-widget .acsb-main .acsb-hero .acsb-hero-actions .acsb-hero-action span {
  font-size: 15px;
  line-height: 1;
}

/* ----------------------------------------
   Front Page Banner
---------------------------------------- */

@media (min-width: 0px) and (max-width: 640px) {
  .fp-banner > .kt-row-column-wrap {
    align-content: center;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-banner .kt-inside-inner-col:has(.upper-content) {
    padding-bottom: 240px;
    padding-top: 300px;
  }
}

.fp-banner .kb-row-layout-wrap {
  width: 100%;
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.upper-content {
    max-width: 630px;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap {
    grid-template-columns: 240px 1fr;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column {
    align-self: center;
  }
}

@media (min-width: 1025px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column {
    justify-content: flex-end;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column img {
    width: 237px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column img {
    width: 348px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column img {
    width: 237px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.upper-content .kt-row-column-wrap .wp-block-kadence-column h1 {
    font-size: 42px;
    line-height: 46px;
    text-align: center;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.lower-content {
    max-width: 630px;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-banner .kb-row-layout-wrap.lower-content .kt-row-column-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-banner .kb-row-layout-wrap.lower-content .kt-row-column-wrap {
    grid-template-columns: 1fr 260px;
  }
}

/* ----------------------------------------
   Front Page Procedures
---------------------------------------- */

@media (min-width: 0px) and (max-width: 768px) {
  .fp-procedures .fp-procedures-inner > .kt-inside-inner-col {
    padding-bottom: 600px;
  }
}

.fp-procedures .left-text-section figure {
  position: absolute;
  top: -25px;
  left: 0px;
  right: 0;
  width: 210px;
  height: 145px;
  z-index: 2;
  pointer-events: none;
  margin: auto;
}

@media (min-width: 641px) {
  .fp-procedures .left-text-section figure {
    width: 128px;
    height: 88px;
  }
}

@media (min-width: 1025px) {
  .fp-procedures .left-text-section figure {
    top: -25px;
    left: -305px;
    width: 766px;
    height: 528px;
    right: auto;
  }
}

@media screen and (min-width: 1280px) {
  .fp-procedures .left-text-section figure {
    left: -178px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-procedures .left-text-section h2 {
    font-size: 36px !important;
    line-height: 42px !important;
    text-align: center !important;
  }

  .fp-procedures .left-text-section p {
    font-size: 24px !important;
    line-height: 28px !important;
    text-align: center !important;
  }

  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 890px) {
  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap {
    grid-template-columns: 400px 1fr;
  }
}

@media screen and (min-width: 891px) and (max-width: 1279px) {
  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap {
    grid-template-columns: 550px 1fr;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap .kt-inside-inner-col {
    padding-left: 0;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap .kt-inside-inner-col p {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-procedures .kt-row-column-wrap .kt-row-column-wrap .kt-inside-inner-col .wp-block-buttons {
    justify-content: center;
  }
}

.fp-procedures-slider {
  margin-top: -565px;
  overflow: hidden;
  position: relative;
  z-index: 6;
}

@media (min-width: 769px) {
  .fp-procedures-slider {
    margin-top: -350px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-procedures-slider > .kt-row-column-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1279px) {
  .fp-procedures-slider > .kt-row-column-wrap > .wp-block-kadence-column {
    overflow: visible;
  }
}

.fp-procedures-slider .wp-block-kadence-column {
  overflow: hidden;
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider {
  display: flex;
  flex-direction: column-reverse;
  width: 335px;
  position: static;
  margin-top: 50px;
}

@media (min-width: 641px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider {
    width: 728px;
    margin-left: 0;
    overflow: visible;
  }
}

@media (min-width: 769px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider {
    width: 1170px;
  }
}

@media (min-width: 1025px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider {
    width: 1170px;
  }
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column {
  margin: 16px;
  outline: 1px solid var(--accent);
  outline-offset: 15px;
}

@media (min-width: 769px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column {
    margin: 26px;
    outline-offset: 25px;
  }
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col {
  padding: 15px;
}

@media (min-width: 769px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col {
    padding: 30px;
  }
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col:after {
  content: "";
  height: 15px;
  width: 100%;
  background: black;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
}

@media (min-width: 769px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col:after {
    height: 30px;
  }
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col .fm-responsive-image-block {
  position: absolute;
  z-index: -1;
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col .wp-block-buttons {
  width: 100%;
  position: relative;
  z-index: 6;
  background: black;
  padding-bottom: 10px;
}

@media (min-width: 1025px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide .wp-block-kadence-column .kt-inside-inner-col p {
    margin-bottom: calc(-100% + 100px);
    opacity: 0;
    transition: all 0.35s ease-in-out;
    height: 168px;
  }

  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-inner-slide:hover .wp-block-kadence-column .kt-inside-inner-col p {
    margin-bottom: 15px;
    opacity: 1;
    transition: all 0.35s ease-in-out;
    height: auto;
  }
}

.fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-slider-navigation {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-procedures-slider .wp-block-kadence-column .fm-slider .fm-slider-navigation {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------------------------------------
   Front Page Meet The Doctor
---------------------------------------- */

@keyframes bannermove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-85%, 0);
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-meet-doc {
    margin-top: 50px !important;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col:before {
  z-index: 4;
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col:before {
    opacity: 0 !important;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block {
  z-index: 2;
}

@media (min-width: 0px) and (max-width: 640px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block {
    position: relative;
    max-width: 375px;
    max-height: 200px;
    height: 200px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block {
    position: relative;
    max-width: 600px;
    max-height: 200px;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block img {
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block img {
    -o-object-position: 65% 50%;
       object-position: 65% 50%;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap {
  z-index: 6;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap {
    max-width: 635px;
    margin-left: 0;
    margin-right: auto;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap {
  overflow: hidden;
}

@media (min-width: 641px) and (max-width: 768px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 565px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-buttons {
  justify-content: center;
}

@media (min-width: 769px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-buttons {
    justify-content: left;
  }
}

.fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-image img {
  filter: grayscale(1);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap h2 {
    font-size: 82px;
    line-height: 77px;
    text-align: left;
  }

  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap p:first-of-type {
    font-size: 32px;
    line-height: 36px;
    max-width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 850px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap p {
    text-align: left;
    max-width: 350px;
  }
}

@media (min-width: 851px) and (max-width: 1024px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap p {
    text-align: left;
    max-width: 412px;
  }
}

@media (min-width: 769px) {
  .fp-meet-doc .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .background-m:after {
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("../images/background-m.png");
  }
}

.sliding-logos {
  animation: bannermove 20s linear infinite;
  max-width: 100vw;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

@media (min-width: 641px) {
  .sliding-logos {
    animation: none;
    max-width: 100%;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .sliding-logos img {
    width: -moz-fit-content;
    width: fit-content;
    max-height: 100px;
    max-width: 173px;
  }
}

body.home .sliding-logos {
  max-width: calc(100% + 40px);
}

@media (min-width: 641px) and (max-width: 1024px) {
  body:not(.home) .meet-the-doc-section {
    background-size: 600px !important;
  }
}

/* ----------------------------------------
   Front Page Before And After
---------------------------------------- */

.fp-before-after {
  position: relative;
}

.fp-before-after .kt-row-column-wrap {
  position: static;
}

@media screen and (min-width: 769px) and (max-width: 949px) {
  .fp-before-after .kt-row-column-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 950px) and (max-width: 1024px) {
  .fp-before-after .kt-row-column-wrap {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) {
  position: static;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) {
    order: 1 !important;
  }
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) .kt-inside-inner-col {
  position: static;
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) .kt-inside-inner-col .fm-responsive-image-block {
  width: 1466px;
  max-width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  height: 480px;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 1466px) {
  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) .kt-inside-inner-col .fm-responsive-image-block {
    max-width: 1466px;
  }
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) .fm-image-comparison-wrapper {
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 641px) {
  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(1) .fm-image-comparison-wrapper {
    max-width: 100%;
  }
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) {
  position: static;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) {
    order: 2 !important;
  }
}

.fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) .kt-inside-inner-col {
  position: static;
}

@media screen and (min-width: 950px) and (max-width: 1024px) {
  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) .kt-inside-inner-col h2 {
    font-size: 82px !important;
    line-height: 76px !important;
    text-align: left !important;
    max-width: 475px;
    margin-left: 0;
    margin-right: auto;
  }

  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) .kt-inside-inner-col p:first-of-type {
    font-size: 32px;
    line-height: 37px;
  }

  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) .kt-inside-inner-col p {
    text-align: left !important;
  }

  .fp-before-after .kt-row-column-wrap > .wp-block-kadence-column:nth-of-type(2) .kt-inside-inner-col .wp-block-buttons {
    margin-left: 0;
    margin-right: auto;
  }
}

/* ----------------------------------------
   Front Page Physician Assistant
---------------------------------------- */

@media (min-width: 769px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col:before {
    width: 60%;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block img {
    -o-object-position: 45% 50%;
       object-position: 45% 50%;
  }
}

@media (min-width: 769px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap {
    padding-top: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap {
    padding-right: 0;
  }
}

.fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}

.fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col {
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 849px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col {
    max-width: 332px;
  }
}

@media screen and (min-width: 850px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col {
    max-width: 470px;
  }
}

.fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
  position: absolute;
  filter: none;
  top: 0px;
  left: 0;
  right: 0;
  height: 145px;
  width: 345px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

@media (min-width: 641px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
    height: 100px;
    width: 145px;
    right: 0;
    top: -8px;
  }
}

@media (min-width: 769px) {
  .fp-physician-assistant .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
    height: 250px;
    width: 363px;
    right: auto;
    top: 92px;
  }
}

/* ----------------------------------------
   Front Page Reviews
---------------------------------------- */

.fp-reviews {
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-reviews .fp-procedures-inner > .kt-inside-inner-col {
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 769px) and (max-width: 890px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap {
    grid-template-columns: 347px 1fr;
  }
}

@media screen and (min-width: 891px) and (max-width: 1279px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap {
    grid-template-columns: 445px 1fr;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .left-text-section {
  position: relative;
  z-index: 4;
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .left-text-section h2 {
    max-width: 100%;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section {
  overflow: hidden;
  position: relative;
}

@media (min-width: 769px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section {
    overflow: visible;
    background: transparent;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 6;
  height: 25%;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 0.4) 100%);
  box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.4);
}

@media (min-width: 769px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section:before {
    top: -280px;
    height: 165px;
  }
}

@media (min-width: 1025px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section:before {
    top: -180px;
    height: 150px;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col {
  padding-top: 160px;
  padding-bottom: 260px;
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col:before {
  content: none;
}

@media (min-width: 769px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical {
  max-height: 250px;
}

@media (min-width: 641px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical {
    max-height: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical {
    max-width: 475px;
    margin-left: 0;
    margin-right: auto;
  }
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical:after {
  content: "";
  position: absolute;
  bottom: -280px;
  left: 0;
  z-index: 6;
  height: 280px;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgb(26, 26, 26) 50%, rgb(26, 26, 26) 100%);
  box-shadow: 0px -10px 20px 0px rgba(26, 26, 26, 0.4);
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical p {
  text-align: left;
  margin-left: 0;
}

.fp-reviews .fp-procedures-inner .kt-row-column-wrap .vertical-slider-section .kt-inside-inner-col .fm-slider-vertical .fm-slider-navigation {
  position: absolute;
  z-index: 12;
  bottom: -250px;
  left: 0;
  right: 0;
  margin: auto;
}

/* ----------------------------------------
   Front Page Reasons To Choose
---------------------------------------- */

@media (min-width: 0px) and (max-width: 768px) {
  .fp-reasons-to-choose {
    margin-top: 0 !important;
  }
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col:before {
  opacity: 1 !important;
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col:before {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
  }
}

@media (min-width: 769px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col:before {
    width: 120%;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1025px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col:before {
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
  }
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .fm-responsive-image-block img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 769px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap {
    max-width: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap {
    padding-right: 0;
  }
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col {
    max-width: 677px;
  }
}

@media screen and (min-width: 1025px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col {
    max-width: 648px;
  }
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col ol {
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col ol {
    -moz-columns: 2;
         columns: 2;
    -moz-column-fill: balance;
         column-fill: balance;
    max-width: 100%;
  }
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col ol li:nth-child(4) {
  -moz-column-break-before: column;
       break-before: column;
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col ol li {
  text-align: left;
}

.fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
  position: absolute;
  filter: none;
  top: 0px;
  left: 0;
  right: 0;
  height: 145px;
  width: 345px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

@media (min-width: 641px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
    height: 100px;
    width: 145px;
    right: 0;
    top: -8px;
  }
}

@media (min-width: 769px) {
  .fp-reasons-to-choose .fp-meet-doc-inner .kt-inside-inner-col .kb-row-layout-wrap .kt-row-column-wrap .wp-block-kadence-column .kt-inside-inner-col .background-text-m img {
    height: 250px;
    width: 363px;
    right: auto;
    top: -15px;
    right: 0;
  }
}

/* ----------------------------------------
   Tooltip
---------------------------------------- */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */
}

.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 145px;
  text-align: center;
  top: 50px;
  left: 0;
  background: white;
  color: black;
  border-radius: 0;
  padding: 15px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
}

.tooltip .tooltiptext p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 15px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}

/* ----------------------------------------
  Mobile Phone Number Pop Up
---------------------------------------- */

.mobile-phone-wrap {
  position: absolute;
  z-index: 12;
  background: white;
  top: 100%;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.mobile-phone-wrap .wp-block-button__link {
  color: white !important;
}

.mobile-phone-wrap .wp-block-button__link:hover {
  color: var(--wp--preset--color--secondary-color) !important;
}

.mobile-tiles > .kt-row-column-wrap > .wp-block-kadence-column:first-of-type.open-dropdown .mobile-phone-wrap {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s;
}

/* ----------------------------------------
   From Customizer
---------------------------------------- */

#hello-bar-inner-modal {
  display: flex;
  align-items: flex-end;
}

#hello-bar-inner-modal .inner-modal {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

#hello-bar-inner-modal .hello-popup-inner {
  padding: 0;
  position: relative;
  max-width: 980px;
}

#hello-bar-inner-modal .button-container, #terms-popup-inner-modal .button-container {
  position: absolute;
  top: -10px;
  right: -10px;
}

#hello-bar-inner-modal .button-container button, #terms-popup-inner-modal .button-container button {
  background: var(--secondary-color);
  border-radius: 100%;
  border: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hello-bar-inner-modal .button-container button:hover, #terms-popup-inner-modal .button-container button:hover {
  background: var(--tertiary-color);
}

#hello-bar-inner-modal .button-container button:hover svg, #terms-popup-inner-modal .button-container button:hover svg {
  filter: invert(38%) sepia(41%) saturate(755%) hue-rotate(358deg) brightness(45%) contrast(87%);
}

#hello-bar-inner-modal .button-container button p, #terms-popup-inner-modal .button-container button p {
  display: none;
}

#terms-popup-inner-modal .button-container {
  margin-top: -45px;
  margin-right: -45px;
  top: 0;
  right: 0;
  position: relative !important;
}

@media screen and (min-width: 1025px) {
  #hello-bar-inner-modal {
    overflow: visible;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  #hello-bar-inner-modal .hello-popup-inner {
    max-width: 600px;
  }

  #hello-bar-inner-modal img {
    height: 250px;
  }

  #hello-bar-inner-modal .wp-block-buttons {
    flex-direction: column;
  }

  #hello-bar-inner-modal {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  #hello-bar-inner-modal .hello-popup-inner {
    max-width: 400px;
  }

  #hello-bar-inner-modal .wp-block-buttons {
    flex-direction: column;
  }

  #hello-bar-inner-modal {
    text-align: center;
  }
}

body.hello-bar-modal-open {
  overflow: hidden;
  position: relative;
}

body.hello-bar-modal-open:after {
  content: "";
  position: absolute;
  top: 0vh;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

body.hello-bar-modal-open .wp-site-blocks {
  pointer-events: none;
}

.wp-block-post-title p {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0px;
}

figure.is-style-Float-Left {
  float: left;
  margin-bottom: 0;
  margin-right: 30px;
}

.fm-alt-title p {
  font-size: 25px;
}

@media screen and (min-width: 1025px) {
  .fm-alt-title p {
    font-size: 32px;
  }

  .site-navigation .navigation_menu .menu-item .menu-item-submenu:has(.is-bottom-link) {
    padding-bottom: 50px;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .mobile-max-w-250 {
    max-width: 250px;
  }
}

@media (min-width: 0px) and (max-width: 768px) {
  .tablet-text-center {
    text-align: center;
  }
}

#terms-popup-inner-modal .modal-content {
  max-height: 50vh;
  overflow: scroll;
}

body.single-gallery .entry-content > .kb-row-layout {
  margin-bottom: 50px;
}

body.single-gallery .gallery-block img {
  width: 100%;
  height: auto;
}

@media (min-width: 1025px) {
  .desktop-columns-2 {
    -moz-columns: 2;
         columns: 2;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  body:not(.home) .meet-the-doc-section {
    background-size: 420px !important;
  }
}

/* *****************************************************************

Stylesheet: Main Stylesheet

Here is where you import
all of your Sass files so they can compile into one
CSS file. 

***************************************************************** */

.heading-font {
  font-family: var(--heading-font);
}

.body-font {
  font-family: var(--global-font);
}

.italic {
  font-style: italic;
}

[class^=has-][class$=-color] p {
  color: inherit;
}

/* Tailwind Directives */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

body h1, :root :where(.is-layout-constrained) > h1, .h1 {
  line-height: var(--mobile-h1-line-height);
  margin-bottom: var(--mobile-h1-margin-bottom);
  font-size: var(--mobile-h1-font-size);
  margin-top: 0;
}

body h1 > a, body h1 > span, :root :where(.is-layout-constrained) > h1 > a, :root :where(.is-layout-constrained) > h1 > span, .h1 > a, .h1 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body h2, :root :where(.is-layout-constrained) > h2, .h2 {
  line-height: var(--mobile-h2-line-height);
  margin-bottom: var(--mobile-h2-margin-bottom);
  font-size: var(--mobile-h2-font-size);
  margin-top: 0;
}

body h2 > a, body h2 > span, :root :where(.is-layout-constrained) > h2 > a, :root :where(.is-layout-constrained) > h2 > span, .h2 > a, .h2 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body h3, :root :where(.is-layout-constrained) > h3, .h3 {
  line-height: var(--mobile-h3-line-height);
  margin-bottom: var(--mobile-h3-margin-bottom);
  font-size: var(--mobile-h3-font-size);
  margin-top: 0;
}

body h3 > a, body h3 > span, :root :where(.is-layout-constrained) > h3 > a, :root :where(.is-layout-constrained) > h3 > span, .h3 > a, .h3 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body h4, :root :where(.is-layout-constrained) > h4, .h4 {
  line-height: var(--mobile-h4-line-height);
  margin-bottom: var(--mobile-h4-margin-bottom);
  font-size: var(--mobile-h4-font-size);
  margin-top: 0;
}

body h4 > a, body h4 > span, :root :where(.is-layout-constrained) > h4 > a, :root :where(.is-layout-constrained) > h4 > span, .h4 > a, .h4 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body h5, :root :where(.is-layout-constrained) > h5, .h5 {
  line-height: var(--mobile-h5-line-height);
  margin-bottom: var(--mobile-h5-margin-bottom);
  font-size: var(--mobile-h5-font-size);
  margin-top: 0;
}

body h5 > a, body h5 > span, :root :where(.is-layout-constrained) > h5 > a, :root :where(.is-layout-constrained) > h5 > span, .h5 > a, .h5 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body h6, :root :where(.is-layout-constrained) > h6, .h6 {
  line-height: var(--mobile-h6-line-height);
  margin-bottom: var(--mobile-h6-margin-bottom);
  font-size: var(--mobile-h6-font-size);
  margin-top: 0;
}

body h6 > a, body h6 > span, :root :where(.is-layout-constrained) > h6 > a, :root :where(.is-layout-constrained) > h6 > span, .h6 > a, .h6 > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body p, :root :where(.is-layout-constrained) > p {
  line-height: var(--mobile-line-height);
  margin-bottom: var(--mobile-margin-bottom);
  font-size: var(--mobile-font-size);
  margin-top: 0;
}

body p > a, :root :where(.is-layout-constrained) > p > a {
  line-height: inherit;
}

body a, :root :where(.is-layout-constrained) > a {
  line-height: var(--mobile-line-height);
  margin-bottom: var(--mobile-margin-bottom);
  font-size: var(--mobile-link-font-size);
  margin-top: 0;
  transition: all 0.25s ease-in-out;
}

body a:hover, :root :where(.is-layout-constrained) > a:hover {
  text-decoration-thickness: 1px;
}

body span, :root :where(.is-layout-constrained) > span, label {
  line-height: var(--mobile-line-height);
  font-size: var(--mobile-font-size);
}

@media (min-width: 641px) {
  body h1, :root :where(.is-layout-constrained) > h1, .h1 {
    line-height: var(--tablet-h1-line-height);
    margin-bottom: var(--tablet-h1-margin-bottom);
    font-size: var(--tablet-h1-font-size);
  }

  body h2, :root :where(.is-layout-constrained) > h2, .h2 {
    line-height: var(--tablet-h2-line-height);
    margin-bottom: var(--tablet-h2-margin-bottom);
    font-size: var(--tablet-h2-font-size);
  }

  body h3, :root :where(.is-layout-constrained) > h3, .h3 {
    line-height: var(--tablet-h3-line-height);
    margin-bottom: var(--tablet-h3-margin-bottom);
    font-size: var(--tablet-h3-font-size);
  }

  body h4, :root :where(.is-layout-constrained) > h4, .h4 {
    line-height: var(--tablet-h4-line-height);
    margin-bottom: var(--tablet-h4-margin-bottom);
    font-size: var(--tablet-h4-font-size);
  }

  body h5, :root :where(.is-layout-constrained) > h5, .h5 {
    line-height: var(--tablet-h5-line-height);
    margin-bottom: var(--tablet-h5-margin-bottom);
    font-size: var(--tablet-h5-font-size);
  }

  body h6, :root :where(.is-layout-constrained) > h6, .h6 {
    line-height: var(--tablet-h6-line-height);
    margin-bottom: var(--tablet-h6-margin-bottom);
    font-size: var(--tablet-h6-font-size);
  }

  body p, :root :where(.is-layout-constrained) > p {
    line-height: var(--tablet-line-height);
    margin-bottom: var(--tablet-margin-bottom);
    font-size: var(--tablet-font-size);
  }

  body a, :root :where(.is-layout-constrained) > a {
    line-height: var(--tablet-line-height);
    margin-bottom: var(--tablet-margin-bottom);
    font-size: var(--tablet-link-font-size);
  }

  body span, :root :where(.is-layout-constrained) > span, label {
    line-height: var(--tablet-line-height);
    font-size: var(--tablet-font-size);
  }
}

@media (min-width: 1025px) {
  body h1, :root :where(.is-layout-constrained) > h1, .h1 {
    line-height: var(--desktop-h1-line-height);
    margin-bottom: var(--desktop-h1-margin-bottom);
    font-size: var(--desktop-h1-font-size);
  }

  body h2, :root :where(.is-layout-constrained) > h2, .h2 {
    line-height: var(--desktop-h2-line-height);
    margin-bottom: var(--desktop-h2-margin-bottom);
    font-size: var(--desktop-h2-font-size);
  }

  body h3, :root :where(.is-layout-constrained) > h3, .h3 {
    line-height: var(--desktop-h3-line-height);
    margin-bottom: var(--desktop-h3-margin-bottom);
    font-size: var(--desktop-h3-font-size);
  }

  body h4, :root :where(.is-layout-constrained) > h4, .h4 {
    line-height: var(--desktop-h4-line-height);
    margin-bottom: var(--desktop-h4-margin-bottom);
    font-size: var(--desktop-h4-font-size);
  }

  body h5, :root :where(.is-layout-constrained) > h5, .h5 {
    line-height: var(--desktop-h5-line-height);
    margin-bottom: var(--desktop-h5-margin-bottom);
    font-size: var(--desktop-h5-font-size);
  }

  body h6, :root :where(.is-layout-constrained) > h6, .h6 {
    line-height: var(--desktop-h6-line-height);
    margin-bottom: var(--desktop-h6-margin-bottom);
    font-size: var(--desktop-h6-font-size);
  }

  body p, :root :where(.is-layout-constrained) > p {
    line-height: var(--desktop-line-height);
    margin-bottom: var(--desktop-margin-bottom);
    font-size: var(--desktop-font-size);
  }

  body a, :root :where(.is-layout-constrained) > a {
    line-height: var(--desktop-line-height);
    margin-bottom: var(--desktop-margin-bottom);
    font-size: var(--desktop-link-font-size);
  }

  body span, :root :where(.is-layout-constrained) > span, label {
    line-height: var(--desktop-line-height);
    font-size: var(--desktop-font-size);
  }
}

.container {
  width: 100%;
}

@media (min-width: 0px) {
  .container {
    max-width: 0px;
  }
}

@media (min-width: 641px) {
  .container {
    max-width: 641px;
  }
}

@media (min-width: 769px) {
  .container {
    max-width: 769px;
  }
}

@media (min-width: 1025px) {
  .container {
    max-width: 1025px;
  }
}

@media (min-width: 1380px) {
  .container {
    max-width: 1380px;
  }
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-\[8px\] {
  bottom: 8px;
}

.left-0 {
  left: 0px;
}

.left-auto {
  left: auto;
}

.right-0 {
  right: 0px;
}

.right-full {
  right: 100%;
}

.top-0 {
  top: 0px;
}

.top-\[15vh\] {
  top: 15vh;
}

.top-auto {
  top: auto;
}

.isolate {
  isolation: isolate;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.z-\[-1\] {
  z-index: -1;
}

.z-\[2\] {
  z-index: 2;
}

.z-\[99999\] {
  z-index: 99999;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.m-auto {
  margin: auto;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

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

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

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

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

.ml-auto {
  margin-left: auto;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-auto {
  margin-right: auto;
}

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

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

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

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

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

.box-border {
  box-sizing: border-box;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.size-full {
  width: 100%;
  height: 100%;
}

.h-\[14px\] {
  height: 14px;
}

.h-\[15px\] {
  height: 15px;
}

.h-\[180px\] {
  height: 180px;
}

.h-\[200px\] {
  height: 200px;
}

.h-\[30px\] {
  height: 30px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.min-h-\[480px\] {
  min-height: 480px;
}

.w-\[100\%\] {
  width: 100%;
}

.w-\[14px\] {
  width: 14px;
}

.w-\[15px\] {
  width: 15px;
}

.w-\[200px\] {
  width: 200px;
}

.w-\[25vw\] {
  width: 25vw;
}

.w-\[30px\] {
  width: 30px;
}

.w-\[50\%\] {
  width: 50%;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-\[1080px\] {
  max-width: 1080px;
}

.max-w-full {
  max-width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.columns-2 {
  -moz-columns: 2;
       columns: 2;
}

.columns-3 {
  -moz-columns: 3;
       columns: 3;
}

.columns-4 {
  -moz-columns: 4;
       columns: 4;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

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

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

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-15 {
  gap: 15px;
}

.gap-x-\[30px\] {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.gap-x-\[8px\] {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.gap-y-\[10px\] {
  row-gap: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-\[50px\] {
  border-radius: 50px;
}

.border {
  border-width: 1px;
}

.border-none {
  border-style: none;
}

.border-\[var\(--secondary-color\)\] {
  border-color: var(--secondary-color);
}

.bg-\[\#000000\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-cover {
  background-size: cover;
}

.bg-left {
  background-position: left;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-0 {
  padding-left: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

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

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

.text-\[11px\] {
  font-size: 11px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[24px\] {
  font-size: 24px;
}

.font-\[600\] {
  font-weight: 600;
}

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.leading-none {
  line-height: 1;
}

.text-\[var\(--primary-color\)\] {
  color: var(--primary-color);
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.first\:pt-0:first-child {
  padding-top: 0px;
}

.last\:pb-0:last-child {
  padding-bottom: 0px;
}

.hover\:cursor-pointer:hover {
  cursor: pointer;
}

.hover\:border-none:hover {
  border-style: none;
}

.hover\:text-\[var\(--secondary-color\)\]:hover {
  color: var(--secondary-color);
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-safe\:ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@media (min-width: 641px) {
  .md\:my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .md\:mr-45 {
    margin-right: 45px;
  }

  .md\:gap-y-\[30px\] {
    row-gap: 30px;
  }

  .md\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md\:py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:left-0 {
    left: 0px;
  }

  .lg\:right-\[4px\] {
    right: 4px;
  }

  .lg\:top-full {
    top: 100%;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:h-\[30px\] {
    height: 30px;
  }

  .lg\:h-\[35px\] {
    height: 35px;
  }

  .lg\:w-\[30px\] {
    width: 30px;
  }

  .lg\:w-\[35px\] {
    width: 35px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:overflow-visible {
    overflow: visible;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg\:px-70 {
    padding-left: 70px;
    padding-right: 70px;
  }

  .lg\:px-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .lg\:py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lg\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lg\:pb-0 {
    padding-bottom: 0px;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:transition-none {
    transition-property: none;
  }
}

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