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

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 > .kt-inside-inner-col {
  position: relative;
  z-index: 2;
}

.upper-bar > .kt-inside-inner-col .wp-block-social-links svg {
  width: 28px;
}

/* ----------------------------------------
   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 .kt-inside-inner-col {
  background-color: var(--secondary-color);
}

.mobile-tiles .kb-section-has-link.is-active .kt-inside-inner-col img {
  filter: brightness(100);
}

.mobile-tiles .kb-section-has-link.is-active .kt-inside-inner-col p {
  color: white;
}

.mobile-tiles .mobile-nav-open-close-button button {
  border-radius: 0px;
}

.mobile-tiles .mobile-nav-open-close-button button svg path {
  fill: var(--secondary-color) !important;
}

.mobile-tiles .mobile-nav-open-close-button button svg.hamburger-icon-close path {
  fill: var(--primary-color) !important;
}

.mobile-tiles .kb-section-has-link {
  height: 100%;
}

.mobile-tiles .kb-section-has-link .kt-inside-inner-col {
  height: 100%;
}

.mobile-tiles .kb-section-has-link .kt-inside-inner-col figure img {
  padding: 2px;
}

@media (min-width: 0px) and (max-width: 1024px) {
  .main-nav-container .fm-responsive-image-block img {
    width: 62px;
  }

  .navigation_menu > li.menu-item {
    border-bottom: none !important;
  }

  body.home.scrolled .has-side-borders.gallery-tile:after {
    display: none;
  }

  body:not(.home) .has-side-borders.gallery-tile:after {
    display: none;
  }
}

/* ----------------------------------------
   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;
}

@media (min-width: 1025px) {
  .site-navigation .navigation_menu .menu-item.is-parent:hover .nav-arrow {
    transform: rotate(90deg);
  }
}

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

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,
a[class*=with-icon] {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

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

a[class*=with-icon]:after {
  content: "";
  -webkit-mask-image: url("../../assets/images//play-video-long-arrow.svg");
          mask-image: url("../../assets/images//play-video-long-arrow.svg");
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: 18px;
  width: 18px;
  background: var(--wp--preset--color--secondary-color);
}

/* ----------------------------------------
   INHERITED LINK STYLES
---------------------------------------- */

.wp-block-list > li > .list-content > a {
  color: var(--global-link-color);
}

.wp-block-list > li > .list-content > a:hover {
  color: var(--global-link-color-hover);
}

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

.wp-block-button .wp-block-button__link {
  min-width: 200px;
  max-width: 100%;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}

.wp-block-button .wp-block-button__link:hover {
  text-decoration: underline;
}

.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%;
  font-size: 0;
  position: relative;
  width: 75px;
  height: 75px;
  min-width: 75px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0px;
}

.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: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  --webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  --webkit-mask-position: center;
  width: 20px;
  height: 23px;
  min-width: 20px;
  min-height: 23px;
  display: block;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 1025px) {
  .wp-block-buttons [class*=play] .wp-block-button__link {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}

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

.wp-block-button.download .wp-block-button__link {
  display: flex;
  flex-direction: row-reverse;
  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: currentcolor;
  width: 16px;
  height: 16px;
  display: block;
  transition: all 0.25s ease-in-out;
}

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

.wp-block-buttons [class*=back-to-top] .wp-block-button__link {
  border-radius: 100%;
  min-width: 80px;
  font-size: 0;
  position: relative;
  width: 80px;
  height: 80px;
  -moz-column-gap: 0;
       column-gap: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0px;
  border-width: 1px;
}

.wp-block-buttons [class*=back-to-top] .wp-block-button__link:before {
  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;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  --webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  --webkit-mask-position: center;
  width: 18px;
  height: 11px;
  min-width: 18px;
  min-height: 11px;
  display: block;
  transition: all 0.25s ease-in-out;
}

.wp-block-buttons [class*=back-to-top] .wp-block-button__link:after {
  content: none;
}

.is-style-primary-link-with-icon a,
.is-style-secondary-link-with-icon a,
.is-style-secondary-link-with-icon a {
  letter-spacing: 2.4px;
  font-weight: 400;
}

.is-style-primary-link-with-icon.wp-block-read-more {
  letter-spacing: 2.4px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.kb-buttons-wrap button:hover span {
  text-decoration: underline;
}

.is-style-white-link-with-icon a {
  font-size: 16px;
  letter-spacing: 2.4px;
  line-height: 24px;
  font-weight: 400;
}

.is-style-white-link-with-icon a:hover, .is-style-white-link-with-icon a:focus {
  text-decoration: underline;
}

.play-video-label p {
  font-size: 16px;
  letter-spacing: 2.4px;
  line-height: 24px;
  font-weight: 400;
}

.play-video-label p:hover, .play-video-label p:focus {
  text-decoration: underline;
}

.kb-search button {
  background-color: var(--primary-color);
  font-weight: 400;
  letter-spacing: 2.4px;
  line-height: normal;
  font-size: 16px;
}

.kb-search button:after {
  content: "";
  -webkit-mask-image: url("../../assets/images//play-video-long-arrow.svg");
          mask-image: url("../../assets/images//play-video-long-arrow.svg");
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: 18px;
  width: 18px;
  background: var(--wp--preset--color--secondary-color);
  margin-left: 10px;
}

/* ----------------------------------------
   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;
}

html, body {
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  overflow-x: hidden;
}

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

.banner-inner {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 769px) {
  .banner-inner {
    max-width: 820px;
  }
}

@media (min-width: 1025px) {
  .banner-inner {
    max-width: 1200px;
  }
}

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

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

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

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

.main-content.has-sidebar, .main-content:has(> .sidebar-template-part), .main-content:has(> .wp-block-template-part.sidebar) {
  display: block;
}

@media (min-width: 1025px) {
  .main-content.has-sidebar, .main-content:has(> .sidebar-template-part), .main-content:has(> .wp-block-template-part.sidebar) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    max-width: 1200px;
    align-items: start;
  }
}

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

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

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

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

.page-template-default .entry-content {
  width: 100%;
}

@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;
}

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

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

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

@media (min-width: 0px) and (max-width: 1024px) {
  body.logged-in .main-nav-container {
    margin-top: 32px !important;
  }
}

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);
}

.fm-slider::-moz-selection {
  background-color: transparent;
}

.fm-slider::selection {
  background-color: transparent;
}

/* Base animation vars (override inline via style="--anim-duration:.8s; --anim-delay:120ms; --anim-distance:24px") */

.anim {
  --anim-duration: 2.5s;
  --anim-delay: 200ms;
  --anim-ease: cubic-bezier(.22, .61, .36, 1);
  --anim-distance: 20px;
  opacity: 0;
  transform: none;
  transition: opacity var(--anim-duration) var(--anim-ease) var(--anim-delay), transform var(--anim-duration) var(--anim-ease) var(--anim-delay);
}

/* Variants (initial states) */

.anim.fade-in {
  transform: none;
}

.anim.fade-in-up {
  transform: translateY(var(--anim-distance));
}

.anim.fade-in-left {
  transform: translateX(var(--anim-distance));
}

.anim.fade-in-right {
  transform: translateX(calc(var(--anim-distance) * -1));
}

/* Active state when in view */

.anim.is-inview {
  opacity: 1;
  transform: none;
  /* Only apply will-change while animating */
  will-change: opacity, transform;
}

/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {
  .anim {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body:not(.home) .hp-static-phone-num {
  display: none;
}

.home .top-nav {
  max-height: 0px;
  opacity: 0;
  transition: max-height 0.55s ease-in-out;
}

.home.scrolled .top-nav {
  max-height: 100px;
  opacity: 1;
}

.home.scrolled .hp-static-phone-num {
  display: none;
}

.home:not(.scrolled) .main-nav-container {
  background-color: transparent !important;
  box-shadow: none;
}

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

@media (min-width: 1025px) {
  .home:not(.scrolled) .main-nav-container .nav-open-container,
  .home:not(.scrolled) .main-nav-container .site-navigation {
    background-color: transparent !important;
  }

  .home:not(.scrolled) .main-nav-container .nav-open-container ul.navigation_menu > li.menu-item > p,
  .home:not(.scrolled) .main-nav-container .nav-open-container ul.navigation_menu > li.menu-item > p > a,
  .home:not(.scrolled) .main-nav-container .site-navigation ul.navigation_menu > li.menu-item > p,
  .home:not(.scrolled) .main-nav-container .site-navigation ul.navigation_menu > li.menu-item > p > a {
    color: #fff !important;
    font-size: 15px;
  }

  .home:not(.scrolled) .main-nav-container .nav-open-container ul.navigation_menu > li.menu-item > p > .nav-arrow > span svg path,
  .home:not(.scrolled) .main-nav-container .nav-open-container ul.navigation_menu > li.menu-item > p > a > .nav-arrow > span svg path,
  .home:not(.scrolled) .main-nav-container .site-navigation ul.navigation_menu > li.menu-item > p > .nav-arrow > span svg path,
  .home:not(.scrolled) .main-nav-container .site-navigation ul.navigation_menu > li.menu-item > p > a > .nav-arrow > span svg path {
    fill: #fff !important;
  }

  .home:not(.scrolled) .main-nav-container .inner-nav-open-container {
    background: transparent !important;
    box-shadow: none;
  }
}

.home:not(.scrolled) .mobile-tiles {
  padding-top: 20px;
}

.home:not(.scrolled) .mobile-tiles .mobile-nav-open-close-button button {
  background-color: transparent !important;
  border-radius: 0px;
  color: #fff !important;
}

.home:not(.scrolled) .mobile-tiles .mobile-nav-open-close-button button svg path {
  fill: var(--secondary-color) !important;
}

.home:not(.scrolled) .mobile-tiles .mobile-nav-open-close-button button p {
  color: #fff !important;
}

.home:not(.scrolled) .mobile-tiles .kb-section-has-link .kt-inside-inner-col p {
  color: #fff !important;
}

.home:not(.scrolled) .inner-nav-open-container {
  align-items: center;
}

@media (min-width: 0px) and (max-width: 1024px) {
  .home:not(.scrolled) .hp-static-phone-num {
    display: none;
  }
}

@media (min-width: 1025px) {
  .home:not(.scrolled) .hp-static-phone-num {
    min-width: 160px;
    text-align: center;
  }

  .home:not(.scrolled) .hp-static-phone-num p {
    margin-bottom: 0px;
    color: var(--secondary-dark);
    font-size: 15px;
  }

  .home:not(.scrolled) .hp-static-phone-num p a {
    margin-bottom: 0px;
    color: var(--secondary-dark);
    font-size: 15px;
    letter-spacing: 0.38px;
  }
}

#hello-bar-inner-modal > .hello-popup-inner {
  max-width: 1200px !important;
}

.inner-modal > .hello-popup-inner > .button-container {
  right: 1em;
  top: 1em;
}

.inner-modal > .hello-popup-inner > .button-container > .modal-close {
  border-radius: 50px;
  border: none !important;
  background-color: var(--tertiary);
  height: 35px;
  width: 35px;
  min-width: 35px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.inner-modal > .hello-popup-inner > .button-container > .modal-close:hover {
  background-color: var(--light-hover);
}

.inner-modal > .hello-popup-inner > .button-container > .modal-close:hover svg line {
  stroke: var(--tertiary) !important;
}

.inner-modal > .hello-popup-inner > .button-container > .modal-close:hover svg path {
  fill: var(--tertiary) !important;
}

.sidebar,
.sidebar-template-part {
  margin-top: 30px !important;
}

@media (min-width: 1025px) {
  .sidebar,
  .sidebar-template-part {
    margin-top: 0px !important;
  }
}

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

Stylesheet: Main Stylesheet

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

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

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

.entry-content ul:not(.fm-accordion-block, .kt-title-item) {
  list-style: none;
  padding: 0;
  margin: 0 0 0 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::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: var(--tertiary);
  margin-top: 0.5em;
}

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

.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;
}

ul {
  margin-block-start: 0;
}

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

.entry-content ol li {
  margin-left: 20px;
  padding-left: 0px;
}

.entry-content ol li::marker {
  font-weight: bold;
  color: var(--tertiary);
}

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

ol {
  margin-block-start: 0;
}

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

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

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

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

.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;
}

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

hr.wp-block-separator {
  height: 1px;
  border: none;
  width: 100%;
}

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

/* ----------------------------------------
   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:hover {
  transform: none;
}

.wp-block-social-links .wp-social-link:hover a svg path {
  fill: var(--wp--preset--color--dark-hover);
  transition: all 0.25s ease-in-out;
}

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

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

.wp-block-social-links .wp-social-link a svg path {
  transition: all 0.25s ease-in-out;
}

.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
---------------------------------------- */

.overlay-section {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.kb-row-layout-wrap:has(.overlay-section) .wp-block-kadence-column:not(.overlay-section) {
  position: relative;
  z-index: 4;
}

@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;
  }

  .overlay-section:has(.is-style-back-to-top-with-icon) {
    position: relative;
    margin: auto;
  }

  .wp-block-kadence-column:has(.is-style-back-to-top-with-icon) {
    width: -moz-fit-content !important;
    width: fit-content !important;
    left: auto !important;
    right: auto;
    z-index: 12;
  }
}

@media (min-width: 1025px) {
  .wp-block-kadence-column:has(.is-style-back-to-top-with-icon) {
    width: -moz-fit-content !important;
    width: fit-content !important;
    left: auto !important;
    right: 15px;
    z-index: 12;
  }
}

.wp-block-kadence-column:has(.is-style-back-to-top-with-icon) .kt-inside-inner-col {
  height: 100%;
}

/* ----------------------------------------
   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;
  width: 25px;
  height: 25px;
  min-width: 25px !important;
  min-height: 25px;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  border-radius: 100%;
  color: var(--body);
  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;
  justify-content: center;
  align-items: center;
  margin-left: 25px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background: var(--tertiary);
}

.wp-block-query-pagination .wp-block-query-pagination-next:after,
.wp-block-query-pagination .wp-block-query-pagination-previous:after {
  content: "";
  width: 8px;
  height: 13px;
  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: var(--white);
}

.wp-block-query-pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .wp-block-query-pagination-previous:hover {
  background: var(--light-hover) !important;
  border-color: var(--light-hover) !important;
}

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

.wp-block-query-pagination .wp-block-query-pagination-previous {
  transform: scale(-1);
  margin-right: 25px;
  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;
}

/* ----------------------------------------
   SINGLE GALLERY
---------------------------------------- */

.single-gallery .gallery-block img {
  min-height: 118px;
}

.single-gallery .gallery-block .lower-images figure {
  margin-bottom: 0px;
}

.single-gallery .gallery-block .lower-images img {
  min-height: 50px;
  max-height: 50px;
}

@media (min-width: 1025px) {
  .single-gallery .gallery-block .lower-images img {
    min-height: 80px;
    max-height: 80px;
  }
}

/* ----------------------------------------
   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
---------------------------------------- */

/* ----------------------------------------
   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 .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: 16px;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 0;
}

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

.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 {
  font-size: 18px;
  font-family: var(--global-font);
  color: var(--body);
}

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

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms {
  display: inline-flex;
  margin-right: 0px;
  align-content: center;
  align-items: center;
  width: 100%;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms .gfield_label {
  display: none;
}

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

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms .gfield_description {
  margin-top: 0;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms p {
  margin-bottom: 0;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms a {
  line-height: 2;
}

.gform_wrapper form .gform_fields .gfield.gfield--type-checkbox.gterms a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: var(--secondary-color);
}

.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: var(--global-text-color) !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: var(--primary-color);
  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: var(--page-bg);
  box-shadow: none;
  border-bottom: none;
  font-size: 18px;
  padding: 0 0 5px 10px;
  font-weight: var(--global-font-weight);
  margin-bottom: 20px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.85);
  min-height: 50px;
  display: flex;
  align-items: center;
  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;
}

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

.gform_wrapper form .gform_fields .gfield .ginput_container input.gfield-choice-input {
  border: 1px solid rgba(0, 0, 0, 0.5);
  height: 20px;
  width: 20px;
  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_fields .gfield .modal a {
  font-size: 18px;
  color: var(--tertiary);
  line-height: normal;
  padding-left: 2px;
  font-weight: bold;
}

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

.gform_wrapper form .gform_footer [id^=gform_submit_button_]:not(#boost) {
  width: 100%;
  padding: 15px 20px;
}

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

@media (min-width: 1025px) {
  .two-col-version .gform_wrapper form .gform_fields .gfield.gfield--width-half {
    width: calc(50% - 15px);
    display: inline-block;
  }

  .two-col-version .gform_wrapper form .gform_fields .gfield.gfield--width-half:nth-child(odd of .gfield.gfield--width-half) {
    margin-right: 15px;
  }

  .two-col-version .gform_wrapper form .gform_fields .gfield.gfield--width-half:nth-child(even of .gfield.gfield--width-half) {
    margin-left: 15px;
  }
}

.two-col-version .gform_wrapper form .gform_fields .gfield input,
.two-col-version .gform_wrapper form .gform_fields .gfield select,
.two-col-version .gform_wrapper form .gform_fields .gfield textarea {
  background-color: var(--white) !important;
  border-radius: 0px;
  border: 1px solid #707070 !important;
}

.two-col-version .gform_wrapper form .gform_fields .gfield.gfield--type-date .ginput_container > div {
  max-width: 125px;
}

.two-col-version .gform_wrapper form .gform_fields .gfield.gfield--type-date .ginput_container > div input {
  padding: 5px;
}

.two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox.gterms {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-content: center;
  align-items: center;
}

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

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

.two-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox.gterms .gchoice label p {
  font-size: 18px;
  line-height: normal;
  padding-right: 3px;
}

@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);
  line-height: normal;
}

.two-col-version .gform_wrapper form .gform-footer input.gform_button {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  font-size: 18px;
}

.two-col-version .gform_wrapper form .gform-footer input.gform_button:hover {
  background-color: var(--dark-hover) !important;
  color: var(--white) !important;
  text-decoration: underline;
}

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

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

  .three-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(5) {
    width: calc(67% - 9px);
    display: inline-block;
  }

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

  .three-col-version .gform_wrapper form .gform_fields div.gfield:nth-of-type(4) {
    margin-right: 15px;
  }
}

.three-col-version .gform_wrapper form .gform_fields div.gfield input,
.three-col-version .gform_wrapper form .gform_fields div.gfield select,
.three-col-version .gform_wrapper form .gform_fields div.gfield textarea {
  background-color: var(--page-bg) !important;
  border-radius: 0px;
  border: none !important;
}

.three-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox.gterms {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-content: center;
  align-items: center;
}

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

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

.three-col-version .gform_wrapper form .gform_fields .gfield--type-checkbox.gterms .gchoice label p {
  font-size: 18px;
  line-height: normal;
  padding-right: 3px;
}

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

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

.three-col-version .gform_wrapper form .gform-footer {
  width: auto !important;
}

.three-col-version .gform_wrapper form .gform-footer input.gform_button {
  width: auto !important;
}

.specials-form .gform-body .gform_fields .gfield.promocodes .gfield_checkbox label {
  color: var(--body);
}

.specials-form .gform-body .gform_fields .gfield input,
.specials-form .gform-body .gform_fields .gfield select,
.specials-form .gform-body .gform_fields .gfield textarea {
  background-color: var(--page-bg) !important;
  border-radius: 0px;
  border: 1px solid var(--page-bg) !important;
}

.specials-form .gform-body .gform_fields .gfield.promocodes .ginput_container .gfield_checkbox {
  justify-content: center;
}

/* ----------------------------------------
   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;
}

/* ----------------------------------------
   Pop Ups
---------------------------------------- */

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

#terms-popup-inner-modal .modal-content {
  padding: 30px;
}

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;
}

/* ----------------------------------------
   Breadcrumbs
---------------------------------------- */

.aioseo-breadcrumbs {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 0px;
}

.aioseo-breadcrumbs .aioseo-breadcrumb {
  font-size: 16px;
}

.aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  font-weight: 400;
  text-decoration: underline;
}

.aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: white;
  font-size: 16px;
}

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

/* ----------------------------------------
   Jump to content
---------------------------------------- */

.jump-to-content:not(#boost) {
  margin-top: 0;
}

.jump-to-content:not(#boost) .fm-accordion-item {
  margin-bottom: 0;
}

.jump-to-content:not(#boost) .fm-accordion-item .item-title {
  margin-bottom: 0;
}

.jump-to-content:not(#boost) .fm-accordion-item .item-content {
  padding-top: 0px !important;
}

.jump-to-content:not(#boost) .fm-accordion-item .item-content ul {
  margin-bottom: 0;
}

.jump-to-content:not(#boost) .fm-accordion-item .item-content span,
.jump-to-content:not(#boost) .fm-accordion-item .item-content a {
  line-height: normal;
}

.jump-to-content:not(#boost) .fm-accordion-item .item-content a {
  font-size: 18px;
  font-weight: bold;
  color: var(--tertiary);
}

/* ----------------------------------------
   Tables
---------------------------------------- */

.wp-block-table {
  border-color: var(--tertiary);
}

.wp-block-table table {
  border-color: inherit;
}

.wp-block-table thead {
  border-bottom: none;
  border-color: inherit;
  background-color: var(--primary-light);
  color: var(--headings);
}

.wp-block-table thead tr {
  border-color: inherit;
}

.wp-block-table thead tr th {
  border-color: inherit;
}

.wp-block-table tbody {
  border-color: inherit;
}

.wp-block-table tbody tr {
  border-color: inherit;
}

.wp-block-table tbody tr td {
  border-color: inherit;
}

.scrolling-table-wrapper {
  position: relative;
}

.scrolling-table-wrapper:after {
  content: "";
  width: 100px;
  height: 100%;
  background-image: linear-gradient(90deg, transparent 0%, white 100%);
  position: absolute;
  top: 0;
  right: 0;
}

.scrolling-table-wrapper .wp-block-table.scrolling-table {
  overflow-x: scroll;
}

.scrolling-table-wrapper .wp-block-table.scrolling-table th,
.scrolling-table-wrapper .wp-block-table.scrolling-table td {
  min-width: 192px;
  width: 192px;
}

.video-player-block:hover .play-video-label {
  text-decoration: underline;
  color: #fff;
}

.wp-block-post-title > a {
  margin-bottom: 0px;
}

.wp-block-social-links .wp-block-social-link.wp-social-link {
  margin-left: 5px;
  margin-right: 5px;
}

.video-player-block .kt-row-column-wrap,
.video-player-block .wp-block-kadence-rowlayout {
  width: 100%;
}

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

.geo-style p,
.geo-style a {
  letter-spacing: 0.45px;
  line-height: 22px;
}

.geo-style a:hover {
  color: var(--secondary-dark) !important;
}

.wp-block-kadence-column.kb-section-has-link:hover p {
  text-decoration: underline;
  color: var(--secondary-color) !important;
}

.wp-block-query .wp-block-post .kt-inside-inner-col figure {
  height: 185px;
  width: 100%;
}

.wp-block-query .wp-block-post .kt-inside-inner-col figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1025px) {
  .single-post .sidebar > .kb-row-layout-wrap {
    margin-top: 0px !important;
  }
}

@media (min-width: 0px) and (max-width: 640px) {
  .wp-block-group.is-nowrap figure {
    margin-left: 10px;
    margin-right: 10px;
  }

  .wp-block-group.is-nowrap figure img {
    -o-object-fit: contain;
       object-fit: contain;
  }

  .video-player-block .fancybox {
    min-height: inherit;
  }

  .video-player-block .fancybox .kt-inside-inner-col {
    min-height: inherit;
    align-items: center;
  }

  .video-player-block .fancybox .kt-inside-inner-col > .play-video-label p.mobile-hide {
    display: inline-flex !important;
  }

  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns {
    gap: 10px;
  }

  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns .wp-block-kadence-column:last-of-type .kt-inside-inner-col .wp-block-heading,
  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns .wp-block-kadence-column:last-of-type .kt-inside-inner-col .play-video-label {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .video-player-block .fancybox {
    min-height: inherit;
  }

  .video-player-block .fancybox .kt-inside-inner-col {
    min-height: inherit;
    align-items: center;
  }

  .video-player-block .fancybox .kt-inside-inner-col > .play-video-label p.mobile-hide {
    display: inline-flex !important;
  }

  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns {
    gap: 10px;
  }

  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns .wp-block-kadence-column:last-of-type .kt-inside-inner-col .wp-block-heading,
  .video-player-block .fancybox .kt-inside-inner-col .kt-row-column-wrap.kt-has-2-columns .wp-block-kadence-column:last-of-type .kt-inside-inner-col .play-video-label {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

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

Stylesheet: Main Stylesheet

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

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

h5 {
  font-weight: 500;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 1.25px;
  font-weight: 300;
}

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

.italic {
  font-style: italic;
}

.text-transform-none:not(#boost), .text-transform-none:not(#boost) > a {
  text-transform: none;
}

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

/* 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:not(.alt-title), :root :where(.is-layout-constrained) > h1 > a, :root :where(.is-layout-constrained) > h1 > span:not(.alt-title), .h1 > a, .h1 > span:not(.alt-title) {
  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:not(.alt-title), :root :where(.is-layout-constrained) > h2 > a, :root :where(.is-layout-constrained) > h2 > span:not(.alt-title), .h2 > a, .h2 > span:not(.alt-title) {
  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:not(.alt-title), :root :where(.is-layout-constrained) > h3 > a, :root :where(.is-layout-constrained) > h3 > span:not(.alt-title), .h3 > a, .h3 > span:not(.alt-title) {
  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:not(.alt-title), :root :where(.is-layout-constrained) > h4 > a, :root :where(.is-layout-constrained) > h4 > span:not(.alt-title), .h4 > a, .h4 > span:not(.alt-title) {
  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:not(.alt-title), :root :where(.is-layout-constrained) > h5 > a, :root :where(.is-layout-constrained) > h5 > span:not(.alt-title), .h5 > a, .h5 > span:not(.alt-title) {
  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:not(.alt-title), :root :where(.is-layout-constrained) > h6 > a, :root :where(.is-layout-constrained) > h6 > span:not(.alt-title), .h6 > a, .h6 > span:not(.alt-title) {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration-thickness: 1px;
}

body p, :root :where(.is-layout-constrained) > p, .p-styles {
  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, .p-styles > 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:not(.alt-title), :root :where(.is-layout-constrained) > span:not(.alt-title) {
  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, .p-styles {
    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:not(.alt-title), :root :where(.is-layout-constrained) > span:not(.alt-title) {
    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, .p-styles {
    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:not(.alt-title), :root :where(.is-layout-constrained) > span:not(.alt-title) {
    line-height: var(--desktop-line-height);
    font-size: var(--desktop-font-size);
  }
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

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

  .container {
    max-width: 0px;
  }
}

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

  .container {
    max-width: 641px;
  }
}

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

  .container {
    max-width: 769px;
  }
}

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

  .container {
    max-width: 1025px;
  }
}

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

  .container {
    max-width: 1380px;
  }
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.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-0 {
  margin: 0px;
}

.m-1 {
  margin: 1px;
}

.m-10 {
  margin: 10px;
}

.m-100 {
  margin: 100px;
}

.m-11 {
  margin: 11px;
}

.m-12 {
  margin: 12px;
}

.m-13 {
  margin: 13px;
}

.m-14 {
  margin: 14px;
}

.m-15 {
  margin: 15px;
}

.m-16 {
  margin: 16px;
}

.m-17 {
  margin: 17px;
}

.m-18 {
  margin: 18px;
}

.m-19 {
  margin: 19px;
}

.m-2 {
  margin: 2px;
}

.m-20 {
  margin: 20px;
}

.m-21 {
  margin: 21px;
}

.m-22 {
  margin: 22px;
}

.m-23 {
  margin: 23px;
}

.m-24 {
  margin: 24px;
}

.m-25 {
  margin: 25px;
}

.m-26 {
  margin: 26px;
}

.m-27 {
  margin: 27px;
}

.m-28 {
  margin: 28px;
}

.m-29 {
  margin: 29px;
}

.m-3 {
  margin: 3px;
}

.m-30 {
  margin: 30px;
}

.m-35 {
  margin: 35px;
}

.m-4 {
  margin: 4px;
}

.m-40 {
  margin: 40px;
}

.m-45 {
  margin: 45px;
}

.m-5 {
  margin: 5px;
}

.m-50 {
  margin: 50px;
}

.m-55 {
  margin: 55px;
}

.m-6 {
  margin: 6px;
}

.m-60 {
  margin: 60px;
}

.m-65 {
  margin: 65px;
}

.m-7 {
  margin: 7px;
}

.m-70 {
  margin: 70px;
}

.m-75 {
  margin: 75px;
}

.m-8 {
  margin: 8px;
}

.m-80 {
  margin: 80px;
}

.m-85 {
  margin: 85px;
}

.m-9 {
  margin: 9px;
}

.m-90 {
  margin: 90px;
}

.m-95 {
  margin: 95px;
}

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-11 {
  margin-left: 11px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-13 {
  margin-left: 13px;
}

.ml-14 {
  margin-left: 14px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-17 {
  margin-left: 17px;
}

.ml-18 {
  margin-left: 18px;
}

.ml-19 {
  margin-left: 19px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-21 {
  margin-left: 21px;
}

.ml-22 {
  margin-left: 22px;
}

.ml-23 {
  margin-left: 23px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-26 {
  margin-left: 26px;
}

.ml-27 {
  margin-left: 27px;
}

.ml-28 {
  margin-left: 28px;
}

.ml-29 {
  margin-left: 29px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

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

.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;
}

.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;
}

.rounded {
  border-radius: 0.25rem;
}

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

.border {
  border-width: 1px;
}

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

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

.bg-\[\#ffffff\] {
  --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;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 1px;
}

.p-10 {
  padding: 10px;
}

.p-100 {
  padding: 100px;
}

.p-11 {
  padding: 11px;
}

.p-12 {
  padding: 12px;
}

.p-13 {
  padding: 13px;
}

.p-14 {
  padding: 14px;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.p-17 {
  padding: 17px;
}

.p-18 {
  padding: 18px;
}

.p-19 {
  padding: 19px;
}

.p-2 {
  padding: 2px;
}

.p-20 {
  padding: 20px;
}

.p-21 {
  padding: 21px;
}

.p-22 {
  padding: 22px;
}

.p-23 {
  padding: 23px;
}

.p-24 {
  padding: 24px;
}

.p-25 {
  padding: 25px;
}

.p-26 {
  padding: 26px;
}

.p-27 {
  padding: 27px;
}

.p-28 {
  padding: 28px;
}

.p-29 {
  padding: 29px;
}

.p-3 {
  padding: 3px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-4 {
  padding: 4px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-5 {
  padding: 5px;
}

.p-50 {
  padding: 50px;
}

.p-55 {
  padding: 55px;
}

.p-6 {
  padding: 6px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-7 {
  padding: 7px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-8 {
  padding: 8px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-9 {
  padding: 9px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.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-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-1 {
  padding-right: 1px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-11 {
  padding-right: 11px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-13 {
  padding-right: 13px;
}

.pr-14 {
  padding-right: 14px;
}

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

.pr-16 {
  padding-right: 16px;
}

.pr-17 {
  padding-right: 17px;
}

.pr-18 {
  padding-right: 18px;
}

.pr-19 {
  padding-right: 19px;
}

.pr-2 {
  padding-right: 2px;
}

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

.pr-21 {
  padding-right: 21px;
}

.pr-22 {
  padding-right: 22px;
}

.pr-23 {
  padding-right: 23px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-26 {
  padding-right: 26px;
}

.pr-27 {
  padding-right: 27px;
}

.pr-28 {
  padding-right: 28px;
}

.pr-29 {
  padding-right: 29px;
}

.pr-3 {
  padding-right: 3px;
}

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

.pr-35 {
  padding-right: 35px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

.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);
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  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);
}

.invert {
  --tw-invert: invert(100%);
  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);
}

.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);
}

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

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, 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\: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\:mr-45 {
    margin-right: 45px;
  }

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

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

  .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-\[0px\] {
    right: 0px;
  }

  .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-\[35px\] {
    height: 35px;
  }

  .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-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .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\:pb-0 {
    padding-bottom: 0px;
  }

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

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

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