/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
  font-size: 17px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.3rem;
  --font-size-h4: 1.1rem;
  --font-size-h5: 1rem;
  --body-text-color: #000;
  --primary-color: #006429;
  --secondary-color: #d89d42;
  --alternate-color: #00451c;
  --gray-color: #f5f7f9;
  --color-white: #fff;
  --color-black: #000;
  --light-gray-color: #e9f5f7;
  --body-font-family: 'Plus Jakarta Sans', sans-serif;
  --heading-font-family: 'Plus Jakarta Sans', sans-serif;
  --gutter-size: 30px;
  --header-height: 100px;
  --width-normal: 1280px;
  --width-narrow: 900px;
  --width-wide: 1599px;
  --gutter-size: 30px;
  --swiper-theme-color: var(--primary-color);
  --swiper-navigation-color: var(--color-alternate);
  --swiper-pagination-bullet-inactive-color: var(--body-text-color);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-size: 17px;
  --swiper-pagination-bottom: -50px;
}

@media screen and (min-width: 768px) {
  /*TABLET*/
  :root {
    font-size: 17px;
  }
}

#container {
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  padding: 70px 0;
  min-height: 450px;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.no-banner main {
  padding-top: 180px;
}

html {
  box-sizing: border-box;
}

body {
  display: block !important;
  line-height: 1.6;
  color: var(--body-text-color);
  font-size: 17px;
  font-family: var(--body-font-family);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: auto;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  color: var(--primary-color);
  font-weight: bold;
  font-family: var(--heading-font-family);
  line-height: 1.2;
  letter-spacing: normal;
}

h1 {
  font-size: 40px;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  /* 	text-transform: uppercase; */
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5,
h6 {
  font-size: 1rem;
}

h2 strong,
h3 strong {
  font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
  display: block;
  color: #0f8577;
  font-size: 50%;
}

h2.module-title:after {
  /*    content: "";
    width: 100px;
    margin: 5px 0 1rem;
    height: 5px;
    background-color: var(--secondary-color);
    display: block;
    margin: 0 auto;
    margin-top: 20px;*/
  /* margin-bottom: 20px; */
}

p {
  margin: 0 0 20px;
  font-size: 17px;
}

ul {
  list-style: none;
}

/* CORE > Links and Buttons */

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

a:hover,
a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
  text-decoration: underline;
}

a,
button,
.button {
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
  font-family: var(--body-font-family);
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 15px 30px;
  text-align: center;
  display: inline-block;
  color: var(--color-white);
  background-color: var(--secondary-color);
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  letter-spacing: 1.5px;
}

button:active,
.button:active {
  transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

button.alt-01,
.button.alt-01 {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

button.alt-02,
.button.alt-02 {
  background-color: #000;
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
  background-color: #d09735;
  color: #fff;
}

button.outline,
.button.outline {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
  background: var(--primary-color);
  color: #fff;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
  border-color: #fff;
  color: #fff;
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
  background: #fff;
  color: #400610;
}

button.no-button,
.button.no-button {
  padding: 0;
  background: none;
  color: #0f8577;
  text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
  color: #000;
  text-decoration: underline;
}

/* CORE > Layout */
.columns,
.column {
  padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.row-narrow {
  max-width: 1024px;
}

.row-wide {
  max-width: 1599px;
}

.row:after {
  clear: both;
}

.row:not(.main-inner):before,
.row:not(.main-inner):after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1;
}

.row.main-inner:before,
.row.main-inner:after {
  display: none;
}

/* CORE > Utility Classes */
.no-float {
  float: none;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-last > p:last-of-type {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-transition {
  transition: none !important;
}

.no-min-height {
  min-height: 0;
}

.position-relative,
.relative {
  position: relative !important;
}

.hr-after {
  position: relative;
}

.block {
  display: block;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

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

.right,
.align-right,
.text-right {
  text-align: right;
}

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

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

.uppercase {
  text-transform: uppercase;
}

.show-in-pdf,
.hide {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.visually-hidden {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.flex-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.flex-align-vertical {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-align-horizontal {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
  display: block;
  margin-bottom: 10px;
}

.small-text {
  font-size: 0.9rem;
}

.larger-text {
  font-size: 1.2rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

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

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

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

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

.no-background {
  background: none !important;
}

.animate-in-view,
.opacity0 {
  opacity: 0.01;
}
.opacity1 {
  opacity: 1 !important;
}

.pointer-events-none {
  pointer-events: none;
}

.transition-all {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
  position: relative;
  z-index: 1;
}

.background-center {
  background-position: center center !important;
}

.background-y-bottom {
  background-position-y: 100%;
}

.background-y-top {
  background-position-y: 0%;
}

.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

.background-transparent {
  background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
  color: #fff;
}

@media screen and (min-width: 450px) {
  .two-buttons-container {
    display: flex;
    justify-content: center;
  }

  .two-buttons-container a,
  .two-buttons-container button {
    margin: 0 6px;
  }
}

@media (min-width: 768px) {
  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .show-for-large {
    display: none !important;
  }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 99;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease-out;
}

body.scrolled .header {
  border-color: var(--alternate-color);
  background-color: var(--alternate-color);
}

.header > .row {
  height: 100%;
}

.header a {
  text-decoration: none;
}
.module-header-a-right-top .button.btn-top.external-link {
  padding: 5px 15px;
  font-size: 15px;
}

.header-desktop {
  display: none;
}
.module-header-a {
  position: relative;
  z-index: 1;
}

#header-desktop::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 80%);
  z-index: 0;
}
.scrolled #header-desktop::after {
  opacity: 0;
}

#header-mobile::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 80%);
  z-index: 0;
  opacity: 0.5;
}
.header-mobile-inner {
  position: relative;
  z-index: 1;
}

.module-header-a .row {
  max-width: 1290px;
  padding: 0 10px;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 8px;
}

.header-logo img {
  max-width: 100%;
  height: auto;
  max-width: 280px;
  width: 100%;
}

.header-mobile-inner {
  display: flex;
  min-height: 70px;
}

.header-mobile-buttons {
  display: flex;
  margin-left: 4%;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
  display: flex;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex: 1;
  max-width: 40px;
  width: 40px;
  height: 40px;
}
.header-mobile-buttons .button.alt-01.tel-link {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.header-mobile-buttons .button.alt-01.tel-link:hover,
.header-mobile-buttons .button.alt-01.tel-link:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.mega-menu {
  display: none;
}

@media screen and (min-width: 500px) {
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: block;
  }

  .header-logo {
    padding: 0;
  }
}

.module-header-a-right-top span a {
  color: var(--color-white);
  background-color: var(--secondary-color);
  padding: 6px 10px;
  display: block;
}
.module-header-a-right-top span a:hover {
  background-color: var(--primary-color);
}
/*******************************************************************************************
  - Module header a
*******************************************************************************************/

.module-header-a-right {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-self: center;
}
.module-header-a-right-top {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.module-header-a-right-top span {
  font-weight: 800;
  font-size: 19px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.module-header-a-phone {
  font-weight: bold;
  color: var(--color-white);
  font-size: 23px;
  margin-left: 20px;
  display: inline-block;
  background: var(--secondary-color);
  padding: 3px 15px;
}

.module-header-a-phone i {
  font-size: 15px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.module-header-a-phone:hover,
.module-header-a-phone:focus {
  font-weight: bold;
  color: var(--color-white);
  font-size: 23px;
  margin-left: 20px;
  display: inline-block;
  background: var(--primary-color);
  padding: 3px 15px;
}

.module-header-a-right-bottom {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -ms-align-items: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  justify-content: flex-end;
}

@media screen and (min-width: 1025px) {
  .module-header-a-right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-top: 0px;
    width: 75%;
  }

  .module-header-a-logo {
    flex: 1;
  }

  .module-header-a-inner {
    padding: 20px 0px 20px 0px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: relative;
  }

  .module-header-a-logo img {
    padding: 0px;
    margin-top: 0px;
  }
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
  margin: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.main-navigation-menu li {
  display: block;
  position: relative;
  padding: 0;
}

.main-navigation-menu > li {
  padding: 10px 0 10px 0;
  margin-right: 34px;
}

.main-navigation-menu > li.menu-item-360 .sub-menu {
  width: 540px;
  left: -240px;
}

.main-navigation-menu > li.menu-item-360 .sub-menu .menu-item {
  width: 48%;
  float: left;
}
.main-navigation-menu > li::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 12px;
  color: var(--color-white);
  opacity: 0.3;
  background: var(--color-white);
  width: 1px;
  height: 15px;
}

.main-navigation-menu > li:last-of-type::after {
  opacity: 0;
}

.main-navigation-menu > li:last-of-type {
  margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
  margin-right: 0;
}

.main-navigation-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 270px;
  margin: 0;
  padding: 10px 0;
  background: var(--primary-color);
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideDown 200ms both;
  animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
  color: var(--secondary-color);
  text-decoration: none;
}

#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
  color: var(--color-white);
}
.main-navigation-menu > li.menu-item-141 .sub-menu {
  width: 600px;
  left: -150%;
}
.main-navigation-menu > li.menu-item-141 .sub-menu li {
  width: 50%;
  float: left;
}
.main-navigation-menu > li > a {
  position: relative;
  display: block;
  height: 100%;
  color: var(--color-white);
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

/* MENUS > Main Nav Dropdowns (Level 2) */

#desktop-navigation .sub-menu li,
.mega-menu li {
  background: var(--primary-color);
  padding-left: 30px;
  transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
  position: relative;
  cursor: pointer;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
  color: #fff;
  font-size: 15px;
  display: block;
  padding: 10px 12px;
  padding-left: 0;
  line-height: normal;
  text-decoration: none;
  font-weight: 600;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
  background: var(--secondary-color);
}

.mega-menu li::before,
#desktop-navigation .sub-menu li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  left: 13px;
  top: 6px;
  color: var(--secondary-color);
  pointer-events: none;
  transition: color 200ms ease-out;
  font-size: 17px;
  font-weight: bold;
}

.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
  color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  right: 10px;
  color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a:after {
  color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
  display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideRight 200ms both;
  animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
  display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/

.banner {
  height: 250px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position: center right;
}

.banner,
.banner-xl {
  margin-top: 65px;
}

.page-template-template-venue .banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-blend-mode: normal, multiply, normal;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 26%), linear-gradient(50deg, rgba(0, 69, 29, 0.58) 1%, rgba(0, 69, 29, 0.48) 15%, rgba(0, 125, 52, 0) 52%), linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 50%);
}

.banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #0c2939, rgba(38, 34, 97, 0.47) 20%, rgba(38, 34, 97, 0.58) 29%, rgba(38, 34, 97, 0.75));
}

.single-attorneys .banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 60%);
  pointer-events: none;
  opacity: 1;
}

.banner img {
  position: relative;
  width: 100%;
}

.banner > .row {
  height: 100%;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  float: none !important;
  padding-top: 70px !important;
}

.banner-title {
  font-size: 70px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  margin: 0;
  color: #fff;
  max-width: 100%;
  line-height: normal;
  text-align: left;
  max-width: 985px;
  text-transform: none;
}
.cust-title-2.banner-title {
  color: var(--secondary-color);
}

.cust-title-1 {
  overflow: hidden;
  text-align: center;
}
.cust-title-2 {
  /*overflow: hidden;*/
  /*text-align: left;*/
}

.page-id-1881 .cust-title-2 {
  text-align: center;
}
.cust-title-2.banner-title {
  color: var(--secondary-color);
}

.page-template-template-venue .banner-title {
  font-size: 70px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  margin: 0;
  max-width: 100%;
  line-height: 1;
  text-align: center;
  max-width: 985px;
  margin: 0 auto;
}

.banner-title strong {
  color: var(--secondary-color);
  font-weight: 800;
  display: block;
  text-align: left;
}

.page-template-template-venue .banner-title strong {
  text-align: center;
}

@media screen and (min-width: 920px) {
  .banner-title {
    /* font-size: 80px; */
    font-size: 70px;
    line-height: 1;
    max-width: 70%;
    text-align: left;
  }

  .page-template-template-venue .banner-title {
    font-size: 85px;
    max-width: 985px;
  }

  .page-template-template-venue .banner-title strong {
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  .banner {
    height: 450px;
  }

  .banner,
  .banner-xl {
    margin-top: 0px;
  }
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
  .banner {
    height: 500px;
  }
}

/* HOME HERO AND/OR SLIDER Start */
/* Hero */
.hero {
  width: 100%;
  position: relative;
}

.hero-height {
  height: 640px;
}

.hero:after {
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 160px;
  display: block;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero h2 {
  line-height: 1.2;
  font-weight: 300;
  font-size: 2.813rem;
  letter-spacing: 10px;
  color: var(--color-near-white);
  text-transform: uppercase;
}

.hero .swiper-pagination {
  bottom: 30px;
}
.hero .hero-title-4,
.hero .hero-title-1 {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.2px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-title-2 {
  font-size: 100px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 5px;
  line-height: 0.8;
  opacity: 1;
}

/*.swiper-slide.swiper-slide-active .hero-title-2 {	
		opacity:1;
		-webkit-animation-name: fadeInUp;
		animation-name: fadeInUp;
		-webkit-animation-duration: 1000ms;
		animation-duration: 1000ms;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-delay:3s

}*/

.hero-title-3 {
  font-size: 95px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: normal;
  text-align: left;
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 25px;
}

.hero h2 strong {
  display: block;
  font-weight: inherit;
}

.hero .slick-dots {
  bottom: 20px;
}

.hero-slide {
  position: relative;
}
.hero-slide-content .row {
  width: 100%;
  max-width: 1100px;
}
.hero-slide-content {
  z-index: 1;
  display: flex;
  position: relative;
  text-align: center;
  align-items: center;
}

.swiper-slide.slide-2 .hero-slide-content {
  align-items: flex-end;
}

.hero-slide-content-inner {
  padding-bottom: 0;
  text-align: left;
}

.hero-slide-content .row {
  flex: 1;
}

.hero-slide-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-image:after,
.hero-slide-image:before {
  left: 0;
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  pointer-events: none;
}

/*.hero-slide-image::before {
	bottom: 0;
	height: 160px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
	opacity: 0;
}

.hero-slide-image::after {
	top: 0;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 00%), linear-gradient(89deg, #000703 1%, rgba(0, 69, 29, 0.48) 20%, rgba(0, 125, 52, 0) 52%), linear-gradient(to bottom, rgba(0, 125, 52, 0) 80%, #000703 100%), linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 40%);
	opacity: 0;
}*/

.module.module-results-a .swiper-outer {
  max-width: calc(100% - 160px);
}

.hero .module.module-results-a {
  position: absolute;
  bottom: 0;
  padding: 30px 0;
  margin: 0 auto;
  width: 100%;
}

.module-results-a .swiper-button-next:focus:after,
.module-results-a .swiper-button-prev:focus:after {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.module-results-a .swiper-button-next:focus,
.module-results-a .swiper-button-prev:focus {
  border-color: var(--secondary-color) !important;
}

.module-results-a .swiper-button-next:hover:after,
.module-results-a .swiper-button-prev:hover:after {
  color: #fff !important;
}

.hero .module.module-results-a .row {
  max-width: 1100px;
}
.swiper-slide.module-results-a-single {
  text-align: center;
}

.swiper-slide.module-results-a-single::after {
  content: '';
  position: absolute;
  background: #d89d42;
  height: 100%;
  width: 1px;
  top: 0;
  right: -8px;
}

.module-results-a-single h3 {
  font-size: 38px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.52px;
  text-align: center;
  color: #fff;
  margin-bottom: 1px;
}
.module-results-a-single .uppercase {
  /* 	font-size: 15px; */
  font-size: 11.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  /* line-height: normal; */
  /* 	letter-spacing: 2.4px; */
  letter-spacing: 2px;
  text-align: left;
  color: #fff;
  line-height: 0.8;
  margin: 0;
}

.swiper-slide.slide-2 .hero-slide-content-inner {
  text-align: center;
  padding-bottom: 130px;
  display: flex;
  column-gap: 15px;
  justify-content: center;
  row-gap: 0;
  flex-wrap: wrap;
}

.swiper-slide.slide-2 .hero-slide-content-inner .hero-title-4 {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-right: 109px;
  margin-top: -23px;
}

.swiper-slide.slide-3 .hero-slide-content-inner .hero-title-2 {
  color: var(--secondary-color);
}

.swiper-slide.slide-3 .hero-slide-content-inner .hero-title-3 {
  color: #fff;
  max-width: 600px;
  margin-bottom: 20px;
}

.swiper-slide.slide-3 .hero-slide-content-inner .hero-title-4 {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.2px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 39px;
}

@media screen and (min-width: 768px) {
  .hero h2 {
    font-size: 4.063rem;
    letter-spacing: 15px;
  }

  .hero-height {
    height: 740px;
  }

  .hero .slick-dots {
    bottom: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .hero-height {
    height: 100vh;
    min-height: 760px;
    max-height: 1080px;
  }

  .hero h2 {
    font-size: 5.313rem;
    letter-spacing: 20px;
  }

  .hero .slick-dots {
    bottom: 50px;
  }
}

.tag-main {
  display: flex;
  height: 100%;
  max-width: 1255px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.home-hero-form-inner {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.home-hero-content-side {
  width: 100% !important;
  padding-right: 0px !important;
  justify-content: flex-end !important;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  text-align: right;
  max-width: 800px;
  text-align: left;
}

.home-hero-content-side p.tag1 {
  font-size: 26px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 5.2px;
  text-align: right;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 5px;
  margin-right: 0;
  width: 100%;
  text-align: left;
}

.home-hero-content-side h2 {
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.row.home-hero-form-row {
  width: 100%;
}

.header-mobile-buttons {
  column-gap: 5px;
  padding-right: 0;
}

.header-mobile-buttons .mobile-menu-toggle {
  background: transparent;
  border-color: var(--secondary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  max-width: 40px;
  margin-left: 5px;
}

@media screen and (min-width: 280px) and (max-width: 767px) {
  .header-logo img {
    max-width: 265px;
    height: auto;
    width: 160px;
  }

  .header-mobile-inner {
    padding-top: 20px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 20px;
  }
  .header-logo {
    padding: 0;
  }

  .home-hero {
    margin-top: 0;
    overflow: hidden;
    height: 585px;
  }
  .home-slider-single {
    height: 400px;
  }
  #home-slider {
    height: 400px;
  }

  .home-hero-form-container {
    display: inline-block;
  }
  .home-hero-form-container {
    display: inline-block;
    top: 5%;
    position: absolute;
    width: 100%;
    text-align: center !important;
    z-index: 37;
  }

  .tag-main {
    display: flex;
    height: auto;
    max-width: 1255px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  .home-hero-content-side {
    width: 100% !important;
    padding-right: 0px !important;
    justify-content: center !important;
    justify-content: center;
    text-align: center;
    text-align: center;
    padding: 10px;
  }
  .home-hero-content-side h1 {
    font-size: 41px;
    text-align: center;
  }

  .home-hero-content-side h2 {
    margin-right: 0;
    margin-top: 0;
    text-shadow: none !important;
    font-size: 32px;
    text-align: center;
  }

  .home-hero-form.mobile.hide-for-large .contact-form-heading:first-child {
    display: none;
  }

  .home-hero-form {
    min-width: 100% !important;
    padding-top: 20px;
    background: #090f2c !important;
  }
  .module.module-blog-c {
    position: relative;
  }

  .module-benefits-c-box:last-child {
    margin: 0 !important;
  }

  .banner,
  .banner-xl {
    margin-top: 0;
  }

  .home-hero-form-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 150px;
  }
  .home-hero-content-side p.tag1 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 3.8px;
    margin-bottom: 10px;
    text-align: center;
  }

  .home-hero-icon {
    opacity: 1;
  }
  .home-hero-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -10%;
    bottom: -3%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    opacity: 1;
  }

  .home-hero-icon-img img {
    max-width: 430px;
    height: auto;
    width: 120%;
  }

  .hero-height {
    height: 765px;
    align-items: flex-end;
  }
  .hero .hero-title-4,
  .hero .hero-title-1 {
    text-align: center;
  }
  .hero-title-2 {
    font-size: 65px;
    font-weight: 800;
    text-align: center;
  }

  .hero-title-3 {
    font-size: 65px;
    font-weight: 800;
    text-align: center;
  }
  .hero-slide-content-inner {
    padding-bottom: 180px;
    text-align: center;
  }

  .hero-slide-content-inner {
    padding-bottom: 160px;
    text-align: center;
  }

  .swiper-slide.module-results-a-single::after {
    height: 0;
    width: 0px;
    opacity: 0 !important;
  }
  .module-results-a-single h3 {
    margin-bottom: 10px;
  }
  .module.module-results-a .swiper-outer {
    max-width: calc(100% - 70px);
  }

  .swiper-slide.slide-1 .hero-slide-image img {
    width: 109%;
    height: 83%;
    object-fit: cover;
    object-position: 91% 54%;
  }
  .hero-slide-content-inner .button.alt-01 {
    padding: 10px 30px !important;
  }

  .hero-height .swiper-slide.slide-1 .hero-slide-image::before {
    content: '';
    position: absolute;
    bottom: 6px !important;
    left: 0;
    height: 488px;
    background: linear-gradient(to bottom, rgba(11, 33, 54, 0) 0%, rgb(3, 34, 16) 65%);
    width: 100%;
    opacity: 1 !important;
    bottom: 0px !important;
    z-index: 0;
  }

  .hero-height .swiper-slide.slide-1 .hero-slide-image::after {
    content: '';
    position: absolute;
    bottom: -37px !important;
    left: 0;
    height: 240px;
    background: linear-gradient(to bottom, rgb(3, 34, 16) 0%, rgb(3, 34, 16) 30%);
    width: 100%;
    opacity: 1 !important;
    z-index: 0;
  }

  .swiper-slide.slide-2 .hero-slide-content-inner .hero-title-4 {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-right: 0;
    margin-top: -5px;
  }

  .swiper-slide.slide-2 .hero-slide-image img {
    width: 132%;
    height: 100%;
    object-fit: cover;
    object-position: 49% 70%;
  }

  .hero-height .swiper-slide.slide-2 .hero-slide-image::before {
    content: '';
    position: absolute;
    left: 0;
    height: 164px;
    background: linear-gradient(to bottom, rgba(2, 23, 20, 0) 0%, rgba(6, 23, 30, 0.5) 50%);
    width: 100%;
    opacity: 1 !important;
    bottom: 0 !important;
    z-index: 0;
  }

  .swiper-slide.slide-3 .hero-slide-content-inner .hero-title-3 {
    color: #fff;
    max-width: 600px;
    margin-bottom: 20px;
    font-size: 60px;
  }
  .swiper-slide.slide-3 .hero-slide-content-inner .hero-title-2 {
    color: var(--secondary-color);
    font-size: 60px;
  }
  .swiper-slide.slide-3 .hero-slide-content-inner .hero-title-4 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
  }
  .swiper-slide.slide-3 .hero-slide-image img {
    width: 127%;
    height: 100%;
    object-fit: cover;
    object-position: 79% 64%;
  }

  .hero-height .swiper-slide.slide-3 .hero-slide-image::before {
    content: '';
    position: absolute;
    left: 0;
    height: 65%;
    background: linear-gradient(to bottom, rgba(2, 23, 20, 0) 0%, rgba(4, 57, 45, 0.5) 50%);
    width: 100%;
    opacity: 1 !important;
    bottom: 0 !important;
    z-index: 0;
  }

  .swiper-slide.slide-4 .hero-slide-image img {
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 66%;
  }

  .hero-height .swiper-slide.slide-4 .hero-slide-image::before {
    content: '';
    position: absolute;
    left: 0;
    height: 65%;
    background: linear-gradient(to bottom, rgba(2, 23, 20, 0) 0%, rgba(4, 57, 45, 0.5) 50%);
    width: 100%;
    opacity: 1 !important;
    bottom: 0 !important;
    z-index: 0;
  }
  .banner {
    height: 300px;
  }
  .banner-title {
    /*font-size: 60px;*/
    line-height: normal;
    font-size: 35px;
    font-weight: 800;
    text-align: left;
  }

  .page-template-template-venue .banner::before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 62%), linear-gradient(to bottom, rgba(0, 0, 0, 0.5) -4%, rgba(0, 0, 0, 0) 22%);
  }

  .page-template-template-venue .banner-title {
    font-size: 50px;
  }

  .page-template-template-venue .banner-title strong {
    text-align: center;
  }

  .page-template-template-results .banner-inner.columns.no-float {
    align-items: center;
    padding-top: 90px !important;
  }

  .page-template-template-results #banner {
    background-position: 79% 32px;
    height: 300px;
    background-color: #050000;
  }

  .page-template-template-results #banner::before {
    /* transform: rotate(-421deg); */
    background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.1) 50%);
  }

  h1.cust-title-1 {
    padding-bottom: 10px;
  }
  h2.cust-title-2 {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .home-hero {
    margin-top: 0;
  }
  .page-template-template-venue .banner-title {
    max-width: 500px;
  }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
  .button.alt-01.mobile.tel-link {
    display: none;
  }
  .hide.tablet {
    display: flex !important;
    align-items: center;
    column-gap: 12px;
  }

  .hide.tablet span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
  }
  .hide.tablet .module-header-a-phone.tel-link {
    width: auto !important;
    max-width: inherit !important;
    margin: 0 0;
    font-size: 15px !important;
    padding: 0 15px !important;
    align-items: center !important;
    line-height: normal !important;
    height: 40px !important;
    max-height: 40px;
    align-content: center !important;
    justify-content: center;
    display: inline-flex !important;
  }

  .hide.tablet .module-header-a-phone.tel-link i {
    top: 0;
  }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .button.alt-01.mobile.tel-link {
    display: none;
  }
  .hide.tablet {
    display: flex !important;
    align-items: center;
    column-gap: 12px;
  }

  .hide.tablet span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
  }
  .hide.tablet .module-header-a-phone.tel-link {
    width: auto !important;
    max-width: inherit !important;
    margin: 0 0;
    font-size: 15px !important;
    padding: 0 15px !important;
    align-items: center !important;
    line-height: normal !important;
    height: 40px !important;
    max-height: 40px;
    align-content: center !important;
    justify-content: center;
    display: inline-flex !important;
  }

  .hide.tablet .module-header-a-phone.tel-link i {
    top: 0;
  }

  .header-logo img {
    max-width: 230px;
  }
  .header-mobile-buttons {
    column-gap: 5px;
  }

  .home-hero-form-container {
    display: inline-block;
  }

  .home-hero-form-container {
    display: inline-block;
    /* position: absolute; */
    top: 5%;
    position: absolute;
    width: 100%;
    text-align: center !important;
    z-index: 37;
  }

  .tag-main {
    display: flex;
    height: auto;
    max-width: 1255px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
    text-align: center;
  }
  .home-hero-content-side h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
  }

  .module-attorneys-a-inner .module-attorneys-a-content .elementor-widget-container p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .module-attorneys-a-photo img {
    width: 350px !important;
    max-width: 100%;
  }
  .swiper-slide.module-badges-a-single {
    text-align: center;
  }
  .module.module-attorneys-a {
    padding-bottom: 0;
  }
  .module-practices-b-inner {
    column-gap: 5px;
    row-gap: 5px;
  }
  .module.module-practices-b {
    padding-bottom: 0;
  }

  .module-practices-c-inner {
    grid-row-gap: 10px !important;
  }
  .elementor-heading-title.elementor-size-default {
    font-size: 16px !important;
  }

  .module-attorneys-a-content .module_title {
    font-size: 28px !important;
  }

  .home-hero-content-side {
    width: 100% !important;
    padding-right: 0px !important;
    justify-content: center !important;
    justify-content: center;
    text-align: center;
  }

  .home-hero-content-side h2 {
    margin-right: 0;
    margin-top: 0;
    /* color: #333; */
    text-shadow: none !important;
    font-size: 40px;
    text-align: center;
  }

  .home-hero-form.mobile.hide-for-large .contact-form-heading:first-child {
    display: none;
  }

  .home-hero-form {
    background: #090f2c !important;
    padding-top: 20px;
  }
  .module.module-blog-c {
    position: relative;
  }

  .module-benefits-c-box:last-child {
    margin: 0 !important;
  }

  .home-hero-form.hide-for-small-only {
    display: none !important;
  }

  .home-hero-form.mobile.hide-for-large {
    width: 100% !important;
    max-width: 100% !important;
  }

  #slider-blog-c {
    width: 85%;
  }

  .module-benefits-c-box {
    padding: 0 10px !important;
    margin-bottom: 40px !important;
    width: 33% !important;
  }
  .module-benefits-c-boxes {
    align-items: flex-start !important;
  }

  .module-benefits-c-box i {
    font-size: 45px !important;
    height: 68px !important;
  }
  .box-content h3 {
    font-size: 22px !important;
  }

  .module.module-benefits-c {
    padding-bottom: 25px !important;
  }

  .module-intro-b-content .module-title {
    margin-bottom: 15px !important;
    font-size: 28px !important;
  }

  .module-footer-b-footer-half-side .form-container {
    max-width: 600px !important;
    margin: 0 auto;
  }
  .home .module-blog-c-single {
    padding: 15px !important;
    text-align: center !important;
  }

  .banner,
  .banner-xl {
    margin-top: 0;
    height: 350px;
  }
  .banner-title {
    font-size: 50px;
  }
  .sidebar-block h2 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .header-mobile-inner {
    padding-top: 20px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 20px;
  }

  .header-logo img {
    max-width: 220px;
    height: auto;
    width: 100%;
    width: 220px;
  }

  .home-hero-form-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 180px;
  }

  .home-hero-content-side p.tag1 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3.8px;
    margin-bottom: 10px;
    text-align: center;
  }

  .home-hero-content-side h1 {
    font-size: 60px;
    text-align: center;
  }

  .home-hero-form-inner {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    padding-left: 25%;
  }
  .home-hero-icon-img img {
    max-width: 450px;
    height: auto;
    width: 100%;
  }

  .home-hero {
    margin-top: 0;
    overflow: hidden;
    height: 700px;
  }
  .home-hero-image-container.home-hero-height-sync img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .mobile-navigation-top-inner {
    padding: 24px 4%;
    background: transparent;
    display: none;
    width: 100%;
  }
  .hero-title-2 {
    font-size: 75px;
  }
  .hero-title-3 {
    font-size: 75px;
  }

  .swiper-slide.slide-2 .hero-title-2,
  .swiper-slide.slide-2 .hero-title-3 {
    font-size: 95px;
    line-height: normal;
  }

  .swiper-slide.slide-3 .hero-slide-content-inner {
    padding-bottom: 145px;
  }
  .cust-title-1 {
    min-height: 87px;
  }
  .cust-title-2 {
    min-height: 87px;
  }
  .cust-title-2 {
    margin-top: -10px;
  }
}

@media screen and (min-width: 980px) and (max-width: 1024px) {
}

@media screen and (min-width: 1024px) and (max-width: 12000px) {
  .cust-title-1.banner-title {
    min-height: 105px;
    padding-bottom: 12px;
  }
  .cust-title-2.banner-title {
    min-height: 105px;
    padding-bottom: 12px;
  }
  .cust-title-2 {
    margin-top: 5px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .module-header-a .row {
    max-width: 1280px;
    padding: 0 15px;
  }

  .home-hero-content-side h1 {
    font-size: 80px;
    max-width: 800px;
    margin-left: 0;
    width: 100%;
  }
  .home-hero-content-side {
    max-width: 700px;
    text-align: left;
  }

  .home-hero,
  .home-slider,
  .home-slider-single {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    max-height: 768px;
  }

  .module-header-a-logo img {
    width: 200px;
  }

  .main-navigation-menu > li {
    padding: 10px 0 10px 0;
    margin-right: 20px;
  }

  .main-navigation-menu > li > a {
    font-size: 14px;
  }
  .main-navigation-menu > li::after {
    right: -12px;
  }
  /*.hero-title-2 {
	font-size: 75px;
 
}
.hero-title-3 {
	font-size: 75px;
 
}*/

  .swiper-slide.slide-2 .hero-title-2,
  .swiper-slide.slide-2 .hero-title-3 {
    font-size: 130px;
  }

  .swiper-slide.slide-2 .hero-slide-content-inner .hero-title-4 {
    width: 100%;
    font-size: 25px;
    padding-right: 130px;
  }

  .hero .hero-title-1 {
    font-size: 25px;
  }

  .swiper-slide.module-results-a-single.swiper-slide-prev::after {
    opacity: 0 !important;
  }
  .banner-title {
    font-size: 60px;
  }
}

.home-slider-single picture img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 1025px) {
  .home-slider-single picture img {
    height: 100vh;
    width: 100%;
  }

  .swiper-slide.module-results-a-single.swiper-slide-prev::after {
    opacity: 0;
  }
}

@media screen and (min-width: 1920px) and (max-width: 12000px) {
  .banner {
    height: 500px;
  }

  .home-hero,
  .home-slider,
  .home-slider-single {
    max-height: 1600px;
  }
  .mega-menu li::before,
  #desktop-navigation .sub-menu li::before {
    left: 11px;
    top: 6px;
    font-size: 20px;
    width: 35px;
  }

  .home-hero-content-side p.tag1 {
    font-size: 36px;
  }
  .home-hero-content-side h1 {
    font-size: 140px;
    max-width: 1140px;
    margin-left: 0;
    width: 100%;
  }
  .home-hero-content-side {
    max-width: 1140px;
  }
  .home-hero-icon-inn {
    max-width: 1680px;
  }
  .row.home-hero-form-row {
    width: 100%;
    max-width: 1700px;
  }
  .home-hero-icon-inn {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    margin-left: -100px;
  }
  .main-navigation-menu > li > a {
    font-size: 22px;
  }
  .header-logo img {
    max-width: 100%;
    height: auto;
    max-width: 460px;
    width: 100%;
  }
  .module-header-a-inner {
    padding: 40px 15px 35px 15px;
  }
  .home-hero-icon-img img {
    max-width: 950px;
    height: auto;
    width: 100%;
  }

  #mega-menu li a,
  #desktop-navigation .sub-menu li a {
    font-size: 20px;
  }
  .main-navigation-menu .sub-menu {
    width: 340px;
  }
  .main-navigation-menu > li.menu-item-360 .sub-menu {
    width: 680px;
    left: -340px;
  }
  .main-navigation-menu > li {
    margin-right: 35px;
  }

  .module-header-a-inner {
    padding: 25px 0px 25px 0px;
  }
  .module-header-a-logo img {
    width: 280px;
    max-width: 280px;
  }
  .module-header-a-right-top span {
    font-size: 20px;
  }
  .module-header-a-phone {
    font-size: 25px !important;
    padding: 5px 15px !important;
  }

  .main-navigation-menu > li > a {
    font-size: 17px;
    letter-spacing: -0.4px;
  }

  .main-navigation-menu > li {
    margin-right: 30px;
  }

  #mega-menu li a,
  #desktop-navigation .sub-menu li a {
    font-size: 16px !important;
  }

  .hero-slide-content {
    z-index: 1;
    display: flex;
    position: relative;
    text-align: center;
    align-items: center;
  }

  .hero-slide-content-inner {
    padding-bottom: 0;
    text-align: left;
  }
  .hero-slide-content .row {
    width: 100%;
    max-width: 1180px;
  }

  .hero .hero-title-1 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 25px;
  }

  .hero-title-2 {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 0.8;
  }

  .hero-title-3 {
    font-size: 120px;
    font-weight: 800;
    font-style: normal;
    line-height: 0.9;
    margin-bottom: 40px;
  }

  .hero-slide-content-inner .button.alt-01 {
    font-size: 17px !important;
  }

  .hero .module.module-results-a {
    padding: 50px 0;
  }
  .hero .module.module-results-a .row {
    max-width: 1210px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 25px !important;
  }

  .swiper-slide.slide-2 .hero-slide-content.hero-height {
    align-items: flex-end;
  }
  .swiper-slide.slide-2 .hero-slide-content.hero-height .hero-slide-content-inner {
    padding-bottom: 150px;
  }

  .swiper-slide.slide-2 .hero-slide-content.hero-height .hero-slide-content-inner .hero-title-2,
  .swiper-slide.slide-2 .hero-slide-content.hero-height .hero-slide-content-inner .hero-title-3 {
    font-size: 170px;
  }

  .swiper-slide.slide-2 .hero-slide-content.hero-height .hero-slide-content-inner .hero-title-4 {
    font-size: 25px;
    padding-right: 92px;
    margin-top: -34px;
  }

  .swiper-slide.slide-3 .hero-slide-content-inner .hero-title-4 {
    font-size: 26px;
  }
}

/*Sidebar Result section CSS START*/

.results-slider-single.side-result {
  background-image: url(/wp-content/uploads/form-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 15px;
}
.results-slider-single.side-result .practices-single-img {
  margin-bottom: 40px;
}
.res-read-more {
  margin: 35px 0;
}

.pract-single-tit-inn.center {
  min-height: 260px !important;
}
#slider-results {
  position: relative;
}
#slider-results .swiper-button-container {
  top: inherit !important;
  bottom: 66px !important;
  width: calc(100% + -3%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#slider-results .swiper-button-container button {
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
}

#slider-results .swiper-button-container button::after {
  color: var(--primary-color) !important;
}
#slider-results .swiper-button-container button:hover,
#slider-results .swiper-button-container button:focus {
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  background: var(--primary-color);
}

#slider-results .swiper-button-container button:hover:after,
#slider-results .swiper-button-container button:focus:after {
  color: #fff !important;
}

/*Sidebar Result section CSS END*/

/* GENERAL > Swiper Customizations */
.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-button-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: -30px;
  right: 0;
  width: calc(100% + 60px);
  top: calc(50% - 22px);
}

.swiper-button-container.buttons-bottom {
  left: 0;
  top: 100%;
  width: 100%;
}

.swiper-button-container .swiper-button-next,
.swiper-button-container .swiper-button-prev {
  position: relative !important;
  /* height: auto !important; */
  min-width: 40px !important;
  margin-top: 0 !important;
  padding: 0px;
  background: transparent;
  border-radius: 55%;
  width: 45px;
  height: 45px !important;
  outline: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: 'Font Awesome 6 Pro' !important;
  content: '\f0da' !important;
  color: var(--secondary-color);
  -webkit-transition: color 200ms ease-out;
  -moz-transition: color 200ms ease-out;
  -ms-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px !important;
}

.swiper-button-container button:hover,
.swiper-button-container button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  outline: none;
}

.swiper-button-prev::after {
  content: '\f0d9' !important;
}

.swiper-button-next:hover:after,
.swiper-button-next:focus:after,
.swiper-button-prev:hover:after,
.swiper-button-prev:focus:after {
  color: var(--primary-color-lite) !important;
}

.swiper-outer {
  max-width: 85%;
  position: relative;
  margin: 0 auto;
}

.swiper-outer.full-width {
  max-width: none !important;
}

.swiper-autoplay-toggle {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
}

@media screen and (min-width: 768px) {
  .sidebar .swiper-outer {
    max-width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .swiper-outer {
    max-width: calc(100% - 200px);
  }
  .module-results-b .swiper-outer {
    max-width: calc(100% - 00px);
  }
  .swiper-button-container {
    left: -100px;
    width: calc(100% + 200px);
  }

  .module-results-b .swiper-button-container {
    left: -70px;
    width: calc(100% + 125px);
  }
  .swiper-button-container {
    left: -84px;
    width: calc(100% + 165px);
  }

  .swiper-outer.full-width .swiper-button-container {
    left: 0;
    width: 100%;
  }
}
.gold {
    color: var(--secondary-color);
}