/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
#nav-desktop .nav-item .dropdown-menu li .nav-link:after, #nav-desktop .nav-item .nav-link:before, #nav-desktop .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
}

.uppercase-title {
  font-family: var(--secondary-font), sans-serif;
  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 
 */
/**
 * AOS (Animate On Scroll) Styles
 * Base styles for scroll animations
 */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Fade animations */
[data-aos=fade-up] {
  transform: translate3d(0, 40px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -40px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-40px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(40px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-40px, 40px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(40px, 40px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-40px, -40px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(40px, -40px, 0);
}

/* Zoom animations */
[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

/* Flip animations */
[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

/* Slide animations */
[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header {
    padding-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header {
    padding-top: 9px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 12px 20px 133px;
  }
}
@media screen and (min-width: 1200px) {
  .header:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc((100vw - 1140px) / 2 + 12px);
    height: 64px;
    background-color: #1849B2;
  }
}
@media (min-width: 1440px) {
  .header:before {
    width: calc((100vw - 1440px) / 2 + 12px);
  }
}
@media (min-width: 1400px) and (max-width: 1439px) {
  .header:before {
    width: calc((100vw - 1320px) / 2 + 12px);
  }
}
.admin-bar .header {
  top: 46px;
}

@media (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}
@media (min-width: 1440px) {
  .header .container {
    max-width: 1440px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header .container {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .container {
    padding-bottom: 11px;
    max-width: 727px;
  }
}
@media (max-width: 767px) {
  .header .container {
    padding-bottom: 16px;
  }
}
.header .container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 1200px) {
  .header .container:after {
    bottom: 3px;
  }
}
.header .row {
  align-items: center;
}

.header .site-logo-wrap,
.header .header-right {
  width: auto;
}

@media (min-width: 1440px) {
  .header .site-logo-wrap,
.header .header-right {
    padding-left: 18px;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .header .site-logo-wrap {
    padding-left: 0;
  }
}
.header .site-logo-wrap .logo {
  max-width: 382.921px;
}

@media (max-width: 991px) {
  .header .site-logo-wrap .logo {
    max-width: 234px;
  }
}
.header .header-right {
  margin-left: auto;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header .header-right {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .header .header-right {
    padding-left: 0;
    padding-right: 0;
  }
}
.header .header-top-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media screen and (min-width: 1200px) {
  .header .header-top-right {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-top-right .header-phone {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .header .header-top-right .header-phone {
    padding: 17px 0 9px 25px;
    background-color: #1849B2;
    border-bottom-left-radius: 15px;
  }
}
@media (max-width: 767px) {
  .header .header-top-right .header-phone {
    position: absolute;
    bottom: -133px;
    left: 0;
    width: 100%;
  }
}
.header .header-top-right .header-phone .label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 2.1px;
  max-width: 200px;
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .header .header-top-right .header-phone .label {
    margin-top: -10px;
    margin-right: 44px;
  }
}
@media (max-width: 1199px) {
  .header .header-top-right .header-phone .label {
    flex: 0 0 200px;
    line-height: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header-top-right .header-phone .label {
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .header .header-top-right .header-phone .label {
    margin: 0 auto 16px;
    line-height: 24px;
    text-align: center;
  }
}
.header .header-top-right .header-phone .contact-phone {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
  .header .header-top-right .header-phone .contact-phone {
    font-family: var(--secondary-font), sans-serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 3.04px;
  }
}
@media (max-width: 1199px) {
  .header .header-top-right .header-phone .contact-phone {
    padding: 14px 15px 15px;
    flex: 0 0 201px;
    max-width: 201px;
    width: 100%;
    text-align: center;
    background-color: var(--color-primary);
    border: 3px solid var(--color-tertiary);
    border-radius: 50px;
  }
  .header .header-top-right .header-phone .contact-phone:hover, .header .header-top-right .header-phone .contact-phone:focus {
    background-color: var(--color-tertiary);
    border-color: #9BBBFF;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header-top-right .header-phone .contact-phone {
    width: 201px;
  }
}
@media (max-width: 767px) {
  .header .header-top-right .header-phone .contact-phone {
    display: block;
    margin: 0 auto;
    max-width: 330px;
  }
}
.header .header-bottom-right {
  padding-right: 15px;
}

.hero {
  position: relative;
  padding-top: 192px;
  padding-bottom: 105px;
  height: 365px;
  background-image: url(../images/bg-banner-default.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .banner-title {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .hero-custom {
    height: initial !important;
    padding-bottom: 52px;
  }
}
.hero-home {
  position: relative;
  padding-top: 238px;
  padding-bottom: 49px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .hero-home {
    padding-top: 115px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home {
    padding-top: 211px;
    padding-bottom: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home {
    padding-top: 237px;
  }
}
.hero-home .banner-content-holder {
  margin-bottom: 31px;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-content-holder {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-content-holder {
    margin-bottom: 107px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-content-holder {
    max-width: 822px;
  }
}
.hero-home .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .hero-home .btn-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.hero-home .btn-wrapper .btn, .hero-home .btn-wrapper .banner-video-link {
  padding: 12px 29px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .hero-home .btn-wrapper .btn, .hero-home .btn-wrapper .banner-video-link {
    min-width: 260px;
  }
}
.hero-home .btn-wrapper .banner-video-link {
  border-radius: 14px;
  border: 3px solid #FFF;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  text-align: center;
  font-family: var(--main-font), sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px 12px 63px;
  margin-bottom: 0;
  position: relative;
}

.hero-home .btn-wrapper .banner-video-link::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  background-image: url(../images/play-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.hero-home .btn-wrapper .banner-video-link:hover::before {
  transform: translateY(-50%) scale(1.1);
}

.hero-home .banner-title {
  margin-bottom: 23px;
  color: #fff;
  font-family: var(--secondary-font), sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-title {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-title {
    margin-bottom: 35px;
    font-size: 79px;
    line-height: 1;
  }
}
@media (max-width: 991px) {
  .hero-home .banner-title {
    text-align: center;
  }
}
.hero-home .banner-subtitle {
  margin-bottom: 17px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-subtitle {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-subtitle {
    margin-bottom: 27px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 1.2px;
    text-transform: none;
  }
}
@media (max-width: 991px) {
  .hero-home .banner-subtitle {
    text-align: center;
  }
}
.hero-home .banner-content {
  margin-bottom: 42px;
  margin-top: 33px;
}

@media screen and (min-width: 768px) {
  .hero-home .banner-content {
    margin-bottom: 76px;
  }
}
@media screen and (min-width: 992px) {
  .hero-home .banner-content {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-home .banner-content {
    max-width: 810px;
  }
}
@media (max-width: 991px) {
  .hero-home .banner-content {
    max-width: 604px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .hero-home .banner-content {
    padding: 0 2px;
    margin-top: 25px;
    max-width: 319px;
  }
}
.hero-home .banner-content p {
  color: #fff;
  font-size: 19px;
  line-height: 33px;
}

.hero-home .banner-content p:last-child {
  margin-bottom: 0;
}

.hero-home .btn-wrapper .btn {
  max-width: 512px;
  max-height: 54px;
}

.hero-home .banner-badge {
  position: absolute;
  bottom: -43px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .hero-home .banner-badge {
    bottom: -30px;
  }
}
.hero-about {
  position: relative;
  padding-top: 238px;
  background-image: url(../images/bg-about-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .hero-about:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(10, 28, 68, 0) 55.7%, rgba(10, 28, 68, 0.64) 71.89%, rgba(10, 28, 68, 0.8) 100%), linear-gradient(180deg, rgba(10, 28, 68, 0) 36.67%, rgba(10, 28, 68, 0.39) 100%), linear-gradient(270deg, rgba(10, 28, 68, 0) 49.2%, #0A1C44 95%);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .hero-about {
    padding-top: 130px;
  }
}
@media screen and (min-width: 992px) {
  .hero-about {
    padding-top: 161px;
  }
}
.hero-about .banner-content-holder {
  position: relative;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .hero-about .banner-content-holder {
    margin: 0 auto;
    max-width: 1171px;
  }
}
.hero-about .banner-title {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .hero-about .banner-title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 991px) {
  .hero-about .banner-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .hero-about .attorney-image {
    margin: 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-about .attorney-image {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-about .attorney-image {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .hero-about .attorney-image {
    max-width: 400px;
  }
}
.hero-bio {
  position: relative;
  padding-top: 238px;
  background-image: url(../images/bg-bio-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .hero-bio:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(10, 28, 68, 0) 55.7%, rgba(10, 28, 68, 0.64) 71.89%, rgba(10, 28, 68, 0.8) 100%), linear-gradient(180deg, rgba(10, 28, 68, 0) 36.67%, rgba(10, 28, 68, 0.39) 100%), linear-gradient(270deg, rgba(10, 28, 68, 0) 49.2%, #0A1C44 95%);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .hero-bio {
    padding-top: 130px;
  }
}
@media screen and (min-width: 992px) {
  .hero-bio {
    padding-top: 187px;
    height: 474px;
  }
}
@media (max-width: 991px) {
  .hero-bio {
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .hero-bio .attorney-info {
    text-align: center;
  }
}
.hero-bio .attorney-info .name {
  margin-bottom: 5px;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .hero-bio .attorney-info .name {
    margin-bottom: 23px;
  }
}
.hero-bio .attorney-info .position {
  margin-bottom: 15px;
  color: #fff;
  font-family: var(--secondary-font), sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media screen and (min-width: 992px) {
  .hero-bio .attorney-info .position {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .attorney-info .position {
    margin-bottom: 35px;
  }
}
.hero-bio .attorney-info .contact-info {
  padding: 15px;
  max-width: 350px;
  border-radius: 15px;
  border: 1px solid #fff;
  background-color: rgba(42, 81, 166, 0.84);
}

@media screen and (min-width: 768px) {
  .hero-bio .attorney-info .contact-info {
    padding: 20px;
    max-width: 450px;
  }
}
@media screen and (min-width: 992px) {
  .hero-bio .attorney-info .contact-info {
    max-width: 825px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .attorney-info .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 20px 25px;
  }
}
@media (min-width: 1400px) {
  .hero-bio .attorney-info .contact-info {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .hero-bio .attorney-info .contact-info {
    margin: 0 auto;
  }
}
.hero-bio .attorney-info .contact-info .info {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .hero-bio .attorney-info .contact-info .info {
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}
@media (max-width: 991px) {
  .hero-bio .attorney-info .contact-info .info {
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .hero-bio .attorney-info .contact-info .info:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-bio .attorney-info .contact-info .info:first-child:after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 2px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.32);
  }
}
@media (min-width: 1400px) {
  .hero-bio .attorney-info .contact-info .info:first-child:after {
    right: -40px;
  }
}
.hero-bio .attorney-info .contact-info .info .icon-holder {
  margin-top: -2px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .hero-bio .attorney-info .contact-info .info .icon-holder {
    margin-right: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-bio .attorney-info .contact-info .info .icon-holder {
    flex: 0 0 27px;
    text-align: center;
  }
}
.hero-bio .attorney-info .contact-info .info .label {
  margin-right: 7px;
}

.hero-bio .attorney-info .contact-info .info a {
  color: #fff;
  font-weight: 500;
}

.hero-bio .attorney-image {
  max-width: 350px;
}

@media screen and (min-width: 768px) {
  .hero-bio .attorney-image {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .hero-bio .attorney-image {
    max-width: 450px;
    margin-top: 17px;
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .hero-bio .attorney-image {
    margin: 0 auto 30px;
  }
}
.hero-bio .attorney-image img {
  border-radius: 15px;
}

#mobile-menu {
  display: none;
}

.navbar-toggle-wrapper {
  margin-left: 8px;
  height: 45px;
  width: 45px;
  background-color: var(--color-tertiary);
  border: 1px solid rgba(0, 17, 46, 0.1);
  border-radius: 8px;
}

.close__mobileMenu {
  display: none;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}

.close__mobileMenu .x {
  display: block;
  margin: 0 auto;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: all ease-in 0.5s;
}

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

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

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

.mm-ocd-opened .close__mobileMenu {
  position: relative;
  z-index: 99999;
  display: block;
}

.mobile-button {
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}

.mobile-button .menu__bar {
  display: block;
  margin: 0 auto 3px;
  width: 18px;
  height: 2px;
  background-color: #fff;
}

.mobile-button .menu__bar:last-child {
  margin-bottom: 0;
}

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

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

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

#nav-desktop ul#menu-main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav-desktop ul#menu-main-menu > .nav-item {
  /**
    styles specific to the main menu so we don't 
    have to put !important when doing styles for the dropdown menu
  */
}

#nav-desktop ul#menu-main-menu > .nav-item.current-menu-item .nav-link {
  color: var(--header-main-m-current-color);
}

#nav-desktop ul#menu-main-menu > .nav-item:last-child .nav-link {
  padding-right: 0;
}

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

@media screen and (min-width: 1200px) {
  #nav-desktop .nav-item {
    margin-right: 16px;
  }
}
@media (min-width: 1440px) {
  #nav-desktop .nav-item {
    margin-right: 44px;
  }
}
@media (min-width: 1400px) and (max-width: 1439px) {
  #nav-desktop .nav-item {
    margin-right: 35px;
  }
}
#nav-desktop .nav-item:last-child {
  margin-right: 0;
}

@media (min-width: 1400px) and (max-width: 1559px) {
  #nav-desktop .nav-item:nth-last-child(2) .dropdown-menu {
    right: 0;
    left: initial;
  }
}
@media (min-width: 1200px) and (max-width: 1349px) {
  #nav-desktop .nav-item:nth-last-child(2) .dropdown-menu {
    right: 0;
    left: initial;
  }
}
#nav-desktop .nav-item.menu-home {
  margin-top: -5px;
}

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

#nav-desktop .nav-item.active .nav-link svg path {
  stroke: #99baff;
}

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

#nav-desktop .nav-item:hover .nav-link:before {
  background-color: var(--color-tertiary);
}

#nav-desktop .nav-item .nav-link {
  display: block;
  padding: 0 0 22px;
  color: var(--header-main-m-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: var(--header-main-m-format);
}

@media (max-width: 1439px) {
  #nav-desktop .nav-item .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  #nav-desktop .nav-item .nav-link {
    font-size: 11px;
  }
}
#nav-desktop .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1001;
  width: 48px;
  height: 6px;
  background-color: transparent;
  border-radius: 4px;
  transform: translateX(-50%);
}

#nav-desktop .nav-item .nav-link.dropdown-toggle:before {
  margin-left: -12px;
}

#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:hover svg path, #nav-desktop .nav-item .nav-link:focus svg path {
  stroke: #99baff;
}

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

#nav-desktop .nav-item .nav-link.dropdown-toggle:after {
  content: "";
  margin-left: 3px;
  width: 10px;
  height: 6px;
  vertical-align: 2px;
  background: url(../images/icons/icon-nav-link-dropdown.svg) no-repeat center;
  background-size: contain;
  border: none;
}

#nav-desktop .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 26px 30px 20px;
  margin: -3px 0 0;
  min-width: 332px;
  text-align: left;
  list-style: none;
  background-color: var(--header-sub-m-bg);
  border: 1px solid var(--color-tertiary);
  border-radius: 15px;
}

#nav-desktop .nav-item .dropdown-menu:after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 18px;
  left: 18px;
  height: 6px;
  background-color: var(--color-tertiary);
  border-radius: 4px;
}

#nav-desktop .nav-item .dropdown-menu li {
  padding-bottom: 9px;
  margin-right: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-tertiary);
}

#nav-desktop .nav-item .dropdown-menu li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

#nav-desktop .nav-item .dropdown-menu li .nav-link {
  position: relative;
  padding: 9px 0;
  color: var(--header-sub-link);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}

#nav-desktop .nav-item .dropdown-menu li .nav-link:before {
  display: none;
}

#nav-desktop .nav-item .dropdown-menu li .nav-link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  left: -16px;
  z-index: -1;
  background-color: transparent;
  border-radius: 50px;
}

#nav-desktop .nav-item .dropdown-menu li .nav-link:hover:after {
  background-color: #E8EFF6;
}

.mm-ocd .mm-spn.mm-spn--navbar.mm-spn--main:after,
.mm-ocd .mm-spn.mm-spn--navbar:after {
  opacity: 1;
}

.mm-ocd .mm-spn li::before,
.mm-ocd .mm-spn li::after,
.mm-ocd .mm-spn.mm-spn--navbar ul::before {
  border-color: #fff;
}

.mm-ocd .mm-spn a {
  font-size: 14px;
}

.mm-ocd .mm-ocd__backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  transform: translateX(-50%);
}

@media (min-width: 576px) {
  .mm-ocd .mm-ocd__backdrop {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .mm-ocd .mm-ocd__backdrop {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .mm-ocd .mm-ocd__backdrop {
    max-width: 960px;
  }
}
.mm-ocd .mm-ocd__backdrop:before, .mm-ocd .mm-ocd__backdrop:after {
  content: "";
  position: absolute;
  top: 35px;
  right: 33px;
  width: 18px;
  height: 2px;
  background-color: #fff;
}

@media (min-width: 576px) {
  .mm-ocd .mm-ocd__backdrop:before, .mm-ocd .mm-ocd__backdrop:after {
    top: 35px;
    right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .mm-ocd .mm-ocd__backdrop:before, .mm-ocd .mm-ocd__backdrop:after {
    top: 36px;
    right: 10px;
  }
}
@media screen and (min-width: 992px) {
  .mm-ocd .mm-ocd__backdrop:before, .mm-ocd .mm-ocd__backdrop:after {
    top: 56px;
    right: 14px;
  }
}
.mm-ocd .mm-ocd__backdrop:before {
  transform: rotate(45deg);
}

.mm-ocd .mm-ocd__backdrop:after {
  transform: rotate(-45deg);
}

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