/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
.uppercase-title {
  font-family: var(--secondary-font);
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

/**
 * Critical CSS
 * Stylesheet for Elements above the fold
 * Header | Navigation | Banner
 * If there are additional stylings that need to be added, 
 * kindly remove it from other scss file to avoid duplicate 
 */
.header {
  padding: 0 0 15px;
  background-color: var(--header-bg-color);
  position: relative;
  z-index: 100000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header {
    padding-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header-container {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header .header-container {
    padding-left: 20px;
  }
}
.header .header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .site-logo {
  display: block;
  padding: 12px;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .header .site-logo {
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .header .site-logo {
    padding: 12px;
    height: 141px;
    position: relative;
  }
}
.header .site-logo img {
  max-width: 57.08px;
}

@media screen and (min-width: 992px) {
  .header .site-logo img {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    max-width: 137px;
  }
}
@media screen and (min-width: 1200px) {
  .header .site-logo img {
    top: 60px;
  }
}
.header .header__right {
  flex: 1;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .header .header__right:after {
    content: "";
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 50%;
    width: 68%;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .header .header__right {
    align-items: flex-end;
  }
}
.header .header__right .header-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header__right .header-cta {
  font-family: var(--main-font);
  color: #424242;
  background-color: #CCD5D3;
  padding: 12px 25px;
  border-bottom-left-radius: 15px;
  height: 60px;
}

.header .header__right .header-cta__label {
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 25%;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: right;
}

.header .header__right .header-cta__link {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0;
  color: #424242;
}

.header .phone-section {
  background-color: var(--accent-color);
  padding: 12px 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .phone-section .contact-phone {
  color: #242424;
  font-family: var(--main-font);
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header .phone-section .contact-phone span {
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 25%;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: right;
}

.header .desktop-menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.header .header-search-bar {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  margin-top: 10px;
}

.header .header-search-bar.is-open {
  max-height: 100px;
  opacity: 1;
}

.header .header-search-bar__form {
  background-color: #f8f7f6;
  border-top: 3px solid #B01C33;
  border-right: 1px solid rgba(36, 36, 36, 0.12);
  border-bottom: 1px solid rgba(36, 36, 36, 0.12);
  border-left: 1px solid rgba(36, 36, 36, 0.12);
  border-radius: 0 0 6px 6px;
  padding: 14px 16px;
  width: 640px;
  max-width: 100%;
}

.header .header-search-bar__inner {
  display: flex;
  align-items: center;
  height: 44px;
  background-color: #fff;
  border: 1px solid rgba(36, 36, 36, 0.15);
  border-radius: 4px;
  padding: 0 4px 0 14px;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header .header-search-bar__inner:focus-within {
  border-color: rgba(176, 28, 51, 0.5);
  box-shadow: 0 0 0 3px rgba(176, 28, 51, 0.08);
}

.header .header-search-bar__icon {
  flex-shrink: 0;
  color: #B01C33;
  opacity: 0.75;
  display: flex;
  align-items: center;
}

.header .header-search-bar__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #242424;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  min-width: 0;
  height: 100%;
}

.header .header-search-bar__input::placeholder {
  color: rgba(36, 36, 36, 0.38);
  font-style: italic;
  font-weight: 300;
}

.header .header-search-bar__input::-webkit-search-decoration, .header .header-search-bar__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.header .header-search-bar__submit {
  flex-shrink: 0;
  background-color: #B01C33;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0 22px;
  height: 34px;
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.header .header-search-bar__submit:hover, .header .header-search-bar__submit:focus {
  background-color: #8e1628;
  outline: none;
}

.header .header-search-bar__close {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(36, 36, 36, 0.18);
  border-radius: 3px;
  color: rgba(36, 36, 36, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 6px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.header .header-search-bar__close:hover, .header .header-search-bar__close:focus {
  border-color: #B01C33;
  color: #B01C33;
  background-color: rgba(176, 28, 51, 0.06);
  outline: none;
}

.header .header__mobile-controls {
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  gap: 8px;
}

.sticky-sentinel {
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
  visibility: hidden;
}

.header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header--sticky.is-stuck {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  padding: 55px 0;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .page-template-contact .hero, .page-site-map .hero, .error404 .hero, .blog .hero, .archive .hero, .page-template-archive-testimonial .hero, .search .hero, .page-template-attorney-story .hero {
    padding: 55px 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
}
@media screen and (min-width: 1200px) {
  .hero {
    margin-top: -25px;
    padding: 156px 0 112px;
  }
  .page-template-community-page .hero {
    padding: 249px 0 112px;
  }
  .page-template-toys-drive .hero {
    padding: 250px 0 112px;
  }
  .page-template-attorney-story .hero {
    padding: 251px 0 80px;
  }
}
@media screen and (min-width: 1200px) {
  .hero.no-btn {
    padding-bottom: 85px;
  }
}
.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero-home {
    margin-top: -25px;
    padding-top: 81px;
    background-image: url(../images/home-hero-bg.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
  }
}
@media screen and (min-width: 992px) {
  .hero-home .row {
    align-items: center;
  }
}
@media screen and (min-width: 1600px) {
  .hero-home .row {
    align-items: initial;
  }
}
.hero-home .banner-poster {
  background-image: url(../images/hero-bg-tablet.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 20px;
}

@media screen and (min-width: 992px) {
  .hero-home .banner-poster {
    background-image: none;
  }
}
.hero-home .mobile-hero {
  width: 100%;
  height: auto;
  max-width: 192px;
  margin: 0 auto;
}

.hero-home .tablet-hero {
  width: 100%;
  height: auto;
  max-width: 330px;
  margin: 0 auto;
}

.hero-home .banner-title {
  margin-bottom: 35px;
  color: var(--color-secondary);
  font-family: var(--secondary-font);
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: normal;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-title {
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-title {
    font-size: 48px;
    line-height: 70px;
  }
}
.hero-home .big-hero {
  width: 100%;
  height: auto;
  max-width: 90%;
  position: relative;
  bottom: 0;
}

@media screen and (min-width: 1400px) {
  .hero-home .big-hero {
    max-width: 551px;
    right: -62px;
    margin-left: auto;
  }
}
.hero-home .banner-content {
  position: relative;
  z-index: 3;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.hero-home .banner-content .content {
  max-width: 550px;
  text-align: center;
  margin-right: auto;
}

@media screen and (min-width: 1400px) {
  .hero-home .banner-content .content {
    max-width: 744px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1600px) {
  .hero-home .banner-content .content {
    padding-top: 105px;
  }
}
.hero-home .cases-we-take__title {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-secondary);
  margin-top: 48px;
  margin-bottom: 18px;
}

@media screen and (min-width: 768px) {
  .hero-home .cases-we-take__title {
    margin-top: 51px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .cases-we-take__title {
    color: #fff;
  }
}
.hero-home .cases-we-take__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (min-width: 992px) {
  .hero-home .cases-we-take__buttons {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-home .cases-we-take__buttons .btn--white-cases {
    min-width: initial;
    border: none;
    padding: 3px 20px;
  }
}
@media (max-width: 991px) {
  .hero-home {
    display: block;
    height: auto;
    text-align: center;
  }
  .hero-home .container {
    max-width: 100%;
    padding: 0;
  }
  .hero-home .banner-content {
    padding: 48px 15px 45px;
    background-color: #fff;
  }
  .hero-home .banner-content .content {
    margin: auto;
    max-width: 626px;
  }
}
@media (max-width: 767px) {
  .hero-home .banner-content {
    padding: 45px 15px 40px;
  }
  .hero-home .banner-content .banner-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
  .hero-home .banner-content .banner-title {
    margin-bottom: 22px;
  }
}
.banner-subtitle {
  margin-bottom: 24px;
  color: #323049;
  font-size: 21px;
  font-weight: 500;
  line-height: 36px;
}

.banner-subtitle em {
  font-weight: 700;
  font-style: italic;
}

.hero-about {
  padding-top: 50px;
  background-image: url("../images/about-us-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .hero-about {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-about {
    margin-top: -20px;
    padding-top: 100px;
    background-position: bottom;
  }
}
.hero-about h1 {
  position: absolute;
  bottom: 26%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .hero-about h1 {
    bottom: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .hero-about h1 {
    bottom: 122px;
  }
}
.hero-about .banner-poster img {
  margin-left: auto;
  margin-right: auto;
}

.hero-bio {
  background-size: cover !important;
  padding-top: 80px;
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .hero-bio {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio {
    margin-top: -20px;
    padding: 120px 0 45px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-bio .container {
    max-width: 1350px;
    padding: 0;
  }
}
.hero-bio .container > .row {
  flex-direction: column-reverse;
}

@media screen and (min-width: 1200px) {
  .hero-bio .container > .row {
    min-height: 600px;
    align-items: center;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    flex-direction: row;
  }
}
@media (max-width: 1199px) {
  .hero-bio .text-wrap {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .text-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
}
.hero-bio .text-wrap h1 {
  margin-bottom: 9px;
}

@media screen and (min-width: 1200px) {
  .hero-bio .text-wrap h1 {
    font-size: 40px;
    line-height: 44px;
    text-align: left;
  }
}
.hero-bio .text-wrap .position {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 26px;
}

.hero-bio .col-left {
  border: none;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left {
    width: 55%;
    padding: 50px 0 50px 75px;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .hero-bio .col-left {
    width: 50%;
  }
}
.hero-bio .col-left .areas-of-focus {
  margin-top: 26px;
}

.hero-bio .col-left .areas-of-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  margin-top: 18px;
  margin-bottom: 40px;
  justify-content: center;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left .areas-of-focus-list {
    justify-content: flex-start;
  }
}
@media (max-width: 1199px) {
  .hero-bio .col-left .awards-and-recognition-wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-bio .col-left .awards-and-recognition-wrapper .swiper {
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left .awards-and-recognition-wrapper .swiper {
    max-width: 500px;
  }
}
.hero-bio .col-left .awards-and-recognition-wrapper .swiper-wrapper {
  align-items: center;
  padding-left: 0;
  margin-top: 17px;
}

.hero-bio .col-left .awards-and-recognition-wrapper .swiper-slide {
  margin-bottom: 0;
}

.hero-bio .col-left .awards-and-recognition-wrapper .pa__slider-title-arrow {
  top: 68px;
}

.hero-bio .col-left .awards-and-recognition-wrapper .pa__slider-title-arrow--prev {
  left: 35px;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left .awards-and-recognition-wrapper .pa__slider-title-arrow--prev {
    left: 3px;
  }
}
.hero-bio .col-left .awards-and-recognition-wrapper .pa__slider-title-arrow--next {
  right: 35px;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left .awards-and-recognition-wrapper .pa__slider-title-arrow--next {
    right: 3px;
  }
}
.hero-bio .col-left .button-wrappers {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 25px;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-left .button-wrappers {
    flex-direction: row;
    gap: 45px;
    margin-top: 22px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-bio .col-left .button-wrappers {
    gap: 65px;
  }
}
.hero-bio .col-left .button-wrappers .btn--primary {
  padding: 25.5px 33px;
}

.hero-bio .col-left .button-wrappers .btn--primary img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.hero-bio .col-left .button-wrappers .videos-recognition .video-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  gap: 15px;
}

.hero-bio .label {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.hero-bio .col-right {
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .hero-bio .col-right {
    width: 45%;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .hero-bio .col-right {
    width: 50%;
  }
}
.hero-bio .col-right .hero-bio-photo {
  margin-top: 10px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .hero-bio .col-right .hero-bio-photo {
    max-width: 450px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .col-right .hero-bio-photo {
    position: absolute;
    bottom: 0;
    max-width: 500px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1400px) {
  .hero-bio .col-right .hero-bio-photo {
    max-width: 100%;
  }
}
#mobile-menu {
  display: none;
}

.close__mobileMenu {
  background-color: transparent;
  padding: 8px;
  border-radius: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999999;
  height: 45px;
  width: 45px;
  display: none;
}

.close__mobileMenu .x {
  display: block;
  background-color: white;
  width: 26px;
  height: 4px;
  transition: all ease-in 0.5s;
}

.close__mobileMenu .x:first-child {
  transform: rotate(45deg);
}

.close__mobileMenu .x:last-child {
  transform: translate(0px, -4px) rotate(-45deg);
}

.mm-ocd-opened .mobile-button {
  display: none;
}

.mm-ocd-opened .close__mobileMenu {
  display: block;
}

.mobile-button {
  padding: 8px;
  background-color: transparent;
  border: none;
}

@media screen and (min-width: 768px) {
  .mobile-button {
    padding-right: 0;
  }
}
.mobile-button .menu__bar {
  background-color: var(--color-primary);
  height: 4px;
  width: 34.56px;
  display: block;
  margin-bottom: 7px;
  border-radius: 4px;
}

.mobile-button .menu__bar:nth-child(3) {
  margin-bottom: 0;
}

.mobile-button .menu__text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1F1E1E;
}

@media screen and (min-width: 992px) {
  .language-switcher {
    margin-right: 45px;
  }
}
.language-switcher .mobile-header-phone .label {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 5%;
}

.language-switcher .lang-switch {
  margin-top: 10px;
}

@media screen and (min-width: 1200px) {
  .language-switcher .lang-switch {
    margin-top: 0;
  }
}
.language-switcher a {
  border: 2px solid rgba(66, 66, 66, 0.2);
  border-radius: 300px;
  padding: 2px 10px 3px !important;
}

@media screen and (min-width: 992px) {
  .language-switcher a {
    padding: 7.5px 35px !important;
  }
}
.language-switcher a span {
  font-family: var(--main-font);
  font-weight: 500;
  font-style: Italic;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-primary);
}

@media screen and (min-width: 992px) {
  .language-switcher a span {
    font-size: 13px;
  }
}
.search-section {
  background-color: #EAEAEA;
  border-bottom-right-radius: 15px;
  height: 60px;
  width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-section .search-toggle {
  background-color: transparent;
  border: none;
}

#nav-mobile {
  text-align: right;
}

#nav-mobile .navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  max-width: 180px;
  width: 100%;
}

#nav-mobile .navbar-toggler {
  background: black;
}

#nav-mobile .navbar-toggler.collapsed .navbar-toggler-icon {
  display: inline-block;
  width: 33px;
  height: 23px;
  vertical-align: middle;
  content: "";
  background: url("../images/bgBurger.svg") no-repeat scroll center center #000;
  background-size: 33px 23px;
}

#nav-mobile .navbar-toggler .navbar-toggler-icon {
  display: inline-block;
  width: 33px;
  height: 23px;
  vertical-align: middle;
  content: "";
  background: url("../images/bgBurgerClose.svg") no-repeat scroll center center #000;
  background-size: 33px 23px;
}

.mobile-cta {
  background-color: var(--accent-color);
  border-radius: 300px;
  text-align: center;
  max-width: 330px;
  margin: 0 auto;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .mobile-cta {
    margin-left: 36px;
  }
}
@media screen and (min-width: 992px) {
  .mobile-cta {
    margin-left: 140px;
  }
}
.mobile-cta a {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: initial;
}

.mobile-cta a svg {
  margin-right: 8px;
}

.mobile-cta a strong {
  margin-left: 7px;
  font-family: Archivo;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
}
/**
 Desktop menu styles
*/
.menu-container {
  max-width: 1170px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

#nav-desktop {
  padding: 25px 0 0;
}

#nav-desktop .menu-container {
  padding-right: 0;
}

#nav-desktop .header-menu > li:after {
  content: "";
  border-right: 1px solid rgba(148, 148, 148, 0.65);
  height: 16px;
  position: absolute;
  opacity: 40%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

#nav-desktop .header-menu > li:last-child:after {
  display: none;
}

#nav-desktop .header-menu > li > .nav-link {
  padding: 20px;
}

#nav-desktop .nav-item {
  margin-bottom: 0;
}

#nav-desktop .nav-item:hover .dropdown-menu {
  display: block;
}

#nav-desktop .nav-item .nav-link {
  color: var(--header-main-m-color);
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 600;
  text-transform: var(--header-main-m-format);
  display: block;
  position: relative;
}

#nav-desktop .nav-item .nav-link:hover, #nav-desktop .nav-item .nav-link:focus {
  color: var(--header-main-m-hover-color);
}

#nav-desktop .nav-item .nav-link:active {
  color: var(--header-main-m-active-color);
}

@media screen and (min-width: 1200px) {
  #nav-desktop .nav-item .nav-link {
    font-size: 16px;
  }
}
#nav-desktop .nav-item .dropdown-toggle::after {
  border: none;
  content: "";
  background-image: url(../images/arrows/arrow-red.png);
  background-repeat: no-repeat;
  width: 14px;
  height: 8px;
  vertical-align: middle;
}

#nav-desktop .nav-item .dropdown-menu {
  position: absolute;
  top: 56%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 275px;
  padding: 15px 7px;
  margin: 0;
  font-size: 14px;
  color: #242424;
  text-align: left;
  list-style: none;
  background-color: var(--header-sub-m-bg);
  background-clip: padding-box;
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.1490196078);
  border: none;
}

#nav-desktop .nav-item .dropdown-menu li a {
  color: var(--header-sub-link);
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 31px;
  padding: 0 10px;
}

#nav-desktop .nav-item .dropdown-menu li:hover a, #nav-desktop .nav-item .dropdown-menu li:focus a {
  color: var(--header-sub-link-hover) !important;
  position: relative;
}

#nav-desktop .nav-item .dropdown-menu li:hover a:after, #nav-desktop .nav-item .dropdown-menu li:focus a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background-image: url(../images/arrows/arrow-right.png);
  background-repeat: no-repeat;
  width: 8px;
  height: 14px;
  vertical-align: middle;
  margin-left: 10px;
}

#nav-desktop .nav-item .dropdown-menu li.current-menu-item a {
  color: var(--header-sub-link-active);
}

.mm-spn.mm-spn--navbar:after {
  opacity: 1 !important;
}

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