/*
Theme Name: Newport, LLC
Theme URL: N/A
Description: Designed & Developed by KME.digital
Author: KME.digital
Author URL: https://kme.digital
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
  --newportBlue: #204173;
  --newportOrange: #ff940d;
  --newportLightBlue: #65afff;
}

html, body {
	overflow-x: hidden;
}

/* Spacing */

.spd-1 {
  padding: 1rem;
}

.spd-2 {
  padding: 2rem 1rem;
}

.spd-3 {
  padding: 3rem 1rem;
}

.spd-4 {
  padding: 4rem 1rem;
}

.spd-5 {
  padding: 5rem 1rem;
}

/* Links */

.elementor-text-editor p:last-child {
  margin: 0;
}

.elementor-text-editor a,
.elementor-widget-theme-post-content a {
  color: #204173;
  border-bottom: 1px solid;
  transition: all 0.3s ease;
}

.elementor-text-editor a:hover,
.elementor-widget-theme-post-content a:hover {
  color: initial;
}

/* Text Decorations */

.larger-title {
  font-size: 1.125em;
  font-weight: 400;
}

/* Text Color */

.blue-accent {
  color: #204173;
}

.orange-accent {
	color: #ff8f00;
}

a.orange {
  color: #ff8f00;
  transition: color 0.3s ease;
}

a.orange:hover {
  color: #ffffff;
}

/* Custom Typography */

.svg-title {
  color: #fff;
  font-size: 3.75rem;
  line-height: 1em;
}

.leadin-preview-wrapper h4 {
    font-family: inherit !important;
}

@media screen and (min-width: 1025px) {
  h1.svg-title {
    font-size: 5.25rem;
  }
	
  h2.svg-title  {
    font-size: 5rem;
  }
}

/* Preload */

.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #204173;
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* animations-transitions.css */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 10 version
*/

/* SVG Text Decorations */

.svg-decoration {
	display: inline-block;
}

.svg-decoration__text {
	position:relative;
}

.svg-decoration__underline {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
}

.svg-decoration__underline path {
  stroke-dasharray: 575;
  stroke-dashoffset: 575;
}

.svg-decoration__underline--animation {
	-webkit-animation: underlineAnimate 0.9s 1.25s linear forwards;
	        animation: underlineAnimate 0.9s 1.25s linear forwards;
}

@-webkit-keyframes underlineAnimate {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes underlineAnimate {
  to {
    stroke-dashoffset: 0;
  }
}


/* Fade Animations */

.fade--animation {
  -webkit-animation: fadeInPlace 1.25s forwards ease;
          animation: fadeInPlace 1.25s forwards ease;
}

.fadeLeft--animation {
  -webkit-animation: fadeLeft 1.25s forwards ease;
          animation: fadeLeft 1.25s forwards ease;
}

@media screen and (min-width: 768px) {
	.fadeSlideUp--animation {
		-webkit-animation: fadeSlideUp 1.25s forwards ease;
		        animation: fadeSlideUp 1.25s forwards ease;
	}
}


.fadeOut--animation  {
	-webkit-animation: fadeOutOfPlace 1.25s 0.3s forwards ease;
	        animation: fadeOutOfPlace 1.25s 0.3s forwards ease;
}

@-webkit-keyframes fadeInPlace {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInPlace {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-150px);
		        transform: translateX(-150px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}

@keyframes fadeLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-150px);
		        transform: translateX(-150px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}

@-webkit-keyframes fadeSlideUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		        transform: translateY(0%);
	}
}

@-webkit-keyframes fadeOutOfPlace {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOutOfPlace {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

/* Image Covers */

.image-cover {
	position: absolute;
}

.image-cover.blue {
	background: #3F587E;
}

.image-cover.orange {
	background: #FF8F00;
}

.image-cover.light-blue {
	background: #65AFFF;
}

.image-cover.dark-blue {
	background: #204173;
}

/* Image Accents */

.scale-accent::after {
	content: '';
    width: 100%;
    height: 100%;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
    z-index: -1;
    position: absolute;
}

.scale-accent--animation::after {
	-webkit-animation: scaleImageAccent 0.6s 1.25s forwards ease;
	        animation: scaleImageAccent 0.6s 1.25s forwards ease;
}

.scale-accent.large.scale-accent--animation::after {
	-webkit-animation: scaleImageAccentLarge 0.6s 1.25s forwards ease;
	        animation: scaleImageAccentLarge 0.6s 1.25s forwards ease;
}

@-webkit-keyframes scaleImageAccent {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	} to {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes scaleImageAccent {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	} to {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@-webkit-keyframes scaleImageAccentLarge {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	} to {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
}

@keyframes scaleImageAccentLarge {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	} to {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
}

.slide-accent::after {
	content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
}

.slide-accent--animation::after {
	-webkit-animation: slideImageAccent 0.6s 1.25s forwards ease;
	        animation: slideImageAccent 0.6s 1.25s forwards ease;
}

@-webkit-keyframes slideImageAccent {
	from {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	} to {
		-webkit-transform: translateX(-33%);
		        transform: translateX(-33%);
	}
}

@keyframes slideImageAccent {
	from {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	} to {
		-webkit-transform: translateX(-33%);
		        transform: translateX(-33%);
	}
}

/* Video Thumbnail Zoom */

.video-zoom img {
	-webkit-transition: 0.6s ease all;
	-o-transition: 0.6s ease all;
	transition: 0.6s ease all;
}

.video-zoom .elementor-custom-embed-image-overlay:hover img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}


/* =================================================================== */

/* Image Decorations */

.anim-image img {
  -webkit-transition: opacity 1.25s ease;
  -o-transition: opacity 1.25s ease;
  transition: opacity 1.25s ease;
  opacity: 0;
}

.anim-image.dark-blue img {
  -webkit-box-shadow: 0px 0px 0px 0px #204173;
          box-shadow: 0px 0px 0px 0px #204173;
}

.anim-image.orange img {
  -webkit-box-shadow: 0px 0px 0px 0px #ff940d;
          box-shadow: 0px 0px 0px 0px #ff940d;
}

.anim-image.light-blue img {
  -webkit-box-shadow: 0px 0px 0px 0px #65afff;
          box-shadow: 0px 0px 0px 0px #65afff;
}

.anim-image--dark-blue-shadow-animation img {
  -webkit-animation: darkBlueShadow forwards linear 0.3s 1.25s;
          animation: darkBlueShadow forwards linear 0.3s 1.25s;
  opacity: 1;
}

.anim-image--orange-shadow-animation img {
  -webkit-animation: orangeShadow forwards linear 0.3s 1.25s;
          animation: orangeShadow forwards linear 0.3s 1.25s;
  opacity: 1;
}

.anim-image--light-blue-shadow-animation img {
  -webkit-animation: lightBlueShadow forwards linear 0.3s 1.25s;
          animation: lightBlueShadow forwards linear 0.3s 1.25s;
  opacity: 1;
}

@-webkit-keyframes darkBlueShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #204173;
            box-shadow: 0px 0px 0px 0px #204173;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #204173;
            box-shadow: 5px 5px 0px 0px #204173;
  }
}

@keyframes darkBlueShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #204173;
            box-shadow: 0px 0px 0px 0px #204173;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #204173;
            box-shadow: 5px 5px 0px 0px #204173;
  }
}

@-webkit-keyframes orangeShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #ff940d;
            box-shadow: 0px 0px 0px 0px #ff940d;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #ff940d;
            box-shadow: 5px 5px 0px 0px #ff940d;
  }
}

@keyframes orangeShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #ff940d;
            box-shadow: 0px 0px 0px 0px #ff940d;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #ff940d;
            box-shadow: 5px 5px 0px 0px #ff940d;
  }
}

@-webkit-keyframes lightBlueShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #65afff;
            box-shadow: 0px 0px 0px 0px #65afff;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #65afff;
            box-shadow: 5px 5px 0px 0px #65afff;
  }
}

@keyframes lightBlueShadow {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #65afff;
            box-shadow: 0px 0px 0px 0px #65afff;
  }
  to {
    -webkit-box-shadow: 5px 5px 0px 0px #65afff;
            box-shadow: 5px 5px 0px 0px #65afff;
  }
}


/* Arrows Animation */

.arrows-sm,
.arrows-lg {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.arrows-lg::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 25px;
  -webkit-transform: translateX(calc(100% + 25px)) translateY(-10px);
      -ms-transform: translateX(calc(100% + 25px)) translateY(-10px);
          transform: translateX(calc(100% + 25px)) translateY(-10px);
  background: url('/wp-content/themes/hello-elementor-child/svgs/white-blue-orange-arrows-74w25h.svg')
    no-repeat;
  z-index: 99;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .arrows-lg::after {
    -webkit-transform: translateX(calc(100% + 50px)) translateY(-10px);
        -ms-transform: translateX(calc(100% + 50px)) translateY(-10px);
            transform: translateX(calc(100% + 50px)) translateY(-10px);
  }
}

.arrows-sm::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 22px;
  -webkit-transform: translateX(calc(100% + 15px)) translateY(-10px);
      -ms-transform: translateX(calc(100% + 15px)) translateY(-10px);
          transform: translateX(calc(100% + 15px)) translateY(-10px);
  background: url('/wp-content/themes/hello-elementor-child/svgs/white-blue-orange-arrows-64w22h.svg')
    no-repeat;
  z-index: 99;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .arrows-sm::after {
    -webkit-transform: translateX(calc(100% + 25px)) translateY(-15px);
        -ms-transform: translateX(calc(100% + 25px)) translateY(-15px);
            transform: translateX(calc(100% + 25px)) translateY(-15px);
  }
}

@-webkit-keyframes arrowsEntranceXS {
  from {
    -webkit-transform: translateX(50%) translateY(-10px);
            transform: translateX(50%) translateY(-10px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(calc(100% + 25px)) translateY(-10px);
            transform: translateX(calc(100% + 25px)) translateY(-10px);
  }
}

@keyframes arrowsEntranceXS {
  from {
    -webkit-transform: translateX(50%) translateY(-10px);
            transform: translateX(50%) translateY(-10px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(calc(100% + 25px)) translateY(-10px);
            transform: translateX(calc(100% + 25px)) translateY(-10px);
  }
}

@-webkit-keyframes arrowsEntranceSmAndUp {
  from {
    -webkit-transform: translateX(50%) translateY(-10px);
            transform: translateX(50%) translateY(-10px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(calc(100% + 25px)) translateY(-10px);
            transform: translateX(calc(100% + 25px)) translateY(-10px);
  }
}

@keyframes arrowsEntranceSmAndUp {
  from {
    -webkit-transform: translateX(50%) translateY(-10px);
            transform: translateX(50%) translateY(-10px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(calc(100% + 25px)) translateY(-10px);
            transform: translateX(calc(100% + 25px)) translateY(-10px);
  }
}

.arrows--animation::after {
  -webkit-animation: arrowsEntranceXS forwards 0.3s linear;
          animation: arrowsEntranceXS forwards 0.3s linear;
  -webkit-animation-delay: 1.55s;
          animation-delay: 1.55s;
}

#design.arrows--animation::after {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

@media screen and (min-width: 768px) {
  .arrows--animation::after {
    -webkit-animation: arrowsEntranceSmAndUp forwards 0.3s linear;
            animation: arrowsEntranceSmAndUp forwards 0.3s linear;
    -webkit-animation-delay: 1.55s;
            animation-delay: 1.55s;
  }
}

/* Background Accent */

.bg-accent {
  position: relative;
  display: inline-block;
  z-index: 1;
  line-height: 1;
}

.bg-accent::before {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  z-index: -1;
  left: 0;
  width: 0;
  height: 20%;
}

.bg-accent.orange::before {
  background-color: #ff940d;
}

.bg-accent.light-blue::before {
  background-color: #65afff;
}

.bg-accent.white::before {
  background-color: #ffffff;
}

@-webkit-keyframes animateBgAccent {
  from {
    width: 0%;
  }
  to {
    width: 102%;
  }
}

@keyframes animateBgAccent {
  from {
    width: 0%;
  }
  to {
    width: 102%;
  }
}

.bg-accent--animation::before {
  -webkit-animation: animateBgAccent linear forwards 0.3s 1.25s;
          animation: animateBgAccent linear forwards 0.3s 1.25s;
}

/* backgrounds.css */

.bottom-fin-divider {
	z-index: 9999;
}

.bottom-fin-divider::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100vw;
  height: 125px;
  background: url('/wp-content/themes/hello-elementor-child/svgs/bottom-wave-fin.svg')
    no-repeat;
}

.top-wave-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100vw;
  height: 75px;
  background: url('/wp-content/themes/hello-elementor-child/svgs/top-waves.svg')
    no-repeat;
}

.waves-both-sides-divider {
	background: url('/wp-content/themes/hello-elementor-child/svgs/waves-bg-img2.svg') no-repeat center/cover;
    background-size: 115% 95%;
}

/* partner-search.css  */

/* General Select Dropdown Styling  */

.searchandfilter ul {
  padding: 0;
}

.searchandfilter input {
  padding: 0.25rem 0.5rem !important;
  color: white;
  width: 100%;
}


.searchandfilter input[type=text] {
	color: #2e382e;
}

.searchandfilter select {
  min-width: 0px !important;
  padding: 0.25rem;
  border-color: #3f587e;
  color: #3f587e;
}

.searchandfilter select option {
  color: initial;
}

.searchandfilter select .sf-level-1 {
  font-size: 0.875rem;
}

.searchandfilter h4 {
  font-family: Montserrat, Sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #2e382e;
  font-size: 0.75rem;
}

@media screen and (min-width: 600px) {
  .searchandfilter select {
    padding: 0.5rem 1rem;
    font-weight: 500;
  }

  .searchandfilter select .sf-level-0 {
    font-weight: 500;
  }

  .searchandfilter input {
    padding: 0.375rem 1rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .searchandfilter h4 {
    font-size: 1rem;
  }
}

/* General Pagination */

.search-filter-results .pagination {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 320px;
}

.search-filter-results .pagination a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-radius: 4px 4px 4px 4px;
  padding: 0.5em 1.25em 0.5em 1.25em;
}

.search-filter-results .pagination .nav-next a {
  background-color: #65afff;
  border-color: #65afff;
}

.search-filter-results .pagination .nav-next a:hover {
  color: white;
  background-color: #ff8f00;
  border-color: #ff8f00;
}

.search-filter-results .pagination .nav-previous a {
  background-color: #ff8f00;
  border-color: #ff8f00;
}

.search-filter-results .pagination .nav-previous a:hover {
  color: white;
  background-color: #65afff;
  border-color: #65afff;
}

.search-filter-results .pagination a:hover {
  color: #ff8f00;
}

/* Partner Search Main Page Dropdowns */

.partner-search-options.elementor-sticky--active {
  width: 100% !important;
  left: 0 !important;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.partner-search-options.elementor-sticky--active ul {
  padding: 2rem 1rem 1rem 1rem;
  grid-gap: 0.5rem;
}

.partner-search-options ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.partner-search-options ul li {
  padding: 0px;
}

.partner-search-options label {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .partner-search-options ul {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .partner-search-options.three-col ul {
    -ms-grid-columns: minmax(150px, 320px) 1rem minmax(150px, 320px) 1rem minmax(
        150px,
        320px
      );
    grid-template-columns: minmax(150px, 320px) minmax(150px, 320px) minmax(
        150px,
        320px
      );
  }

  .partner-search-options.two-col ul {
    -ms-grid-columns: minmax(150px, 320px) 1rem minmax(150px, 320px);
    grid-template-columns: minmax(150px, 320px) minmax(150px, 320px);
  }

  .partner-search-options.elementor-sticky--active ul {
    grid-gap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .partner-search-options ul {
    -ms-grid-columns:
      minmax(150px, 320px) 1rem minmax(150px, 320px) 1rem minmax(150px, 320px) 1rem
      minmax(150px, 320px);
    grid-template-columns:
      minmax(150px, 320px) minmax(150px, 320px) minmax(150px, 320px)
      minmax(150px, 320px);
  }
  .partner-search-options.elementor-sticky--active ul {
    -ms-grid-columns:
      minmax(150px, 320px) 1rem minmax(150px, 320px) 1rem minmax(150px, 320px) 1rem
      minmax(150px, 320px) 1rem auto;
    grid-template-columns:
      minmax(150px, 320px) minmax(150px, 320px) minmax(150px, 320px)
      minmax(150px, 320px) auto;
  }
}

@media screen and (min-width: 1140px) {
  .partner-search-options.elementor-sticky--active {
    top: 60px !important;
  }
}

@media screen and (min-width: 1186px) {
  .partner-search-options.elementor-sticky--active {
    top: 60px !important;
  }
}

/* Custom Partner Search Results */

.search-filter-custom-results {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  padding: 0.5rem 0rem;
}

.search-filter-custom-results.leadership {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

@media screen and (min-width: 600px) {
	.search-filter-custom-results.leadership {
	-ms-grid-columns: 1fr 1rem 1fr;
	grid-template-columns: 1fr 1fr;
}
}

@media screen and (min-width: 1024px) {
  .search-filter-custom-results {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .search-filter-custom-results.leadership {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.partner-card {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.3);
  padding: 1rem 0rem;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media screen and (min-width: 1024px) {
  .leadership .partner-card {
    -ms-flex-preferred-size: calc(33% - 0.5rem);
        flex-basis: calc(33% - 0.5rem);
  }
}

.partner-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.partner-card .partner-card__headshot {
  width: 125px;
  height: 125px;
  max-width: 85%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.partner-card .partner-card__name {
  font-family: Montserrat, Sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin: 1rem 0rem 0.25rem 0rem;
  padding: 0rem 1rem;
}

.partner-card .partner-card__name a {
  color: #2e382e;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.partner-card .partner-card__name a:hover {
  color: #204173;
}

.partner-card .partner-card__location {
  color: #3f587e;
  font-weight: 500;
  padding: 0rem 1rem;
  font-size: 0.75rem;
  line-height: 1.5em;
}

.partner-card .partner-card__expertise {
  background: #3f587e;
  color: white;
  font-size: 0.875rem;
  padding: 0.125rem 0.5rem;
}

.partner-card .partner-card__bio-link {
  color: #3f587e;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.partner-card .partner-card__bio-link:hover {
  color: #ff8f00;
}

@media screen and (min-width: 600px) {
  .partner-card .partner-card__headshot {
    width: 175px;
    height: 175px;
  }

  .partner-card .partner-card__name {
    font-size: 1.375rem;
  }

  .partner-card .partner-card__expertise {
    font-size: 1.25rem;
    padding: 0.5rem 0rem;
  }

  .partner-card .partner-card__location {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .partner-card .partner-card__headshot {
    width: 199px;
    height: 199px;
  }
}

/* Leadership Cards */

.leadership .partner-card {
	padding: 1rem 0 0 0;
}

.leadership .partner-card .partner-card__headshot {
	width: 199px;
	height: 199px;
}

.orange-divider {
	width: 125px;
	height: 3px;
	margin: 0 auto 1rem;
	background: #FE8E00;
}

.leadership .partner-card__excerpt {
	padding: 0 1rem;
	color: #0D1A2E;
	font-size: 0.875rem;
}

@media screen and (min-width: 600px) {
	.leadership .partner-card__excerpt {
	font-size: 1rem;
}
}

.leadership .partner-card__bio-link {
	background: #FE8E00;
	color: white;
	font-size: 1.25rem;
	padding: 0.5rem 0;
	margin-top: auto;
}

@media screen and (min-width: 600px) {
	.leadership .partner-card__bio-link {
	font-size: 1.5rem;
	padding: 0.75rem 0;	
}
}

.leadership .partner-card__bio-link:hover {
	background: #204173;
	color: white;
}

/* quadmenu.css */

@media screen and (min-width: 1140px) {
	.quadmenu-navbar-nav > .quadmenu-item:not(.menu-btn) > a {
		max-width: 130px;
        text-align: center !important;
	}
}

#quadmenu .quadmenu-container {
  max-width: 1440px !important;
}

.submenu-item span, .submenu-subitem span {
  text-transform: initial !important;
  color: #3a71c6 !important;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.submenu-item a:hover span, .submenu-subitem a:hover span {
  color: #ff940d !important;
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}

.submenu-item a > span, .submenu-subitem a > span {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.submenu-subitem span {
	font-size: 0.75rem;
	padding-left: 1.375rem;
}

@media screen and (max-width: 575px) {
  #menu-item-2167, #menu-item-2983 {
    display: none !important;
  }
}

.menu-spacer {
  height: 18px;
}

@media screen and (min-width: 1139px) {
  .menu-spacer {
    height: 48px;
  }
}

.menu-btn .quadmenu-item-content {
  -webkit-transition: 0.3s ease all !important;
  -o-transition: 0.3s ease all !important;
  transition: 0.3s ease all !important;
  text-transform: none !important;
}

#quadmenu a:focus {
  outline: thin dotted !important;
  outline-color: -webkit-focus-ring-color !important;
  outline-style: auto !important;
  outline-width: 5px !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-color: -webkit-focus-ring-color !important;
  outline-style: auto !important;
  outline-width: 5px !important;
  outline-offset: -2px !important;
}

.no-action:hover {
	background-color: #fff !important;
}

.no-action:hover span {
	color: #204173 !important;
}

.no-action a {
	pointer-events: none !important;
}

.no-link .quadmenu-dropdown-toggle {
	cursor: default !important;
}

/* queried-articles.css */

/* Queried Articles (Insights & Case Studies) */

.articles-result {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 3rem;
}

@media screen and (min-width: 1200px) {
  .articles-result {
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

.article:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 600px) {
  .article {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article__featured-image {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  min-height: 200px;
  overflow: hidden;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.article__featured-image:hover {
  opacity: 0.7;
}

@media screen and (min-width: 600px) {
  .article__featured-image {
    min-height: 0;
  }
}

.article__content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
}

@media screen and (min-width: 600px) {
  .article__content {
    padding: 2rem;
  }
}

.article__title a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #3f587e;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.25em;
}

.article__title a:hover {
  color: #ff8f01;
}

.article__excerpt {
  font-size: 0.875rem;
  line-height: 1.5em;
}

.article__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  max-width: 320px;
}

.article__author-image {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__author-image img {
  width: 75px;
  height: 75px !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100% !important;
}

.article__author-info {
  -ms-flex-preferred-size: 67%;
      flex-basis: 67%;
  padding: 1rem 1rem;
}

.article__author-info h4 {
  margin: 0rem;
}

.article__author-info a {
  font-family: 'Montserrat', sans-serif;
  color: #204173;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  font-size: 1rem;
  font-weight: 500;
}

.article__author-info a:hover {
  color: #ff8f01;
}

.article__author-info p {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0 !important;
}

/* Featured Articles */

.featured-article__title a {
  font-family: 'Montserrat', Sans-serif !important;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.25em;
}

.dark-bg .featured-article__title a {
  color: white;
}

.dark-bg .featured-article__title a:hover {
  color: #ff8f00;
}

.featured-article__intro-text {
  font-size: 1rem;
  font-weight: 500;
}

.dark-bg .featured-article__intro-text {
  color: white;
}

.light-bg .featured-article__title a {
  color: #3f587e;
}

.light-bg .featured-article__title a:hover {
  color: #ff8f00;
}

/* Featured Articles Author Section */

.featured-article__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.featured-article__author-image {
  -ms-flex-preferred-size: 85px;
      flex-basis: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.featured-article__author-image img {
  width: 75px;
  height: 75px !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100% !important;
}

.featured-article__author-info {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  padding: 1rem 1rem;
}


.dark-bg .featured-article__author-info {
	color: #fff;
}

.featured-article__author-info h4 {
  margin: 0rem;
}

.featured-article__author-info a {
  font-family: 'Montserrat', sans-serif;
  color: #204173;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  font-size: 1rem;
  font-weight: 500;
}

.dark-bg .featured-article__author-info a {
  color: #fff;
}

.featured-article__author-info a:hover {
  color: #ff8f01;
}

.featured-article__author-info p {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0 !important;
}

a.featured-article__link {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #65afff;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #65afff;
  border-radius: 4px 4px 4px 4px;
  padding: 0.875em 1.25em 0.875em 1.25em;
}

@media screen and (min-width: 500px) {
	a.featured-article__link {
		margin-left: auto;
	}
}

@media screen and (min-width: 768px) {
	a.featured-article__link {
		margin-left: 0;
	}
}

@media screen and (min-width: 1190px) {
	a.featured-article__link {
		margin-left: auto;
	}
}

.light-bg .featured-article__link {
  background-color: #ff8f00;
  border-color: #ff8f00;
}

.light-bg .featured-article__link:hover {
  color: white;
  background-color: #3f587e;
  border-color: #3f587e;
}


.dark-bg .featured-article__link {
  background-color: #65afff;
  border-color: #65afff;
}

.dark-bg .featured-article__link:hover {
  color: white;
  background-color: #ff8f00;
  border-color: #ff8f00;
}

/* testimonial-carousel.css */

.testimonial-carousel {
  z-index: 99;
  width: 95vw;
  -webkit-transform: translate(0%, 0%);
      -ms-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.testimonial-carousel.no-translate {
	-webkit-transform: translate(0%, 0%);
	    -ms-transform: translate(0%, 0%);
	        transform: translate(0%, 0%);
}

.testimonial-carousel .elementor-testimonial__footer {
  margin-top: 0px !important;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1025px) {
  .testimonial-carousel {
    z-index: 99;
    width: 95vw;
    -webkit-transform: translate(25%, 15%);
        -ms-transform: translate(25%, 15%);
            transform: translate(25%, 15%);
  }
}

.testimonial-carousel .elementor-testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.testimonial-carousel .elementor-swiper-button i::before {
  color: #ff8f00;
  font-size: 1rem;
  border: 2px #ff8f00 solid;
  border-radius: 100%;
}

.testimonial-carousel .swiper-slide {
  padding: 0rem 1.25rem !important;
}

@media screen and (min-width: 600px) {
  .testimonial-carousel .elementor-swiper-button i::before {
    font-size: 3rem;
    border: 5px #ff8f00 solid;
  }

  .testimonial-carousel .swiper-slide {
    padding: 1rem 4rem !important;
  }
}