/**********************************************/
/* Theme Name: WordPress Base                 */
/* Theme URI: http://www.wordpressbase.com    */
/* Author: WordPress Base                     */
/* Author URI: https://www.paperstreet.com    */
/* Description: A WordPress starting point    */
/* Text Domain: paperstreet                   */
/* Version: 3.2604                            */
/**********************************************/

/*
GENERAL
MENUS
HEADER
FOOTER
FEATURES
ANIMATIONS
MODULES
PRINT
MISC
*/

/*******************************************************************************************
GENERAL - Layout and general features
*******************************************************************************************/

/* GENERAL > Utility Classes */
.ginput_container input,
.ginput_container textarea {
  outline: none;
}

.yellow-text {
  background: linear-gradient(to right, var(--secondary-color) 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 3s ease;
  opacity: 1;
}

.yellow-text.animated {
  background-position: 0%;
}

html {
  scroll-behavior: smooth;
}

[type="submit"],
[type="reset"],
button,
html [type="button"] {
  appearance: button;
  -webkit-appearance: button;
}

.yellow-text2 {
  background: linear-gradient(to right, var(--secondary-color) 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 2s ease;
  opacity: 1;
}

.yellow-text2.animated {
  background-position: 0%;
}

#blog-search-form label {
  color: var(--primary-color);
}

#blog-search-input {
  color: var(--primary-color);
}

.no-margin-last>p:last-of-type {
  margin: 0 !important;
}

#blog-search-input {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.no-transition {
  transition: none !important;
}

#blog-search-form button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

#blog-search-form button:hover,
#blog-search-form button:focus {
  color: var(--alternate-color);
}

.hr-after {
  position: relative;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.center,
.has-text-align-center,
.align-center,
.text-center {
  text-align: center;
}

.right,
.align-right,
.text-right {
  text-align: right;
}

.body-font {
  font-family: var(--font-family-body);
}

.header-font {
  font-family: var(--heading-font-family);
}

.overflow-hidden {
  overflow: hidden;
}

.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;
}

.small-margin-left {
  margin-left: 10px;
}

.small-margin-right {
  margin-right: 10px;
}

.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: white;
}



/* GENERAL > Layout */

.full-width {
  width: 100%;
}

/*.sidebar {
  clear: both;
  float: none;
}*/


.small-12 {
  width: 100%;
}

.small-11 {
  width: 91.67%;
}

.small-10 {
  width: 83.34%;
}

.small-9 {
  width: 75%;
}

.small-8 {
  width: 66.67%;
}

.small-7 {
  width: 58.34%;
}

.small-6 {
  width: 50%;
}

.small-5 {
  width: 41.66%;
}

.small-4 {
  width: 33.33%;
}

.small-3 {
  width: 25%;
}

.small-2 {
  width: 16.66%;
}

.small-1 {
  width: 8.33%;
}

.columns,
.column {
  float: left;
  padding: 0 15px;
}

.no-float {
  float: none;
}

@media (min-width: 768px) {
  .medium-12 {
    width: 100%;
  }

  .medium-11 {
    width: 91.67%;
  }

  .medium-10 {
    width: 83.34%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-8 {
    width: 66.67%;
  }

  .medium-7 {
    width: 58.33%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-5 {
    width: 41.67%;
  }

  .medium-4 {
    width: 33.33%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-2 {
    width: 16.66%;
  }

  .medium-1 {
    width: 8.33%;
  }

  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .large-12 {
    width: 100%;
  }

  .large-11 {
    width: 91.67%;
  }

  .large-10 {
    width: 83.34%;
  }

  .large-9 {
    width: 75%;
  }

  .large-8 {
    width: 66.67%;
  }

  .large-7 {
    width: 58.33%;
  }

  .large-6 {
    width: 50%;
  }

  .large-5 {
    width: 41.67%;
  }

  .large-4 {
    width: 33.33%;
  }

  .large-3 {
    width: 25%;
  }

  .large-2 {
    width: 16.66%;
  }

  .large-1 {
    width: 8.33%;
  }

  .hide-for-large {
    display: none !important;
  }
}


/* GENERAL > HTML and Structure */
.content {
  margin-bottom: 60px;
}

.content .wp-block-image {
  margin-bottom: 30px;
}

img.alignright,
.content .wp-block-image .alignright,
.content .wp-block-image.alignright {
  float: right;
  margin: 0 0 var(--gutter-size) var(--gutter-size);
}

img.alignleft,
.content .wp-block-image .alignleft,
.content .wp-block-image.alignleft {
  float: left;
  margin: 0 var(--gutter-size) var(--gutter-size) 0;
}

.content p.indent {
  margin-left: 60px;
}

.content section {
  margin-bottom: 60px;
}

.content section:last-of-type {
  margin: 0;
}

ol,
ul {
  margin: 0 0 35px 0;
  padding: 0;
}

ul ul {
  margin: 10px 0 0 20px;
}


ol {
  list-style-position: outside;
  padding-left: 20px;
}

ul.has-before li,
.content ol ul li,
.content li {
  color: var(--body-text-color);
  padding: 0 0 0 20px;
  position: relative;
  line-height: 1.6;
  margin-bottom: 10px;
}

.content ol li {
  padding-left: 0;
}


.content ul li {
  list-style: none;
  /* removes dot */
  position: relative;
  padding-left: 20px;
}

.content ul li::before,
ul.has-before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1px;
  background: var(---black-color);
  transform: translateY(-50%);
}

ul.has-before li::before,
.content ul li::before,
.sidebar section ul li::before {
  font-family: "Font Awesome 6 Pro";
}

.content ul ul,
.content ol ol,
.content ol ul {
  margin-left: 20px;
}

hr,
.hr-after::after {
  background: var(--secondary-color);
  width: 20%;
  height: 5px;
  display: block;
  border: none;
  margin: 40px 0;
  content: "";
}

figure {
  margin: 0;
}

.italic {
  font-style: italic;
}

.non-italic,
address {
  font-style: normal;
}

section.no-underline ul {
  border: none;
}

section.no-underline ul:last-of-type {
  padding: 0;
}

section.sidebar-block {
  /* background: var(--light-gray-color); */
  padding: 20px 30px;
  background: transparent;
}

.sidebar .sidebar-block.sidebar-offices-block {
  padding-top: 0;
  border-left: 3px solid var(--secondary-color);
  padding-bottom: 0;
  margin-left: 35px;
  margin-bottom: 50px;
}

.sidebar-inner section.sidebar-block:last-child {
  padding-top: 0;
}

.sidebar section:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar section ul li {
  padding: 8px 25px 8px 0;
  position: relative;
}

.sidebar section ul li::before {
  position: absolute;
  color: var(--primary-color);
  content: "\f105";
  top: 6px;
  right: 0;
  font-size: 17px;
}

.sidebar section ul li {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  margin-bottom: -1px;
}

.attorney-bio-main-a {
  position: relative;
}

.attorney-bio-main-a .row.main-inner .content-tab.active {
  margin-bottom: 10px;
}

.sidebar section ul li,
.sidebar section ul li a {
  display: block;
}

.sidebar section button.no-button,
.sidebar section ul li a {
  color: var(--primary-color);
  text-decoration: none !important;
  font-weight: 400;
  font-size: 18px;
}

.sidebar section ul li a:hover,
.sidebar section ul li a:focus {
  font-weight: 600;

}



.sidebar section button.no-button:hover,
.sidebar section button.no-button:focus,
.sidebar section ul li a:hover,
.sidebar section ul li a:focus {
  color: var(--red-color);
  text-decoration: underline;

}

.sidebar section.sidebar-block ul li ul {
  padding-left: 10px;
  margin: 0;
  margin-top: 18px;
  margin-bottom: 5px;
  margin-right: -25px;
}

.sidebar-block.sidebar-offices-block .office-blocks {
  margin-bottom: 30px;
}


.sidebar section.sidebar-block ul li ul li {
  padding-left: 30px;
}

.sidebar section ul li ul li::before {
  left: 10px;
  width: 35px;
}


.sidebar section ul li ul li:last-child {
  border-bottom: none;
}

.content img {
  border-radius: 12px;
}

.content .search-results-container {
  margin-bottom: 80px;
}

.sidebar-block ul:last-of-type {
  margin: 0;
}



/* GENERAL > Form and Inputs */
input,
select,
textarea {
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--white-color);
  font-size: 1rem;
  line-height: 1;
  font-family: var(--font-family-body);
  box-shadow: none;
  margin: 0;
  width: 100%;
  border-radius: 0;
  padding: 0 15px;
}

select {
  border-bottom: none;
}

input,
select,
textarea,
label {
  height: 45px;
  line-height: 45px;
}

input.dark-input,
select.dark-input,
textarea.dark-input {
  color: var(--primary-color);
}

textarea {
  resize: none;
  min-height: 90px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.2;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: white;
}

input::placeholder,
textarea::placeholder {
  color: white;
}

select,
form legend,
form label,
form p {
  font-size: 0.9rem;
}

legend,
label {
  color: white;
}

fieldset {
  padding: 0;
  border: none;
  margin: 0;
}

label {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 10px;
  pointer-events: none;
  transition: all 200ms ease-out;
}

input:focus:not([type="checkbox"])~label,
textarea:focus~label,
input.active~label,
textarea.active~label,
select.active~label {
  padding-left: 0;
  line-height: 0;
  top: -16px;
  font-size: 0.7rem;
}

.form-input-group label i {
  color: var(--secondary-color);
}

.gfield,
.form-input-group {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  text-align: left;
}

.form-input-group.button-container {
  margin-bottom: 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 45px;
  line-height: 45px;
  color: var(--primary-color);
  pointer-events: none;
  transition: all 200ms ease-out;
}

.select-wrapper.active::after {
  background: var(--primary-color);
  color: white;
}

.gsection_title {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
}

.gform_footer .gform_button:hover,
.gform_footer .gform_button:focus {
  background: #fff;
  color: var(--secondary-color);
}

.hidden_label label {
  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;
}

.ginput_container_select::after {
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 45px;
  line-height: 45px;
  pointer-events: none;
  color: var(--primary-color);
}

.ginput_container_select select {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 0;
}

.gform_wrapper,
.form-container {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
}

.sidebar section:first-child {
  padding-top: 0;
}


.contact-form-heading {
  color: white;
  text-align: center;
}

.background-input input:focus:not([type="checkbox"])~label,
.background-input textarea:focus~label,
.background-input input.active~label,
.background-input textarea.active~label,
.background-input select.active~label {
  color: var(--primary-color);
}

.background-input input,
.background-input textarea,
.background-input select {
  background-color: var(--white-color);
  height: 60px;
  color: #000;
  border: 1px solid #afafaf;
  font-size: 16px;
}

.background-input.select-wrapper::after,
.background-input .select-wrapper::after {
  background-color: var(--white-color);
  height: 58px;
  right: 1px;
  top: 1px;
  border-left: 1px solid #afafaf;
  line-height: 60px;
  color: var(--secondary-color);
  font-size: 20px;
}

input.has-error {
  border: 1px solid #ff0000 !important;
  box-shadow: 0 0 2px #ff0000 !important;
}

/* GENERAL > Gravity Forms Customizations */
.gform_fields input:focus:not([type="checkbox"])~label,
.gform_fields textarea:focus~label,
.gform_fields input.active~label,
.gform_fields input.active~label,
.gform_fields textarea.active~label,
.gform_fields select.active~label {
  top: -20px;
}

.gform_wrapper label {
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  padding-left: 0;
}

.gform_footer .gform_button {
  padding: 0;
  background: var(--primary-color);
  color: var(--secondary-color);
  min-height: 55px;
  border-radius: 5px;
  border: none !important;
}

.gform_footer .gform_button:hover,
.gform_footer .gform_button:focus {
  color: var(--primary-color);
}


.gform_validation_errors ol,
.gform_submission_error .gform_heading,
.ginput_counter,
span.gfield_required {
  display: none;
}

.gfield_contains_required label.gfield_label:after {
  content: " *";
  color: red;
  margin-left: 5px;
}

.gform_submission_error,
h2.gform_submission_error,
.validation_message,
p.error-text {
  color: red;
  font-weight: 700;
  margin: 0;
  font-size: 0.7rem;
  -webkit-animation: fadeIn 125ms both;
  animation: fadeIn 125ms both;
}

/* 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: 44px !important;
  margin-top: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 6 Pro" !important;
  content: "\f105" !important;
  color: var(--primary-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-prev:after {
  content: "\f104" !important;
}

.swiper-button-next:hover:after,
.swiper-button-next:focus:after,
.swiper-button-prev:hover:after,
.swiper-button-prev:focus:after {
  color: var(--secondary-color) !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);
  }

  .swiper-button-container {
    left: -100px;
    width: calc(100% + 200px);
  }

  .swiper-outer.full-width .swiper-button-container {
    left: 0;
    width: 100%;
  }
}

/* GENERAL > Skip To Content */
#skiptocontent {
  z-index: 10;
  position: fixed;
  padding: 8px;
  display: block !important;
  transform: translateY(-40px);
  opacity: 0;
  background-color: var(--secondary-color);
  color: white;
  transition: all 200ms ease-out;
}

#skiptocontent:focus {
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (max-width: 640px) {
  #skiptocontent {
    display: none !important;
  }
}

/*******************************************************************************************
MENUS - Non-critical menu styling
*******************************************************************************************/

/* MENUS > Mobile Menu */
#mobile-navigation {
  z-index: 100;
  position: fixed;
  top: 0;
  background-color: var(--primary-color);
  overflow: auto;
  right: 0;
}

#mobile-navigation.active {
  -webkit-animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
  animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
  display: block;
}

#mobile-navigation {
  width: 390px;
  height: 100vh;
}

.mobile-navigation-top-inner {
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 12px var(--gutter-size) 8px;
  padding-right: 0;
  background: transparent;
  display: none;
}

.mobile-navigation-lang {
  flex: 1;
  display: flex;
  align-items: center;
}

#mobile-navigation .mobile-navigation-lang a {
  padding: 6px 0;
  font-weight: 600;
  text-transform: uppercase;
}

#mobile-navigation .mobile-navigation-lang a.gt_switcher-popup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

#mobile-navigation .mobile-navigation-lang a.gt_switcher-popup span:first-of-type {
  margin-left: 7px !important;
}

.mobile-navigation-top-inner img {
  max-width: 200px;
  height: auto;
  display: none;
  margin-top: 12px;
}

#mobile-navigation.active .mobile-navigation-top-inner {
  display: flex !important;
}

#mobile-navigation a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 16px;
  color: white;
  padding: 7px 10px;
  font-weight: 500;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
  color: var(--alternate-color) !important;
  background: transparent;
}

#mobile-navigation ul {
  margin: 0;
  padding: 0 00px 0 0px;
  padding-top: 10px;
}


#mobile-navigation ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: red;
  left: -10px;
  top: 17px;
  display: block !important
}


#mobile-navigation ul li {
  padding: 0 30px;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #4b548f;
}

.mobile-menu-accordion #mobile-navigation .sub-menu li {
  border-bottom: none;
  padding: 0 10px;
}

.mobile-menu-accordion #mobile-navigation .sub-menu a {
  padding-left: calc(var(--gutter-size) * 0.5);
  font-size: 15px;
  /* font-weight: 300; */
  padding: 4px 10px;
}

#mobile-navigation ul li:last-of-type {
  border: none;
}

#mobile-navigation ul li::before {
  display: none;
}

#mobile-navigation .sub-menu {
  margin: 0;
  background-color: transparent;
  z-index: 1;
  overflow: auto;
  display: none;
  width: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  padding: 0;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
  display: block;
}

#mobile-navigation .menu-item-has-children>a::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--secondary-color);
}

#mobile-navigation .sub-menu-open.menu-item-has-children>a::after {
  content: "\f0d8";
}

.mobile-navigation-close {
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 80px;
  height: 100%;
  background: none;
  margin-left: auto;
  color: var(--primary-color);
  font-size: 1.4rem;
  height: 60px;
  background: #fff !important;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  margin-top: 15px;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
  color: var(--secondary-color);
}

.mobile-navigation-previous {
  margin-bottom: 10px;
  border: none !important;
}

@media screen and (min-width: 1025px) {
  #mobile-navigation {
    display: none;
  }

  .mobile-navigation-top-inner {
    display: none;
  }
}

/* MENUS > Mobile Menu Paged */
.mobile-menu-paged #mobile-navigation .sub-menu {
  height: 100vh;
}

.mobile-menu-paged #mobile-navigation .menu-item-has-children>a::after {
  content: "\f105";
}

.mobile-menu-paged #mobile-navigation a {
  padding-left: var(--gutter-size);
}

.mobile-menu-paged #mobile-navigation ul li.sub-menu-open>.sub-menu {
  -webkit-animation: fadeInRight 300ms ease-out;
  animation: fadeInRight 300ms ease-out;
}

.mobile-menu-paged #mobile-navigation .sub-menu {
  position: fixed;
  top: 0;
}

/* MENUS > Mega Menu */
.mega-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  background: var(--primary-color);
  padding: 25px 75px;
}

.mega-navigation-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 18px;
  margin: 0;
}

.mega-menu li {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu li:nth-child(4n) {
  border-right: none;
  margin: 0;
  padding-right: 0;
}

/*******************************************************************************************
HEADER - Non-critical header styling
*******************************************************************************************/

/* HEADER > Header Search Bar */

.header-search {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  padding: 38px 0;
  width: 100%;
  z-index: 3;
  transition: all 200ms ease-out;
}


.header-search.active {
  opacity: 1;
  top: 0;
}

.header-search-inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  float: none;
}

.search-results-post-type:not(:last-child) {
  margin-bottom: 30px;
}

.search-results-post-type ul {
  margin: 0;
}

.header-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 30px var(--gutter-size);
  background: var(--primary-color);
  display: none;
  max-height: 350px;
  overflow: auto;
}

.header-search-results.active {
  display: block;
  -webkit-animation: fadeIn 200ms ease-out;
  animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
  color: white;
}

.header-search-results h3 {
  margin-bottom: 8px;
}

.header-search-results a {
  text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
  text-decoration: underline;
}

.header-search-form {
  position: relative;
  flex: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

#header-search-input {
  margin: 0;
  height: 45px;
  border: 0 none;
  font-size: 1.3rem;
  color: white;
  border-bottom: 1px solid var(--white-color);
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.header-search button {
  padding: 0 20px;
  height: 45px;
  white-space: pre;
}

.header-search-submit {
  margin: 0 1vw;
}

.header-search-submit span {
  display: none;
}

.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  border-radius: 0;
  font-weight: 300 !important;
  min-width: 40px;
}

.mobile-navigation-close.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 17px;
  border-radius: 0;
  font-weight: 300 !important;
  min-width: 40px;
  margin-top: 0;
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

#header-search-open {
  font-size: 17px;
  display: inline-block;
  line-height: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  margin: 0 10px 5px 4px;
  background: transparent;
  color: #333;
  line-height: 48px;
}

.home #header-search-open {
  color: #fff;
}



#header-search-open i {
  font-weight: normal;
}



@media screen and (min-width: 520px) {
  .header-search-submit span {
    display: inline-block;
  }
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/


.footer {
  padding: 80px 0 20px 0;
  text-align: center;
  color: #fff;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}

.footer-inner .fot-logo img {
  max-width: 230px;
  height: auto;
}

.module.footer-top .animation-group {
  padding: 0;
}


.footer.module-footer-c {
  padding: 30px 0;
  background-color: var(--primary-color);
}


.footer.module-footer-c .footer-inner {
  justify-content: center;

}

.footer.module-footer-c .footer-inner {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
}

.footer.module-footer-c .footer-inner a {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}


.footer.module-footer-c .footer-inner a:hover,
.footer.module-footer-c .footer-inner a:focus {
  margin-top: 40px;
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: normal;
}

.footer.module-footer-c .menu-footer-navigation-container {
  display: inline;
}





.footer-upper h2 {
  margin-bottom: 40px;
}

.footer-upper p {
  color: var(--white);
}

.fot-loc-address .accordion-item>h3 button {
  color: var(--white) !important;
}

.fot-loc-tit h4 {

  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary-color);
  text-transform: none;
}

.footer-upper-buttons,
.footer-upper-social {
  margin: 40px 0;
}

.footer-upper-social .social-links a {
  font-size: 1.6rem;
}

.footer-upper-social .social-links {
  margin: 0 auto;
}

.footer-lower span {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.28px;
}

.footer-lower span::after {
  content: "|";
  margin: 0 -2px;
  opacity: 0;
}

.footer-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  font-weight: 500;
}

.footer-left-inner {
  max-width: 560px;
  margin: 0 35px 0 auto;
}

.fot-logo img {
  max-width: 230px;
}

.footer-lower.footer-lower-col a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.28px;
}

.footer-lower.footer-lower-col a:hover,
.footer-lower.footer-lower-col a:focus {
  color: #4F2683;
  text-decoration: none;
  letter-spacing: 0.28px;
}


.footer-lower span:last-of-type::after {
  display: none;
}

.footer-lower-disclaimer {
  line-height: 1;
  margin: 0 auto 40px;
}

@media screen and (min-width: 1025px) {
  .footer-upper-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .footer-upper-buttons a {
    margin-bottom: 0;
  }

  .footer-lower-disclaimer {
    width: 60%;
  }

  .footer-right {
    padding-right: 0;
  }


}




/*/////////////// Home footer Section Start    ///////////////*/

.module.footer-top {
  position: relative;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.module.footer-top .row {
  max-width: 1060px;
  position: relative;
  z-index: 1;
}


.footer-add-main {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.fot-loc-addr-left p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: var(--white);
}

.fot-loc-addr-right i {
  font-size: 20px;
  font-weight: 600;
  margin-right: 5px;
}

.fot-loc-addr-right p {
  margin: 0;
}

.fot-loc-addr-right p,
.fot-loc-addr-right p a {
  margin: 0;

}

.fot-loc-addr-right {
  margin: 25px 0 30px 0;
}


.fot-loc-addr-right p,
.fot-loc-addr-right p a {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none !important;
  letter-spacing: 0;
}

.fot-loc-addr-right p a:hover,
.fot-loc-addr-right p a:focus {
  font-size: 26px;
  font-weight: 600;
  color: var(--alternate-color);
}

.footer-social {
  margin-bottom: 40px;
}

.fot-loc-address .accordion-item>h3 button::after {
  content: "\f0d7";
  font-size: 20px;
}

.footer-left .accordion-item .phone.yellow {
  color: var(--secondary-color);
  margin-top: 0;
}

.fot-loc-address .accordion-item.active>h3 button::after {
  content: "\f0d8";
  font-size: 20px;
}

.footer-left .accordion-item.active p {
  margin-top: 0;
}

.footer-left .accordion-item.active .accordion-item-content {
  padding: 0;
}

.footer-bot-menu.left-copyright-menu.footer-lower {
  margin-top: 50px;
  font-size: 13px;
  color: var(--white);
  font-weight: normal;
  /* text-transform: uppercase; */
  letter-spacing: 0;
  text-align: left;
  max-width: 1066px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}


.footer-bot-menu.left-copyright-menu.footer-lower p {
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: capitalize;
}


.menu-footer-navigation-container {
  display: inline;
}

.footer-bot-menu.left-copyright-menu.footer-lower a {
  margin-top: 5px;
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
}

.gsection_title {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
}

.footer-right .gform_wrapper {
  margin: 0;
  border-left: 0px solid rgb(185, 185, 185, 0.34);
  padding-left: 0;
  margin-left: 0;
  background: transparent;
  padding: 0;
}

.footer-bot-menu.left-copyright-menu.footer-lower a:hover,
.footer-bot-menu.left-copyright-menu.footer-lower a:focus {
  color: var(--secondary-color);
  font-weight: 400;
}

.footer-right {
  padding-right: 0 !important;
  text-align: right;
}

.footer-right-inner {
  background: var(--secondary-color);
  max-width: 375px;
  margin: 0px 0 0 auto;
  padding: 50px 40px 50px 30px;
  position: relative;
  background-size: 108% 101%;
  background-position: center 0;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.ginput_container input {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  min-height: 50px;
  margin-top: 10px;
}

.footer-right-inner .gfield {
  margin-bottom: 10px;
}

.ginput_container textarea {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}



.footer-right-inner::after {
  content: "";
  position: absolute;
  left: 0px;
  top: -89px;
  height: 100px;
  width: 100%;
  background: transparent;
  border-top: 89px solid transparent;
  border-left: 507px solid var(--primary-color);
  border-bottom: 40px solid transparent;
  opacity: 0;
  display: none
}


.footer-navigation,
.footer-navigation li {
  margin: 0;
  display: inline;
  padding: 0;
}

.footer.module-footer-c .footer-inner a::before {
  color: #fff;
}

.footer-navigation li a::before {
  content: '|';
  margin: 0 7px 0 4px;
  font-size: 13px;
  color: var(--alternate-color-three);
  position: relative;
  top: 0px;
  font-weight: normal;
  display: inline-block !important;
  font-weight: 400;
}

/* .footer-navigation li:first-of-type a::before {
  margin: 0;
  opacity: 0;
  height: 0;
  width: 0;
  color: transparent;
} */

.button.contact-btn {
  min-width: 370px;
}

.button.contact-btn:hover,
.button.contact-btn:focus {
  background-color: #fff;
  color: #000
}

.fot-left-mid-text {
  max-width: 485px;
}

.footer-left .footer-add-main:last-child {
  margin: 0;
}

.footer-left {
  padding-left: 0 !important;
  text-align: left;
  padding-right: 80px;
  /* padding-top: 60px; */
}

.fot-logo {
  margin-bottom: 36px;
}

.module.footer-top .footer-title {
  color: var(--white);
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 55px;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.07;
  letter-spacing: -1.1px;
  text-align: left;
}


.module.footer-top .footer-title.fot-first-title.yellow-tit::before {
  content: "";
  right: 64%;
  top: 37px;
  background: var(--secondary-color);
  height: 2px;
  width: 200%;
  position: absolute;
}


.module.footer-top .footer-title.fot-first-title.yellow-tit {
  text-align: right;
  position: relative;
  color: var(--secondary-color);
  font-weight: 800;
  position: relative;
  font-size: 65px;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.07;
  letter-spacing: -1.3px;
  padding-right: 20px;
}

.fot-loc-tit {
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.03;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-top: 20px;
}

.footer-left .accordion-item {
  border-top: none !important;
  border-bottom: 1px solid #4b548f;

}

.fot-loc-address .accordion-item>h3 button {
  color: var(--white) !important;
  padding: 10px 0 !important;
  min-height: 60px;
  font-size: 18px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
}

.fot-loc-tit strong {
  font-weight: bold;
}

.fot-loc-address .accordion-item>h3 button strong {
  font-weight: normal;
  font-size: 14px;
}

.fot-loc-address .accordion-item>h3 button {
  color: var(--white) !important;
  padding: 10px 0 !important;
  min-height: 60px;
  font-size: 18px;
  font-weight: 900 !important;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  border: none;
}

.module.footer-top .footer-title.fot-second-title {
  color: var(--white);
  text-transform: capitalize;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 10px;
}

.fot-left-mid-text h4 {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.8px;
  text-align: left;
  color: var(--primary-color);
}

.fot-left-mid-text p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary-color);
}


/*/////////////// Home footer Section END    ///////////////*/



/*******************************************************************************************
FEATURES - Pre-built small sections
*******************************************************************************************/

/* FEATURES > Content Tables */
table.has-fixed-layout {
  width: 100%;
  table-layout: fixed;
}

.content table {
  border-collapse: collapse;
}

table th,
table td {
  border: 1px solid var(--light-gray-color);
  padding: 5px;
  text-align: left;
}

/* FEATURES > Breadcrumbs */
.breadcrumbs-container {
  display: none;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.breadcrumbs-single {
  position: relative;
  text-decoration: none;
  padding-right: 20px;
  margin-right: 20px;
}

.breadcrumbs-single:focus,
.breadcrumbs-single:hover {
  text-decoration: underline;
}

.breadcrumbs-single::after {
  position: absolute;
  right: -4px;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
}

.breadcrumbs-single:last-of-type {
  padding-right: 0;
  margin-right: 0;
}

.breadcrumbs-single:last-of-type::after {
  display: none;
}

@media screen and (min-width: 1025px) {
  .breadcrumbs-container {
    display: flex;
  }
}

/* FEATURES > Accordion */
/* FEATURES > Accordion */
.accordion-item {
  border-bottom: 1px solid var(--gray-color);
}

.accordion-item>h3 {
  margin-bottom: 0;
}

.accordion-item-title {
  padding: 20px 15px;
  font-size: 1rem;
  width: 100%;
  margin: 0;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 30px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  grid-gap: 15px;
  gap: 15px;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: background 200ms ease-out;
}

.accordion-item-title::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  line-height: 30px;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--secondary-color);
}

.accordion-item-title span {
  flex: 1;
  text-align: left;
}

.accordion-item.active:focus {
  outline: none;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
  background: var(--light-gray-color);
  color: var(--primary-color);
}

.accordion-item-title:focus:not(:focus-visible) {
  outline: none;
}

.accordion-item.active .accordion-item-title::after {
  content: "\f106";
}

.accordion-item.active .accordion-item-content {
  display: block;
  -webkit-animation: fadeIn 400ms both;
  animation: fadeIn 400ms both;
  /* transition: max-height 0.8s ease-in-out; */
  transition: all 0.8s ease;
}

.module-faq-a .accordion-container {
  margin-bottom: 50px;
}

.faq-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module.faq-section {
  position: relative;
  padding-top: 100px;
}

.faq-bg-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(#fff, transparent);
}

.module.faq-section .row {

  position: relative;
  z-index: 1;
}

.module-practices-f .row {

  position: relative;
  z-index: 1;
}

.module-practices-f {

  position: relative;

}


.faq-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: -1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.practices-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.practices-bg-image img {
  width: 100%;
  height: 100%;

}

.What-sets {
  position: relative
}

.What-sets .row {
  position: relative;
  z-index: 1
}

.whatset-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.whatset-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.footer {
  position: relative;
  background-image: url(/wp-content/uploads/footer-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}


.footer .footer-top {
  position: relative;
  z-index: 1
}

.footer-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  display: none;
}

.footer-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.module-testimonials-c {
  position: relative;
  padding-bottom: 100px !important;
}

.module-testimonials-c .row {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.module-testimonials-c .swiper-button-container {
  width: 76px;
  right: 12%;
  left: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 6px;
  text-align: center;
  top: 30%;
}

.module-testimonials-c .swiper-button-container button {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  width: 55px;
  height: 50px !important;
  margin-bottom: 5px;
}

.module-testimonials-c #slider-testimonials-b-prev::after {
  color: var(--primary-color);
  content: "\f060" !important;
  font-size: 20px;
}

.module-testimonials-c #slider-testimonials-b-next::after {
  color: var(--primary-color);
  content: "\f061" !important;
  font-size: 20px;
}

.module-testimonials-c .swiper-button-container button:hover,
.module-testimonials-c .swiper-button-container button:focus {
  background: var(--primary-color) !important;
}

#slider-testimonials-b-pagination {
  text-align: right;
  padding-right: 35px;
}

#slider-testimonials-b-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #fff;
  width: 15px;
  height: 15px;
}

#slider-testimonials-b-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

#slider-testimonials-b {
  width: 200%;
  left: -48%;
}

.module-testimonials-c .swiper-outer {
  max-width: calc(100% - 100px);
}

#slider-testimonials-b {
  padding-top: 70px;
}

.testi-icon-top {
  position: absolute;
  top: -57px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  left: 44px;
}

.testi-icon-top img {
  max-width: 115px;
}

.testi-top-tit {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: var(--secondary-color);
  margin-bottom: 20px;
  margin-left: 10px;
}



.module-testimonials-c-single {
  display: flex;
  padding: 45px !important;
  padding-top: 90px !important;
  column-gap: 20px;
}

.testimonial-content-upper p {
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.66px;
  text-align: left;
}

.module-testimonials-c .swiper-button-container #slider-testimonials-b-prev {
  left: -10px;
  top: 122px;
}


.module.module-testimonials-c button::after {
  color: var(--secondary-color);
}

.testimonials-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.testimonials-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.module-faq-a .accordion-item {
  margin-bottom: 15px;
  border: 2px solid #c2c2c2;
}

.module-faq-a .accordion-item-title::after {
  content: "\f067";
}

.module-faq-a .accordion-item-content {
  padding: 15px;
}

.module-faq-a .accordion-item.active .accordion-item-title::after {
  content: "\f068";
}

.accordion-item-content>*:first-child {
  margin-top: 20px;
}

.accordion-item-content>*:last-child {
  margin-bottom: 35px;
}


.intro-bot-main {
  display: flex;
  flex-direction: row-reverse
}

.module.module-cta-a .module-cta-a-inner {
  text-align: center;
  display: flex;
  justify-content: center;
  column-gap: 15px;
  bottom: -20px;
  position: absolute;
  justify-content: center;
  width: 100%
}

.cta-bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 0
}

.cta-bg-image img {
  object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%
}

.module-cta-a-inner a.button {
  padding: 12px 35px;
  color: #fff;
  border: none;
  font-size: 16px
}

.module.module-cta-a {
  background: #fff;
  padding: 90px 0 0;
  position: relative
}


.module.module-cta-a .row.center {
  max-width: 1100px;
  margin: 0 auto
}


.module.module-cta-a .row.center img {
  max-width: 100%;
  width: auto
}

.module-cta-banner {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  padding: 56px 20px;
  text-align: center;
  margin-bottom: 30px !important;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-title {
  color: var(--white);
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  text-align: center;
}

.cta-banner-title-accent {
  color: var(--secondary-color);
}

.cta-banner-text {
  color: var(--white);
  margin: 16px auto 26px;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .module-cta-banner {
    padding: 80px 20px;
  }

  .cta-banner-title {
    font-size: 44px;
    letter-spacing: -1px;
  }
}

.news-feed-section {
  position: relative
}

.news-feed-section-inn {
  position: absolute;
  bottom: 0;
  background: #f4f4f5;
  padding: 45px;
  text-align: left;
  display: block;
  overflow: hidden;
  width: 80%;
  min-height: 270px;
  max-width: 740px;
}

.module.module-cta-a .row-narrow.center {
  max-width: 670px
}

.news-feed-section {
  position: relative
}

.news-feed-section-inn {
  position: absolute;
  bottom: 0;
  background: #f4f4f5;
  padding: 45px;
  text-align: left;
  display: block;
  overflow: hidden;
  width: 70%;
  min-height: 270px;
}


.module.module-cta-a .row-narrow.center {
  max-width: 670px
}

.module.module-results-b {
  padding: 60px 0
}

.module-results-b .row {
  max-width: 1100px
}

.module-results-b-single:after {
  content: '';
  position: absolute;
  background: #d89d42;
  height: 100px;
  width: 1px;
  top: 0;
  right: 25px
}

.news-feed-section {
  position: relative;
}

.module-news-feed-content.center h2 {
  font-size: 30px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.6px;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.module.module-cta-a .row {
  max-width: 1120px;
}

.news-feed-section {
  position: relative;
  text-align: center;
  max-width: 1120px;
  overflow: hidden;
}

.news-feed-section-inn p {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.news-feed-section-inn h2 {
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  max-width: 545px;
}

.news-feed-section-inn h2 a {
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  max-width: 545px;
  text-decoration: none
}


.news-feed-section-inn h2 a:hover,
.news-feed-section-inn h2 a:focus {
  color: var(--secondary-color);
  text-decoration: none
}


.read-more-arrow.external-link {
  font-size: 20px;
}

.read-more-arrow.external-link:hover {
  color: var(--primary-color);
}


.news-feed.module-cta-a.side-newsfeed {
  padding: 0 15px;
  padding-top: 20px;
}

.news-feed.module-cta-a.side-newsfeed .news-feed-section-inn {
  position: relative;
  width: 100%;
  padding: 25px;
  min-height: inherit;
}

.swiper-autoplay-toggle.no-button {
  display: none;
}

.news-feed.module-cta-a.side-newsfeed .module-results-a-single a h2:hover,
.news-feed.module-cta-a.side-newsfeed .module-results-a-single a h2:focus {
  color: var(--secondary-color);
}

.news-feed.module-cta-a.side-newsfeed .news-feed-section-inn h2,
.news-feed.module-cta-a.side-newsfeed .news-feed-section-inn h2 a {
  font-size: 20px;
  max-width: 300px;
}

.module-title {
  font-size: 50px;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.09;
  letter-spacing: -1px;
  text-align: left;
  text-transform: capitalize;
}



/* HOME Cases Boxes */
.module-practices-f .module-title {
  margin: 0;
  text-transform: capitalize;
  font-size: 56px;
  letter-spacing: normal;
  text-align: center;
  color: var(--primary-color);
}

.module-practices-f .module-title strong {
  color: #c6a149;
  font-weight: 300;
}

.row-narrow.center.top-section {
  /* display: flex; */
  /* justify-content: center; */
  /* max-width: 1000px; */
  margin-bottom: 45px;
  color: #fff;
}


.row-narrow.center.top-section p {
  color: #fff;
}


.row-narrow.center.top-section h2 {
  color: #fff;
}


.row-narrow.center.top-section p {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: -0.24px;
  text-align: center;
}



.module-practices-f-single {
  width: 100%;
  min-height: 245px;
  background-color: #11334e;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center !important;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  text-decoration: none;
}

.module-practices-f-single::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  opacity: 0;
  background-color: #fff;
}

.module-practices-f-single:focus:after,
.module-practices-f-single:hover:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(to top, var(--secondary-color), var(--secondary-color));
  opacity: 1;
}

.module-practices-f-single.image-hover-single.image-hover-overlay h2 {
  color: var(--white-color);
  font-family: var(--body-font-family);
  padding: 5px 5px;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: -0.2px;
}

.top-section i {
  font-size: 18px;
}

.module-practices-f-single.image-hover-single.image-hover-overlay .top-section {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  flex-direction: column;
  position: relative;
  padding-bottom: 0px;
}

.module-practices-f-single.image-hover-single.image-hover-overlay .top-section .fas.fa-plus {
  color: #fff;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  align-self: center;
  background: #0062af;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.module-practices-f-single.image-hover-single.image-hover-overlay .top-section .lazy-img {
  max-width: 60px;
  margin: 0 auto;
  width: 60px;
  display: inline-block;
  height: auto;
}

.module-practices-f-single.image-hover-single.image-hover-overlay {
  z-index: 1;
  position: relative;
  background: var(--primary-color);
  min-height: 190px;
  height: 190px;
  box-shadow: 0 3px 22px 0 rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  transition: transform .2s;
  /* Animation */
}

.module-practices-f-single.image-hover-single.image-hover-overlay figcaption div {
  padding: 15px 30px;
}

.module-practices-f-single.image-hover-single.image-hover-overlay figcaption {
  padding: 15px;
}

.module-practices-f-single span.read-more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.17px;
  text-transform: uppercase;
  padding: 2px 0;
  display: inline-block;
  margin-top: 10px;
  position: relative;
}

.case-handle-bot.row-narrow {
  margin: 40px auto 00px;
  max-width: 745px;
}

.line-design {
  position: absolute;
  width: 100%;
  height: 200px;
  top: 30%;
}

.module.What-sets {
  position: relative;
}

.line-design.What-sets-line {
  z-index: 1;
  top: 00%;
}

.module.What-sets .module-content h2.line::before {
  top: 15px;
}

.module.What-sets .module-content h2.line::after {
  top: 15px;
}

.module.What-sets .module-content h2.line::before,
.module.What-sets .module-content h2.line::after {
  transform: scaleX(0);
  transition: transform 1.2s ease;
}

.module.What-sets .module-content h2.line::before {
  transform-origin: left center;
  transition: transform 1s ease;
}

.module.What-sets .module-content h2.line::after {
  transform-origin: left center;
  transition: transform 3s ease 1s;
}

.module.What-sets .module-content h2.line.active::before,
.module.What-sets .module-content h2.line.active::after {
  transform: scaleX(1);
}

.module.What-sets .module-content h2 {
  font-size: 53px;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -1.06px;
  text-align: left;
  max-width: 475px;
  margin-top: 35px;
  margin-bottom: 50px;
}

.line-design.What-sets-line {
  z-index: 1;
  top: 11.8%;
}

.line-design.What-sets-line::after {
  width: 58%;
}

/*.line-design::before {
	content: "";
	left: 0;
	top: 0;
	width: ;
	width: 54px;
	height: 97px;
	background: var(--secondary-color);
	position: absolute;
}

.line-design::after {
	content: "";
	right: 0;
	top: 0;
	width: ;
	width: 580px;
	height: 97px;
	background: var(--secondary-color);
	position: absolute;
}*/


.line {
  position: relative;

}

.line::before {
  content: "";
  right: 105%;
  top: 5px;
  width: 200%;
  width: 100%;
  height: 97px;
  background: var(--secondary-color);
  position: absolute;
}

.line::after {
  content: "";
  left: 100%;
  top: 5px;
  width: 200%;
  height: 97px;
  background: var(--secondary-color);
  position: absolute;
}

.What-sets .line::after {
  width: 250%;
}

@media screen and (min-width: 1921px) {
  .What-sets .line::after {
    width: 350%;
  }
}

.ada-menu-toggle {
  display: none !important;
}

.faq-section .line::before,
.faq-section .line::after {
  transform: scaleX(0);

}

.faq-section .line::before {
  transform-origin: left center;
  transition: transform 1s ease;
}

.faq-section .line::after {
  transform-origin: left center;
  transition: transform 2s ease 1s;
}

.faq-section .line.active::before,
.faq-section .line.active::after {
  transform: scaleX(1);
}


.case-handle-bot-inn {
  display: flex;
  column-gap: 55px;
  justify-content: center;
  align-items: center;
}

.case-handle-bot-inn-left h2 {
  font-size: 32px;
  letter-spacing: normal;
  text-align: left;
  color: #002650;
  margin-bottom: 5px;
}

.module-practices-f-single span.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: #7ab3e0;
  height: 3px;
  width: 100%;
  left: 0;
  margin: 0 auto;
  opacity: 0;
}

.pa-cta {
  background: #ea8d0f;
  padding: 20px;
  text-align: center;
  color: #fff;
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.module-practices-f-single.image-hover-single.image-hover-overlay:hover,
.module-practices-f-single.image-hover-single.image-hover-overlay:hover {
  transform: scale(1.1);
  z-index: 2;
}


@media screen and (min-width: 768px) {
  .module-practices-f-inner {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 35px;
    grid-column-gap: 15px;
    max-width: 1140px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .module-practices-f-single.image-hover-single.image-hover-overlay {
    width: 31%;
  }

  .module-practices-f-single {
    margin-bottom: 0;
  }
}

.image-hover-single h2,
.image-hover-single p {
  color: #fff;
  margin: 0;
}

.image-hover-single:focus-within {
  outline: #004d8e solid 1px;
}

.image-hover-single {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #14172f;
  text-align: center;
  cursor: pointer;
  min-height: 245px;
  display: flex;
  align-items: stretch;
}

.image-hover-single figcaption p {
  color: var(--primary-color);
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

.image-hover-single img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 1;
}

.image-hover-single figcaption {
  padding: 30px;
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.image-hover-single figcaption,
.image-hover-single figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-hover-single figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.image-hover-overlay img {
  max-width: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  width: 100%;
}

.image-hover-overlay figcaption {
  text-align: left;
}

.image-hover-overlay figcaption>div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  height: 50%;
}

/* .image-hover-overlay h2,
.image-hover-overlay p {
 -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
} */

.image-hover-overlay h2 {
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  font-size: 1.338rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.image-hover-overlay p {
  opacity: 0;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.6s;
  transition: opacity 0.4s, transform 0.6s;
  line-height: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.938rem;
}

.home .image-hover-overlay:focus-within img,
.home .image-hover-overlay:focus-within p,
.home .image-hover-overlay:hover img,
.home .image-hover-overlay:hover p {
  opacity: 1;
}

.home .image-hover-overlay:focus-within h2,
.home .image-hover-overlay:focus-within p,
.home .image-hover-overlay:hover h2,
.home .image-hover-overlay:hover p {
  -webkit-transform: translate3d(0, -90px, 0);
  transform: translate3d(0, -90px, 0);
}

.image-hover-overlay:focus h2,
.image-hover-overlay:hover h2 {
  color: #c6a149;
}

.home .image-hover-overlay:focus-within p,
.home .image-hover-overlay:hover p {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.module-blog-c-inner {
  position: relative;
  margin-bottom: 0;
}

.module-practices-f-single.image-hover-single.image-hover-overlay figcaption h2 {
  opacity: 0;
  text-align: center;
  color: var(--primary-color);
}

.module-practices-f-single.image-hover-single.image-hover-overlay:hover figcaption h2 {
  opacity: 1;
}


/* HOME Cases Boxes END */





/* FEATURES > Accordion */

.module.module-faq-a {
  padding: 150px 0px 130px 0px;
}

.page-template-template-faq .module.module-faq-a {
  padding: 0;
}

.faq-bg-image {
  height: 800px;
  /* adjust */
  overflow: hidden;
}

.faq-bg-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-faq-a-content h2 {
  font-size: 30px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.6px;
  text-align: left;
  max-width: 450px;
  margin-top: 28px;
}

.module-faq-a-content h2 strong {
  font-weight: 500;
  display: block;
}

.columns.medium-6.large-6.small-12.faq-left {
  padding-right: 20px;
}

.columns.medium-6.large-6.small-12.faq-right {
  padding-left: 20px;
}

.faq-right {
  position: relative;
  z-index: 1;
}

.faq-left .module-title.line {
  padding-right: 80px;
}

.module-faq-a-content.center h2 {
  font-size: 40px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
  margin-bottom: 40px;
  padding: 0 15px;
}

.faq-left .module-content p {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: left;
}

.faq-right-inn img {
  margin: 0 auto;
}

.faq-right-inn {
  text-align: center;
}

.faq-left .accordion-item {
  border: none;
  border-bottom: 2px solid #a2a9d7;
}

.module-faq-a-content.center hr {
  margin: 30px auto 60px auto;
}

.faq-left .accordion-item-title span {
  font-size: 27px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
}

.faq-left .accordion-item {
  border: none !important;
  border-bottom: 2px solid #a2a9d7 !important;
  transition: all 0.8s ease;
  animation-delay: 1.5s;

}

.accordion-container {
  transition: all 0.8s ease;
  animation-delay: 1.5s;
  transition: color 800ms ease-out, background 800ms ease-out, transform 60ms ease-in;
}

.faq-left .accordion-item .accordion-item-title {
  border: none;
  padding: 10px 0;
  min-height: 75px;
  overflow-anchor: none;
  outline: none;
  position: relative;
  transition: all 0.8s ease;
}

.faq-left .accordion-item .accordion-item-title::after {
  background: var(--secondary-color);
  color: var(--primary-color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  position: relative;
  bottom: -10px;
  transition: all 0.4s ease;
}




.accordion-item>h3 {
  margin-bottom: 0;
  background-clip: inherit !important;
  -webkit-text-fill-color: inherit !important;
  color: var(--primary-color) !important;
  background-image: none;
  transition: all 0.4s ease;
}

.module.module-faq-a .accordion-item>h3 button {
  -webkit-text-fill-color: inherit !important;
  color: #000 !important;
  /* font-weight: 800; */
  text-transform: none;
  text-align: left;
  padding: 15px;
  padding-left: 0;
  padding-right: 42px;
  line-height: normal;
  /* margin-bottom: 20px; */
  font-size: 21px;
  min-height: 95px;
  font-weight: normal !important;
  letter-spacing: -0.48px;
}


.accordion-item>h3 button {
  -webkit-text-fill-color: inherit !important;
  color: #000 !important;
  /* font-weight: 800; */
  text-transform: none;
  text-align: left;
  padding: 25px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: normal;
  /* margin-bottom: 20px; */
  font-size: 28px;
  min-height: 90px;
  font-weight: normal !important;
  letter-spacing: -0.48px;
}

.accordion-item-title {
  padding: 25px;
  font-size: 18px;
  margin: 0;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #1c2137;
  line-height: 30px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  transition: background 200ms ease-out;
  background: transparent;
  border: none;
  width: 100%;
  padding-left: 20px;
  padding-right: 0;
  letter-spacing: 0px;
  background: transparent !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.fot-loc-address .accordion-item-title::after {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  line-height: 30px;
  width: 30px;
  height: 30px;
  font-size: 26px;
  text-align: center;
  color: var(--secondary-color) !important;
  font-weight: bold;
  background: none !important;
}

.page-template-template-faq .accordion-item-title::after {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  background: var(--secondary-color);
  color: var(--primary-color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  position: relative;
  bottom: -10px;
  transition: all 0.4s ease;
}

.accordion-item.active:focus {
  outline: none;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
  background: #f5ddb1;
}

.accordion-item-title:focus:not(:focus-visible) {
  outline: none;
}

.accordion-item.active .accordion-item-title::after {
  content: "\f068";
}

.accordion-item-content {
  display: none;
  transition: all 0.8s ease;
  transition-duration: 1s;
  transition-delay: 1s;
}

.accordion-item-content p {
  font-size: 16px !important;
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.53;
  letter-spacing: normal;
  text-align: left;
  /* color: #fff; */
}

.accordion-item.active .accordion-item-content {
  display: block;
  /*! -webkit-animation: fadeIn 200ms both; */
  /*! animation: fadeIn 500ms both; */
  padding: 0 10px;
}

.accordion-item.active .accordion-item-content h2 {
  font-size: 25px;
}

.accordion-item-content> :last-child {
  margin-bottom: 25px;
}

.module-faq-a .accordion-container {
  margin-bottom: 10px;
}

.module-faq-a .accordion-item {
  margin-bottom: -1px;
  border: none;
  border-bottom: 2px solid var(--secondary-color);
  margin-bottom: 30px;
}

.module-faq-a .accordion-item-title::after {
  /*	content: "\f0da";*/
  position: absolute;
  right: 0;
  font-size: 20px;
  font-weight: 800 !important;
}

.scroll-to-top {
  scroll-margin-top: 136px;

}

html {
  scroll-behavior: smooth;
}

.module-faq-a .accordion-item-content {
  padding: 0;
  margin-top: -9px;
  padding-right: 0px;
  padding-left: 0;
  color: #000;
}

.module-faq-a .accordion-item.active .accordion-item-title:after {
  content: "\f068";
}





/* Blog */


.module-blog-content.blog-top-heading {
  display: flex;
  /* justify-content: stretch; */
  margin-bottom: 50px;
  align-items: flex-end;
}

.blog-bot-img {
  margin-bottom: 20px;
}

.blog-tit.module-title {
  font-size: 90px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  margin: 0;
  width: 530px;
}

.blog-tit.module-title .yellow {
  font-weight: normal;
}

.module.module-blog .row {
  max-width: 1200px;
}

.module-blog-content.blog-top-heading p {
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  max-width: 540px;
  margin-bottom: 10px;
}

@media (min-width: 1025px) {

  .columns.medium-6.large-3.small-12.blog-top-left {
    padding: 0;
    width: 30%;
  }

  .columns.medium-6.large-9.small-12.blog-top-right {
    width: 70%;
  }

  .columns.medium-6.large-9.small-12.blog-top-right {
    padding-right: 10px;
  }

}



/* Module Blog a */


.module-blog-a-inner {
  padding: 60px 0;
  position: relative;
}

.blog-a-single-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}

.module.module-blog-a .module-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.module-blog-a-inner-bottom {
  position: absolute;
  bottom: -25px;
  right: 0;
  display: inline-block;
  background-color: #fff;
  padding-right: 50px;
  border-left: 15px solid #fff;
}

.module-blog-a-single {
  margin-bottom: 60px;
  position: relative;
}


.module-blog-a-inner-bottom a i {
  display: none;
}


.module-blog-a-inner-bottom a {
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  padding: 15px 20px;
}

.module-blog-a-single::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: var(--primary-color);
  right: -42px;
  top: 0;
  opacity: 0.2;
}

.module-blog-a-inner .module-blog-a-single:last-of-type::after,
.module-blog-a-inner .module-blog-a-single:last-child::after,
.module-blog-a-inner .module-blog-a-single:nth-child(3)::after {
  display: none;
}

.module-blog-a-single:last-child::after {
  opacity: 0;
}


.module-blog-a-inner-bottom a:hover,
.module-blog-a-inner-bottom a:focus {
  background: var(--primary-color);
}


.module-blog-a-single h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary-color);
}

.module-blog-a-single h3 a {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary-color);
  text-decoration: none;
}

.module-blog-a-single h3 a:hover,
.module-blog-a-single h3 a:focus {
  text-decoration: underline;
}

.module-blog-a-single p {
  margin: 25px 0;
}

.module-blog-a-single-more.no-underline {
  text-decoration: none !important;
}

.module-blog-a-single-more:hover i,
.module-blog-a-single-more:focus i {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.blog-a-single-bottom span:first-child {
  letter-spacing: 1.2px;
}

.module-blog-a-single-info {
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
  background: var(--gray-color);
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary-color);
  padding: 6px 10px;
  margin-bottom: 10px;
}

.module-blog-a-single-more {
  font-size: 18px;
}

.blog-a-single-bottom span {
  font-weight: bold;
  text-transform: uppercase;
}

.module-blog-a-single-more:hover,
.module-blog-a-single-more:focus {
  color: var(--primary-color);
}



.module.module-blog-a {
  background: #e7ecf7;
  position: relative;
}

.recent-text {
  position: absolute;
  top: 15px;
  display: flex;
  justify-content: flex-start;
  z-index: 0;
  left: -31px;
  width: 100%;
}

.recent-text-inn {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: flex-start;
}

.module.module-blog-a .row {
  /* max-width: 1150px; */
  position: relative;
  z-index: 1;
}

.module.module-blog-a .module-title h2 {
  margin: 0;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: -1.1px;
  text-align: left;
  font-size: 55px;
}

.recent-text h2 {
  font-size: 123px;
  font-weight: 900;
  font-stretch: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: -3.71px;
  text-align: center;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}

.module.module-blog-a .module-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.module-blog-a-single h3 {
  font-size: 24px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -0.48px;
  text-align: left;
  margin-bottom: 30px;
  min-height: 110px;
}

.module-blog-a-single-more {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: left;
  text-transform: uppercase;
  color: var(--primary-color);

}

.blog-a-single-abottom,
.blog-a-single-bottom a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}

.module-blog-a-inner-posts i {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
  border: 1px solid var(--secondary-color);
}

.module-blog-a-single h3,
.module-blog-a-single h3 a {
  font-size: 24px !important;
  font-weight: 900 !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25 !important;
  letter-spacing: -0.48px !important;
  text-align: left;
  margin-bottom: 30px;
  min-height: 110px;
}

@media screen and (min-width: 768px) {
  .module-blog-a-inner-posts {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 60px;
  }

  .module-blog-a-single {
    margin: 0;
    width: 33.33%;
  }
}

@media screen and (min-width: 1025px) {
  .blog-cta {
    padding-right: 60px;
  }

  .module-blog-a-inner-posts {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-blog-a-inner {
    padding: 50px 0 10px 0;
  }


}





/* Module Blog a */

/* Module Badges b */

.module.module-badges-b {
  padding: 100px 0 80px 0;
}

.module-badges-b-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.module-badges-b-single {
  flex-basis: 50%;
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}

.module-badges-b-single img {
  height: auto;
  width: auto;
  max-width: inherit;
  max-height: 135px;
  margin: 0 auto;
  filter: grayscale(100%);
}

.swiper-slide.module-badges-b-single {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .module-badges-b-single {
    flex-basis: 33.3%;
    width: 33.3%;
  }
}

@media screen and (min-width: 1025px) {
  .module-badges-b-single {
    flex-basis: 20%;
    width: 20%;
    margin: 0;
    max-width: 235px;
  }

}





/* FEATURES > Quotes */
blockquote,
.quote-single {
  font-style: italic;
  position: relative;
  margin: 0 0 40px;
  padding-top: 20px;
  padding-left: 80px;
  border-left: 5px solid var(--primary-color);
}

blockquote p,
.quote-single p {
  margin: 0;
}

blockquote::before,
.quote-single::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  position: absolute;
  top: 1%;
  left: 3%;
  font-size: 2.7rem;
  opacity: 1;
  color: var(--primary-color);
  font-style: normal;
}

/* FEATURES > CTA Block */
.cta-single {
  padding: 40px;
  background: var(--light-gray-color);
  border: 1px solid var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.cta-single span {
  display: block;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-single a {
  font-size: 2rem;
  line-height: 1.2;
}

/* FEATURES > Slideout at Page Bottom */
.bottom-slideout {
  display: block !important;
  position: fixed;
  background: var(--white-color);
  box-shadow: 0 0 20px var(--black-color);
  padding: 30px;
  right: 0;
  bottom: 0;
  max-width: 400px;
  opacity: 0;
  z-index: 1;
  transform: translateX(100%);
  transition: all 200ms ease-out;
}

.bottom-slideout.active {
  transform: translateX(0);
  opacity: 1;
}

/* FEATURES > Reviews */
.reviews-container {
  background: var(--light-gray-color);
  padding: 50px 0;
}

.reviews-star-icon {
  color: var(--alternate-color);
  font-size: 1.1rem;
}

.reviews-single-source::before {
  content: "\2014";
  margin-right: 2px;
}

.reviews-star-icon i {
  margin: 0 2px;
}

.reviews-single {
  float: none;
  text-align: center;
}

.reviews-single em {
  font-style: italic;
  margin: 10px 0;
  display: block;
}

/* FEATURES > Video Gallery */
.videos-single {
  position: relative;
  width: 100%;
  min-height: 225px;
  margin-bottom: 120px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  -ms-background-position-x: 100%;
  background-position-x: 100%;
  text-decoration: none;
}

.videos-single:hover::before,
.videos-single:focus::before {
  opacity: 0.6;
}

.videos-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--black-color);
  opacity: 0;
  transition: opacity 200ms ease-out;
}

.videos-single h2 {
  position: absolute;
  top: 100%;
  width: 100%;
  min-height: 75px;
  max-height: 75px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.1rem;
  padding: 10px 20px;
  margin: 0;
  transition: background-color 200ms ease-out;
}

.videos-single:hover h2,
.videos-single:focus h2 {
  background-color: var(--primary-color);
}

@media screen and (min-width: 640px) {
  .videos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 100px;
    grid-column-gap: 20px;
  }

  .videos-single {
    margin: 0;
  }
}

@media screen and (min-width: 1025px) {
  .videos-container {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
  }
}

/* FEATURES > YouTube Player */
.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  max-width: 100%;
  background: var(--black-color);
  margin: 20px 0 50px;
}

.youtube-player-inner {
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  position: absolute;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

/*.youtube-player-inner::after, .videos-single::after {
    content: "\f144";
    font-family: "Font Awesome 6 Pro";
    font-size: 3.5rem;
    opacity: 0.8;
    display: inline-block;
    margin: 0 auto;
    transition: all 150ms ease-out;
    color: var(--alternate-color);
    pointer-events: none;
    z-index: 1;
    top: 70px;
    position: relative;
    left: -137px;
}*/
.youtube-player-inner::after,
.videos-single::after {
  content: "";
  background-image: url('/wp-content/uploads/play.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 70px;
  height: 70px;
  opacity: 0.8;
  display: block;
  margin: 0 auto;
  transition: all 150ms ease-out;
  pointer-events: none;
  z-index: 1;
  position: relative;
  top: 70px;
  left: -137px;
}

.youtube-player-inner:hover::after,
.youtube-player-inner:focus::after,
.videos-single:hover::after,
.videos-single:focus::after {
  transform: scale(1.1);
  color: white;
  opacity: 1;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  transition: all 200ms ease-out;
  border-radius: 12px;
}

/* FEATURES > Social Link Lists */


.social-links {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  max-width: inherit;
  column-gap: 15px;
}



.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  width: 35px;
  line-height: 35px;
  height: 35px;
  text-decoration: none;
}

.social-links a img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

.social-links a:hover,
.social-links a:focus {
  color: var(--alternate-color);
}

/* FEATURES > Case Results */
.slider-results-single {
  border: 1px solid var(--secondary-color);
  padding: 30px;
}

.slider-results-single:last-of-type {
  margin: 0;
}

.slider-results-single h3 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
}

.animated.slow {
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUpSlight {
  -webkit-animation-name: fadeInUpSlight;
  animation-name: fadeInUpSlight;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fadeInRightSlight {
  -webkit-animation-name: fadeInRightSlight;
  animation-name: fadeInRightSlight;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeInDownSlight {
  -webkit-animation-name: fadeInDownSlight;
  animation-name: fadeInDownSlight;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.fadeInLeftSlight {
  -webkit-animation-name: fadeInLeftSlight;
  animation-name: fadeInLeftSlight;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInUpSlight {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpSlight {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRightSlight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightSlight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDownSlight {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownSlight {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeftSlight {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftSlight {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menuSlideRight {
  from {
    opacity: 0;
    margin-left: -10px;
  }

  to {
    opacity: 1;
    margin-left: 0;
  }
}

@-webkit-keyframes menuSlideRight {
  from {
    opacity: 0;
    margin-left: -10px;
  }

  to {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    margin-top: -10px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

@-webkit-keyframes menuSlideDown {
  from {
    opacity: 0;
    margin-top: -10px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

/*******************************************************************************************
MODULES - General styling for repeatable blocks
*******************************************************************************************/
.module {
  padding: 80px 0;
}

main .column .module .column {
  padding-left: 0;
  padding-right: 0;
}

.module-dark {
  background: var(--primary-color);
}

h2.module-title {
  margin-bottom: 20px;
}

.modules-showcase .module-title {
  display: block;
}

.box-icon {
  margin: 0;
}

.box-icon::before {
  content: "\f073";
  font-family: "Font Awesome 6 Pro";
  width: 50px;
  line-height: 50px;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  text-align: center;
  color: var(--primary-color);
  margin: 0 auto;
  display: none;
}

.content-selector {
  cursor: pointer;
  transition: background 200ms ease-out;
}

.content-selector:hover,
.content-selector:focus {
  background: var(--gray-color);
}

.modules-skip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 10px;
}

.modules-skip button {
  margin: 0 5px 5px 0;
  padding: 10px;
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
  .header {
    top: 0;
    border: none;
    height: auto;
    position: static;
  }

  .header-mobile-buttons {
    display: none;
  }
}

/*******************************************************************************************
MISC - Miscellaneous and new code
*******************************************************************************************/

#theme-switcha {
  border: 1px solid var(--secondary-color);
  margin-bottom: 30px;
  color: var(--primary-color);
}

@media screen and (min-width: 1025px) {
  .make-sticky {
    position: sticky;
    top: var(--header-height);
    z-index: 1;
  }
}

.footer-lower span:first-child::after {
  display: none;
}













@media screen and (min-width:280px) and (max-width:767px) {
  .recent-text {
    left: 0px !important;
  }

  .module.module-faq-a {
    padding: 20px 0px 50px 0px;
    /* background-image: linear-gradient(to bottom,var(--secondary-color), var(--secondary-color)); */
    background: var(--gray-color);
  }

  .accordion-item-title {
    padding: 20px;
    padding-left: 20px;
    padding-right: 0;

  }

  /*.faq-bg-image {
	display: none;
}*/

  .faq-bg-image img {
    object-fit: cover;
    /* object-fit: cover; */
    width: auto;
    height: auto;
    max-width: 400px;
    margin-right: 0%;
    margin-left: auto;
  }

  .module.module-blog {
    padding: 30px 30px;
  }

  .blog-tit.module-title {
    font-size: 60px;
    width: 700px;
    line-height: 1.12;
    margin-bottom: 15px;
  }

  .module-blog-content.blog-top-heading {
    margin-bottom: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-mid-section .columns.no-float {
    padding: 0;
  }

  .columns.medium-6.large-3.small-12.blog-top-left {
    padding: 0;
  }

  .columns.medium-6.large-9.small-12.blog-top-right {
    padding: 0;
  }

  .blog-top-left-inn {
    padding: 30px 25px;

  }

  .blog-top-left-inn p {
    margin: 0;
  }

  .blog-top-right-inn {
    padding-left: 0;
    margin-top: 50px;
  }

  .blog-top-right-list {
    padding-left: 0;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
  }

  .blog-date-main {
    display: flex;
    column-gap: 25px;
    align-items: flex-start;
  }

  .blog-bot-tit {
    margin-bottom: 15px;
  }

  .blog-bot-cont i {
    font-size: 25px;
  }

  .blog-bot-cont {
    margin-bottom: 15px;
  }

  .blog-bot-section {
    padding-bottom: 0;
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 0px;
  }

  .footer.module-footer-a {
    padding: 50px 0;
    padding-bottom: 15px;
  }

  .footer-headlines h2 {
    font-size: 30px;
    text-align: center;
    margin: 0;
  }

  .footer-upper {
    max-width: 1100px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 25px !important;
  }

  .module.footer-top .footer-title {
    font-size: 35px;
    font-weight: 900;

  }

  .footer-left-inner {
    max-width: 560px;
    margin: 0 0px 0 auto;
  }

  .module.footer-top .footer-title.fot-first-title.yellow-tit {
    font-size: 45px;
    padding-right: 0;
  }

  .module.footer-top .footer-title.fot-first-title.yellow-tit::before {
    right: 58%;
    top: 27px;
    background: var(--secondary-color);
    height: 2px;
    width: 200%;

  }

  .footer-upper p {
    text-align: left;
  }

  .footer-address {
    text-align: center;
  }

  .fot-loc-tit {
    text-align: left;
  }

  .columns.medium-5.large-5.small-12.footer-right {
    padding-left: 0 !important;
  }

  .footer-right-inner {
    max-width: 767px;
    margin: 45px 0 0 0;
    padding: 50px 40px 50px 30px;

  }

  .module-footer-a .footer-upper-phone {
    font-size: 30px;
    margin: 0px 0;
    text-align: center;
  }


  .columns.medium-6.large-8.small-12.fot-left {
    padding: 0;
  }

  .module-footer-a .footer-upper-phone i {
    font-size: 16px;
  }

  .footer-upper p {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .social-links {
    justify-content: center;
    max-width: inherit;
    column-gap: 15px;
  }

  .footer-upper-social {
    margin: 30px 0 10px 0;
    order: 1;
  }

  .columns.medium-6.large-6.small-12.fot-right::after {
    content: "";
    position: absolute;
    left: 5%;
    top: 0;
    width: 2px;
    background: var(--alternate-color);
    height: 2px;
    width: 90%;
  }

  .fot-right-inn {
    text-align: center;
    padding-bottom: 0px;
    padding-right: 0;
    padding-left: 0;
    margin-top: 2px;
  }

  .fot-right-inn h3 {
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.32;
    letter-spacing: normal;
    text-align: center;
    /* max-width: 300px; */
  }

  .footer-lower {
    margin-top: 30px;
  }

  .columns.medium-6.large-6.small-12.faq-right {
    padding-left: 15px;
  }

  .columns.medium-6.large-6.small-12.faq-left {
    padding-right: 15px;
  }

  .faq-right .accordion-container {
    margin-top: -10px;
  }

  .footer-lower {
    padding: 0 15px;
  }

  .footer-lower span:last-child {
    display: block;
    margin-top: 5px;
  }

  .columns.medium-6.large-4.small-12.Bythenumber-right {
    padding: 0 10px;
  }

  .columns.medium-12.large-12.small-12.Bythenumber-botom {
    padding: 0 10px;
  }

  .columns.medium-6.large-4.small-12.blog-bot-list {
    padding: 0 0;
  }

  .module-footer-a .footer-upper-phone a {
    font-size: 17px;

  }

  .blog-list-arrow {

    bottom: 3px;
    font-size: 15px;
  }

  .read-more-arrow i {
    font-size: 20px;

  }

  .module-faq-a-content h2 {
    text-align: center;
    max-width: inherit;
  }

  .module-faq-a .accordion-item {
    margin-bottom: 10px;
  }

  .module.news-feed.module-cta-a.module-dark.light-text {
    padding: 40px 10px;
  }

  .news-feed-section-inn {
    position: relative;
    width: 100%;
    padding: 30px;
  }

  .news-feed-section-inn h2 a {
    font-size: 25px !important;

  }

  .module-blog-a-single {
    margin-bottom: 30px;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 20px;
  }

  .module.module-blog-a {
    padding: 00px 0;
  }

  .module-blog-a-single h3 a {
    margin-bottom: 15px;
    font-size: 20px !important;

  }

  .module-blog-a-inner {
    padding-top: 0;
    padding: 0 10px;
  }

  .faq-bg-image {
    display: none;
  }

  .module-blog-a-single:last-child {
    border: none;
    margin-bottom: 15px;
  }

  .module-blog-a-inner-bottom {
    position: absolute;
    bottom: -20px;
    right: inherit;
    display: inline-block;
    background-color: #fff;
    padding-right: 0;
    border-left: 20px solid #fff;
    left: -10px;
  }

  .module-badges-b-single img {
    filter: grayscale(00%);
    height: auto;
    width: auto;
    /* max-width: 150px; */
    max-height: 115px;
  }


  .swiper-slide.module-badges-b-single {
    text-align: center;
    width: 48%;
    max-width: 150px;
  }

  .swiper-slide.module-badges-b-single:nth-child(3) {
    width: 100%;
    min-width: 100%;
  }

  .swiper-slide.module-badges-b-single:nth-child(3) img {
    max-width: 200px;
  }

  .module.module-badges-b {
    padding: 60px 0 30px 0;
  }

  .footer-inner.top {
    text-align: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .footer-offices {
    display: flex;
    grid-gap: 00px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .footer-top-right {
    width: 100%;
    padding: 0 25px;
  }

  .single-office {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 0;
  }

  footer .single-office-title {
    justify-content: space-between;
  }


  .single-office::after {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  footer .single-office .hover {
    right: 0;
    bottom: 55px;
    width: max-content;
    max-width: 375px;
  }

  .footer-inner.top {
    row-gap: 20px;
  }

  .footer-lower {
    order: 2;
    text-align: center;
    max-width: 270px;
  }

  .footer-upper-social .social-links a {
    font-size: 16px;
    border: 1px solid #afafaf;
    color: #afafaf;
  }

  .footer-lower span .hide {
    display: block !important;
  }

  .footer-lower span:nth-last-child(2)::after {
    opacity: 0;
  }

  .footer-upper-social .social-links a:hover,
  .footer-upper-social .social-links a:focus {
    color: var(--secondary-color);
  }


  .accordion-item>h3 button {
    font-size: 24px;

  }

  .content {
    margin-bottom: 30px;
  }

  .sidebar .sidebar-block.blog-side {
    margin-bottom: 30px;
  }

  .sidebar-block.sidebar-offices-block {
    padding-top: 0;
    border-left: 3px solid var(--secondary-color);
    margin-top: 20px;
    padding-bottom: 0;
    margin-left: 13px;
  }

  .attorney-bio-main-a .row.main-inner .content-tab.active {
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .sidebar-block.show-for-small-only {
    padding: 15px;
  }

  .sidebar {
    width: 100%;
  }

  .module-practices-f-single.image-hover-single.image-hover-overlay {
    margin-bottom: 30px;
  }

  .module-practices-f-single.image-hover-single.image-hover-overlay:hover,
  .module-practices-f-single.image-hover-single.image-hover-overlay:hover {
    transform: scale(1.03);
    z-index: 2;
  }

  .module.module-practices-f {
    padding-bottom: 30px;
  }

  .module.What-sets {
    position: relative;
    padding-top: 00px !important;
  }

  .module.What-sets .module-content h2 {
    font-size: 35px;
    font-weight: 900;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -1.06px;
    text-align: left;
    max-width: 475px;
    margin-top: 33px;
    margin-bottom: 50px;
    padding-right: 23px;
  }

  .module.What-sets .module-content h2.line::before {
    top: -6px;
  }

  .module.What-sets .module-content h2.line::after {
    top: -6px;
  }

  #slider-testimonials-b {
    padding-top: 70px;
  }

  #slider-testimonials-b {
    width: 100%;
    left: 0%;
  }

  .module-testimonials-c .swiper-outer {
    max-width: calc(100% - 50px);
  }

  .module-testimonials-c .swiper-outer {
    max-width: calc(100% - 50px);
    margin-top: -30px;
  }

  .testi-icon-top img {
    max-width: 100px;
  }

  .testi-icon-top {
    left: 15px;
  }

  .testi-top-tit {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-left: 10px;
  }

  .module-testimonials-c-inn.swiper-slide {
    opacity: 1;
    width: 92% !important;
    margin-left: 6%;
    margin-bottom: 20px !important;
  }

  .module-testimonials-c-single {
    flex-wrap: wrap;
  }

  .module-testimonials-c-single {
    display: flex;
    padding: 30px !important;
    padding-top: 50px !important;
    column-gap: 20px;
    row-gap: 25px;
  }

  .module-testimonials-c .testimonial-icon {
    max-width: 85%;
  }

  .module-testimonials-c .testimonial-content-upper p {
    position: relative;
    font-size: 0.9rem;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: -0.66px;
    text-align: left;
    max-width: 85%;
  }

  .module-testimonials-c .swiper-button-container {
    width: 76px;
    right: -9%;
    left: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
    text-align: center;
    top: 25%;
  }

  .recent-text h2 {
    font-size: 55px;
    font-weight: 900;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: -3px;

  }

  .module.module-blog-a .module-title h2 {

    font-size: 35px;
  }

  .blog-cta {
    display: none;
  }

  .module.module-blog-a .module-title h2 {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .module-blog-a-single h3,
  .module-blog-a-single h3 a {
    min-height: 70px;
  }

  .mobile-cta.read-news-mobile {
    margin-bottom: 50px;
    text-align: center;
  }



}




@media screen and (min-width: 640px) and (max-width: 1024px) {
  .swiper-slide.module-badges-b-single {
    text-align: center;
    width: 20%;
    max-width: 115px;
  }

  .module-badges-b-single img {
    max-height: 80px;
  }

  .swiper-slide.module-badges-b-single:nth-child(3) {
    width: 20%;
    min-width: 20%;
  }

  .footer-lower {
    order: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .footer-lower span .hide {
    display: none !important;
  }

  .footer-lower span:last-child {
    display: inline-block;
    margin-top: 5px;
  }

  footer .single-office .hover {
    right: inherit;
    bottom: 55px;
    width: max-content;
    max-width: 375px;
    /* left: 0; */
  }

  .module-testimonials-c .swiper-outer {
    max-width: calc(100% - 150px);
    margin-top: -30px;
  }

  .module-testimonials-c .swiper-button-container {
    right: -3%;

  }




}



@media screen and (min-width: 767px) and (max-width: 1024px) {

  .fot-right-inn {
    padding-bottom: 70px;
  }

  .columns.medium-6.large-6.small-12.faq-left {
    padding-right: 0;
  }

  .module.module-faq-a {
    padding: 50px 0px 50px 0px;
    background-image: linear-gradient(to bottom, var(--secondary-color), var(--secondary-color));
  }

  .accordion-item-title {
    padding: 15px;
    font-size: 17px;
    padding-left: 0px;
    padding-right: 0;
    letter-spacing: 0px;
    background: transparent !important;
    font-weight: 500 !important;
    line-height: 1.5;
  }

  .module.module-blog {
    padding: 50px 15px;
  }

  .blog-tit.module-title {
    font-size: 55px;

  }

  .module-blog-content.blog-top-heading p {
    font-size: 22px;

  }

  .columns.medium-6.large-3.small-12.blog-top-left {
    padding: 0;
    width: 33%;
  }

  .columns.medium-6.large-9.small-12.blog-top-right {
    width: 67%;
  }

  .blog-top-left-inn {
    padding: 15px;

  }

  .blog-top-right-inn {
    padding-left: 0;
  }

  .blog-date-right p,
  .blog-date-right p a {
    font-size: 16px;

  }

  .read-more-arrow i {
    font-size: 18px;
    color: var(--alternate-color);
  }

  .blog-top-right-list {
    padding-bottom: 25px;
    padding-left: 25px;
    margin-bottom: 25px;
  }

  .columns.medium-6.large-4.small-12.blog-bot-list {
    width: 33.33%;
  }

  .columns.medium-6.large-4.small-12.blog-bot-list {
    width: 33.33%;
    padding: 0 10px;
  }

  .blog-bot-section .columns.no-float {
    padding: 0 5px;
    margin: 0 0px 0 -5px;
  }

  .blog-bot-tit {
    font-size: 18px;

  }

  .blog-bot-cont i {
    font-size: 20px;
  }

  .footer-headlines h2 {
    font-size: 28px;

  }

  .footer-upper p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;

  }

  .footer-upper-buttons,
  .footer-upper-social {
    margin: 15px 0;
  }

  .fot-right-inn h3 {
    font-size: 19px;

  }

  .columns.medium-6.large-6.small-12.fot-right.animated::after {
    left: -35px;

  }

  .module-footer-a .footer-upper-phone a {
    font-size: 16px;
  }

  .footer-lower span {
    position: relative;
    font-size: 13px;
    letter-spacing: 0;
  }

  .module-footer-a .footer-lower a {
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0;
    text-decoration: none;
  }

  .footer-lower {
    margin-top: 20px;
  }

  .news-feed-section-inn h2 a {
    font-size: 22px;

  }

  .news-feed-section-inn {
    padding: 25px;
    text-align: left;
    display: block;
    overflow: hidden;
    width: 68%;
    min-height: 270px;
    max-width: 400px;
  }

  .module.module-cta-a {
    padding: 50px 0 0;
    position: relative;
  }

  .module-blog-a-single h3 a {
    margin-bottom: 15px;
    font-size: 20px !important;

  }

  .module-blog-a-inner-bottom {
    padding-right: 10px;

  }

  .module-badges-b-single img {
    max-height: 100px;
  }

  .swiper-slide.module-badges-b-single {
    text-align: center;
    width: 20%;
    max-width: 145px;
  }

  .footer-inner.top {
    justify-content: center;
    row-gap: 35px;
  }

  footer .single-office .hover {
    right: inherit;
    left: -60px;
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  section.sidebar-block {
    /* background: var(--light-gray-color); */
    padding: 15px;
    background: transparent;
  }

  .sidebar-block.sidebar-offices-block {
    margin-left: 15px;
  }

  .module.faq-section {
    position: relative;
    padding-top: 30px;
  }

  .faq-left .module-title.line::before {
    right: 102%;
  }

  .faq-left .module-title.line::after {
    left: 95%;
  }

  .faq-right-inn {
    text-align: center;
    margin-top: 40px;
  }

  .module-practices-f-single.image-hover-single.image-hover-overlay {
    width: 48%;
  }

  .module.What-sets {
    position: relative;
    padding-top: 0;
  }

  .module.module-practices-f {
    padding-bottom: 50px;
  }

  .module.What-sets .module-content h2::before {
    right: 102%;
  }

  #slider-testimonials-b {
    padding-top: 70px;
  }

  #slider-testimonials-b {
    width: 100%;
    left: 0%;
  }

  .module-testimonials-c .swiper-outer {
    max-width: calc(100% - 150px);
    margin-top: -30px;
  }

  .testi-icon-top img {
    max-width: 100px;
  }

  .testi-icon-top {
    left: 15px;
  }

  .testi-top-tit {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-left: 10px;
  }

  .module-testimonials-c-inn.swiper-slide {
    opacity: 1;
    width: 92% !important;
    margin-left: 6%;
    margin-bottom: 20px !important;
  }

  .module-testimonials-c-single {
    flex-wrap: wrap;
  }

  .module-testimonials-c-single {
    display: flex;
    padding: 30px !important;
    padding-top: 50px !important;
    column-gap: 20px;
    row-gap: 25px;
    margin-bottom: 0;
  }

  .module-testimonials-c .testimonial-icon {
    max-width: 85%;
    margin: 0 auto;
  }

  .module-testimonials-c .testimonial-content-upper p {
    position: relative;
    font-size: 0.9rem;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: -0.66px;
    text-align: left;
    max-width: 85%;
  }

  .testimonial-content {
    max-width: 85%;
    margin: 0 auto;
  }

  .module-testimonials-c .swiper-button-container {
    width: 76px;
    right: 0%;
    left: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
    text-align: center;
    top: 25%;
  }

  .recent-text h2 {
    font-size: 80px;

  }

  .module.module-blog-a .module-title {
    margin-top: -15px;
  }

  .module-blog-a-inner-posts {
    grid-row-gap: 10px;
    grid-column-gap: 65px;
  }

  .module-blog-a-inner {
    padding-bottom: 0;
  }

  .footer {
    padding: 50px 15px 20px 15px;
  }

  .module.footer-top .footer-title {
    font-size: 40px;

  }

  .module.footer-top .footer-title.fot-first-title.yellow-tit {
    font-weight: 800;
    position: relative;
    font-size: 50px;
  }

  .module.footer-top .footer-title.fot-first-title.yellow-tit::before {

    right: 64%;
    top: 30px;
  }

  .footer-left {
    padding-left: 0 !important;
    text-align: left;
    padding-right: 20px;

  }

  .gsection_title {
    font-size: 25px;
  }


}



@media screen and (min-width: 980px) and (max-width:1024px) {

  .footer-inner.top {
    justify-content: space-between;
    row-gap: 35px;
    padding-right: 15px;
  }

  footer .single-office .hover {
    right: inherit;
    left: -160px;
  }

  .footer-upper-social {
    order: 2;
    width: 25%;
    /* justify-content: flex-end; */
    /* text-align: right; */
  }

  .social-links {
    justify-content: flex-end;
    max-width: inherit;
    column-gap: 15px;
    padding-right: 20px;
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
  }

  .footer-lower {
    order: 1;
    width: 75%;
    text-align: left;

  }

}


@media screen and (min-width: 1024px) and (max-width: 1279px) {


  .faq-left .module-content p {
    color: var(--white);
  }

  .faq-left .module-title.line {
    padding-right: 80px;

  }

  .columns.medium-12.large-7.small-12.faq-left {
    width: 50%;
  }

  .columns.medium-12.large-5.small-12.faq-right {
    width: 50%;
  }

  .faq-left .module-title.line {
    padding-right: 25px;

    font-size: 45px;
  }

  .faq-bg-image {
    z-index: 1;
  }

  .home #main {
    background-image: url(/wp-content/uploads/intro-bg.webp);
    background-repeat: no-repeat;
    margin-top: -3px;
    background-size: 200%;
  }


  .accordion-item-title {
    padding: 20px;
    font-size: 18px;

  }

  .fot-right-inn h3 {
    font-size: 18px;
    font-weight: 300;

  }

  .columns.medium-6.large-6.small-12.fot-right.animated::after {
    left: -35px;

  }

  .module.module-faq-a {
    padding: 50px 0px 50px 0px;
  }

  .module.module-blog {
    padding: 50px 30px;
  }


  .columns.medium-6.large-9.small-12.blog-top-right {
    padding-right: 0;
  }

  .fot-right-inn {
    text-align: left;
    padding-bottom: 88px;
    padding-right: 10px;
    padding-left: 20px;
  }

  .footer-headlines h2 {
    font-size: 40px;

  }

  .footer-lower {
    margin-top: 0;
  }

  .news-feed-section-inn {
    max-width: 600px;
  }

  .news-feed-section-inn h2 a {
    font-size: 30px;
  }

  .swiper-slide.module-badges-b-single {
    text-align: center;
    width: 20%;
    max-width: 185px;
  }

  .footer-inner.top {
    margin-bottom: 0;
  }

  .module-badges-b-single img {
    max-height: 115px;

  }

  footer .single-office .hover {
    right: inherit;
    left: -150px;
  }

  .columns.medium-12.large-7.small-12.What-sets-left {
    width: 50%;
  }

  .columns.medium-12.large-5.small-12.What-sets-right {
    width: 50%;
  }


  .module-practices-f-single.image-hover-single.image-hover-overlay {
    width: 31%;
  }



}


@media screen and (min-width: 1920px) and (max-width: 12000px) {


  .footer-upper {
    max-width: 1200px;
    display: flex;
    align-items: flex-end;
  }

  #slider-testimonials-b-pagination {
    text-align: right;
    padding-right: 15%;
  }


}

a.hot-topic-link.external-link {
  text-decoration: none;
  color: #fff;
}

a.hot-topic-link.external-link:hover,
a.hot-topic-link.external-link:focus {
  text-decoration: underline;
  color: #fff;
}

a.tel-link {
  color: var(--color-primary);
}

#ps-sm-close {
  color: var(--secondary-color);
}

/* Gravity Forms Submit Arrow */
.gform_footer {
  position: relative;
  display: inline-block;
}

.gform_footer ::after {
  content: "→";
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 20px;
  font-weight: 700;
  pointer-events: none;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.gform_footer:has(.gform_button:hover)::after,
.gform_footer:has(.gform_button:focus)::after {
  color: var(--primary-color);
}

.gform_footer:hover::after,
.gform_footer:focus-within::after {
  color: var(--primary-color);
}

.gform_footer:hover::after {
  transform: translateY(-50%) translateX(5px);
}

.gform_footer .gform_button {
  width: 300px;
}

.sidebar .gform_footer {
  width: 100%;
}

.sidebar .gform_footer .gform_button {
  width: 100%;
}

.single-post .form-container,
.blog .form-container,
.news-stories .form-container,
.sidebar .form-container {
  background: none;
}