/**
 * ***************************************
 *
 * @format
 */

/* Theme Name: PaperStreet                 */
/* Theme URI: http://www.wordpressbase.com */
/* Author: PaperStreet                     */
/* Author URI: https://www.paperstreet.com */
/* Description: For PaperStreet            */
/* Text Domain: paperstreet                */
/* Version: 3.2402                         */
/******************************************   */

/*
GENERAL
MENUS
HEADER
FOOTER
FEATURES
ANIMATIONS
MODULES
PRINT
MISC
*/

/*******************************************************************************************
GENERAL - Layout and general features
*******************************************************************************************/

/* GENERAL > Utility Classes */
.no-margin-last > p:last-of-type {
  margin: 0 !important;
}

.no-transition {
  transition: none !important;
}

.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(--font-family-heading);
}

.overflow-hidden {
  overflow: hidden;
}

.flex-container {
  display: flex;
  align-items: center;
}

.flex-align-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-align-horizontal {
  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-repeat: no-repeat;
  background-size: cover;
}

.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: var(--color-white);
}

/* GENERAL > HTML and Structure */
.content {
  margin-bottom: 60px;
}

.content .wp-block-image {
  margin-bottom: 30px;
}

.content .wp-block-image .alignright {
  margin: 0 0 20px 20px;
  float: right;
}

.content .wp-block-image .alignleft {
  margin: 0 20px 20px 0;
  float: left;
}

.content.full-width {
  float: none;
}

.content p.indent {
  margin-left: 60px;
}

.content section {
  margin-bottom: 60px;
}

.content section:last-of-type {
  margin: 0;
}

.content .search-results-container {
  margin-bottom: 80px;
}

ol,
ul {
  margin: 0 0 35px;
  padding: 0;
}

ol {
  padding-left: 20px;
  list-style-position: outside;
}

ul.has-before li,
.content li {
  padding: 0 0 0 20px;
  position: relative;
}

.content ol li {
  padding-left: 5px;
}

.content ol li::marker {
  color: var(--color-black);
}

.content ul:not(.slick-dots) li:before,
ul.has-before li:before {
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-alternate);
}

ul.has-before li:before,
.content ul li:before,
.sidebar section ul li:before {
  font-family: var(--font-family-icon);
}

.content ul ul {
  margin: 0 0 0 20px;
}

hr,
.hr-after::after {
  margin: 40px 0;
  display: block;
  height: 1px;
  border: none;
  background: var(--color-gray);
  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 {
  width: 100%;
}

section.sidebar-block ul:last-of-type {
  margin: 0;
}

.sidebar section:not(:last-child) {
  margin-bottom: 40px;
}

.sidebar section ul li {
  padding: 0 10px 10px 10px;
  position: relative;
  border-bottom: 1px solid var(--color-light-gray);
}

.sidebar section ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar section ul li:before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--color-info);
  content: '\f061';
  font-weight: 900;
}

.sidebar section ul li,
.sidebar section ul li a {
  display: block;
}

.sidebar section button.no-button,
.sidebar section ul li a {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-black);
}

.sidebar section button.no-button:hover,
.sidebar section button.no-button:focus,
.sidebar section ul li a:hover,
.sidebar section ul li a:focus {
  text-decoration: none;
  color: var(--color-secondary);
}

.sidebar section ul li ul {
  margin: 0;
  padding-left: 20px;
}

/* SIDEBAR > Explore Block */
.sidebar-explore {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  padding: 72px 20px 82px;
}

/* .sidebar-explore:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 139, 91, 0.7);
} */

.sidebar-explore-info {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sidebar-explore-info h3 {
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--color-white);
}

.sidebar-explore-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sidebar-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .explore {
    padding: 72px 10px 82px;
  }
}

@media screen and (min-width: 1025px) {
  .explore {
    padding: 72px 57px 82px;
  }
}

@media screen and (min-width: 768px) {
  .main-inner {
    display: flex;
  }

  .content {
    margin-bottom: 0;
    padding-right: calc(var(--gutter-size) * 2);
    width: calc(100% - 327px);
  }

  .content.full-width {
    padding-right: var(--gutter-size);
    width: 100%;
  }

  .sidebar {
    padding-left: 0;
    width: calc(327px + var(--gutter-size));
  }
}

@media screen and (min-width: 1025px) {
  .content {
    padding-right: calc(var(--gutter-size) * 3);
  }
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.938rem;
  height: 40px;
  line-height: 1.2;
  font-family: var(--font-family-body);
  box-shadow: none;
  margin: 0;
  width: 100%;
  display: block;
  border-radius: 0;
  padding: 10px;
}

select {
  border-bottom: none;
}

input.dark-input,
select.dark-input,
textarea.dark-input {
  color: white;
}

textarea {
  resize: none;
  height: 100px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: white;
}

input::placeholder,
textarea::placeholder {
  color: white;
}

form legend,
form label,
form p {
  font-size: 0.938rem;
}

legend,
label {
  color: white;
}

fieldset {
  padding: 0;
  border: none;
  margin: 0;
}

label {
  transition: all 200ms ease-out;
}

/* input ~ label,
textarea ~ label,
select ~ label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  line-height: 1.2;
  pointer-events: none;
  padding: 24px 0;
}

input ~ label i,
textarea ~ label i,
select ~ label i {
  font-size: 0.813rem;
  margin-right: 10px;
}

input:focus:not([type='checkbox']) ~ label,
textarea:focus ~ label,
input.active ~ label,
textarea.active ~ label,
select.active ~ label {
  padding: 8px 0;
  font-size: 0.7rem;
} */

.gfield,
.form-input-group {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}

.gfield input,
.gfield textarea {
  border-bottom: 1px solid var(--color-primary);
}

.gfield input,
.gfield textarea {
  border-bottom: 1px solid white;
}

.form-input-group.button-container {
  margin-bottom: 0;
}

select {
  background-image: url('images/custom-select-icon.png');
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: auto 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  height: 45px;
  padding: 10px 50px 10px 20px;
}

.select-firm {
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

.select-firm select {
  height: 60px;
  text-align: left;
  font-size: 1.125rem;
  text-transform: inherit;
  padding: 10px 50px 10px 25px;
  position: relative;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--color-primary);
  background-position: right 30px center;
}

.select-firm select .disabled-option {
  color: white;
  font-weight: 700;
  background-color: black;
}

.select-firm select:focus,
.select-firm select:hover {
  background-color: var(--color-info);
}

.form-container {
  padding: 30px;
  background: var(--color-primary);
}

.form-container h2 {
  color: var(--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(--color-primary);
}

.background-input input,
.background-input textarea,
.background-input select {
  background-color: var(--color-primary);
}

.background-input.select-wrapper::after,
.background-input .select-wrapper::after {
  background-color: var(--color-gray);
}

input.has-error {
  border: 1px solid #f00 !important;
  box-shadow: 0 0 2px #f00 !important;
}

.gform_submission_error,
.gfield_validation_message,
p.error-text {
  color: red;
}

.gfield_validation_message,
p.error-text {
  margin: 0;
  font-size: 0.7rem;
  -webkit-animation: fadeIn 125ms both;
  animation: fadeIn 125ms both;
}

/* GENERAL > Gravity Forms Customizations */

.gform_footer .gform_button {
  background-color: var(--color-alternate);
}

.gform_submission_error {
  font-size: 1rem;
}

.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;
}

.gfield_validation_message,
p.error-text {
  color: red;
  margin: 0;
  font-size: 0.7rem;
  -webkit-animation: fadeIn 125ms both;
  animation: fadeIn 125ms both;
}

.membership-application input,
.membership-application textarea,
.membership-application select {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px;
  height: 40px;
}

.membership-application textarea {
  height: 100px;
}

.membership-application input[type='radio'] {
  width: auto;
  height: auto;
}

input[type='submit'] {
  border: none;
  width: auto;
  padding: 10px 20px;
}

input[type='submit']:hover,
input[type='submit']:focus-visible {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.membership-application label {
  position: static;
  padding: 0 !important;
}

.membership-application legend {
  line-height: 1.2;
}

.membership-application label,
.membership-application legend {
  color: var(--color-primary);
  font-size: 1.2rem !important;
}

.gform-grid-col {
  display: block;
  margin-bottom: 15px;
}

.gfield {
  margin-bottom: 15px;
}

.membership-application .gchoice {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  grid-gap: 10px;
  gap: 10px;
  align-items: center;
}

.ginput_container_text,
.ginput_container_textarea,
.ginput_container_email,
.ginput_container_phone {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column-reverse;
  grid-gap: 10px;
  gap: 10px;
}

/* GENERAL > Slick Customizations */
.slick-arrow {
  padding: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 22px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
  background: 0 0;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 1;
  border-radius: 0;
}

.slick-arrow:before {
  top: 50%;
  left: 50%;
  display: block;
  font-weight: 300;
  font-size: 1.875rem;
  position: absolute;
  color: var(--color-white);
  transform: translate(-50%, -50%);
  font-family: var(--font-family-icon);
}

.slick-prev:before {
  content: '\f053';
}

.slick-next:before {
  content: '\f054';
}

.slick-arrow.slick-disabled {
  cursor: default;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

.slick-dots {
  margin: 40px 0 0 0;
  padding: 0;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.slick-dots li {
  margin: 0;
  padding: 0;
  position: relative;
}

.slick-dots li + li {
  margin-left: 6px;
}

.slick-dots button {
  padding: 0;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 0;
  line-height: 0;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: transparent;
}

.testimonial-slider .slick-dots {
  justify-content: flex-start;
}

.testimonial-slider .slick-dots button {
  border: 1px solid var(--color-white);
}

.testimonial-slider .slick-dots li.slick-active button {
  background: var(--color-white);
  border: 1px solid var(--color-white);
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  background: var(--color-secondary);
}

.slick-dots li.slick-active button {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}

.slick-sr-only {
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
}

.slick-autoplay-toggle-button {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  background: none !important;
}

.slick-autoplay-toggle-button:focus,
.slick-autoplay-toggle-button:hover {
  opacity: 1;
  color: var(--color-alternate);
}

.slick-autoplay-toggle-button .slick-pause-icon:before,
.slick-autoplay-toggle-button .slick-play-icon:before {
  font-family: var(--font-family-icon);
  text-align: center;
}

.slick-autoplay-toggle-button:focus {
  color: var(--color-alternate);
}

.slick-autoplay-toggle-button .slick-pause-icon:before {
  content: '\f04c';
}

.slick-autoplay-toggle-button .slick-play-icon:before {
  content: '\f04b';
}

.slider-container {
  margin: 0 auto;
  position: relative;
  max-width: 85%;
}

.slick-arrow-container {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  left: -50px;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 100px);
  pointer-events: none;
}

.slick-arrow-container button {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 3rem;
  text-align: center;
  color: var(--color-primary);
  background: none;
  pointer-events: all;
}

.slick-arrow-container button i {
  line-height: 0;
}

@media screen and (min-width: 1025px) {
  .slick-arrow:before {
    font-size: 2.5rem;
  }

  .slider-container {
    max-width: 100%;
  }

  .slick-arrow-container {
    left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .slick-prev {
    left: -60px;
  }

  .slick-next {
    right: -60px;
  }
}

/* GENERAL > Skip To Content */
#skiptocontent {
  padding: 8px;
  position: fixed;
  z-index: 10;
  display: block !important;
  opacity: 0;
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: translateY(-40px);
  transition: all 200ms ease-out;
}

#skiptocontent:focus {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 640px) {
  #skiptocontent {
    display: none !important;
  }
}

/*******************************************************************************************
MENUS - Non-critical menu styling
*******************************************************************************************/

/* MENUS > Mobile Menu */
#mobile-navigation {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  overflow: auto;
}

#mobile-navigation.active {
  display: block;
  -webkit-animation: fadeinright 400ms cubic-bezier(0.87, 0, 0.13, 1);
  animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
}

.mobile-navigation-top-inner {
  padding: 24px var(--gutter-size);
  display: none;
  align-items: center;
}

.mobile-navigation-top-inner img {
  max-width: 70%;
  height: auto;
}

#mobile-navigation.active .mobile-navigation-top-inner {
  display: flex !important;
}

#mobile-navigation a {
  padding: 23px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.938rem;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white);
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
  color: var(--color-alternate);
}

#mobile-navigation ul {
  margin: 0;
  padding: var(--gutter-size);
}

#mobile-navigation ul li {
  padding: 0;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-light-black);
}

.mobile-menu-accordion #mobile-navigation .sub-menu li {
  border-bottom: none;
}

.mobile-menu-accordion #mobile-navigation .sub-menu a {
  padding-left: calc(var(--gutter-size) * 1.5);
}

#mobile-navigation ul li:last-of-type {
  border: none;
}

#mobile-navigation ul li:before {
  display: none;
}

#mobile-navigation .sub-menu {
  margin: 0;
  z-index: 1;
  display: none;
  width: 100%;
  padding: 0 0 20px;
  background: transparent;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  overflow: auto;
}

#mobile-navigation .sub-menu a {
  border: 0;
  padding: 5px 10px;
  text-transform: none;
}

#mobile-navigation .sub-menu li {
  border: 0;
}

#mobile-navigation ul li.sub-menu-open > .sub-menu {
  display: block;
}

#mobile-navigation .menu-item-has-children > a::after {
  font-family: var(--font-family-icon);
  font-weight: 700;
  content: '\f0d7';
}

#mobile-navigation .sub-menu-open.menu-item-has-children > a::after {
  content: '\f0d8';
}

.mobile-navigation-close {
  border: 0;
  margin-left: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 1.625rem;
  color: var(--color-white);
  background: none;
}

.mobile-navigation-close span {
  font-size: 0.75rem;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
  color: var(--color-alternate);
}

.mobile-navigation-close .visually-hidden {
  right: 52px;
}

.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 {
  position: fixed;
  top: 0;
  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;
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
.footer {
  z-index: 1;
  padding-top: 30px;
  position: relative;
  text-align: center;
  padding-bottom: 50px;
  background-size: cover;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center center;
}

.footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:focus,
.footer a:hover {
  text-decoration: none;
  color: var(--color-alternate);
}

.footer-holder {
  z-index: 1;
  position: relative;
}

.footer-left {
  margin-bottom: 29px;
}

.footer-logo {
  width: 198px;
  display: block;
  margin: 0 auto 20px auto;
}

.footer-logo img {
  width: 100%;
  display: block;
}

.footer-left h3 {
  color: inherit;
  font-size: 2.125rem;
  margin-bottom: 10px;
}

.footer-left p {
  margin-bottom: 20px;
}

.footer-mail {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.375rem;
  color: var(--color-alternate);
}

.footer-mail i {
  margin-right: 15px;
}

.footer-mail a:hover,
.footer-mail a:focus {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  font-size: 0.938rem;
  justify-content: center;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: 0.5s ease-out;
  border: 1px solid var(--color-white);
}

.footer-links {
  width: 100%;
  font-weight: 500;
  text-align: center;
  font-size: 0.938rem;
}

.footer-links li + li {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .footer {
    text-align: unset;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .footer-holder {
    display: flex;
    justify-content: space-between;
  }

  .footer-left {
    max-width: 480px;
    width: calc(75% - 15px);
  }

  .footer-logo {
    margin-left: 0;
  }

  .footer-left h3 {
    margin-bottom: 15px;
  }

  .footer-social {
    display: unset;
  }

  .footer-links {
    width: auto;
    padding-top: 64px;
    text-align: unset;
    max-width: calc(25% - 15px);
  }

  .footer-links li + li {
    margin-top: 16px;
  }
}

/*******************************************************************************************
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 {
  padding: 5px;
  text-align: left;
  border: 1px solid var(--color-light-gray);
}

/* FEATURES > Breadcrumbs */
.breadcrumbs-container {
  margin-bottom: 35px;
  display: none;
  flex-wrap: wrap;
}

.breadcrumbs-single {
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
}

.breadcrumbs-single:focus,
.breadcrumbs-single:hover {
  text-decoration: underline;
}

.breadcrumbs-single::after {
  position: absolute;
  right: -4px;
  font-family: var(--font-family-icon);
  content: '\f105';
}

.breadcrumbs-single:last-of-type {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumbs-single:last-of-type::after {
  display: none;
}

@media screen and (min-width: 1025px) {
  .breadcrumbs-container {
    display: flex;
  }
}

/* FEATURES > Accordion */
.accordion-item + .accordion-item {
  margin-top: 11px;
}

.accordion-item > h3 {
  margin-bottom: 0;
}

.accordion-item-title {
  margin: 0;
  padding: 22px 30px 22px 35px;
  position: relative;
  display: flex;
  grid-gap: 15px;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 0;
  border: 1px solid var(--color-primary);
  transition: background 200ms ease-out;
  cursor: pointer;
  text-transform: unset;
}

.accordion-item-title::after {
  width: 30px;
  height: 30px;
  font-family: var(--font-family-icon);
  font-size: 1.2rem;
  line-height: 30px;
  text-align: center;
  color: var(--color-primary);
  content: '\f067';
}

.accordion-item-title span {
  flex: 1;
  text-align: left;
}

.accordion-item.active:focus {
  outline: none;
}

.accordion-item.active {
  background-color: var(--color-gray);
}

.accordion-item.active .accordion-item-title {
  border: 1px solid transparent;
  background-color: transparent;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
  color: var(--color-primary);
  background: var(--color-gray);
}

.accordion-item-title:focus:not(:focus-visible) {
  outline: none;
}

.accordion-item.active .accordion-item-title::after {
  content: '\f068';
}

.accordion-item-content {
  display: none;
}

.accordion-item.active .accordion-item-content {
  display: block;
  -webkit-animation: fadein 200ms both;
  animation: fadeIn 200ms both;
}

.accordion-item-content {
  padding: 0 35px 10px;
}

.accordion-item-content > *:first-child {
  margin-top: 0;
}

.accordion-item-content > *:last-child {
  margin-bottom: 35px;
}

/* FEATURES > Quotes */
blockquote,
.quote-single {
  margin: 0 0 40px;
  padding-top: 20px;
  padding-left: 80px;
  position: relative;
  font-style: italic;
  border-left: 5px solid var(--color-primary);
}

blockquote p,
.quote-single p {
  margin: 0;
}

blockquote:before,
.quote-single:before {
  position: absolute;
  top: 1%;
  left: 3%;
  opacity: 1;
  font-family: var(--font-family-icon);
  font-size: 2.7rem;
  font-style: normal;
  color: var(--color-primary);
  content: '\f10d';
}

/* FEATURES > CTA Block */
.cta-single {
  margin-bottom: 40px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--color-primary);
  background: var(--color-light-gray);
}

.cta-single span {
  margin-bottom: 12px;
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-single a {
  font-size: 2rem;
  line-height: 1.2;
}

/* FEATURES > Slideout at Page Bottom */
.bottom-slideout {
  padding: 30px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block !important;
  opacity: 0;
  max-width: 400px;
  background: var(--color-white);
  transform: translateX(100%);
  transition: all 200ms ease-out;
  box-shadow: 0 0 20px var(--color-black);
}

.bottom-slideout.active {
  opacity: 1;
  transform: translateX(0);
}

/* FEATURES > Reviews */
.reviews-container {
  padding: 50px 0;
  background: var(--color-light-gray);
}

.reviews-star-icon {
  font-size: 1.1rem;
  color: var(--color-alternate);
}

.reviews-single-source:before {
  margin-right: 2px;
  content: '\2014';
}

.reviews-star-icon i {
  margin: 0 2px;
}

.reviews-single {
  float: none;
  text-align: center;
}

.reviews-single em {
  margin: 10px 0;
  display: block;
  font-style: italic;
}

/* FEATURES > Video Gallery */
.videos-single {
  margin-bottom: 120px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 225px;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  -ms-background-position-x: 100%;
  background-position-x: 100%;
  background-size: cover;
}

.videos-single:hover:before,
.videos-single:focus:before {
  opacity: 0.6;
}

.videos-single:before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transition: opacity 200ms ease-out;
  content: '';
}

.videos-single h2 {
  margin: 0;
  padding: 10px 20px;
  position: absolute;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 75px;
  max-height: 75px;
  font-size: 1.1rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: background-color 200ms ease-out;
  overflow: hidden;
}

.videos-single:hover h2,
.videos-single:focus h2 {
  background-color: var(--color-primary);
}

@media screen and (min-width: 640px) {
  .videos-container {
    display: grid;
    grid-row-gap: 100px;
    grid-column-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-single {
    margin: 0;
  }
}

@media screen and (min-width: 1025px) {
  .videos-container {
    margin-bottom: 50px;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FEATURES > YouTube Player */
.youtube-player {
  margin: 20px 0 50px;
  padding-bottom: 56.23%;
  position: relative;
  max-width: 100%;

  /* Use 75% for 4:3 videos */
  height: 0;
  background: var(--color-black);
}

.youtube-player-inner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  content: '';
  overflow: hidden;
}

.youtube-player-inner::after,
.videos-single::after {
  margin: 0 auto;
  z-index: 1;
  display: inline-block;
  opacity: 0.8;
  font-family: var(--font-family-icon);
  font-size: 3.5rem;
  color: var(--color-alternate);
  transition: all 150ms ease-out;
  content: '\f144';
  pointer-events: none;
}

.youtube-player-inner:hover::after,
.youtube-player-inner:focus::after,
.videos-single:hover::after,
.videos-single:focus::after {
  opacity: 1;
  color: var(--color-white);
  transform: scale(1.1);
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.youtube-player img {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  transition: all 200ms ease-out;
  cursor: pointer;
}

/* FEATURES > Social Link Lists */
.social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 160px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 1.3rem;
  line-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(--color-alternate);
}

/* FEATURES > Case Results */
.results-slider {
  margin-bottom: 30px;
}

.results-slider-single {
  padding: 30px;
  border: 1px solid var(--color-primary);
}

.results-slider-single:last-of-type {
  margin: 0;
}

.results-slider-single h3 {
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--color-primary);
}

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.animated.fast {
  animation-duration: 600ms;
}

.animated.slow {
  animation-duration: 2000ms;
}

.animated.fadeIn {
  animation-name: fadeIn;
}

.animated.fadeInUp {
  animation-name: fadeInUp;
}

.animated.fadeInUpSlight {
  animation-name: fadeInUpSlight;
}

.animated.fadeInRight {
  animation-name: fadeInRight;
}

.animated.fadeInRightSlight {
  animation-name: fadeInRightSlight;
}

.animated.fadeInDown {
  animation-name: fadeInDown;
}

.animated.fadeInDownSlight {
  animation-name: fadeInDownSlight;
}

.animated.fadeInLeft {
  animation-name: fadeInLeft;
}

.animated.fadeInLeftSlight {
  animation-name: fadeInLeftSlight;
}

.animated.slideInUp {
  animation-name: slideInUp;
}

.animated.slideInRight {
  animation-name: slideInRight;
}

.animated.slideInDown {
  animation-name: slideInDown;
}

.animated.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 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);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 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);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 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);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 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);
  }
}

@keyframes slideInUp {
  from {
    visibility: visible;
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    visibility: visible;
    transform: translate3d(100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    visibility: visible;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menuSlideRight {
  from {
    margin-left: -10px;
    opacity: 0;
  }
  to {
    margin-left: 0;
    opacity: 1;
  }
}

@keyframes menuSlideDown {
  from {
    margin-top: -10px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}

/*******************************************************************************************
IMAGE REVEALS - Image animations on active
*******************************************************************************************/
.image-active-swipe-left,
.image-active-swipe-right {
  will-change: clip-path, transform;
}

.image-active-swipe-left.animated {
  animation: image-reveal-left 1500ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}

.image-active-swipe-right.animated {
  animation: image-reveal-right 1500ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}

@keyframes image-reveal-left {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes image-reveal-left {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes image-reveal-right {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes image-reveal-right {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/*******************************************************************************************
MODULES - General styling for repeatable blocks
*******************************************************************************************/
.module {
  padding: 80px 0;
}

main .column .module .column {
  padding-right: 0;
  padding-left: 0;
}

.module-dark {
  background: var(--color-primary);
}

h2.module-title {
  margin-bottom: 60px;
}

.modules-showcase .module-title {
  display: block;
}

.box-icon {
  margin: 0;
}

.box-icon:before {
  margin: 0 auto;
  display: block;
  width: 50px;
  font-family: var(--font-family-icon);
  font-size: 2rem;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  color: var(--color-primary);
  content: '\f073';
}

.content-selector {
  cursor: pointer;
  transition: background 200ms ease-out;
}

.content-selector:hover,
.content-selector:focus {
  background: var(--color-gray);
}

.modules-skip {
  flex-wrap: wrap;
  justify-content: center;
}

.modules-skip button {
  margin: 0 5px 5px 0;
}

/* Attorney Boxes */
.attorney-single-box {
  width: 100%;
  display: block;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.attorney-result-image-container {
  overflow: hidden;
  position: relative;
  background: #fff;
  max-height: 276px;
}

.attorney-result-image-container img {
  width: 100%;
  display: block;
  position: relative;
  transition: transform 200ms ease;

  object-fit: cover;
  object-position: top;
  height: 100%;
}

.attorney-result-image-container:before {
  left: 0;
  z-index: 1;
  width: 100%;
  bottom: 0;
  height: 45%;
  content: '';
  display: block;
  position: absolute;
  background: linear-gradient(to bottom, rgba(7, 62, 142, 0) 0%, rgba(5, 62, 142, 1) 100%);
}

.attorney-single-box:hover img,
.attorney-single-box:focus img {
  transform: scale(1.05);
}

.attorney-single-box-info {
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 18px 27px;
  position: absolute;
  color: var(--color-white);
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
  margin: 0;
  color: inherit;
}

.attorney-single-box h2 {
  font-size: 1.313rem;
}

.attorney-single-box-info p {
  font-size: 1.063rem;
  line-height: 1.1;
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
  .header {
    position: static;
    top: 0;
    height: auto;
    border: none;
  }

  .header-mobile-buttons {
    display: none;
  }
}

/*******************************************************************************************
MISC - Miscellaneous and new code
*******************************************************************************************/

#theme-switcha {
  margin-bottom: 30px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
