/* This stylesheet is RENDER-BLOCKING */
/* 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: 40px;
  --font-size-h2: 30px;
  --font-size-h3: 24px;
  --font-size-h4: 16px;
  --font-size-h5: 16px;
  --body-text-color: #000;
  --primary-color: #005ba1;
  --secondary-color: #e9b245;
  --alternate-color: #1a3e6e;
  --option-color: #0f1b2d;
  --gray-color: #d9d9d9;
  --color-white: #fff;
  --color-black: #000;
  --light-gray-color: #e9f5f7;
  --body-font-family: "Plus Jakarta Sans", sans-serif;
  --heading-font-family: "Cormorant Garamond", 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.75;
  color: var(--body-text-color);
  font-size: 16px;
  font-family: var(--body-font-family);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal
}

*:focus {
  outline: auto;
}

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

}

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

h1 {
  font-size: 40px;

}

h2 {
  font-size: 30px;

}

h3 {
  font-size: 24px;

}


h4 {
  font-size: 16px;
  letter-spacing: 6.4px;
}

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: 16px;

}

ul {
  list-style: none;
}

/* CORE > Links and Buttons */

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


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

}




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

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

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(--body-text-color);
  background-color: var(--secondary-color);
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  letter-spacing: 2.55px;
}

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



/* Hero > Animation */



#my-text .letter {
  display: inline-block;
  line-height: 1em;
  opacity: 0;
}

#my-text {
  /* font-weight: bold; */
  /* font-size: 2em; */
  /* letter-spacing: 0.1em; */
  overflow: hidden;
  display: inline-block;
  color: var(--color-primary);
  opacity: 1;
}

#my-text .letter {
  display: inline-block;

}

.animate-in-view.tag1.tagline-first.animated {
  animation: slidetranslate 1s ease-out forwards;
}

@keyframes slidetranslate {
  from {
    transform: translateY(-20px);
    opacity: 0;
    scale: 1.2;
  }

  to {
    transform: translateY(0);
    opacity: 1;
    scale: 1;
  }
}








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

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

.row-1080 {
  max-width: 1080px;
}

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

.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(--option-color);
  background-color: var(--option-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;
  opacity: 0.7;
}

.home #header-desktop::after {
  opacity: 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: 10px 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;
  column-gap: 10px;
}

.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;
  color: var(--color-white);
}

.header-mobile-buttons button.mobile-menu-toggle {
  color: var(--option-color);
  background: #fff;
  border-color: white;
}

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

.header-mobile-buttons .button.alt-01.tel-link i {
  color: var(--color-white);
}

.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: transparent !important;
  padding: 0;
}


.module-header-a-right-top span a:hover,
.module-header-a-right-top span a:focus {
  color: var(--secondary-color) !important;

}





/*******************************************************************************************
  - 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-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
  text-align: right;
  color: var(--color-white);
}

.module-header-a-phone {
  font-weight: 600 !important;
  color: var(--secondary-color) !important;
  font-size: 20px !important;
  margin-left: 20px;
  display: inline-block;
  background: transparent;
  padding: 3px 0 !important;
  letter-spacing: 0.2px;
  background: transparent !important;
}

.module-header-a-phone.tel-link:hover,
.module-header-a-phone.tel-link:focus {
  font-weight: 600 !important;
  color: var(--color-white) !important;

}



.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: 600 !important;
  color: var(--primary-color) !important;
  font-size: 20px !important;
  margin-left: 20px;
  display: inline-block;
  background: transparent;
  padding: 3px 0 !important;
  letter-spacing: 0.2px;
  background: transparent !important;
}




.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: 5px 0px 5px 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: 40px;
}


.main-navigation-menu>li::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 12px;
  color: transparent;
  opacity: 0.3;
  background: #878787;
  width: 1px;
  height: 15px;
  opacity: 1;
}


.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: 300px;
  margin: 0;
  padding: 10px 0;
  background: var(--option-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(--secondary-color) !important;
}

/*.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: 16px;
  font-weight: bold;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}



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


#desktop-navigation .sub-menu li,
.mega-menu li {
  background: transparent;
  padding-left: 0;
  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: 16px;
  display: block;
  padding: 8px 15px;
  line-height: normal;
  text-decoration: none;
  font-weight: 500;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
  background: transparent;
}

.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;
  opacity: 0 !important;
}

.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: 350px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position: center right;
  overflow: hidden;
  border-bottom: 7px solid var(--secondary-color);
}

.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;
  z-index: 1;
  background-image: linear-gradient(to bottom, #0f1b2d, rgba(15, 27, 45, 0) 33%), linear-gradient(to bottom, #0f1b2d, #0f1b2d);
  opacity: 0.5;
}


.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-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.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: center;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  float: none !important;
  padding-top: 70px !important;
}

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

.page-template-template-about .banner-title {
  opacity: 0
}

.page-template-template-about .banner-title {
  animation: fadeInUp 1000ms ease-out forwards;
  animation-delay: 500ms;
}

.single-attorneys-template-a .attorney-banner-name h1 {
  opacity: 0
}


.single-attorneys-template-a .attorney-banner-name h1 {
  animation: fadeInUp 1000ms ease-out forwards;
  animation-delay: 500ms;
}








.cust-title-2.banner-title {
  color: var(--secondary-color);
}

.cust-title-1 {
  overflow: hidden;
  text-align: center;
}

.cust-title-2 {
  overflow: hidden;
  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;
    max-width: 100%;
    text-align: center;
    text-transform: uppercase;
  }

  .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: 400px;
  }

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

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

    height: 450px;
  }
}






/* HOME HERO AND/OR SLIDER Start */
/* Hero */


/*******************************************************************************************
 Home Hero
*******************************************************************************************/
/* ESSENTIALS CHILD THEME: "DYNAMIC" */



.video-bg {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  height: 100% !important;
  background-color: var(--primary-color);
  display: block;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  z-index: 1;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center right;
}

.video-bg video {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* HERO */

.hero {
  position: relative;
  min-height: 520px;
  border-bottom: 7px solid var(--secondary-color);
}


.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
  background-image: linear-gradient(280deg, #305027 5%, rgba(67, 93, 59, 0) 93%);
  background-image: linear-gradient(to bottom, rgba(13, 13, 13, 1) 25%, rgba(0, 0, 0, 0));
  opacity: 0.5;
}

.hero-content {
  display: flex;
  padding-bottom: 0;
  /* flex-direction: column; */
  justify-content: center;
  color: var(--primary-color);
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%;
}



.hero-content-inner {
  z-index: 1;
  margin: 50px 0;
  padding-left: 20px;
  position: relative;
}

.hero-title-1 {
  font-family: var(--body-font-family);
  font-size: 27px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 8.37px;
  text-align: center;
  color: var(--color-white) !important;
  text-transform: uppercase;
  margin-top: 05px;
  margin-bottom: 30px;
}

.hero-title-2 {
  font-family: var(--heading-font-family);
  font-size: 96px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: -1px;
  text-align: center;
  color: var(--color-white) !important;
  text-transform: uppercase;
  opacity: 1;
}

.hero-title-2 .home-hero-title-word-container {
  display: inline-block;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: -10px;
}


.yellow {
  color: var(--secondary-color);
}

.hero .row {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1900px;
}

.hero .column.no-float {
  height: 100%;
}


.hero-content-inner::before,
.hero-content-inner::after {
  position: absolute;
  left: 0;
  height: 50%;
  content: "";
  display: none;
}

.hero-content-inner:before {
  top: 8px;
  border-left: 1px dashed var(--secondary-color);
}

.hero-content-inner:after {
  bottom: 0;
  border-left: 1px dashed #d1d1d1;
}



.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*#header-desktop::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 200px;
	z-index: 0;
	background-image: linear-gradient(280deg, #305027 5%, rgba(67, 93, 59, 0) 93%);
	background-image: linear-gradient(to bottom, rgba(52, 89, 45, 0.85) 25%, rgba(52, 89, 45, 0.57) 55%, rgba(52, 89, 45, 0));
}
*/

body.scrolled .header::after {
  opacity: 0;
}

.module-header-a {
  position: relative;
  z-index: 2;
}

.module-header-a .row {
  max-width: 95%;
}


.hero-bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
  opacity: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 465px;
  background-image: linear-gradient(0deg, rgba(55, 28, 9, 0.85) 9%, rgba(55, 28, 9, 0.65) 29%, rgba(55, 28, 9, 0) 63%);
  z-index: 1;
  opacity: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content-inner p,
.hero-content-inner h1 {
  color: #fff;
  display: inline-block;
  margin: 0 auto;
  white-space: pre-line;
}



.hero-cta {
  margin-top: 15px;
  margin-bottom: 0;
}

/*.hero-cta .button::after {
	content: "";
	position: absolute;
	left: -10%;
	top: 0px;
	background: var(--primary-color);
	width: 120%;
	height: 104%;
	z-index: -1;
}*/




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



  .hero-content-inner {
    padding-left: 0;
    /* max-width: 100%; */
    margin: 0 auto;
    text-align: center;
    /* width: 100%; */
    margin-right: auto;
    padding-right: 0;
    width: 100%;
    height: 100%;
    padding-top: 5%;
  }

  .hero-content-inner:before {
    top: 13px;
  }
}

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

  .hero-content {
    padding-top: 40px;
  }



}

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



  .hero-content-inner:before,
  .hero-content-inner:after {
    left: -65px;
  }
}

.logo-watermark-inn img {
  max-width: 120px;
}

.logo-watermark {
  margin-top: 55px;
}

.hero-line {
  position: absolute;
  bottom: -115px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 9;
}

.hero-line-inn.animate-in-view.animated {
  opacity: 1;
}

.hero-line-inn {
  position: relative;
  height: 180px;
  width: 10px;
  overflow: hidden
}

.line-inn-con.active {
  background: var(--secondary-color);
  height: 100%;
  -webkit-animation: expand1 2s;
  width: 3px;
  position: absolute;
  margin-left: 0;
  z-index: 3;
  margin: 0 auto;
  left: 5px;
}

@-webkit-keyframes expand1 {
  0% {
    height: 0px;
  }

  100% {
    height: 100%;
  }
}

/* HOME HERO AND/OR SLIDER */
.home-hero-height-sync {
  height: 400px;
}

.home-hero,
.home-hero-inner {
  position: relative;
}

.home-hero-image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image-container img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 50%;
  object-position: 50%;
}

.home-hero-form-container {
  display: none;
}

.home-hero-form-row {
  display: flex;
  justify-content: flex-end;
}

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

  .home-hero-height-sync,
  .home-hero {
    height: 600px;
  }
}

@media screen and (min-width: 1025px) {
  .home-hero-inner {
    display: block;
  }

  .home-hero-height-sync {
    height: 750px;
  }

  .home-hero-form-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
  }

  .home-hero-form-container,
  .home-hero-form-inner,
  .home-hero-form-container .row,
  .home-hero-form-container .columns {
    height: 100%;
  }

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

  .home-hero-form .contact-form-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .home-hero-form form button {
    width: 100%;
  }

  .home-hero-form {
    margin-top: 80px;
    min-width: 375px;
    padding: 0;
    background: var(--light-gray-color);
  }
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
  .home-hero-form {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
  }

  .home-hero-form .contact-form-heading {
    display: none;
  }
}



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

  .hero-slide-content {}
}

@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-slide-content {}
}

.mobile-navigation-top-inner img {
  display: none;
}


@media screen and (min-width: 280px) and (max-width: 767px) {

  .header-logo img {
    max-width: 265px;
    height: auto;
    width: 160px;
  }

  .hero-cta .button {
    font-size: 15px;
    padding: 10px 20px !important;
  }

  .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-1 {
    text-align: center;
    font-size: 16px;
    letter-spacing: 3.2px;
    margin: 15px 0 35px 0;
  }


  .hero-title-2 {
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    white-space: wrap !important;
    letter-spacing: -0.5px !important;
    line-height: 1;
  }

  .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: 140px;
    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) 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) 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) 0%, rgba(4, 57, 45, 0.5) 50%);
    width: 100%;
    opacity: 1 !important;
    bottom: 0 !important;
    z-index: 0;
  }

  .banner {
    height: 435px;

  }

  .banner-title {
    font-size: 60px;
    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: 55px;

  }

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

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

  .page-template-template-results #banner {
    background-position: 79% 32px;
    height: 430px;
    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;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding-top: 50px;

  }

  .hero-content-inner {
    z-index: 1;
    margin: 0px 0;
    padding-left: 0;
    position: relative;
  }

  .hero .hero-title-1 {
    text-align: center;
    font-size: 16px;
    letter-spacing: 3.2px;
  }

  .attorney-result-single .attorney-result-info {
    margin-bottom: 35px;
  }


  /* animation hidden for mobile */
  .serving-right .serving-right-inn {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  .module-blog-d-left.animated::before {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  .module-content.animate-in-view.animated.fadeInUp {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  h2.experienced.animate-in-view.animated.fadeInRight {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  .columns.medium-6.large-4.small-12.mb-3.animate-in-view.animated.fadeInUp {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  h4.hero-title-1.animate-in-view.animated.fadeInUp {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  .hero-cta.animate-in-view.animated.fadeInUp {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }

  .hero span.letter {
    animation: none !important;
    animation-delay: inherit !important;
    opacity: 1 !important;
  }
}









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


  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding-top: 50px;

  }

  .hero-content-inner {
    z-index: 1;
    margin: 0px 0;
    padding-left: 0;
    position: relative;
  }

  .hero .hero-title-1 {
    text-align: center;
    font-size: 16px;
    letter-spacing: 3.2px;
  }

  .hero {

    min-height: 600px;

  }



}



@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: -10px;
  }

}

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

  .hero {
    max-height: 1080px;
  }

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

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


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




  .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: 30px;
    font-weight: bold;
    letter-spacing: 9.3px;
    margin-bottom: 35px;
  }

  .hero-title-2 {
    font-size: 140px;
    /* font-weight: 800; */
    margin-bottom: 10px;

  }

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

  .hero-content-inner {
    max-width: 1345px;
  }

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

  }
}

h1.hero-title-2 b {
  display: block !important;
  font-weight: normal !important;
}

.aop select#input_3_6 {
  background-color: var(--gray-color);
  color: #000;
}

.aop label.gfield_label.gform-field-label {
  display: none;
}