/*
Theme Name: Merrick Theme
Description: Custom theme created for Merrick, 2026 imagining.
Version: 1.0s
Author: Joel Smith
Author URI: http://okasoftdesign.com

*/
:root {
  --mer-dblue: #001838;
  --mer-blue:#002E6D;
  --mer-nblue: #79B2FF;
  --mer-yellow: #F7A700;
  --mer-fancy: "Barlow Condensed", sans-serif;
  --mer-reg: "Barlow", sans-serif;
}
html, body {
  height: 100%;
}
html {
  font-size: 16px;
}
body {
  background: #fff;
  color: #1a1a1a;
  font-size: 1em;
  font-family: "Barlow", sans-serif;
}
* {
  margin:0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a, a:visited {
  text-decoration: underline;
  color: #000;
}
a:hover {
  text-decoration: none;
}
*:focus {
  outline: none;
}
input[type=submit], input[type], textarea {
  -webkit-appearance:none;
}
.fancy, .nav-top .menu>li>a, .tb-links a, h3 {
  font-family: "Barlow Condensed", sans-serif;
}
.font-light {
	font-weight: 300;
}
.font-reg {
	font-weight: 400;
}
.font-semi {
	font-weight: 600;
}
.font-bold {
	font-weight: 700;
}
/*---------PRIME STRUCTURE---------*/
header, main, footer, article, nav, section, aside {
  display:block;
}
header, main, footer {
  width:100%;
}
section {
  position: relative;
}
.mast {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0);
  font-size: 1em;
  padding: 0;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0);
}
.mast .width {
	z-index: 3;
	padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 86em;
}
.width {
  max-width:70em; /*1120*/
  width:calc(100% - 3.75em);
  margin:0 auto;
  display:block;
  position: relative;
}
main {
  background:#fff;
  overflow: hidden;
}
main.hero-drop {
  margin-top: 6.25em;
}
main .width {
  padding:3.75em 0;
}
.anchor {
  top: -7.5em; /*match section padding*/
  position: relative;
}
/*FOOTER*/
footer {
  margin: auto;
  padding: 0;
  font-size:1em;
  color: var(--mer-dblue);
  background-color: #fff;
  font-family: var(--mer-fancy);
}
footer::after {
  content: " ";
  width: 80%;
  height: 100%;
  right: 0;
  position: absolute;
  bottom: 0;
  z-index: 0;
  background: url('img/footer-bg.jpg') no-repeat bottom right;
}
footer .trio, footer .credits {
  z-index: 2;
  position: relative;
}
footer .trio {
  padding: 2.375em 0 .75em;
}
footer .trio .width, .trio .col-mix {
  display: flex;
  justify-content: space-between;
  column-gap: 2em;
  row-gap:2em;
}
footer .trio .width {
  padding-bottom: 2.25em;
}
.trio .col1 .btn-wrap {
  padding-top: 3.875em;
}
footer a:link, footer a:visited {
  color: var(--mer-dblue);
  text-decoration: none;
}
footer img {
  max-width: 100%;
  height: auto;
}
footer a:hover {
  text-decoration: underline;
  color:var(--mer-blue);
}
footer .btn-wrap a {
  text-decoration: none;
  color: var(--mer-blue);
}
footer .btn-wrap a:hover {
  color:var(--mer-dblue);
}
footer .btn-wrap a:hover::after {
  border-color: var(--mer-dblue);
}
footer .social {
  text-align: center;
  margin: 8px 0 0 0;
}
footer .social a {
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 34px;
  height: 34px;
}
footer .social a::before {
  font-size: 34px;
  color: #fff;
}
footer .social a:last-child {
  margin-right: 0;
}
.credits .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2em;
  padding: 0 0 5.625em;
}
.credits ul li {
  list-style: none;
}
.credits ul {
  display: flex;
  align-items: center;
  padding: 0;
}
.credits .menu li {
  line-height: 1;
}
.credits .menu li:not(:last-of-type) {
  border-right:solid 2px var(--mer-yellow);
  padding-right: .675em;
  margin-right: .675em;
}
.credits a, .credits p {
  font-weight: 600;
  color: var(--mer-dblue);
}
#block-8 {
  padding: 3em 0 2em;
}
.trio .col1 p {
  font-size: 1.25em;
  font-weight: 500;
}
.trio .col1 p a {
  display: inline-block;
  max-width: 15em;
}
.trio ul.menu li {
  list-style: none;
}
.trio ul.menu {
  padding: 0;
}
.trio ul.sub-menu {
  padding:1.25em 0 0 .5em;
}
.trio .menu li:not(:last-of-type) {
  padding-bottom: .625em;
}
.trio .menu li a {
  font-size: 1em;
  font-weight: 600;
}
.trio .menu>li>a {
  font-size: 1.25em;
}
#block-13 {
  position: absolute;
  bottom: 2.25em;
  right: 0;
}
@media (min-width:981px) {
  .trio .col1 {
    width:32%;
  }
  .trio .col-mix {
    width:68%;
  }
  .trio .col-mix>div:nth-child(1) {
    width:33%;
  }
  .trio .col-mix>div:nth-child(2) {
    width:39%;
  }
  .trio .col-mix>div:nth-child(3) {
    width:28%;
  }
}
/*---------COLUMN GRID-----------*/
.row {
  position: relative;
  margin: 0 -1.6em;
}
.row.invert {
  display: flex;
  flex-direction: row-reverse;
}
.cfx {
  position: relative;
}
.cfx::after, .row::after {
  content: " ";
  clear: both;
  display: block;
  position: relative;
}
.column {
  float: left;
  padding: 0 1.6em;
}
.col-12 {
  width: 100%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.6666%
}
.col-7 {
  width: 58.3333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.6666%;
}
.col-4 {
  width: 33.3333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.6666%;
}
.col-1 {
  width: 8.3333%;
}
.postmetadata {
  border-top: 1px solid #999;
  margin:10px 0;
  padding:5em 0 0 0;
  font-size:12px;
}
.postmetadata small {
  font-size:12px;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*-----------HEADINGS-----------*/
h1 {
  font-size: 3em;
  padding:0;
  line-height: 1.2;
  font-weight:900;
}
h2 {
  font-size: 3.125em;
  line-height: 1.3;
  font-weight: 400;
  padding:0 0 .625em 0;
  color: var(--mer-blue);
}
h3 {
  font-size: 2em;
  font-weight: 600;
  padding:0 0 .4em 0;
}
h4 {
  font-size: 1.2em;
  padding:0 0 .4em 0;
}
main p {
  line-height: 1.55;
  padding:0 0 1.6em 0;
}
main p:last-of-type {
  padding-bottom: 0;
}
main p, main li {
  font-size: 1.125em;
}
main p strong {
  font-weight: 600;
}
ul {
  padding-top: .5em;
  list-style-type:disc;
}
li {
  line-height: 1.3;
  padding-bottom: .15em;
}
main img {
  max-width:100%;
  height:auto;
  display:block;
}
main img.alignleft {
  margin-right:1.6em;
}
main img.alignright {
  margin-left:1.6em;
}
article ul {
  margin: 0 0 1em 0;
}
/*-------------BANNER----------------*/
.banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
  height: 45vw;
	display: block;
	min-height: 24em;
  max-height: 50em;
  position: relative;
}
.child .banner {
  height: 35vw;
  max-height: 42em;
}
.banner.default {
  height: 28vw;
  max-height: 38em;
  background: linear-gradient(153deg, rgba(0, 52, 106, 1) 0%, rgba(0, 24, 56, 1) 100%);
}
.banner::after, .banner::before {
  content: " ";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
}
.banner::after {
  background: rgba(31, 30, 31, .5);
  height: 100%;
  z-index: 0;
}
.banner.default::after {
  width: 25em;
  height: 12.5em;
  right: 3.5em;
  bottom: 0;
  top: inherit;
  left: inherit;
  background: url('img/badge-w.svg') no-repeat top center;
  background-size: cover;
  opacity: .3;
  mix-blend-mode: overlay;
}
.banner.default .burn {
  background: url('img/hero-bg-left.png') no-repeat top left;
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  background-size: auto 100%;
  mix-blend-mode: color-burn;
  opacity: .5;
}
.banner::before {
  height: 50%;
  background: linear-gradient( 180deg , rgba(0, 24, 56, 1) 0% , rgba(0, 24, 56, 0) 100% );
  z-index: 1;
}
.banner.default::before {
  height: 62.5%;
}
.banner .width {
  z-index: 3;
}
.vid-fit video {
  height: 100%;
  width: auto;
}
.vid-wide {
  width: 100%;
  height: auto;
}
/*-------------PAGE MISC----------------*/
.break, footer {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	position: relative;
}
.blank {
	font-size: 0;
}
.center {
	text-align: center;
}
.btn-wrap {
  padding-top: 1.75em;
}
.btn-wrap.mid-space {
  padding: 0 0 1.75em;
  margin-top: -1.5em;
}
.btn-right a, .btn-fill a, .tile .cta, .ntile .cta {
  position: relative;
  display: inline-block;
  text-decoration: none;
  z-index: 0;
}
.btn-right.right {
  text-align: right;
}
.btn-right a, .tile .cta, .ntile .cta {
  font-family:var(--mer-fancy);
  font-size: 1.125em;
  line-height: 2.5;
  padding-right: 2.76em;
  font-weight: 600;
  color: var(--mer-blue);
}
.btn-right.sm a {
  font-size: 1em;
  padding-right: 2.125em;
}
.btn-right.sm a::after {
  width: 1.625em;
  height: 1.625em;
}
.btn-right.back a {
  padding-left: 2.76em;
  padding-right: 0;
}
.btn-right a::after, .h3-btn h3 a::after, .tile .cta::after, .ntile .cta::after, .ptile .cta::after {
  content: " ";
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border:solid 1px var(--mer-nblue);
  background: url('img/icons/aright-b.svg') no-repeat center;
  background-size: 50% auto;
}
.btn-right.back a::after {
  right: inherit;
  left: 0;
  transform:rotate(180deg);
}
.btn-right a::after {
  width: 2.12em;
  height: 2.12em;
}
.h3-btn h3 a::after {
  width: .8125em;
  height: .8125em;
  top:.125em;
}
.btn-right a:hover, .h3-btn h3 a:hover {
  color: var(--mer-nblue);
}
.btn-right a:hover::after, .h3-btn h3 a:hover::after {
  background-color: var(--mer-nblue);
}
.btn-right.white a, .tile .cta, .ntile .cta {
  color: #fff;
}
.btn-right.white a::after, .tile .cta::after, .ntile .cta::after, .ptile .cta::after {
  background-image: url('img/icons/aright-w.svg');
}
.btn-right.white a:hover {
  color:var(--mer-nblue);
}
.btn-right.white a:hover::after {
  border-color: #fff;
}
.btn-fill a {
  padding: .65em 1.2em;
  line-height: 1.1;
  font-size: 1em;
}
.btn-fill a, .btn-fill a:visited {
  color: #fff;
}
.btn-fill.white a {
  background-color: #fff;
}
.btn-fill a:hover::after {

}
.gray-bg {
  background: #efefef;
}
main .flush p {
  padding: 0;
}
.modal-outer {
  display: none;
  z-index: 102;
  position: fixed;
}
.modal-wrap {
  overflow-y:scroll;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 99;
  padding: 2.5em;
  display: flex;
  justify-content: center;
}
.modal-box {
  margin: auto;
  position: relative;
  padding: 0;
  height: auto;
  width: 75em;
  min-height: 31.25em;
  padding: 2.75em;
  background: #fff;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mod-close {
  position: absolute;
  top:.75em;
  right: .75em;
  z-index: 105;
  width: 2em;
  height: 2em;
  display: block;
  cursor: pointer;
}
.mod-close::before, .mod-close::after {
  content: " ";
  background-color: #454545;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mod-close::after {
  width: 80%;
  height: 4px;
}
.mod-close span {
  font-size: 0;
}
.mod-close::before {
  width: 4px;
  height: 80%;
}
.mod-close:hover::before, .mod-close:hover::after{
  background-color:#013DC3;
}
.dark-bg p, .dark-bg h2, .dark-bg {
  color: #fff;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.vcent {
  display: flex;
  align-items: center;
}
.hold-right {
  float: right;
}
.img-hold.right {
  left: calc(50% + 1.6em);
  right: 0;
}
.img-hold {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(50% + 1.6em);
  width: auto;
  margin: auto;
}
.notfound .width {
  padding-top: 5.5em;
  min-height: 20em;
}
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 104;
  display: none;
}
.cookies .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  max-width: 58.125em;
  column-gap: 1.5em;
}
.cookies .btn-fill {
  padding: 0;
}
.cookies .btn-fill a {
  cursor: pointer;
  width: 10.25em;
}
.cookies strong {
  display: block;
}
.cookies p {
  font-size: 1em;
  line-height: 1.18;
}
.cookies p a {
  color: #fff;
}
.menu-social-container ul li {
  list-style: none;
}
.menu-social-container ul {
  display: flex;
  padding: 1em 0;
  align-items: center;
  justify-content: center;
  column-gap: 1.125em;
}
.trio .menu-social-container .menu li {
  padding: 0;
  line-height: 1;
}
.menu-social-container a {
  font-size: 1em;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.875em;
  height: 1.875em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-indent: -1000px;
  display: block;
}
.menu-social-container a::after, .menu-social-container a::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.menu-social-container a::after, .menu-social-container a:hover::before {
  opacity: 0;
}
.menu-social-container a:hover::after {
  opacity: 1;
}
.trio .foot-social .menu>li>a {
  font-size: 1em;
}
.ico-fb a::before {
  background-image: url('img/icons/fb.svg');
}
.ico-fb a::after {
  background-image: url('img/icons/fb2.svg');
}
.ico-tw a::before {
  background-image: url('img/icons/tw.svg');
}
.ico-tw a {
  font-size: .85em !important;
}
.ico-tw a::after {
  background-image: url('img/icons/tw2.svg');
}
.ico-in a::before {
  background-image: url('img/icons/insta.svg');
}
.ico-in a::after {
  background-image: url('img/icons/insta2.svg');
}
.ico-ln a::before {
  background-image: url('img/icons/ln.svg');
}
.ico-ln a::after {
  background-image: url('img/icons/ln2.svg');
}
.ico-yt a {
  font-size: 1.125em !important;
}
.ico-yt a::before {
  background-image: url('img/icons/yt.svg');
  background-size: contain;
}
.ico-yt a::after {
  background-image: url('img/icons/yt2.svg');
  background-size: contain;
}
*:focus-visible { /*global tab selector for accessibility*/
  outline: 2px solid blue;
}
.hide-focus *:focus-visible, .hide-focus .tbar .s-fire:focus {
  outline: 0;
}
.asw-footer {
  display: none;
}
body .asw-menu {
  left: inherit;
  right: 0;
}
body .asw-widget>a {
  left: inherit !important;
  right: 20px;
  background:#145DA0 !important;
  outline-color: #145DA0 !important;
  width: 38px;
  height: 38px;
}
body .asw-menu-header {
  background-color:#145DA0 !important;
}
.footer-pre h2 {
  font-size: 2em;
  font-family:var(--mer-fancy);
  font-weight: 600;
}
.footer-pre p {
  font-size: 1.125em;
  line-height: 1.55;
}
.footer-pre .width {
  padding: 4em 0;
}
.footer-pre .width::after, .trio .width::after, .nav-top .break-pre::before, .ntile.wide::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .25em;
  border-radius: .25em;
  background: linear-gradient(180deg,
  rgba(231, 237, 242, 1) 0%,
  rgba(245, 247, 250, 1) 100%);
}
.h3-btn h3 a {
  color:var(--mer-blue);
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-right: 1.75em;
}
.h3-btn h3 a::after {

}
hr.special {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  border:0;
  background: linear-gradient( 180deg , rgba(231, 237, 242, 1) 0% , rgba(245, 247, 250, 1) 100% );
}
.ddn-wrap {
  padding:0 1.25em;
  position:relative;
  z-index:3;
  margin: 0;
  max-width:32em;
}
.ddn-wrap a {
  font-size:1.125em;
  text-decoration:none;
  color: var(--mer-blue);
}
.ddn-wrap a.ddn-tog {
  font-size:1em;
  text-decoration:none;
  display:block;
  position:relative;
  z-index:2;
  font-weight: 400;
  padding:.85em 1.5em .85em 0 ;
  color: #808285;
}
.ddn-tog::after {
 content:" ";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  margin:auto;
  width:.875em;
  height:.875em;
  background: url('img/icons/caret.svg') no-repeat center;
  background-size:contain;
}
.ddn-wrap.open .ddn-tog::after {
  transform:rotate(180deg);
}
.ddn-wrap, .ddn-wrap .ddn-set {
  background:#fff;
  border:solid 1px rgba(0, 24, 56, .5);
}
.ddn-wrap .ddn-set {
  display:none;
  position:absolute;
  top:-1px;
  padding:3.5em 0 1em;
  left:-1px;
  z-index:1;
  width: calc(100% + 2px);
}
.ddn-set .inner {
  max-height:20em;
  display:block;
  overflow-y:auto;
}
.ddn-wrap.open {
  border-color:transparent;
  z-index: 6;
}
.ddn-wrap.open .ddn-set {
  display:block;
}
.ddn-set a {
  display:block;
  margin:.5em 2.625em;
  line-height: 1.2;
  cursor: pointer;
}
.ddn-set a:hover {
  text-decoration: underline;
  color: var(--mer-dblue);
}
.bbold p strong, .bbold li strong {
  color: var(--mer-blue);
}
.vt-wrap {
  position: relative;
}
.vid-full .vt-wrap {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.vid-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.25em;
  height: 6.25em;
  z-index: 4;
  bottom: 0;
  right: 0;
  margin: auto;
}
.vis-slide-wrap {
  padding-top: 4.375em;
}
.vis-slide-wrap .vis-slider:not(:first-child) {
  margin-top: 1.875em;
}
.vid-trigger a, .vis-slider .vid-trigger a::after, .vis-pager .vid .inner::after, .btn-play::after {
  background: url('img/icons/vid-play.svg') no-repeat 60% center #fff;
  background-size: 38% auto;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}
.vis-slider .vid-trigger {
  width: 6.875em;
  height: 1.75em;
  top: inherit;
  right: inherit;
  left: 1.375em;
  bottom: 1.275em;
}
.vis-slider .vid-trigger a:hover {
  background-color: transparent;
}
.vis-slider .vid-trigger a {
  background: none;
  width: inherit;
  display: block;
  border-radius: 0;
  height: inherit;
}
.vis-slider .vid-trigger a::after, .vis-slider .vid-trigger a::before, .btn-play::after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.vis-slider .vid-trigger a::after, .btn-play::after {
  content: " ";
  width: 1.75em;
  height: 1.75em;
  margin-left: .625em;
}
.vis-pager .vid .inner::after {
  content: " ";
  width: 1.75em;
  height: 1.75em;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.vis-slider .vid-trigger a::before, .btn-play {
  font-family: var(--mer-fancy);
  font-weight: 600;
  color: #fff;
  font-size: 1em;
}
.vis-slider .vid-trigger a::before {
  content: "Watch Video";
}
.vid-trigger a:hover, .vis-slider .vid-trigger a:hover::after {
  background-color: var(--mer-dblue);
}
.vid-trigger a span {
  font-size: 0;
}
.vis-slider .inner {
  position: relative;
}
.vis-pager {
  margin-top: 1.875em;
}
.vis-pager .inner {
  height: 0;
  padding-top: 66%;
  position: relative;
}
.vis-pager .inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.vis-slider .inner p {
  padding: 0;
  line-height: 1;
}
.vis-slider .inner p em {
  display: block;
  font-size: .875em;
  padding: .875em .875em 0;
  color: var(--mer-blue);
  line-height: 1.2;
}
.vis-pager .splide__track--nav>.splide__list>.splide__slide, .vis-pager .splide__track--nav>.splide__list>.splide__slide:hover {
  opacity: .7;
  transition: opacity 0.25s ease;
}
.vis-pager .splide__track--nav>.splide__list>.splide__slide.is-active {
  border-color:var(--mer-blue); /*temp option*/
  opacity: 1;
}
.vis-slider .splide__arrows:not(.unstyled) .splide__arrow {
  width: 1.625rem;
  height: 1.625rem;
}
.vis-slider .splide__arrows:not(.unstyled) .splide__arrow--prev {
  left: -2.75rem;
}
.vis-slider .splide__arrows:not(.unstyled) .splide__arrow--next {
  right: -2.75rem;
}
.pslide-wrap .splide__arrows:not(.unstyled) .splide__arrow:disabled {
  pointer-events: none;
}
/* .vis-pager .splide__track--nav>.splide__list>.splide__slide.is-active::after {
  content: " ";
  top: calc(100% + 1em);
  height: 1px;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: var(--mer-blue);
} */
.tabs {
  padding-top: 3.375em;
  display: flex;
  margin: 0;
}
.tabs .trig {
  padding: 0 1.75em 0 0;
  width: 31%;
}
.tabs .bod {
  width: 69%;
  padding: 0;
  min-height: 100%;
  overflow: hidden;
  background:rgba(0, 24, 56, .03);
}
.tabs .trig ul li {
  list-style: none;
}
.tabs .trig ul {
  padding: 0;
}
.tabs .trig li {
  font-size: 1.375em;
  padding: 0;
  line-height: 1;
}
.tabs .trig li:not(:last-of-type) {
  padding-bottom: .25em;
}
.tabs .trig a {
  display: block;
  padding: .3125em .6em;
  min-height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  text-decoration: none;
  font-family: var(--mer-fancy);
  color: var(--mer-blue);
  transition: color, background-color 0.25s ease;
}
.tabs .trig a:hover {
  background-color: #eee;
}
.tabs .trig .active>a {
  color: #fff;
  background-color: var(--mer-dblue);
  font-weight: 600;
}
.tab ul {
  padding-top: 0;
}
.tab ul:not(:last-child) {
  padding-bottom: 2em;
}
.tab ul:last-child {
  padding-top: 2em;
}
.tab li, .tab p strong {
  color: var(--mer-blue);
  font-weight: 600;
}
.tab li {
  padding-bottom: 1.5em;
}
li {
  break-inside: avoid-column;
}
.tab.li-min li {
  padding-bottom: .5em;
}
.tab li:last-of-type {
  padding-bottom: 0;
}
.tab.ul-dub ul {
  column-count: 2;
  column-gap: 2em;
  padding-top: 2em;
  padding-bottom: 0;
}
.tab .btn-wrap {
  padding-top: .5em;
}
.tabs .tab {
  display: none;
  padding: 2em;
}
.tabs .tab.active {
  display: block;
}
.tabs .fly-out {
  animation: tab-out .4s ease-in forwards;
}
.tabs .fly-in {
  opacity: 0;
  transform: translateX(100%);
  animation: tab-in .4s ease-out forwards;
}
@keyframes tab-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes tab-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.legal h2 {
  font-size: 1.125em;
  padding-bottom: .25em;
  font-weight: 700;
}
.legal p a {
  color: var(--mer-blue);
}
.sres-outer .banner {
  min-height: 14em;
}
.sres-outer .banner .width {
  justify-content: flex-end;
  padding-bottom: 0;
  bottom: -1.75em;
  max-width: 41.375em;
}
.sres-outer h1 {
  text-align: center;
  font-weight: 400;
  padding-bottom: .64em;
}
.sres-main .width {
  padding-bottom: 2em;
}
.sres-main .term {
  text-align: center;
  padding: 5em 0 3.5em;
}
.sres h2 {
  font-weight: 500;
  font-size: 1.5em;
  padding-bottom: .5em;
}
.sres h2 a {
  text-decoration: none;
  color: var(--mer-blue);
}
.sres h2 a:hover {
  text-decoration: underline;
}
.sres .btn-wrap {
  padding-top: 1em;
}
.sres hr {
  height: 4px;
  border-radius: 4px;
  border:0;
  margin: 1.5em 0;
  background: linear-gradient( 180deg , rgba(231, 237, 242, 1) 0% , rgba(245, 247, 250, 1) 100% );
}
.smover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap:1em;
  align-items: center;
  padding-top: 1.125em;
}
.smover .btn-wrap {
  padding-top: 0;
}
.no-res {
  padding-top: 3.125em;
  padding-bottom: 8em;
}
.no-res svg {
  margin-bottom: 2em;
}
.no-res h2 {
  padding-bottom: .125em;
}
.grecaptcha-badge {
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  bottom: 5em;
}
.form-present .grecaptcha-badge {
  opacity: 1;
  visibility: visible;
}
.outer-1130 .footer-pre .width, .outer-764 .footer-pre .width, .outer-939 .footer-pre .width {
  padding-top: 2em;
}
.outer-1147 .footer-pre .width {
  padding-top: 1em;
}
/*-------------END MISC----------------*/
/*-------------CAROUSEL----------------*/
.bxslider1 .slide {
  padding: 0 3em 1em 3em;
}
.bx-wrapper {
  position: relative;
}
.bx-controls-direction {

}
.next-bg, .prev-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.next-bg, .prev-bg {
  height: 2em;
  width: 2em;
}
.next-bg {
  right: 0;
}
.prev-bg {
  left: 0;
}
.bx-prev, .bx-next {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left:0;
}
.bx-prev::after, .bx-next::after {
  content: " ";
  width: 58%;
  height: 58%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-right: solid 3px #454545;
  border-bottom: solid 3px #454545;
}
.bx-prev::after {
  left: .9em;
  transform: rotate(135deg);
}
.bx-next::after {
  right: .9em;
  transform: rotate(-45deg);
}
.bx-prev:hover::after {
  transform: translateX(-.4em) rotate(135deg);
}
.bx-next:hover::after {
  right: .9em;
  transform: translateX(.4em) rotate(-45deg);
}
.bx-pager {
  text-align: center;
  padding-top: .6em;
}
.bx-pager-item {
  display: inline-block;
}
.bx-pager-item a {
  /*rem for font size 0*/
  display: block;
  width: .625rem;
  height: .625rem;
  text-decoration: none;
  font-size: 0;
  border: solid 1px #666;
  background: transparent;
  margin-right: .25rem;
}
.bx-pager-item a.active {
  background-color: #666;
}
/*-------------SCROLL ANIMATIONS----------------*/
.anim {
  opacity: 0;
}
.stagger-ul.anim {
  opacity: 1;
}
.stagger-ul.anim li {
  opacity: 0;
}
.anim.from-right {
  transform: translateX(50%);
}
.anim.from-left {
  transform: translateX(-50%);
}
.from-right.in-view {
  animation: origin-right 1s ease-out forwards;
}
.from-left.in-view {
  animation: origin-left 1s ease-out forwards;
}
.fade.in-view, .stagger-ul.in-view li {
  animation: origin-default .85s ease-out forwards;
}
@keyframes origin-right {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes origin-left {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes origin-default {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (min-width: 981px) {
  .anim.del1 {
    animation-delay: .35s;
  }
  .anim.del2 {
    animation-delay: .7s;
  }
  .anim.del3 {
    animation-delay: 1.15s;
  }
  .anim.del4 {
    animation-delay: 1.4s;
  }
  .anim.del5 {
    animation-delay: 1.65s;
  }
  .pscroll>* {
    transform:translateY(-1rem); /*offset scroll effect*/
  }
}
/*-------------PAGE: HOME----------------*/
.hbanner {
  position: relative;
}
.hbanner .counter {
  display: none;
}
.hbanner .btn-next {
  position: absolute;
  width: 2.375rem;
  bottom: 2.25em;
  z-index: 4;
  left: calc(50% + 38.875em);
  padding-top: 0;
}
.btn-next a {
  width: 2.375rem;
  height: 2.375rem;
  display: inline-block;
  border: solid 1px var(--mer-nblue);
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
  background: url('img/icons/aright-w.svg') no-repeat center;
  background-size: 50% auto;
  transform:rotate(90deg);
  text-decoration: none;
}
.btn-next a:hover {
  border-color: #fff;
  background-color: var(--mer-nblue);
}
.width.hpage-wrap {
  padding: 0;
  z-index: 2;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
/* .sproject .width.hpage-wrap {
  margin-top: -8.65em;
} */
.hpager {
  max-width: 862px;
}
.hpager .inner {
  padding:1.125em 1.5em 2.125em 1.875em;
  background: rgba(255, 255, 255, 0);
  max-width: 282px;
}
.hpager .splide__track--nav>.splide__list>.splide__slide.is-active {
  border-color:transparent;
  background: rgba(255, 255, 255, .3);
}
.hpager .inner p {
  font-size: .875em;
  line-height: 1.4;
}
.hpager .inner p strong {
  font-size: 1.14em;
  font-family: var(--mer-fancy);
  font-weight: 700;
}
.sproject .hpager .inner {
  min-height: 8.25em;
}
.hslider .inner {
  position: relative;
  z-index: 1;
}
.hslider .inner::before, .hslider .inner::after {
  position: absolute;
  content: " ";
  width: 100%;
  left: 0;
  z-index: 1;
}
.hslider .inner::before {
  top: 0;
  height: 17.36vw;
  background: linear-gradient(180deg,
  rgba(0, 24, 56, 1) 0%,
  rgba(0, 24, 56, 0) 100%);
}
.hslider .inner::after  {
  height: 10vw;
  bottom: 0;
  background: linear-gradient( 180deg , rgba(0, 24, 56, 0) 0% , rgba(0, 24, 56, 1) 100% );
}
.hslider .dimmer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(31, 31, 31, .5);
  z-index: -2;
}
.hslider .width {
  height:55vw;
  padding: 3em 0 6.125em;
  max-height:52.5em; /*840*/
  z-index: 2;
  display:flex;
  flex-direction:column;
  justify-content: center;
}
.hslider .splide__pagination {
  bottom: 1em;
  position: absolute;
}
.hslider h1, .hslider h2 {
  font-weight: 900;
  font-size: 3.75em;
  line-height: 1.25;
  padding-bottom: 1em;
}
.hslider .first p {
  font-family: var(--mer-fancy);
  font-size: 2em;
  font-weight: 600;
  line-height: 1.3;
  border-left:solid 1px var(--mer-yellow);
  padding-left:.75em;
  margin-left:1em;
}
.hslider h1, .hslider h2, .hslider {
  color:#fff;
}
.hslider .last p {
  font-size: 1.5em;
  line-height: 1.4;
  font-weight: 500;
}
.hslider .column .btn-wrap {
  padding-top: 2.625em;
}
.home1 .width {
  padding-bottom: 3.125em;
}
.home1 .first .indent {
  padding-left: 1.25em;
}
.home1 .last>div:nth-child(2) img, .img-frame img {
  border:solid .75em #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
  z-index: 1;
  position: relative;
}
.home1 .last>div:nth-child(2) img {
  margin-left: 3em;
  margin-top: -1em;
}
.home1 .stats ul li {
  list-style: none;
}
.home1 .stats ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  max-width: 42em;
  margin-right: 4.625em;
  margin-left:auto;
  column-gap: 1em;
}
.home1 .stats li {
  font-size: 1.25em;
  line-height: 1.35;
  font-family: var(--mer-fancy);
  color: var(--mer-blue);
  font-weight: 500;
}
.home1 .stats li strong {
  font-family: var(--mer-reg);
  font-size: 2.4em;
  font-weight: 500;
  display: block;
  margin-left: -.2em;
  line-height: 1.1;
}
.home1 .stats strong em {
  font-style: normal;
  color: var(--mer-yellow);
}
.vid-full .vid-fit {
  padding-top: 40%;
  width: 100%;
  height: 0;
  position: relative;
}
.home2.vid-full .vid-fit {
  padding-top: 28%;
}
.vid-full .vid-fit video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  object-position: center;
}
.h2-detail h2, .location .desc {
  position: relative;
}
.h2-detail h2::before, .location .desc::before {
  content: " ";
  right: calc(100% + 1.25rem);
  height: 3.125rem;
  width: 3.125rem;
  background: var(--mer-yellow);
  opacity: .75;
  position: absolute;
  top: .3125em;
}
.home3 .sub1 h2 {
  margin-left:-1.375rem;
}
.home3 .sub1 .lim {
  padding-left: 1.375em;
}
.home3 .pscroll {
  position: absolute;
  top: 3em;
  right: -3em;
}
.home3 .sub2 h3 {
  padding-bottom: .65em;
}
.home3 .pscroll p, .extrap p, .values li {
  font-weight: 100;
  font-size: 8.75em;
  line-height: .85;
  color:#808285;
  opacity: .19;
  text-transform: uppercase;
}
.extrap em {
  display: inline-block;
  font-style: normal;
  padding-left: .42em;
}
.home3 .sub2 {
  padding-top: .75em;
}
.home3 .sub2 .row {
  row-gap:4em;
  display: flex;
  flex-wrap: wrap;
}
.home3 .icon-box {
  position: relative;
  min-height: 16em;
  max-width: 26em;
  padding: 2em 2.25em 2.625em 2.25em;
  background: var(--mer-dblue);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.icon-box strong {
  color: var(--mer-yellow);
  font-weight: 400;
}
.icon-box .btn-wrap {
  padding-top: 1.125em;
}
.home3 .icon-box>* {
  position: relative;
  z-index: 1;
}
.home3 .icon-box p {
  font-size: 1.5em;
}
.home3 .icon-box::after, .wbod .icon-box::after {
  content: " ";
  background: url('img/badge-w.svg') no-repeat center;
  background-size: contain;
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  mix-blend-mode: overlay;
  opacity: .33;
}
.home3 .icon-box::after {
  width: 75%;
  height: 75%;
  right: 0;
  left: 0;
}
.wbod .icon-box::after {
  width: 12.5em;
  height: 12.5em;
  right: 1.875em;
  z-index: 0;
}
.home4 .sub1 {
  padding: 0 0 1.25em;
}
.home4 .sub1 h2 {
  padding-bottom: 0;
}
.home4 .sub1 .btn-wrap {
  padding-top: 1em;
}
.home4 .sub2 {
  padding: 0 0 2.25em;
}
.home5::after {
  content: " ";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  background: rgba(0, 0, 0, .25);
}
.home5 .width {
  z-index: 2;
  padding: 4.375em 0 5.125em;
}
.home5::before, .blog-end::before {
  content: " ";
  position: absolute;
  width: 18.5em;
  height: 25em;
  top: 0;
  right: 0;
  background: url('img/badge-w.svg') no-repeat left center;
  background-size: auto 100%;
  z-index: 1;
  bottom: 0;
  margin: auto;
  mix-blend-mode: overlay;
  opacity: .43;
}
.home5.mod::after {
  background-color: var(--mer-dblue);
  opacity: .4;
}
.home5 .box h2 {
  padding-bottom: .64em;
}
.home5 .box {
  position: relative;
  margin-left: -3.75em;
  padding: calc(6% + 1em);
  max-width: 39.375em;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.home5 .box>* {
  position: relative;
  z-index: 2;
}
.home5 .box::after {
  content: " ";
  border:1em solid rgba(128, 130, 133, 0.09);
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  top:0;
  left: 0;
  position: absolute;
  opacity: .78;
  background-color: rgba(255, 255, 255, 1);
  z-index: 0;
}
.home5 .box p {
  font-size: 1.5em;
  font-weight: 500;
  color: #1a1a1a;
}
.home5 .box .btn-wrap {
  padding-top: 3em;
}
.home5 .last p {
  color: #fff;
  line-height: 1.32;
  text-shadow: 0 8px 12px rgba(0, 0, 0, 1);
}
.home5 .last p strong {
  font-size: 1.78em;
  font-weight: 600;
  font-family: var(--mer-fancy);
  padding-bottom: 1em;
  display: block;
}
.home5 .last em {
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 981px) {
  .hslider .first {
    padding-right: 3em;
  }
  .hslider .last, .nopl {
    padding-left: 0;
  }
  .nopr {
    padding-right: 0;
  }
  .home3 .sub2 {
    padding-left: 1.375em;
  }
  .home4 .sub1 .last {
    padding-right:0;
    text-align: right;
  }
  .home4 .sub1 .first {
    padding-left: 3em;
  }
  .home5 .last {
    text-align: right;
    padding-left: 0;
  }
  .home5 .row {
    display: flex;
    align-items: flex-end;
  }
  .footer-pre .btn-right, .hslider .last p {
    text-align: right;
  }
  .home1 .first .indent {
    max-width: 36.5em;
  }
  .home3 .sub1 .lim p {
    max-width: 36em;
  }
  .home3 .sub1 .lim {
    max-width: 50em;
  }
}
/*-------------CHILD MAIN----------------*/
.banner h1 {
  color: #fff;
  max-width: 15em;
}
.banner>.width {
  height: 100%;
  max-width: 69.5em;
  padding: 7em 0 3.5em;
}
.banner .width, .banner .twrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.twrap {
  position: relative;
  min-height: 9.375em;
}
.twrap .blur-box {
  width: 9.375em;
  top: 0;
  bottom: 0;
  left: -3.375em;
  position: absolute;
  height: 9.375em;
  z-index: -1;
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.crumb-bar {
  background-color: rgba(0, 24, 56, .65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 3;
}
.crumb-bar .width {
  max-width: 85.5em;
  padding: 1.125em 0;
}
.bcrumb {
  font-family: var(--mer-fancy);
  font-weight: 600;
}
.bcrumb a {
  text-decoration: underline;
}
.bcrumb a, .bcrumb {
  color: #fff;
}
.bcrumb .gap {
  display: inline-block;
  margin:0 .3125em;
}
.bcrumb a:hover, .bcrumb .gap {
  color: var(--mer-yellow);
}
main.child .bcrumb .gap[data-for="1"], main.child .bcrumb a[data-depth="1"] {
  display: none;
}
.cmain, .dotted, .employee .bod::after, .con1::after, .location .bod::after {
  background: url('img/dots-top-right.jpg') no-repeat top right;
  background-size: auto 25em;
}
.dotted {
  z-index: 0;
}
.cmain .width {
  max-width: 83em; /*1328*/
  padding: 0 0 5.25em 0;
}
.cmain aside {
  position: relative;
}
.cmain .left {
  margin-top: 2.125em;
  padding: 2.125em 0 2.125em 0;
  max-width: 22em;
  margin-bottom: 2em;
}
.cmain .left .sizer {
  position: relative;
  z-index: 1;
}
.cmain .left::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background: rgba(0, 24, 56, .03);
}
.sbnav ul li {
  list-style: none;
}
.sbnav ul {
  padding: 0 0 0 .375em;
}
.sbnav li {
  font-size: .875em;
  font-weight: 500;
  padding-bottom: 0;
}
.sbnav li:not(:last-of-type) {
  margin-bottom: .125em;
}
.sbnav li a {
  color: var(--mer-blue);
  text-decoration: none;
  display: block;
  line-height: 1.2;
}
.sbnav li a:hover {

}
.sbnav .commons a {
  padding: .62em .5em .62em .25em;
}
.sbnav .menu a {
  padding: .52em .25em;
  position: relative;
}
.sbnav li a:hover {
  background-color: rgba(0, 24, 56, .1);
}
.sbnav .commons .current_page_item>a {
  color: #fff;
}
.sbnav .commons .current_page_item {
  position: relative;
  z-index: 0;
}
.sbnav .commons .current_page_item::after, .sbnav .commons .current_page_item::before {
  content: " ";
  position: absolute;
  height: 100%;
}
.sbnav .commons .current_page_item::before {
  background: url('img/icons/arr-rt.svg') no-repeat center;
  background-size: 80% auto;
  width: 1em;
  height: 1em;
  right: calc(100% + 1em);
  bottom: 0;
  margin: auto;
  z-index: 0;
  top: .125em;
}
.sbnav .commons .current_page_item::after {
  width: 100vw;
  background: var(--mer-dblue);
  right: 0;
  z-index: -1;
  top: 0;
}
.sbnav hr {
  margin: 1.75em 1em 2em -1em;
}
.sbnav h3 {
  /* font-size: .875em; */
  font-size: 1.125em;
  color: var(--mer-blue);
  font-family: var(--mer-reg);
  font-weight: 700;
  padding-bottom: .75em;
}
.sbnav h3 a {
  text-decoration: none;
  color:inherit;
}
.sbnav .menu a::after, .dn-icon::after {
  content: " ";
  display: inline-block;
  position: absolute;
  height: .75em;
  width: .75em;
  transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  margin: auto 0 auto .375em;
}
.dn-icon::after {
  transform:rotate(0);
}
.dn-icon.active::after {
  transform:rotate(180deg);
}
.sbnav .menu .current_page_item>a, .sbnav .commons li.top>a {
  font-weight: 700;
}
.cmain .mid {
  padding-bottom: 2.5em;
}
.cmain .mid h2 {
  font-size: 2em;
  font-weight: 500;
  padding-bottom: 1.3em;
}
.cmain .mid h3, .cmain .mid li {
  color: var(--mer-blue);
}
.cmain .mid h4 {
  font-size: 1.125em;
  font-weight: 600;
  padding-bottom: 1.6em;
}
.cmain .mid .bod ul {
  padding-top: 0;
  margin-top: -1em;
}
.cmain .mid .bod ul:last-child {
  margin-top: 0;
  padding-top: .875em;
}
.cmain .mid .bod ul:not(:last-child) {
  padding-bottom: 2.5em;
}
.cmain .mid .bod ul:not(:last-of-type) {
  padding-bottom: 1.75em;
}
.cmain .mid .bod ul ul, .cmain .mid .bod ul ul:last-child {
  margin-top: 0;
  padding: .125em 0 .25em 1.25em;
}
.cmain .mid .bod li {
  padding: 0 0 .125em .5em;
  line-height: 1.4;
}
.cmain .mid .bod li li {
  font-size: 1em;
  padding-left: 0;
  text-indent: -.25em;
}
.cmain .mid .bod li li, .cmain .mid .bod li em {
  font-weight: 400;
  color: #1a1a1a;
}
.cmain .mid .bod li em {
  font-style: normal;
}
.cmain .mid .bod li li::marker {
  font-size: 85%;
}
.cmain .mid .bod li {
  font-weight: 600;
}
.cmain .mid .bod h3 {
  font-size: 1.5em;
  font-family: var(--mer-reg);
  font-weight: 500;
  padding-bottom: .5em;
}
.cmain .rel-bot {
  padding: 4.25em 1em 0 1em;
}
.cmain .rel-bot h3 {
  font-size: 1.25em;
  font-weight: 500;
  padding-bottom: .875em;
}
ul.pills li {
  list-style: none;
}
ul.pills {
  padding: .5em 0 0 1.375em;
  /* display: flex;
  flex-wrap: wrap; */
  column-gap: 1.125em;
  row-gap:1em;
}
.pills li {
  padding: .875em 0 0;
  font-size: 1em;
}
.pills a {
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  padding: .25em .5em .375em;
  color: var(--mer-blue);
  line-height: 1.2;
  display: inline-block;
  border-radius: .375em;
  background-color: rgba(121, 178, 255, .2);
}
.pills a:hover {
  color: #fff;
  background-color: var(--mer-blue);
}
.poc.box {
  max-width: 28em;
  position: relative;
  z-index: 4;
  margin-bottom: 2.75em;
}
.poc.box .inner {
  background:var(--mer-dblue);
  color: #fff;
  padding: 1.25em 1.25em 2em 2em;
}
.poc.box h2 {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 1.25em;
}
.poc.box .bod {
  display: flex;
  flex-wrap: wrap;
}
.poc.box h3 {
  font-size: 1.25em;
  font-weight: 700;
  font-family: var(--mer-reg);
  padding-bottom: 0;
  width: 100%;
}
.poc.box p, .poc .ph-link {
  font-family: var(--mer-fancy);
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.2;
  width: 100%;
}
.poc .thumb {
  width: 32%;
}
.poc .thumb.empty {
  background: url('img/icons/person.svg') no-repeat center;
  background-color: rgba(255, 255, 255, .35);
  background-size: 70% auto;
}
.poc .detail {
  width: 68%;
  padding-left: 1.25em;
  display: flex;
  flex-wrap: wrap;
  row-gap:.375em;
}
.poc .ph-link {
  display: block;
  color: #fff;
  text-decoration: none;
}
.poc .ph-link:hover {
  color: var(--mer-yellow);
}
.poc p.job {
  font-size: 1em;
}
.poc a.icon:not(:last-of-type) {
  margin-right: .75em;
}
.poc a.icon {
  border: solid 1px var(--mer-yellow);
  width: 2.25em;
  display: inline-block;
  border-radius: 50%;
  height: 2.25em;
  overflow: hidden;
  margin-top: .3125em;
}
.poc a.icon:hover {
  border-color: #fff;
}
.poc .ln-link {
  background: url('img/icons/linkedin-simp-y.svg') no-repeat center;
  width: 40% auto;
}
.poc .ln-link:hover {
  background-image: url('img/icons/linkedin-simp-w.svg');
}
.poc .em-link {
  background: url('img/icons/email-y.svg') no-repeat center;
  width: 40% auto;
}
.poc .em-link:hover {
  background-image: url('img/icons/email-w.svg');
}
.poc a.icon span, .ln-link span {
  font-size: 0;
}
.cmain .dl-wrap, .rel-side {
  max-width: 16.125em;
}
.rel-side:not(:last-child) {
  padding-bottom:2.5em;
}
.cmain .dl-wrap {
  padding-bottom: 2.75em;
}
.cmain .rel-side:first-child, .cmain .dl-wrap:first-child {
  padding-top: 4.25em; /*if nothing else in sidebar*/
}
.dl-wrap ul li {
  list-style: none;
}
.dl-wrap ul {
  padding: 0 0 0 .75em;
}
.dl-wrap li {
  padding: 0;
  min-height: 1.875em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1em;
}
.dl-wrap li:not(:last-of-type) {
  margin-bottom: .5em;
}
.dl-wrap a, .btn-dl a {
  font-family: var(--mer-fancy);
  font-weight: 600;
  padding-left: 2.252em;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  color: var(--mer-blue);
  text-decoration: none;
}
.dl-wrap a:hover, .stack a:hover, .btn-dl a:hover {
  color: var(--mer-dblue);
}
.dl-wrap a::after, .btn-dl a::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.6125em;
  height: 1.6125em;
  border-radius: 50%;
  border: solid 1px var(--mer-nblue);
  background: url('img/icons/download-d.svg') no-repeat center;
  background-size: 78% auto;
}
.btn-dl.white a::after {
  background-image: url('img/icons/download-w.svg');
}
.dl-wrap a:hover::after, .btn-dl a:hover::after {
  border-color: var(--mer-dblue);
}
.btn-dl.mail a::after {
  background-image: url('img/icons/email-b.svg');
  background-size: auto 40%;
}
.btn-dl.white a:hover::after {
  border-color: #fff;
}
.dl-wrap h2, .rel-side h2 {
  font-size: 1.5em;
  font-weight: 500;
  padding-bottom: .5em;
}
.rel-side h2 {
  position: relative;
  color: var(--mer-dblue);
  padding: .25em .5em;
  z-index: 0;
}
.rel-side h2::after {
  content: " ";
  width: 50vw;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 24, 56, .2);
  position: absolute;
  z-index: -1;
}
ul.stack li {
  list-style: none;
}
ul.stack {
  padding: 1.375em 0 0 1.375em;
}
.stack li {
  font-size: 1.25em;
  line-height: 1.2;
  font-family: var(--mer-fancy);
  font-weight: 500;
}
.stack li:not(:last-of-type) {
  padding-bottom: .75em;
}
.stack a {
  color: var(--mer-blue);
}
.child-slide {
  position: relative;
}
.child-slide::after {
  content: " ";
  width: 100%;
  height: calc(100% - 3.25em);
  top: 0;
  left: 0;
  z-index: 0;
  background: var(--mer-dblue);
  position: absolute;
}
.child-slide .width {
  z-index: 2;
  padding: 1.75em 0 0;
}
.child-slide h2 {
  color: #fff;
  padding-bottom: 0;
}
.child-slide .intro {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1em;
  row-gap:.75em;
  column-gap:1.5em;
  max-width: 46.25em;
  justify-content: space-between;
}
.child-slide .intro .btn-wrap {
  padding-top: 0;
}
.no-rel-gap {
  height: 6em;
}
.basic1 .width, .legal .width {
  padding-top: 5.5em;
}
.h2-sm h2::before, .basic1 h2::before {
  top: -.125em;
  right: calc(100% + 2.25rem);
}
.what1.basic1 h2::before {
  top: .125em;
}
.what1 .width {
  padding-top: 3em;
}
.what1 .lim {
  max-width: 52em;
  padding-bottom: 2em;
}
.basic1 h2, .h2-sm h2 {
  font-size: 2em;
  font-weight: 500;
}
.what1 p strong {
  color: var(--mer-blue);
  font-family: var(--mer-fancy);
  font-size: 1.1em;
  font-weight: 600;
  padding-bottom: .375em;
  display: block;
}
.what2 .width {
  padding: 0 0 5em;
}
.what2 h2 {
  padding-bottom: 1em;
}
.what2 .grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.625em;
}
.what2 .tile {
  width: 33.3333%;
  padding: .625em;
}
.tile a {
  display: block;
  line-height: 1;
  text-decoration: none;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 100%;
}
.tile a::before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(42, 42, 42, .4);
  position: absolute;
}
.tile .thumb {
  z-index: 0;
}
.tile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tile a:hover .thumb, .ptile a:hover .thumb, .itile a:hover img, .itile a:hover .no-img {
  transform:scale(1.075);
}
.tile .inner, .tile .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tile .inner {
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(3.75em);
}
.tile a:hover .inner {
  transform: translateY(0);
}
.tile h3 {
  color: #fff;
  padding: 1.5rem;
  max-width: 10em;
}
.tile .cta-wrap, .ptile .cta-wrap {
  padding: 1em 1.25em;
  display: block;
}
.tile .cta-wrap {
  background-color: rgba(0, 24, 56, .8);
}
.tile .cta, .ntile .cta, .ptile .cta {
  font-size: 1em;
  padding-right: 2.25em;
  line-height: 1.75;
}
.tile .cta::after, .ntile .cta::after, .ptile .cta::after {
  width: 1.625em;
  height: 1.625em;
}
.what3 {
  background-color: var(--mer-dblue);
}
.what3 .width {
  padding: 5.125em 0;
}
.what3 .lim {
  max-width: 40em;
}
.what3 h2, .what3 p {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.16;
}
.what3 h2 {
  color: var(--mer-yellow);
}
.what3 .btn-wrap {
  padding-top: 1.25em;
}
.what3 .width::after {
  content: " ";
  top: 0;
  right: 0;
  width: 24.5em;
  max-width: 50%;
  height: 100%;
  position: absolute;
  background: url('img/badge-w2.svg') no-repeat center center;
  background-size: 100% auto;
  opacity: .33;
  mix-blend-mode: overlay;
  z-index: 0;
}
/*--child desk only--*/
@media (min-width: 981px) {
  .cmain .width { /*1224 true*/
    padding-right: 6.5em; /*right extra gap*/
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .cmain .left {
    width: 14.625em; /*234*/
  }
  .sbnav .commons li.top {
    margin-left: -6px;
  }
  .cmain .mid {
    width: calc(75.5% - 14.625em);
    padding: 4.25em 3.25em 0;
  }
  .cmain .right {
    width: 24.5%;
  }
  .poc.box {
    margin: -11.375em 0 2.75em -1.5em;
  }
  .cmain .dl-wrap, .rel-side {
    margin-left: auto;
  }
  .what3 .btn-wrap {
    text-align: right;
  }
  .sbnav h3 a {
    pointer-events: none;
  }
  .sbnav h3 a::after, .mb-ctog {
    display: none;
  }
  .sbnav ul { /*force visiblity if passing breakpoint during collapse*/
    display: block !important;
  }
}
/*-------------PAGES: CAREERS----------------*/
/*---part of handoff---*/
.abar {
  box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.15);
  background-color: rgba(247, 248, 249, 1);
  z-index: 5;
  position: relative;
}
.abar .width {
  padding: 0;
}
.abar .flexer, .abar .aform form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap:1em;
}
.abar h2 {
  font-size: 1.5em;
  font-weight: 500;
  padding-bottom: 0;
}
.abar .left {
  padding:1.375em 0;
  width: 11em;
}
.abar .left p {
  color: var(--mer-blue);
  font-family:var(--mer-fancy);
  font-weight: 600;
  line-height: 1.4;
}
.abar .aform form {
  column-gap: 4.25%;
}
.abar form label {
  display: none;
}
.abar .aform {
  width: calc(100% - 11em);
  position: relative;
  max-width: 51.875em; /*830*/
  padding: 1.875em 0 1.875em 2em;
}
.abar .aform .etext {
  position: absolute;
  right: 0;
  bottom: .65em;
  color: red;
  font-size: .875em;
}
.abar input[type=text] {
  border: 1px solid rgba(0, 24, 56, .5);
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  color: var(--mer-dblue);
  padding: .588em 1.25em;
  line-height: 1.2;
}
.abar #aloc {
  background: url('img/icons/loc-arrow.svg') no-repeat calc(100% - 1em) center #fff;
  background-size: 1.25em auto;
  padding-right: 2.875em;
}
.abar form *::-webkit-input-placeholder {
  color: #808285;
  font-weight: 400;
}
.abar form *::-moz-placeholder {
  color: #808285;
  font-weight: 400;
}
.abar form *:-ms-input-placeholder {
  color: #808285;
  font-weight: 400;
}
.abar form *:-moz-placeholder {
  color: #808285;
  font-weight: 400;
}
.abar input[type=submit] {
  background: var(--mer-dblue);
  color: #fff;
  font-family: var(--mer-fancy);
  text-transform: none;
  font-size: 1em;
  font-weight: 600;
  padding: .65em;
  transition: all 0.25s ease;
}
.abar input[type=submit]:hover {
  background: var(--mer-blue);
}
@media (min-width: 981px) {
  .ab-fixed .mast {
    opacity: 0;
    visibility: hidden;
  }
  .ab-fixed .abar {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 102;
    animation: ab-fade .35s ease-out forwards;
  }
  .ab-fixed .banner {
    margin-bottom:100px; /*make up for abar removal, prevent page shitf*/
  }
  @keyframes ab-fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
@media (max-width: 980px) {
  .abar .flexer {
    flex-wrap: wrap;
    padding: 1.5em 0;
  }
  .abar .left, .abar .aform {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 661px) {
  .aform .field {
    width: calc(45.75% - 4em);
  }
  .aform .field.last {
    width: 8.125em;
  }
}
@media (max-width: 660px) {
  .abar .aform form {
    flex-wrap: wrap;
  }
  .aform .field {
    width: 100%;
  }
}
/*-----end hand off-----*/
.car1 .width {
  padding: 5em 0;
}
.box.detail {
  background:rgba(0, 24, 56, .03);
  padding: 1.125em 1.625em 1.625em 2em;
  max-width: 25.5em;
}
.box.detail ul li {
  list-style: none;
}
.box.detail ul {
  padding: 1.5em 0 0 1.75em;
}
.box.detail li {
  padding-bottom: .875em;
  font-weight: 500;
}
.box.detail a {
  color: var(--mer-blue);
  text-decoration: none;
}
.arr-links a {
  position: relative;
  padding-right: 1.125em;
  display: inline-block;
}
.arr-links a::after {
  content: " ";
  width: .7em;
  height: .7em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(270deg);
}
.box.detail a:hover {
  color: var(--mer-dblue);
  text-decoration: underline;
}
.car2 .width {
  padding: 2.5em 0 5em;
}
.car4 .img-frame {

}
.quote p strong {
  font-size: 1.78em;
  font-weight: 600;
  line-height: 1.3;
}
.quote p:nth-child(1) {
  padding-bottom: .5rem;
}
.quote p em {
  font-size: 1.22em;
  font-weight: 500;
  font-style: normal;
}
.car4 .quote, .quote.rt-feat {
  max-width: 27em;
}
.car4 .quote {
  padding-bottom: 3.125em;
}
.car5 .width {
  padding-top: 1.5em;
}
.splide__arrows:not(.unstyled) .splide__arrow {
  display: block;
  width: 2.375em;
  height: 2.375em;
  margin: auto;
}
.splide__arrows:not(.unstyled) .splide__arrow svg {
  display: none;
}
.splide__arrows:not(.unstyled) .splide__arrow::after {
  content: " ";
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border: solid 1px var(--mer-nblue);
  background: url('img/icons/aright-b.svg') no-repeat center;
  background-size: 40% auto;
  transition: all 0.25s ease;
}
.splide__arrows:not(.unstyled) .splide__arrow:hover::after {
  background-color: var(--mer-nblue);
}
.child-slide .splide__arrows:not(.unstyled) .splide__arrow::after {
  background-image: url('img/icons/aright-w.svg');
}
.child-slide .splide__arrows:not(.unstyled) .splide__arrow:hover::after {
  border-color: #fff;
}
.splide__arrows:not(.unstyled) .splide__arrow--prev::after {
  transform:rotate(180deg);
}
.mer-count .splide__arrows, .mer-count #counter {
  position: absolute;
  bottom: 0;
  left: calc(100% + 1.5em);
  width: 2.875em;
}
.quote .mer-count .splide__arrows, .quote .mer-count #counter {
  top: .5em;
}
.quote .mer-count #counter {
  margin-top: 6.5em;
}
.mer-count .splide__arrows {
  height: 6.25em;
}
.mer-count .splide__arrows:not(.unstyled) .splide__arrow--prev {
  margin-bottom: .75em;
}
.mer-count .splide__arrows:not(.unstyled) .splide__arrow {
  position: relative;
  left: 0;
  right: inherit;
  top: inherit;
  bottom: inherit;
  transform:none;
}
.mer-count #counter {
  text-align: center;
  font-size: .875rem;
  color: var(--mer-dblue);
}
.ben1 .sub1 {
  padding: 5.5em 0 6.25em;
}
.app1 .sub1, .intern1 .sub1 {
  padding: 5.5em 0 4.625em;
}
.ben1 .sub2 {
  padding: 0 0 5.25em;
}
.app1 .sub2, .intern1 .sub2 {
  padding: 0 0 4.625em;
}
.ben1 .tabs .trig li:not(.active) a {
  color: #424242;
}
.app2 .width {
  padding: 0 0 5.5em;
}
.call-out .width {
  max-width: 45em;
}
.call-out.h2-sm h2 {
  font-family: var(--mer-fancy);
  padding-bottom: .25em;
}
.call-out .btn-wrap {
  padding-top: 1em;
}
.intern1 .tab4 p:first-child {
  padding-bottom: .25em;
}
.edev1 .width {
  padding: 5.5em 0;
}
.edev2 .width {
  padding: .75em 0 2.5em;
}
.edev2 ul {
  padding-top: 0;
}
.edev2 li {
  padding-bottom: .25em;
}
.edev2 .indent {
  padding-top: 2em;
}
.edev2 p strong {
  font-weight: 600;
}
.edev3 .tab1 p:nth-child(2) {
  padding-bottom: 0;
}
.edev4 .width {
  padding-bottom: 5em;
}
.vfill .vid-outer, .vfill .vid-fit {
  width: 100%;
  height: 100%;
}
.vfill video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.who1 .width {
  padding-top: 3.125em;
}
.who1 .box {
  max-width: 25.5em;
  min-height: 100%;
}
.who2 .sub2 .last em {
  font-size: 1.78em;
  line-height: .6;
  font-style: normal;
}
.who2 .sub2 h2 {
  padding-bottom: 1em;
}
.who2 .sub1 {
  padding-bottom: 0;
}
.who2 .sub2 {
  padding: 2.5em 0 0;
}
.values ul {
  padding: 0;
}
.values ul li {
  list-style: none;
}
.values li {
  font-size: 5.42em;
  display: flex;
  align-items: center;
}
.values img {
  margin: auto;
}
.values strong {
  width: 1.2em;
}
.values em {
  width: calc(100% - 1.2em);
  font-style: normal;
}
.giving1 .width {
  padding-bottom: 2.25em;
}
.giving2a .width {
  padding: 2em 0;
}
.giving2a h2 {
  padding-bottom: 0;
}
.giving2 .width {
  padding: 3em 0;
}
.giving3 .sub1 {
  padding-bottom: 2em;
}
.giving3 .sub2 {
  padding-bottom: 5em;
}
#post-1034 .crumb-bar, #post-1034 .banner .width { /*contact hero mods*/
  display: none;
}
.con1 .width {
  padding-top: 0;
  z-index: 2;
}
.con1 .width {
  margin-top: -13.75em;
}
.cinfo {
  box-shadow: 0 40px 80px -2px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 3;
  max-width: 58.125em;
  margin: -6.25em auto 0;
  padding: 2em 1em;
  min-height: 13.75em;
  background: url('img/bg-cinfo.jpg') no-repeat top right var(--mer-dblue);
  background-size: contain;
}
.cinfo .column {
  width: 25%;
  padding: 0 1em;
}
.cinfo p {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.25;
  padding-bottom: .625em;
}
.cinfo p a {
  color: #fff;
  text-decoration: none;
}
.cinfo p em {
  font-style: normal;
  color: var(--mer-yellow);
}
.cinfo a:hover {
  color: var(--mer-yellow);
}
.con2 .width {
  padding: .5em 0 6em;
  z-index: 4;
}
.cinfo p img {
  max-width: 2.5em;
  margin: auto;
}
.cform form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.875em;
}
.cform form .half {
  width: calc(50% - .9375em);
}
.cform form>p {
  width: 100%;
}
.cform .closer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 1em;
  width: 100%;
}
.cform .closer .fine {
  font-size: .875em;
  line-height: 1.4;
}
.cform .closer .left {
  width: calc(100% - 9.5rem);
  max-width: 23em;
}
.cform .closer .left a {
  color: var(--mer-blue);
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: .75rem;
  font-family: var(--mer-reg);
  color: var(--mer-blue);
  width: calc(100% - 1.5rem);
  line-height: 1.2;
}
.wpcf7-acceptance input[type=checkbox] {
}
.wpcf7-acceptance .wpcf7-list-item {
  padding: 1em 0 0 0;
}
.wpcf7-acceptance .wpcf7-list-item>label {
  display: flex;
}
.con2 h1, .con2 .first p a {
  color: var(--mer-blue);
}
.con2 h1, .thanks h1 {
  font-size: 2em;
  font-weight: 500;
  padding-bottom: .6em;
}
.thanks h1 {
  position: relative;
}
.banner.extended {
  background: linear-gradient( 153deg , rgba(0, 52, 106, 1) 0% , rgba(0, 24, 56, 1) 100% );
  min-height: 25em;
  height: auto;
  max-height: inherit;
}
.banner.extended::before {
  display: none;
}
/* .banner.extended::after {
  height: 20em;
  background-size: 100% auto;
  background-position: top center;
} */
.banner.extended .width {
  padding: 4.375em 0;
}
.thanks {
  max-width: 30.625em;
}
.thanks p {
  color: #fff;
}
.leg1 ul {
  padding-left: 1.5em;
  padding-top: 0;
}
.leg1 li::marker {
  font-size: 85%;
  color: var(--mer-blue);
}
.leg1 li:not(:last-of-type) {
  padding-bottom: .375em;
}
.leg1.sub2.mod p {
  padding-bottom: 0;
}
.leg1.sub2.mod ul {
  padding-top: .25em;
  padding-bottom: 2em;
}
.leg1:not(.sub1) .width {
  padding: 3.125em 0;
}
.mars1 {
  z-index: 3;
}
.mars1 .width {
  padding-top: 0;
}
.mars1 .first {
  padding-top: 2em;
}
.mars1 .btn-duo {
  display: flex;
  max-width: 27.75em;
  padding:.5em 0 .5em 1.25em;
  align-items: center;
  column-gap: 1em;
  row-gap:1.5em;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.mars1 .btn-duo .btn-wrap {
  padding-top: 0;
}
.mars1 hr {
  height: .25em;
  border-radius: .25em;
  margin: 2.5em 0;
  border: 0;
  background: linear-gradient(180deg, rgba(231, 237, 242, 1) 0%, rgba(245, 247, 250, 1) 100%);
}
.mars1 .feats {
  padding: 1.5em 0 2.5em;
}
.mars1 .feats ul {
  padding: .75em 0 0 2.5em;
}
.mars1 .feats li, .mars1 .feats p strong, .mars-trio>p:last-child {
  font-family: var(--mer-fancy);
  color: var(--mer-blue);
}
.mars1 .feats li {
  font-weight: 500;
  font-size: 1.25em;
  text-indent: -.25em;
  padding-bottom: .125em;
}
.mars1 .feats li::marker {
  font-size: 82%;
}
.mars1 h3 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--mer-blue);
  font-family: var(--mer-reg);
}
.mars-trio {
  display: flex;
  flex-wrap: wrap;
  row-gap:1.75em;
  column-gap: 1.75em;
  flex-wrap: wrap;
  padding: 2em 0 0;
}
.mars-trio>p:last-child {
  font-size: .875em;
  text-align: center;
  width: 100%;
  margin-top: 2.15em;
}
.mcol {
  font-family: var(--mer-fancy);
  padding: 1.25em .25em 0 .75em;
  width: calc(33.333% - 1.66em);
  background-color: rgba(0, 24, 56, .03);
  color: var(--mer-blue);
  display: flex;
  flex-direction: column;
}
.mcol ul li {
  list-style: none;
}
.mcol ul {
  padding: 1em 0 0 0;
}
.mcol li {
  padding-left: 1em;
  font-size: .9375em;
  font-weight: 400;
  margin-bottom: .675em;
  background: url('img/icons/check.svg') no-repeat left .125em;
  background-size: 1em auto;
  padding-left: 1.125em;
  line-height: 1.1;
}
.mcol p {
  font-size: 1em;
  line-height: 1.12;
  padding-bottom: 0;
}
.mcol p:first-child {
  padding: 0 1em 2em 1em;
}
.mcol .fix-bot {
  margin-top: auto;
}
.mcol.mid .btn-dl.fix-bot a {
  text-align: left;
}
/* .mcol.mid p:last-of-type {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  padding-bottom: 1.75em;
} */
.mcol p a {
  color: var(--mer-blue);
}
.mcol .btn-wrap.white {
  background: var(--mer-dblue);
  padding: 1.5em .5em;
  text-align: center;
  margin-left: -.75em;
  margin-right:-.25em;
  width: auto;
}
.btn-dl.white a {
  color: #fff;
}
.mcol .btn-wrap.mod {
  padding-top: 2em;
  padding-bottom: 1.75em;
  text-align: center;
}
.mars1 .last .box {
  background-color: var(--mer-dblue);
  color: #fff;
  padding: 1.875em 1.875em 1.875em 2em;
  margin-bottom: 1.25em;
  max-width: 24em;
}
.mars1 .box h3 {
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: .4em;
}
.mars1 .box p {
  font-family: var(--mer-fancy);
  font-size: 1.25em;
  font-weight: 500;
}
.mars1 .box .btn-wrap {
  padding-top: 2.5em;
}
.mars1 .last .lists {
  padding: 1.875em 0 0 0;
  max-width: 17em;
}
.mars1 .lists h3 {
  padding-bottom: .75em;
}
.mars1 .lists h3:not(:first-of-type) {
  padding-top: 1.25em;
}
.mars1 .lists .btn-wrap {
  padding:0 0 1.125em 1em;
}
.mars2 .width {
  padding: 3em 0 0;
}
.mars2 .last a {
  font-weight: 700;
  color: var(--mer-blue);
}
@media (min-width:981px) {
  .car2 .last {
    padding-left: 3em;
  }
  .car4 .first {
    padding-right: 4em;
  }
  .car4 .quote, .quote.rt-feat {
    text-align: right;
    margin-left: auto;
  }
  .box.detail, .ben1 .last, .edev1 .last img, .giving1 .last img, .img-rt img, .leg1.sub2 .first, .mars1 .last .lists {
    margin-left: auto;
  }
  .ben1 .last, .app1 .last {
    padding-left: 4em;
  }
  .car2 .last {
    margin-bottom: -1em;
  }
  .intern1 .tab .btn-wrap, .who2 .sub2 .last {
    text-align: right;
  }
  .intern1 .sub1 .first {
    padding-right: 3em;
  }
  .edev2 .cblock {
    margin-left:auto;
    width: 36.625em;
    max-width: 52%;
  }
  .vfill {
    position: absolute;
    top: 0;
    height: 100%;
    max-height: 24.75em;
  }
  .edev2 .vfill-left {
    right: calc(50% + 6.75em);
    left: 0;
  }
  .giving2 .vfill-right {
    left: calc(50% + .75em);
    right: 0;
  }
  .edev2 .indent {
    padding-left: 3.125em;
  }
  .who1 .row {
    display: flex;
  }
  .who2 .last {
    padding-left: 4em;
  }
  .who5 .last  {
    padding-left: 3em;
  }
  .who3 .first {
    padding-right: 3.5em;
  }
  .con2 .first {
    padding-right: 4.5em;
  }
  .giving2 .width {
    min-height: 25em;
    display: flex;
    align-items: center;
  }
  .giving2 .cblock {
    width: 45%;
  }
  .giving3 .sub1 .last {
    padding-left: 4em;
  }
  .giving3 .sub2 .last {
    padding-right: 4em;
  }
  .thanks h1::before {
    content: " ";
    right: calc(100% + 1.75rem);
    height: 3.125rem;
    width: 3.125rem;
    background: var(--mer-yellow);
    opacity: .75;
    position: absolute;
    top: 0;
    border: 5px solid rgba(255, 255, 255, 1);
  }
  .hero-drop .gap {
    height: 5em;
  }
  .leg1.sub1 .first {
    padding-right: 5em;
  }
  .mars1 .first .lim {
    max-width: 35.5em;
  }
  .mars1 .last {
    padding-left: 2.4em;
  }
  .mars1 .last {
    margin-top: -11.375em;
    position: relative;
    z-index: 4;
  }
  .mars2 .last {
    padding-top:2.5em;
  }
  .mars2.dl-main .row {
    display: flex;
  }
  .mars2.dl-main .last {
    margin-left: auto;
    width: 24em;
  }
}
/*-------LEADERSHIP-------*/
.leader1 .lim {
  max-width: 44em;
}
.leader1 .width {
  padding-bottom: 5.625em;
}
.leader1 .width.has-badge::after {
  bottom: 0;
  margin: auto;
}
.leader2 .width {
  padding-top: 0;
}
.leader2.mod .width {
  padding-top: 3.125em;
}
.leader2.mod .egrid {
  padding-top: 2.75em;
}
.egrid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3.25%;
}
.etile {
  padding: 3%;
  width: calc(33.3333%);
}
.etile .inner {

}
.etile .thumb, .ntile .thumb, .vtile .thumb {
  box-shadow: 0 .25em 1.25em 0 rgba(0, 0, 0, 0.38);
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
}
.etile .thumb {
  padding-top: 119%;
}
.ntile .thumb {
  padding-top: 72%;
}
.ntile.feat .thumb {
  padding-top: 109%;
}
.etile .thumb img, .ntile .thumb img, .vtile .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 1;
}
.etile a:hover img, .ntile a:hover img, .ntile a:hover .no-img {
  transform: scale(1.1);
}
.etile .bd-flag {
  position: absolute;
  top: .5em;
  z-index: 3;
  background-color: rgba(0, 46, 109, 9);
  color: #fff;
  left: -.5em;
  font-size: 1.25em;
  font-weight: 500;
  padding: 0 .4em;
  line-height: 1.5;
}
.etile .tline, .etile .sline {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.35;
}
.etile .sline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  min-height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5em;
  background: rgba(255, 255, 255, .9);
  z-index: 2;
  line-height: 1.2;
}
.etile a:hover .sline {
  min-height: 4em;
}
.etile a {
  text-decoration: none;
  position: relative;
}
.etile .below {
  padding-top: 1.5em;
  display: block;
}
.etile h3 {
  padding-bottom: 0;
}
.employee .banner.default, #post-1034 .banner {
  min-height: inherit;
  height: 25em;
  max-height: inherit;
}
.employee .sub1 {
  padding: 0 0 3.5em;
}
.employee .sub1 .btn-wrap, .employee .sub2 {
  padding-top: 0;
}
.con1::after, .employee .bod::after, .location .bod::after {
  content: " ";
  width: 100%;
  position: absolute;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.employee .bod::after {
  top: 15em;
}
.con1::after {
  top: 13.75em;
}
.employee .bod {
  margin-top: -15em;
  z-index: 2;
  padding-bottom: 4em;
}
.employee .width {
  z-index: 3;
}
.employee .feat {
  padding-top: .5em;
}
.employee .feat img {
  width: 23.875em;
  max-width: 100%;
}
.employee .tline {
  padding-top: .25rem;
}
.employee h1 {
  font-size: 2em;
  font-weight: 600;
  padding-bottom: .3125rem;
}
.employee .top {
  position: relative;
}
.employee .top p {
  font-size: 1.5em;
  font-weight: 500;
  padding-bottom: 0;
  line-height: 1.1;
}
.employee .bd-flag {
  position: absolute;
  top: -2em;
  line-height: 1.5;
  padding: 0 .65em;
  left: 0;
  font-size: 1.25em;
  font-weight: 500;
  color: var(--mer-dblue);
  background: rgba(255, 255, 255, .9);
}
.employee .bio {
  padding-top: 2.25em;
}
.employee .icons {
  padding-top: 2em;
  display: flex;
  align-items: center;
  column-gap: .875em;
}
.employee .icons label {
  font-size: 2em;
  font-weight: 600;
}
.employee .ln-link {
  background: url('img/icons/linkedin-simp.svg') no-repeat center;
  background-size: 50% auto;
  width: 2.375em;
  display: block;
  height: 2.375em;
  border-radius: 50%;
  border: solid 1px var(--mer-nblue);
}
.employee .ln-link:hover {
  border-color: var(--mer-dblue);
}
.employee .sline.small {
  font-size: 1.25em;
  line-height: 1;
}
@media (min-width: 981px) {
  .employee article {
    display: flex;
  }
  .employee .feat {
    width: 50%;
    padding-right: 4em;
  }
  .employee .right {
    width: 32em;
    max-width: 50%;
  }
  .employee .top {
    min-height: 9em;
  }
  .employee h1, .employee .tline, .employee .sline {
    color: #fff;
  }
  .employee .tline {
    color: var(--mer-yellow);
  }
  .location .bod::after {
    /* top: 3.875em; */
    top: 9.5vw;
  }
}
/*-------------SPONSORED PROJECT----------------*/
.spb-wrap {
  position: relative;
}
.sp-ban {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sp-ban::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, .75);
}
.sp-ban .hslider {
  z-index: 2;
}
.sp-ban .hslider .first p {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}
.sp-ban .hslider .first p, .sp-ban .last p {
  font-size: 1em;
  font-weight: 500;
  font-family: var(--mer-reg);
  line-height: 1.4;
}
.sp-ban .last img {
  margin: auto;
}
.sp-ban h1, .sp-ban h2 {
  padding-bottom: .25rem;
  font-size: 3.125em;
}
.sp-ban .sit-bot {
  align-items: center;
}
.outer-1304 .sp-ban .sit-bot {
  align-items: flex-end;
}
.sp-ban .p-lg p, .sp-ban .hslider .first.p-lg p {
  font-size: 1.375em;
  font-weight: 500;
}
.sp-ban .hslider .last p {
  text-align: inherit;
}
.sp-ban p strong {
  font-weight: 700;
}
.sp-ban .column li {
  font-size: 1em;
}
.sp-ban .column li {
  padding-top: 1em;
}
.sp-ban .column ul {
  padding-left: 1.25em;
}
.sp-ban .p-rt-lg p {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.4;
}
.sproject .logos ul li {
  list-style: none;
}
.sproject .logos ul {
  display: flex;
  column-gap: 1.5em;
  row-gap:1.5em;
  justify-content: space-around;
  padding: 2.375em 0 0;
  align-items: center;
}
.sproject .logos li {
  font-size: 1em;
  line-height: 1;
  padding: 0;
}
.tabs.horz .trig li {
  background: rgba(99, 100, 102, .1);
  font-weight: 600;
}
.sproject .tab-wrap {
  padding: 5.625em 0 3.125em;
}
.sproject .tabs {
  padding-top: 2.25em;
}
.sproject .tabs .tab {
  padding: 5.75% 8.75% 5%;
}
.itable .grid ul {
  padding: 0;
}
.itable .grid ul li {
  list-style: none;
}
.sproject .tab .itable:not(:last-child) {
  padding-bottom: 3em;
}
.itable li {
  font-size: 1.125em;
  color: #1a1a1a;
  font-weight: 400;
  padding-bottom: .25em;
}
.itable li li {
  font-size: 1em;
}
.itable li strong {
  font-weight: 400;
}
.itable .labels span {
  font-size: 1.125em;
  padding-bottom: 2.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.sproject .tab .pthick p {
  font-size: 1.25em;
}
.sproject .tab .pthick p strong {
  font-weight: 700;
}
.spon-con {
  background-color: rgba(0, 24, 56, .03);
}
.spon-con .width {
  padding: 2.375em 0 3.375em;
}
.spon-con h3 {
  color: var(--mer-blue);
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--mer-reg);
  text-transform: uppercase;
  padding-bottom: 1.375em;
}
.spon-con p strong {
  font-weight: 700;
}
.spon-con .column>div:not(:last-of-type) {
  padding-bottom: 1.5em;
}
.spon-con .column>div>p {
  position: relative;
  padding-left: 2em;
}
.spon-con .column>p:not(:last-child) {
  padding-bottom: .75em;
}
.spon-con h2 {
  padding-bottom: 1.8em;
}
.spon-con .column>div a {
  width: 1.5em;
  height: 1.5em;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border: solid 1px var(--mer-nblue);
  border-radius: 50%;
}
.spon-con .column>div a:hover {
  border-color: var(--mer-blue);
  background-color: #fff;
}
.spon-con p img {
  width: 50%;
  height: auto;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.spon-form .width {
  padding: 2.5em 0 1.5em;
}
@media (min-width: 981px) {
  .sp-ban .p-rt-lg p {
    text-align: right !important;
    max-width: 17em;
  }
  .spon-con .column.nudge {
    padding-top: 2.75em;
  }
  .spon-form .first {
    padding-right: 4.5em;
  }
}
@media (min-width: 800px) {
  .tabs.horz {
    flex-wrap: wrap;
  }
  .tabs.horz .trig, .tabs .bod {
    width: 100%;
    padding-right: 0;
  }
  .tabs.horz .trig ul {
    display: flex;
  }
  .tabs.horz .trig li {
    flex: 1;
    font-size: 1.625em;
    text-align: center;
    padding-bottom: 0;
  }
  .tabs.horz .trig a {
    font-family: var(--mer-reg);
    min-height: 2em;
  }
  .itable .labels, .itable .grid>ul>li {
    display: flex;
  }
  .itable .labels span:nth-child(3) {
    width: 20%;
  }
  .itable .grid>ul>li>ul {
    width: 60%;
  }
  .itable .grid>ul>li>ul>li {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .itable .grid>ul>li>ul>li>ul {
    width: 33.333%;
  }
  .itable .grid>ul>li {
    width: 100%;
  }
  .itable .labels span, .itable .grid>ul>li>strong {
    width: 40%;
  }
  .itable .grid>ul>li>strong {
    padding-right: 1.5em;
  }
  .itable .grid li .pre {
    display: none;
  }
}
/*-------------BLOGGING----------------*/
.news1 .width {
  padding-bottom: 0;
}
.news1 .lim {
  max-width: 34em;
}
.news2 .width {
  padding: 2.75em 0 2.25em;
}
.news2 h2 {
  padding-bottom: .45em;
}
.ntile {

}
.ntile .inner a {
  position: relative;
  display: block;
}
.ntile.feat .inner a::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 1;
  background-color: rgba(0, 24, 56, 1);
}
.ntile.feat .detail, .ntile .bar {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  text-align: center;
  align-items: center;
}
.ntile.feat .detail {
  height: calc(100% - 3.75em);
  padding: 1.375em;
  top: 0;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.ntile .bar {
  height: 3.5em;
  padding: .5em;
  background-color: rgba(0, 24, 56, .88);
  bottom: 0;
  justify-content: center;
}
.ntile.feat a:hover .bar {
  height: 4.5em;
}
.ntile.min .bar {
  transform:translateY(100%);
}
.ntile.min a:hover .bar {
  transform:translateY(0);
}
.ntile .misc {
  line-height: 1;
  font-size: 1.125em;
  font-weight: 600;
  display: block;
}
.ntile.feat .misc {
  padding-bottom: 1.11em;
}
.ntile .cat, .blog .cat {
  border-right: solid 2px;
  margin-right: .3125em;
  padding-right: .3125em;
  display: inline-block;
  line-height: 1;
}
.ntile.feat h3 {
  font-size: 1.375em;
  font-weight: 700;
  min-height: 2.54em;
}
.thumb .no-img, .thumb .no-img::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.thumb .no-img {
  background: linear-gradient(153deg, rgba(0, 24, 56, 1) 0%, rgba(0, 52, 106, 1) 100%);
}
.thumb .no-img::after {
  content: " ";
  background: url('img/badge-w.svg') no-repeat top left;
  background-size: cover;
  opacity: .75;
  mix-blend-mode: overlay;
  width: 80%;
  height: 90%;
  left: 34%;
  top: 15%;
}
.vtile .thumb .no-img {
  background: linear-gradient(153deg, rgba(0, 52, 106, 1) 0%, rgba(0, 24, 56, 1) 100%);
}
.ntile a {
  text-decoration: none;
}
.ntile.min h3, .vtile h3 {
  font-weight: 400;
  font-size: 1.125em;
  padding-bottom: 0;
  font-family: var(--mer-reg);
}
.ntile.min .misc {
  font-size: .875em;
  padding-bottom: .125em;
}
.ntile.min .date {
  font-weight: 400;
}
.ntile.min .detail {
  padding: .75em .75em 1em;
  display: block;
}
.nprevs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em;
  padding-top: 1.625em;
}
.nprevs .ntile .bar {
  justify-content: flex-end;
  padding: .5em 1.375em;
}
.nprevs .ntile {
  width: 50%;
  padding: 0 1em;
}
ul.cat-list li {
  list-style: none;
}
ul.cat-list  {
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 10%;
}
.cat-list li {
  font-size: 1.25em;
  font-weight: 500;
}
.cat-list a {
  color: #808285;
  text-decoration: none;
}
.news2 .cat-list li:nth-child(1) a, .cat-list a:hover, .cat-list a.active {
  color: var(--mer-blue);
}
.news2 .right .btn-wrap {
  padding-top: .5em;
}
.events .sub1 {
  padding-bottom: 0;
}
.events .sub2 {
  padding-top: 1.25em;
  padding-bottom: 0;
  max-width: 58.75em;
}
.vtile {
  padding-bottom: 3em;
}
.vtile .left {
  display: flex;
  column-gap: 1em;
}
.vtile .dt-box {
  width: 40%;
  padding: .5em 1.25em;
  border: 1px solid rgba(151, 151, 151, 1);
  background: var(--mer-dblue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vtile .left .sizer {
  width: calc(60% - 1em);
}
.vtile .dt-box span {
  font-size: 2em;
  font-weight: 500;
  display: block;
  color: #fff;
  line-height: .9;
}
.vtile .dt-box .day {
  font-size: 6.25em;
  margin-left:-.25rem;
  margin-top: -.25rem;
}
.vtile .thumb {
  width: 100%;
  padding-top: 72%;
}
.vtile h3 {
  padding-bottom: .675rem;
}
.vtile .detail {
  max-width: 25.5em;
}
.vtile .detail p {
  font-size: .875em;
  padding-bottom: 0;
}
.vtile .desc {
  padding-top: .5rem;
}
.vtile .btn-wrap {
  padding-top: .25em;
}
.vtile .dlabel, .vtile .eloc {
  font-weight: 600;
}
.no-events {
  text-align: center;
  padding-top: 1.625em;
  max-width: 35.5em;
  margin: auto;
  height: 28vw;
  max-height: 28em;
}
.no-events h2 {
  padding-bottom: .25em;
}
.all-news {
  position: relative;
}
.all-news .width {
  padding: 4.25em 0 7.5em;
}
.all-news .width>.btn-wrap {
  padding-top: 0;
}
.all-news h1 {
  color: var(--mer-blue);
  padding-top: .5em;
}
.dot-dub::before {
  content: " ";
  width: 50%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 0;
  position: absolute;
  background:url('img/dots-top-right.jpg') no-repeat top right;
  background-size: auto 25em;
  transform:scaleX(-1);
}
.controls {
  display: flex;
  justify-content: space-between;
  column-gap: 2em;
  row-gap:1em;
  padding-top: 5.25em;
}
.ntiles {
  padding-top: 3.625em;
}
.sort-wrap {
  display: flex;
  align-items: center;
  column-gap: .5em;
}
.dd-sort {
  padding: 0;
  width: 9.25em;
}
.dd-sort a, .ddn-wrap.dd-sort a.ddn-tog {
  font-size: 1.25em;
  font-weight: 400;
  color: #2A2A2A;
}
.dd-sort .ddn-tog::after {
  width: .6em;
  height: .6em;
}
.sort-wrap label {
  font-weight: 500;
  font-size: 1.25em;
}
.ddn-wrap.dd-sort a.ddn-tog {
  padding: .125em 1.125em .125em .125em;
  margin: 0 .2em;
}
.dd-sort .ddn-set a {
  margin-left: .25em;
  margin-right: .25em;
}
.dd-sort .ddn-set a.active {
  display: none;
}
.ddn-wrap.dd-sort, .ddn-wrap.dd-sort .ddn-set {
  border: 0;
}
.ddn-wrap.dd-sort .ddn-set {
  padding: 1.875em .25em .25em;
  box-shadow: 2px 2px 8px 0 #ccc;
}
.ntiles, .itiles {
  transition: all 0.5s ease;
}
.ntiles.exit, .itiles.exit {
  opacity: 0;
  transform:translateY(2em);
}
/*---ALM BUTTON----*/
body.ajax-active .alm-load-more-btn.loading {
  visibility: hidden;
  opacity: 0;
}
.ajax-loader {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin: 1em auto 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1em);
}
.ajax-loader::after, .alm-btn-wrap .alm-load-more-btn.loading:before {
  content: " ";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  position: absolute;
  border-radius: 50%;
  border: .25em solid var(--mer-blue);
  border-color: var(--mer-blue) transparent var(--mer-blue) transparent;
}
.ajax-loader::after {
  width: 100%;
  height: 100%;
}
.alm-btn-wrap .alm-load-more-btn.loading:before {
  font-size: 1rem;
  width: 2em;
  height: 2em;
  background: none;
  animation: ring-spin .75s ease-in-out infinite;
}
.ajax-active .ajax-loader, .searching .ajax-loader.sloader {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
}
.ajax-active  .ajax-loader::after, .searching .ajax-loader.sloader::after {
  animation: ring-spin 1s ease-in-out infinite;
}
.ntiles .alm-btn-wrap {
  margin: 0;
  padding: 1em 0 0;
}
.ploader .alm-btn-wrap .alm-load-more-btn {
  font-weight: 600;
  font-size: 1.125rem;
  font-family: var(--mer-fancy);
  padding: .25em 3em .25em 1.5em;
  border-radius: 0;
  position: relative;
  box-shadow: none;
  height: 2.5em;
  transition: background-color .25s ease;
}
.ploader .alm-btn-wrap .alm-load-more-btn, .ploader .alm-btn-wrap .alm-load-more-btn:hover, .ploader .alm-btn-wrap .alm-load-more-btn:focus {
  background: url('img/icons/arr-load.svg') no-repeat calc(100% - 1em) center;
  background-color: var(--mer-dblue);
  background-size: 1.5em auto;
}
.ploader .alm-btn-wrap .alm-load-more-btn {
  background-color: var(--mer-blue);
}
.ploader .alm-btn-wrap .alm-load-more-btn:hover {
  background-color: var(--mer-dblue);
}
.ajax-wrap h4 {
  font-weight: 500;
  font-family: var(--mer-fancy);
  font-size: 1.375em;
  opacity: .75;
}
.ntile.wide {
  position: relative;
  padding-bottom: 1.875em;
  margin-bottom: 1.875em;
}
.ntile.wide .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap:1.5em;
  justify-content: space-between;
}
.ntile.wide .left {
  width: 18.75em;
  position: relative;
}
.ntile.wide .thumb {
  padding-top: 70%;
}
.ntile.wide .detail {
  width: calc(100% - 22em);
}
.ntile.wide h3 {
  font-size: 1.125em;
  font-weight: 600;
  font-family: var(--mer-reg);
  padding-bottom: .5em;
}
.ntile.wide .misc {
  font-size: 1em;
  padding-bottom: .5em;
}
.ntile.wide .inner a {
  display: inline-block;
}
.ntile.wide .date {
  font-weight: 400;
}
.ntile.wide h3 a {
  color: var(--mer-blue);
}
.ntile.wide h3 a:hover {
  color: var(--mer-dblue);
}
.ntile.wide .thumb a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ntile.wide .btn-wrap {
  padding-top: .75em;
}
.ploader .alm-btn-wrap .alm-btn-wrap .alm-load-more-btn.done, .ploader .alm-btn-wrap .alm-load-more-btn:disabled {
  opacity: .65;
  background-image: none;
  background-color: transparent;
  border:solid 1px var(--mer-blue);
  color: var(--mer-blue);
  padding: .5em 1.75em;
}
.ajax-load-more-wrap[data-total-posts="0"] .alm-load-more-btn {
  display: none;
}
.alm-listing>p {
  font-style: italic;
  padding: 1rem 0 0 1rem;
}

.blog {

}
.blog .width {
  max-width: 74.125em;
  padding-top: 6.625em;
}
.blog .lim {
  position: relative;
  max-width: 45.75em;
}
.blog .thumb {
  margin-bottom: 2.25em;
}
.blog .thumb.has-badge::after {
  height: 100%;
  width: 100%;
  background-position: left center;
}
.blog .body {
  padding: 2em 0 3em;
}
.blog h1 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2;
}
.blog h1, .blog .body a {
  color: var(--mer-blue);
}
.blog .misc {
  font-size: 1.125em;
  padding: 1.89em 0 1.25em;
}
.blog .type-event .misc {
  padding-top: .5em;
}
.blog .misc .cat {
  font-weight: 600;
  line-height: 1;
}
.blog .ebadge {
  display: inline-block;
  width: auto;
  margin-left: -1em;
  background: var(--mer-blue);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  margin-top: 1.25em;
  padding: .25em .75em;
}
.blog-end {
  position: relative;
  background: var(--mer-dblue);
  color: #fff;
}
.blog-end h2, .blog-end p {
  font-size: 1.5em;
  font-weight: 500;
}
.blog-end .lim {
  max-width: 40em;
}
.blog-end h2 {
  color: var(--mer-yellow);
  padding-bottom: 1em;
}
.blog-end p {

}
.blog-end::before {
  z-index: 0;
  left: calc(50% + 10em);
  right: inherit;
  width: 28em;
  height: 28em;
}
.blog-end .width {
  z-index: 2;
  padding: 5.125em 0;
}

.share {
  display: flex;
  column-gap: .75em;
  padding: .5em 0 0 0;
}
.share a {
  display: block;
  width: 2.25em;
  height: 2.25em;
  padding: 0;
  text-decoration: none;
  position: relative;
  outline: solid 1px #ddd;
  overflow: hidden;
  z-index: 2;
}
.share a, .share a::before {
  background-repeat: no-repeat;
  background-size: auto 35%;
  background-position: center;
}
.share a:hover {
  background-image: none;
}
.share a::after {
  content: " ";
  height: 100%;
  width: 100%;
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  z-index: -1;
}
.share a::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.share a:hover::before {
  opacity: 1;
}
.icon-fb {
  background-image: url('img/icons/fb-d.svg');
}
.icon-fb::before {
  background-image: url('img/icons/fb-w.svg');
}
.icon-tw {
  background-image: url('img/icons/tw-d.svg');
}
.icon-tw::before {
  background-image: url('img/icons/tw-w.svg');
}
.icon-ln {
  background-image: url('img/icons/ln-d.svg');
}
.icon-ln::before {
  background-image: url('img/icons/ln-w.svg');
}
.icon-mail {
  background-image: url('img/icons/email-d.svg');
}
.icon-mail::before {
  background-image: url('img/icons/email-w.svg');
}
.icon-rss {
  background-image: url('img/icons/rss-d.svg');
}
.icon-rss::before {
  background-image: url('img/icons/rss-w.svg');
}
.share a:hover {
  color: #fff;
}
.share a:hover::after {
  top: 0;
}
.share .icon-fb::after {
  background-color: #3949AB;
}
.share .icon-ln::after {
  background-color: #827be9;
}
.share .icon-tw::after {
  background-color: #1da1f2;
}
.share .icon-mail::after {
  background-color: #666;
}
.share .icon-rss::after {
  background-color: orange;
}
.share a span {
  font-size: 0;
}
.mover {
  border-top: solid 1px #ccc;
  display: flex;
  column-gap: 1em;
  padding: 1.75em 0 0 0;
  margin-top: 3.5em;
  justify-content: space-between;
}
.mover a {
  text-decoration: none;
}
.blog h2, .blog h3, .blog h4 {
  text-transform: none;
  line-height: 1.3;
  font-weight: 600;
  padding-bottom: .5rem;
}
.blog h2 {
  font-size: 1.375em;
}
.blog h3 {
  font-size: 1.25em;
}
.blog p, .blog li, .blog h4 {
  font-size: 1.0625em;
}
.blog p {
  line-height: 2;
}
.blog ul li li, .blog ol li li {
  font-size: 1em;
}
.blog ul, .blog ol, .terms ul, .terms ol {
  padding: 0 0 1.75em 1.75em;
  margin-bottom: 0;
}
.blog p {
  line-height: 1.8;
}
.blog ul li, .terms ul li {
  list-style: disc;
}
.blog li {
  line-height: 1.4;
  padding-bottom: .5em;
}
.blog ul li::marker {
  font-size: .8em;
}
.blog li:last-of-type {
  padding-bottom: 0;
}
.blog ul ul, .blog ul ol, .blog ol ul {
  padding-top: .5em;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blog article {
  position: relative;
  padding-top: 1.125em;
}
.blog blockquote {
  padding-left: 1.5em;
  border-left: solid 3px #ccc;
  background-color: #f9f9f9;
  padding: .75em 1em .75em 1.25em;
}
.blog blockquote:not(:last-child) {
  margin-bottom: 1.75em;
}
.blog blockquote p {
  font-size: 1em;
  line-height: 1.5;
  font-style: italic;
}
.wp-caption, .blog img {
  max-width: 100%;
}
.wp-caption {
  margin-bottom: 1.68em;
}
.wp-caption:last-child {
  margin-bottom: 0;
}
.blog p.wp-caption-text {
  font-size: .75em;
  font-style: italic;
  text-align: left;
  padding: .25rem 0 0 0;
}
.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}
div.hr {
  display: block;
  border-top:solid 1px #999;
  border-bottom:solid 1px #fff;
  width: 100%;
  margin: 20px auto;
}
@media (min-width:981px) {
  ul.cat-list  {
    justify-content: flex-end;
  }
  .news2 .right .btn-right {
    text-align: right;
  }
  .vtile .inner {
    display: flex;
    align-items: center;
  }
  .vtile .left {
    max-width: 50%;
    width: 27.875em;
  }
  .vtile .right {
    width: 27em;
    margin-left: auto;
    max-width: 50%;
    padding-left: 2em;
  }
  .controls .cat-list {
    width: calc(100% - 12em);
    justify-content: flex-start;
    column-gap: 6%;
  }
  .controls .sort-wrap {
    width: 12em;
  }
  .blog .indent {
    padding-left: 2.25em;
  }
  .blog-end .btn-wrap {
    text-align: right;
  }
}
/*-------------INSIGHTS----------------*/
.ins1 .lim {
  max-width: 36em;
}
.ins1 .sub2 {
  padding-top: 0;
}
.insights {
  min-height: 34em;
}
.itiles .ajax-load-more-wrap[data-total-posts="0"] .alm-listing {
  margin: 0;
}
.itiles .ajax-load-more-wrap[data-total-posts="0"] h4 {
  padding-top: 1em;
}
.insights hr.special {
  width: calc(100% - 1rem);
  margin: 2em 0 1em;
}
.insights .filters .col label {
  padding-bottom: .5em;
}
.insights .psearch {
  padding: .875em 3.5em .875em 1.25em;
}
.insights .ps-sub {
  border-radius: 50%;
  background: url('img/icons/aright-w.svg') no-repeat center var(--mer-blue);
  background-size: 50% auto;
  width: 1.75em;
  display: block;
  height: 1.75em;
  position: absolute;
  right: .75em;
  z-index: 3;
  bottom: 0;
  top: 0;
  margin: auto;
  cursor: pointer;
}
.itiles .alm-listing {
  display: flex;
  margin: 0 -1.18em;
  flex-wrap: wrap;
}
.itile {
  padding: 1.18em;
  width: 25%;
}
.itile .thumb {
  display: block;
  overflow: hidden;
  height: 0;
  position: relative;
  padding-top: 72%;
}
.itile a {
  display: block;
  position: relative;
  text-decoration: none;
}
.itile .no-img {
  background: linear-gradient(231deg, rgba(128, 130, 133, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.itile .thumb .no-img::after {
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  opacity: .5;
  mix-blend-mode: normal;
  height: 100%;
  background: url('img/badge-w.svg') no-repeat center;
  background-size: 28% auto;
}
.itile .detail {
  padding: .75em 1em;
}
.itile h3 {
  font-size: 1.125em;
  font-weight: 400;
  padding-left: 1.44em;
  line-height: 1.22;
  position: relative;
  font-family: var(--me-reg);
}
.itile a:hover h3 {
  text-decoration: underline;
}
.itile .misc {
  padding-bottom: .5em;
  font-size: .875em;
  line-height: 1.2;
}
.itile .type {
  font-weight: 600;
  display: block;
}
.itile h3::before {
  content: " ";
  position: absolute;
  top: 3px;
  left: 0;
  width: 1.056em;
  height: 1.22em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  background-image: url('img/icons/doc/download.png');
}
.itile .inner[data-type="article"] h3::before {
  background-image: url('img/icons/doc/document.png');
  background-size: 86% auto;
}
.itile .inner[data-type="image"] h3::before {
  background-image: url('img/icons/doc/expand.png');
  background-size: 86% auto;
}
.itile .inner[data-type="internal"] h3::before {
  background-image: url('img/icons/doc/internal-link.png');
}
.itile .inner[data-type="external"] h3::before {
  background-image: url('img/icons/doc/external-link.png');
  background-size: 86% auto;
}
.itile .inner[data-type="video"] h3::before {
  background-image: url('img/icons/doc/play.png');
}
.itile .inner[data-type="gated"] .thumb::before {
  content: " ";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  z-index: 2;
  left: .375em;
  bottom: .375em;
  opacity: .8;
  background: url('img/icons/doc/lock.svg') no-repeat center;
  background-size: contain;
}
.gate-form h2 {
  position: relative;
}
.gate-form h2 em {
  font-style: normal;
}
.gate-form h2::before {
  content: " ";
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: url('img/badge-color.png') no-repeat center;
  background-size: contain;
  margin-bottom:.875rem;
}
.sb-form {
  position: relative;
}
.gate-form:not(.show-result) .gate-ajax, .gate-form.show-result .form-inner {
  display: none;
}
.gate-form .first p {
  font-size: 1.125em;
  line-height: 1.55;
}
.show-result .gate-ajax p {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.55;
}
@media (min-width:981px) {
  .insights .filters h3 {
    width: 9%;
    padding-right: 1rem;
    min-width: 90px;
  }
  .insights .filters.sub2 {
    margin-right: -1em;
  }
  .insights .filters .sort-wrap {
    padding-right: 1em;
  }
  .insights .filters .col {
    width: 30%;
    padding: 0 1em;
    position: relative;
  }
  .insights .filters .col1 {
    padding-right: 2em;
  }
  .insights .filters .col1::after {
    content: "or";
    position: absolute;
    bottom:1.25em;
    right: -.5em;
    width: 1em;
    height: 1em;
    font-size: 1rem;
    color: var(--mer-blue);
  }
  .sb-wrap.filters {
    margin-bottom: 2.5em;
  }
  .insights .filters .col2 {
    padding-left: 2em;
  }
  .sb-form {
    width: 90%;
    padding-left: 1em;
  }
  .gate-form .first {
    padding-right: 3em;
  }
  .gate-form .gform {
    padding-top: 2.125em;
  }
}
/*---------PROJECTS-----------*/
.work .sub1 {
  padding-top: 0;
}
.work .sub1 .first {
  padding-top: 3em;
}
.pfeat .ptile {
  padding: 0;
}
.pfeat .ptile a {
  padding-top: 85.5%;
}
.work .sub2 {
  padding: .75em 0 0;
  min-height: 30em;
}
.all-work .flexer .ajax-wrap {
  display: flex;
  flex-wrap: wrap;
}
.all-work .ptile {
  width: 25%;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  margin-bottom: 1em;
  row-gap:.75em;
}
.filters h3, .filters label {
  color: var(--mer-blue);
  font-family: var(--mer-fancy);
  font-weight: 500;
}
.filters h3 {
  font-size: 1.5em;
  padding-bottom: 0;
}
.clear-filters {
  display: inline-block;
  color: #808285;
  position: absolute;
  bottom: -.5em;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.insights .clear-filters {
  bottom: 5.5em;
}
.clear-filters.active {
  opacity: 1;
  visibility: visible;
}
.clear-filters:hover {
  color: var(--mer-blue);
}
/* .ddn-item.checker {
  position: relative;
  padding-left: 1.875em;
  margin: 0 1em .675em 2em;
  font-size: 1em;
  cursor: pointer;
}
.ddn-item.checker::before {
  content: " ";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: .75em;
  height: .75em;
  border: solid 2px var(--mer-blue);
  border-radius: 3px;
}
.ddn-item.checker.active::before {
  background: url('img/icons/check-box.svg') no-repeat center;
  background-size: 120% auto;
} */
.term-dd {
  z-index: 4;
}
.term-dd a.ddn-tog {
  white-space: nowrap;
}
.term-dd a.off:not([data-slug="all"]) {
  pointer-events: none;
  color: #999;
}
.term-dd .ddn-item.active {
  font-weight: 700;
  pointer-events: none;
}
.term-dd .ddn-tog::after {
  background-color: #fff;
}
.filters .col label {
  font-size: 1.25em;
  display: block;
  padding-bottom: .875em;
}
.filters .col {
  width: calc(50% - 8.25em);
  max-width: 25.875em;
}
.filters .col1 {
  padding: 0 2.5% 0 5%;
}
.filters .col2 {
  padding: 0 5% 0 2.5%;
}
.pslide-wrap {
  margin:0 -1.125em;
}
.mer-count .pslider .splide__arrows {
  right: calc(100% + 1em);
  bottom: 4em;
  height: auto;
  left: inherit;
}
.mer-count .pslider #counter {
  bottom: 6.75em;
  right: calc(100% + 1.5em);
  left: inherit;
}
.child-slide .mer-count #counter {
  color: #fff;
}
.ptiles {
  min-height: 4em;
}
.ptiles .alm-listing {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.125em;
}
.ptiles .ptile {
  width: 25%;
}
.ptile {
  padding: 1.5em 1.125em;
}
.ptile .inner {
  background: #454545;
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.38);
}
.ptile a {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  height: 0;
  padding-top: 150%;
}
.ptile .thumb, .ptile .detail, .ptile .thumb img, .ptile a::after, .itile .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ptile .thumb {
  z-index: 1;
}
.ptile .thumb img, .itile .thumb img {
  object-fit: cover;
  object-position: center;
}
.ptile .detail {
  z-index: 3;
  color: #fff;
  display: block;
}
.ptile .vflex {
  padding: 1.5em;
  display: flex;
  height: calc(100% - 3.75em);
  flex-direction: column;
  row-gap:1em;
}
.ptile h3 {
  line-height: 1;
  font-size: 1.875em;
}
.ptile .cta-wrap, .ptile .cta {
  position: relative;
}
.ptile .tag, .ptile .subhead {
  line-height: 1.25;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ptile .tag {
  color: var(--mer-nblue);
}
.ptile .tag span:last-of-type {
  display: none;
}
.ptile a::after {
  content: " ";
  background: #000;
  opacity: .5;
  z-index: 2;
}
.ptile .htog {
  transform:translateY(2em);
  transition: all 0.25s ease;
}
.pfeat .ptile .htog {
  margin-top:auto;
  transform:translateY(4em);
}
.ptile .subhead {
  opacity: 0;
  transition: all 0.25s ease;
}
.ptile a:hover .htog, .ptile a:hover .cta-wrap::after {
  transform:translateY(0) !important;
}
.ptile a:hover .subhead {
  opacity: 1;
}
.ptile .cta {
  position: relative;
  z-index: 1;
}
.ptile .cta-wrap::after {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 24, 56, .8);
  z-index: 0;
  transform:translateY(100%);
  transition: all 0.25s ease;
}
/*---------PROJECT SINGLE-----------*/
.project .banner .width {
  max-width:79.375em;
}
.project .twrap {
  max-width: 33.75em;
  padding: 1.25em 1.25em 1.25em 0;
  min-height: 12.875em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.project .twrap .blur-box, .project .banner::after {
  display: none;
}
.project .twrap h1 {
  z-index: 2;
  line-height: 1;
}
.project .banner #counter {
  position: absolute;
  z-index: 9;
  bottom: 5em;
  right: 6em;
  color: #fff;
}
.project .banner .splide__arrows:not(.unstyled) .splide__arrow--next {
  right: 0;
}
.project .banner .splide__arrows:not(.unstyled) .splide__arrow--prev {
  left: 0;
}
.project .banner .splide__arrows:not(.unstyled) .splide__arrow {
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  background-color: #fff;
}
.project .banner .splide__arrows:not(.unstyled) .splide__arrow:hover {
  background-color: var(--mer-lblue);
}
.project .banner .splide__arrows:not(.unstyled) .splide__arrow::after {
  border:0;
}
.project .banner .splide__arrows {
  position: absolute;
  right: 3em;
  bottom: 5.5em;
  width: 8.125em;
  z-index: 9;
}
.project .twrap::after {
  content: " ";
  z-index: 0;
  height: calc(100% - 1.25em);
  position: absolute;
  width: 100vw;
  right: 0;
  top: 0;
  border: .625em solid rgba(0, 24, 56, 1);
  opacity: 0.75;
  background-color: rgba(0, 24, 56, 1);
}
.wbod .width {
  padding: 3.25em 0 4.375em;
}
.project .crumb-bar .width {
  max-width: 85.5em;
}
.project .pre-bar {
  display: flex;
  padding: .5em 0 0 1.25em;
  margin-bottom: 2.5em;
  position: relative;
  row-gap:1.25em;
  column-gap: 1.5em;
}
.project .pre-bar::before {
  content: " ";
  top: 0;
  left: 0;
  position: absolute;
  max-height: 3.125em;
  height: 100%;
  width: 1px;
  background: var(--mer-yellow);
}
.pre-bar p {
  font-size: .875em;
  line-height: 1.3;
  padding-bottom: 0;
  color: var(--mer-blue);
}
.pre-bar strong {
  font-size: 1.14em;
  display: block;
}
.pre-bar .item {
  max-width: 19rem;
  flex-grow: 1;
}
/* .pre-bar .item:nth-child(1) {
  width: 23%;
}
.pre-bar .item:nth-child(2) {
  width: 15%;
}
.pre-bar .item:nth-child(3) {
  width: 11%;
}
.pre-bar .item:nth-child(4) {
  width: 23%;
}
.pre-bar .item:nth-child(5) {
  width: 28%;
  padding-right: 0;
} */
.pre-bar .terms .sep:last-of-type {
  display: none;
}
.pbanner, .oa-slide .inner {
  height: 45vw;
  max-height: 50em;
}
.phslider {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.oa-slide .inner {
  position: relative;
}
.oa-slide .inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center;
  margin:auto;
  bottom:0;
  right:0;
}
.phslider {
  overflow: hidden;
}
.project {

}
.wbod .desc:not(:last-child), .wbod .hlight:not(:last-child) {
  padding-bottom: 1.75em;
}
.wbod .hlight li:not(:last-of-type) {
  padding-bottom: .675em;
}
.wbod .vd-wrap {
  position: relative;
  width: 100%;
}
.wbod .vd-wrap .sizer {
  position: relative;
  padding-top: 56%;
  height: 0;
  overflow: hidden;
}
.vd-wrap img, .vd-wrap .vid-still {
  object-fit: cover;
  object-position: center;
}
.vd-wrap a, .vd-wrap img, .vd-wrap .vid-still, .vd-wrap a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.vd-wrap img {
  z-index: 1;
}
.vd-wrap .vid-still {
  z-index: -1;
  pointer-events: none;
}
.vd-wrap a:hover img, .vd-wrap a:hover video {
  transform:scale(1.05);
}
.vd-wrap a::after {
  content: " ";
  z-index: 2;
  background: rgba(0, 0, 0, .28);
}
.vd-wrap a {
  z-index: 2;
}
.vd-wrap a:hover::after {
  background: rgba(0, 0, 0, .4);
}
.vd-wrap .btn-play {
  position: absolute;
  left: 1.375em;
  bottom: 1.375em;
  z-index: 3;
  line-height: 1.75em;
}
.wbod .box.detail {
  margin-bottom: 2.5em;
}
.wbod .awards {

}
.wbod .awards .award:not(:last-of-type) {
  margin-bottom: .675em;
}
.wbod .award {
  display: block;
  font-size: 1.125em;
}
.wbod .award span {
  line-height: 1.2;
}
/* .wbod .award span:not(:last-of-type) {
  margin-right: .5em;
}
.wbod .award span:not(:first-of-type) {
  border-left: solid 1px rgba(0, 0, 0, .5);
  padding-left: .5em;
} */
.wbod .serv-list:not(:first-child) {
  padding-top: 1.5em;
}
.wbod .box.detail ul {
  padding: .25em 0 0 1.125em;
  margin-bottom: 0;
}
.wbod .box.detail ul li {
  list-style: disc;
}
.wbod .box.detail li {
  padding-bottom: .25em;
  font-weight: 400;
  text-indent: -.35em;
}
.wbod .serv-list li::marker {
  font-size: 85%;
}
.wbod .icon-box>* {
  position: relative;
  z-index: 2;
}
.wbod .icon-box p {
  font-size: 1.5em;
  line-height: 1.4;
  font-weight: 500;
}
.wbod .icon-box {
  background-color: var(--mer-dblue);
  color: #fff;
  padding: 1.375em 2em 2em;
  position: relative;
  max-width: 25.5em;
}
.wbod .icon-box .btn-wrap {
  padding-top: 2.75em;
}
.related .width {
  padding: 3em 0 0 0;
  z-index: 2;
}
.related:not(.empty) .width {
  max-width: 74.75em;
}
.related.empty .width {
  padding:0;
}
.related {
  position: relative;
}
.related:not(.empty)::before {
  content: " ";
  position: absolute;
  z-index: 0;
  height: 21.875em;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(128, 130, 133, .1);
}
.related h2 {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px rgba(0, 0, 0, .3);
}
.related .btn-wrap {
  padding-top: .75em;
}
.related.empty .btn-wrap {
  padding: 0;
}
/*---------LOCATIONS-----------*/
.loc .last {
  text-align: center;
}
.loc .last .btn-wrap {
  padding-top: .75em;
}
.loc .last p:first-child {
  padding-bottom: .5em;
}
.loc .sub1 img {
  margin: auto;
}
.loc .sub1 {
  padding-bottom: 1.875em;
}
.loc .sub2 {
  padding: 0 0 1.875em;
}
.loc .sub3 {
  padding-top: 0;
}
.loc .flexer {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.1875em;
}
.lbox {
  width: 25%;
  padding: 1.1875em;
}
.lbox .inner {
  background-color: rgba(0, 24, 56, .03);
  height: 100%;
  min-height: 14em;
}
.lbox h3 {
  font-size: 1.25em;
  font-weight: 500;
  background: var(--mer-dblue);
  color: #fff;
  padding: .3125em 1em;
}
.lbox ul {
  padding: .75em .5em 1.25em 1.875em;
}
.lbox ul li {
  list-style: none;
}
.lbox li {
  font-size: 1.25em;
  font-weight: 500;
}
.lbox li {
  padding-bottom: .375em;
}
.lbox a, .loc .sub1 p a {
  color: var(--mer-blue);
}
.loc .sub1 p a {
  text-decoration: none;
}
.lbox a:hover {
  color: var(--mer-dblue);
  text-decoration: none;
}
.loc .sub1 p a:hover {
  color: var(--mer-dblue);
  text-decoration: underline;
}
.location .width {
  max-width: 74em;
  z-index: 2;
  padding-top: 0;
}
.location article {
  display: flex;
  justify-content: space-between;
  row-gap:2em;
  flex-wrap: wrap;
  /* margin-top: -3.875em; */
  margin-top: -9.5vw;
}
.location .feat {
  margin-bottom: 2.875em;
  max-width: 740px;
}
.location .feat .img-none {
  background: url('img/location-default.jpg') no-repeat center;
  background-size: cover;
  padding-top: 46.5%;
  height: 0;
  width: 100%;
}
.location .services {
  padding-top: 1.5em;
  color: var(--mer-blue);
}
.location .services li {
  font-weight: 500;
  padding-bottom: .25em;
  text-indent: .5em;
}
.location .abox {
  max-width: 20.25em;
  min-height: 13.5em;
  background: var(--mer-dblue);
  color: #fff;
  padding: 2.375em 2.125em;
}
.location .abox p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.35;
  padding-bottom: 0;
}
.location .abox a {
  color: #fff;
  text-decoration: none;
}
.location .abox a:hover {
  color: var(--mer-nblue);
}
.location .left .indent {
  padding-left: 1em;
}
.location .desc::before {
  right: calc(100% + 2em);
}
.location .services ul {
  column-count: 2;
  column-gap: 2em;
}
@media (min-width:981px) {
  .work {
    z-index: 3;
  }
  .work .sub1 .lim {
    max-width: 35em;
  }
  .pfeat {
    margin-top: -9.5em;
  }
  .loc .sub1 .frst p {
    max-width: 30em;
  }
  .location .feat img {
    width: 100%;
  }
  .location article {
    padding-right: 2em;
  }
  .location .left {
    width: 67%;
  }
  .location .right {
    width: 33%;
    padding-left: 3%;
  }
  .location .abox {
    margin-left: auto;
  }
  .filters .sort-wrap {
    padding-bottom: .65em;
    margin-left: auto;
  }
  .filters h3 {
    line-height: 2;
  }
  .location .right .sizer {
    padding-top: 103.75%;
    height: 0;
    position: relative;
  }
  .location .abox {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .wbod .row {
    display: flex;
  }
  .wbod .left {
    max-width: 40.625em;
  }
  .wbod .right {
    max-width: 27em;
    margin-left: auto;
  }
  .wbod .box.detail {
    padding:17% 10% 10% 17.5%;
    min-height: 25em;
  }
  .related .btn-wrap {
    padding-left: 4.5em;
  }
  .related .mer-count[data-count="1"] #counter, .related .mer-count[data-count="2"] #counter, .related .mer-count[data-count="3"] #counter, .related .mer-count[data-count="4"] #counter {
    /* display: none; */
  }
  .wbod .mob-title {
    display: none;
  }
}
/*-------------MENU----------------*/
.logo {
  margin: 0;
  width: 12.5em;
}
.logo a {
  line-height: 0;
  width: 100%;
  display: block;
  position: relative;
}
.logo span {
  display: block;
}
.logo .logo-d {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.h-rt {
  width: calc(100% - 12em);
  padding: .75em 6.125em 0 2em;
}
.logo img {
	height: auto;
	width: 100%;
}
.nav-top {
  float: right;
}
.nav-top ul {
  margin: 0;
  padding: 0;
}
.nav-top ul li {
	list-style: none;
}
.nav-top ul, .nav-top li {
	position: relative;
}
.nav-top li {
  padding: 0;
}
.nav-top li a {
  font-size:1em;
  padding:.4em 0;
  display:block;
  text-decoration:none;
}
.nav-top .current_page_item>a {
  text-decoration: underline;
}
.nav-top .menu>li>a {
  color: #fff;
  font-size: 1.25em;
  line-height: 1.2;
  padding: .625em .75em;
  font-weight: 600;
}
.nav-top .menu>.menu-item-has-children>a::after, .mega li.menu-item-has-children>a::after, .dd-back>a::before {
  content: " ";
  position: relative;
  display: inline-block;
  width: .65em;
  margin-left:.5em;
  top:.125em;
  height: 1em;
}
.nav-top .menu>.menu-item-has-children>a::after, .mega li.menu-item-has-children>a::after, .sbnav .menu a::after, .dd-back>a::before, .lang .ddn-tog::after, .nav-top .tog-dd, .arr-links a::after, .dn-icon::after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiID8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjkiIGhlaWdodD0iNSI+Cgk8cGF0aCBmaWxsPSIjRjdBNzAwIiB0cmFuc2Zvcm09Im1hdHJpeCgtNC4zNzExNGUtMDggMSAtMSAtNC4zNzExNGUtMDggNy44NTcwMyAwKSIgZD0iTTMuMTQyNjU5OSAzLjkyODQ5OTlMMCAwLjk0OTM4NDg3TDAuOTQ1OTQ1OTIgMEw1IDMuOTI4NDk5OUwwLjk0NTk0NTkyIDcuODU2OTk5OUwwIDYuOTA3NjE1MkwzLjE0MjY1OTkgMy45Mjg0OTk5WiIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=) no-repeat center;
  background-size:contain;
}
.mega li.menu-item-has-children>a::after {
  transform:rotate(-90deg);
  width: .8em;
  height: .5em;
  /* top: .25em;
  vertical-align: top; */
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto .5em;
}
header a img {
  border:none;
  outline:none;
}
.s-fire {
  width: 2em;
  height: 2em;
  position: relative;
  background: url('img/icons/search-y.svg') no-repeat center;
  background-size: 50% auto;
}
.shrink .s-fire {
  background-image: url('img/icons/search.svg');
}
.tbar {
  display: block;
  position: fixed;
  z-index: 102;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-101%);
  transition: all 0.75s ease;
}
.search-ready .tbar {
  opacity: 1;
  transform: translateY(0);
}
.tbar, .tbar form, .sbar form {
  font-size: 1em;
}
.tbar form, .sbar form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  padding: .25em .625em .25em 1.5em;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1.68em;
  background-color: rgba(255, 255, 255, 1);
}
.tbar .s-sub, .sbar .s-sub {
  z-index: 2;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  background: url('img/icons/aright-w.svg') no-repeat center var(--mer-blue);
  background-size: 50% auto;
}
.tbar .s-sub:hover, .sbar .s-sub:hover {
  background-color: var(--mer-nblue);
}
.tbar .sfield, .tbar .sfield:focus, .sbar .sfield:hover, .sbar .sfield {
  border: solid 1px transparent;
}
.tbar .sfield, .sbar .sfield {
  width: calc(100% - 3em); /*match s-send width*/
  font-size: 1.125em;
  line-height: 1.35;
  padding: .48em .5em .48em 0;
  color: var(--mer-blue);
  font-weight: 400;
  height: auto;
}
.lang .ddn-set .gt-current-lang, .lang .ddn-set img {
  display: none;
}
.lang .ddn-wrap a.ddn-tog {
  background: url('img/icons/globe.svg') no-repeat left center;
  padding-left: 1em;
  background-size: .72em auto;
  color: var(--mer-dblue);
  font-size: .875em;
  padding: .25em 1.25em .25em 1em;
}
.lang .ddn-tog::after {
  font-size: .85em;
}
.lang .ddn-wrap {
  padding: 0 .25em;
}
.lang .ddn-wrap, .lang .ddn-wrap .ddn-set {
  border:0;
}
.lang .ddn-set a {
  margin: 0;
  padding: .25em 0 .375em 1em;
  background:rgba(0, 0, 0, 0);
  font-size: .875em;
}
.lang .ddn-set a:hover {
  background:rgba(0, 0, 0, .05);
  text-decoration: none;
}
.lang .ddn-set {
  padding: 1.75em 0 0;
  box-shadow: 2px 2px 8px 0 #ccc;
}
@media (min-width: 981px) {
  .nav-top .dd-back, .mob-only {
    display: none;
  }
  .nav-top ul.menu {
    display: flex;
    margin-right: -.75em;
  }
  .h-rt .top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 1.5em;
  }
  .tb-links {
    position: relative;
    display: flex;
    max-width: 18.75em;
    width:calc(100% - 3.125em);
    justify-content: flex-end;
    column-gap: 8%;
    background: #fff;
    height: 2.5em;
    align-items: center;
  }
  .tb-links::after {
    content: " ";
    width: 400%;
    left: 100%;
    top: 0;
    height: 100%;
    z-index: 0;
    background: #fff;
    position: absolute;
  }
  .tb-links a {
    color: var(--mer-dblue);
    font-size: 1.0625em;
    text-decoration: none;
    line-height: 1.3;
    padding: .125em;
  }
  .tb-lang .lang {
    font-size: 1.215em; /*for 17px equiv*/
  }
  .tb-links .tb-call a {
    font-weight: 600;
  }
  .nav-top .menu>li>a:hover, .shrink .nav-top .menu>li>a:hover {
    background-color:var(--mer-dblue);
    color:#fff;
  }
  .shrink .nav-top .menu>li>a {
    color: var(--mer-blue);
  }
  .nav-top .tog-dd {
    position: absolute;
    top: 1em;
    right: 0;
    margin: auto;
    height: 1em;
    width: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    border:0;
  }
  .nav-top .tog-dd span {
    font-size: 0;
  }
  .nav-top .menu>.menu-item-has-children>a::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    border-left: solid .35em transparent;
    border-right: solid .35em transparent;
    border-top: solid .35em var(--mer-dblue);
    opacity: 0;
  }
  .nav-top .menu>.menu-item-has-children>a:hover::before {
    opacity: 1;
  }
  .nav-top .menu>.menu-item-has-children:hover > .dd-outer {
    visibility: visible;
    opacity: 1;
  }
  .logo-w, .shrink .logo-d {
    opacity: 1;
  }
  .logo-d, .shrink .logo-w {
    opacity: 0;
  }
  .shrink .mast {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 1.5em rgba(0, 0, 0, .35);
  }
  /*-------------MEGA MENU----------------*/
  .dd-outer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: -1;
    background: url('img/bg-dd.jpg') no-repeat bottom right #f7f7f7;
    background-size:cover;
    transition: all 0.5s ease;
    overflow: hidden;
  }
  .dd-outer::before {
    content: " ";
    width: calc(100% + 4em);
    height: calc(100% + 4em);
    top: 0;
    left: -2em;
    position: absolute;
    z-index: 0;
    box-shadow: inset 0 0 1.5em rgba(0, 0, 0, .5);
  }
  .dd-outer .width {
    max-width: 74em; /*1184*/
    min-height:31.25em; /*500*/
    padding: 2.375em 0 2.625em;
    justify-content: space-between;
    align-items: inherit;
  }
  .co-wrap {
    width:46%;
    padding: 1.25em 3em 0 0;
    max-width: 29.75em;
  }
  .mega .dd-wrap.right {
    width: 54%;
  }
  .co-inner {
    padding:4.375em 2em 2em 4em;
    background: #F7A700;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .co-inner::after {
    content: " ";
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('img/badge-w.svg') no-repeat center 1.75em;
    background-size:90% auto;
    opacity: .05;
    z-index: 0;
  }
  .co-inner p {
    position: relative;
    z-index: 2;
  }
  .co-inner p:first-of-type {
    font-size: 1.5em;
    font-weight:500;
    color:#fff;
    line-height: 1.4;
    position:relative;
  }
  .co-inner p:first-of-type::before {
    content: " ";
    border: solid 5px #fff;
    width:3.125em;
    height:3.125em;
    right:calc(100% + 1.32em);
    top:0;
    bottom:0;
    margin:auto;
    position:absolute;
    z-index:2;
    background: #F7A700;
  }
  .co-inner p:last-of-type {
    display: flex;
    justify-content: flex-end;
    padding-top: 3.75em;
  }
  .menu li .co-inner a {
    font-family: var(--mer-fancy);
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    line-height: 1.75;
    padding: 0;
  }
  .co-inner a::after {
    content: " ";
    position: relative;
    margin-left: .625em;
    display: inline-block;
    background: url('img/icons/aright-lb.svg') no-repeat center;
    background-size: 50% auto;
    background-color: transparent;
    border: solid 1px #fff;
    border-radius: 50%;
    width: 1.625em;
    height: 1.625em;
  }
  .co-inner a:hover::after {
    background-color: var(--mer-blue);
  }
  .mega .sub-menu li {
  	padding: 0;
  }
  .mega .sub-menu li a {
  	/* font-size: .875em; */
    font-size: 1.0625em;
    position: relative;
    font-weight: 500;
  	display: block;
  	line-height: 1.1;
    transition: color 0.25s ease;
  }
  .mega .sub-menu li a.active {
    font-weight:800;
  }
  .mega .sub-menu li a:hover{
    color: var(--mer-dblue);
  }
  .mega .dd-wrap.right>.sub-menu {
    /* max-width: 16em; */
    max-width: 17em;
    padding-right:1.5em;
    position: relative;
  }
  .mega .dd-wrap.right .sub-menu {
    padding-top: .875em;
    min-height:100%;
  }
  .mega .dd-wrap .sub-menu li {
    position: unset;
    /* padding: .25em 0; */
    padding: .125em 0;
  }
  .mega .dd-wrap[data-depth="1"] {
    position: absolute;
    left: 100%;
    top: 0;
    min-height:100%;
    width:100%; /*matches left ul*/
    /* padding-left:5.875em; */
    padding-left: 4em;
    border-left: solid 3px #D2D5DB;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2em);
    transition: all 0.35s ease;
  }
  .mega .dd-wrap[data-depth="1"].active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
  }
  .tbar {
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur( 34px );
    height: 34.7vw;
    max-height: 37.5em;
    min-height: 12.5em;
  }
  .tbar .width {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em 0 3em 0;
    max-width: 41.375em;
  }
  .tbar h2 {
    font-weight: 400;
    font-size: 3.125em;
    line-height: 1;
    padding-bottom: .6em;
  }
  .tbar .xsearch {
    background: url('img/icons/close.svg') no-repeat right center;
    background-size: contain;
    padding-right: 1.5em;
    line-height: 1.3;
    font-size: 1em;
    font-weight: 600;
    color: #000;
    opacity: .65;
    display: inline-block;
    margin-top: 1.25em;
    text-decoration: none;
  }
  .tbar .xsearch:hover {
    opacity: .9;
  }
}
/*-------------MOBILE MENU----------------*/
.m-nav {
  display:none;
  top:0;
  position: fixed;
  right: 1.5em;
  top: 0;
  z-index:102;
  font-size: 1em;
}
.m-nav, .mob-tog {
  width: 1.625em;
  height: 1.625em;
}
.mob-tog {
  cursor:pointer;
  left: 0;
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  z-index: 99;
  display: block;
}
.mob-tog::before, .mob-tog::after {
  content: " ";
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.mob-tog::before {
  height: calc(100% - 12px);
  border-top: solid 2px #002e6d;
  border-bottom: solid 2px #002e6d;
}
.mob-tog.active::before {
  border-top: 0;
  border-bottom: 0;
}
.mob-tog::after, .mob-tog.active::before {
  height: 2px;
  background: #002e6d;
}
.mob-tog.active::before {
  transform:rotate(-45deg);
}
.mob-tog.active::after {
  transform:rotate(45deg);
}
.bx-controls-direction .disabled {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.70;
}
#dimmer {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 24, 56, 1);
  z-index: 95;
  top: 0;
  left: 0;
  opacity: 0.80;
}
.stop-scroll, .mod-open, .mob-out {
  height: 100%;
  overflow: hidden;
}
/*BG COLORS*/
.yellow-bg {
  background-color:#F7A700;
}
.blue-background {
  background-color:#002E6D;
}
.dblue-background, .co-inner {
  background-color: #001838;
}
/*FONT COLORS*/
.dblue {
  color: #001838;
}
.blue, .mega .sub-menu li a {
  color:#002E6D;
}
.yellow {
  color: #F7A700;
}
/*ALL TRANSITIONS*/
a, a:hover, a::after, a::before, input[type]:focus, textarea:focus, header, .nav-top, .ajax-loader, .logo span, .tile .inner, .thumb, input[type=submit], .etile img, .etile .sline, .etile .below, .ntile img, .ntile .bar, .no-img, .itile img, .vd-wrap img, .btn-play, .vd-wrap video  {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
/*ALL CURVES*/
.curve4, .btn-fill a {
  -webkit-border-radius: .5em;
  -moz-border-radius: .5em;
  border-radius: .5em;
}
.circle, .bx-pager-item a, input[type="radio"] {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%;
}
/*-------------FORMS----------------*/
form label {
  display: block;
  line-height: 1;
  font-size: 1.25em;
  font-family: var(--mer-fancy);
  font-weight: 600;
  padding-bottom: .5em;
  color: var(--mer-blue);
}
form label span {
  color: #808285;
  font-weight: 400;
}
form p {
  font-size: 1em;
  line-height: 1;
  padding: 0;
}
input[type], textarea, select {
  padding:.64em 1.25em;
  border: 1px solid rgba(0, 24, 56, .5);
  width:100%;
  font-size:1em;
  font-weight:600;
  color:var(--mer-blue);
}
.cform select {
  font-weight: 400;
  color: #808080;
  -webkit-appearance:none;
  background: url('img/icons/caret.svg') no-repeat calc(100% - .5em) center;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus {
  border-color:var(--mer-yellow);
}
textarea {
  font-family: var(--mer-reg);
}
.cform textarea {
  height: 9.125em;
}
.wpcf7-checkbox, .wpcf7-radio {
  padding: .5em 0;
  display: block;
  border:dotted 1px transparent;
  margin: -.25em 0 -.5em 0;
}
.wpcf7-list-item {
  display: block;
  margin: 0;
  padding: 0 0 .5em 1em;
}
.wpcf7-list-item>label {
  display: inline-block;
  padding-bottom: 0;
}
.wpcf7-list-item:last-of-type {
  padding-bottom: 0;
}
input[type="checkbox"], input[type="radio"] {
  font-size: 1rem;
  width: 1em;
  height: 1em;
  padding: 0;
  border: solid 1px var(--mer-dblue);
  background-color: transparent;
  vertical-align: middle;
  cursor: pointer;
  margin-right: .5em;
}
input[type="checkbox"]:checked, input[type="radio"]:checked {
  background-color: var(--mer-dblue);
}
select option { /*non webkit fix*/
  -webkit-appearance:unset;
  color: #333;
  background-color: inherit;
}
input[type=submit] {
  border:none;
  outline:none;
  font-size:1em;
  color:#fff;
  padding:.5em 1.2em;
  cursor:pointer;
  text-transform:uppercase;
  text-decoration:none;
}
.wpcf7-not-valid {
  border-color: red !important;
}
.wpcf7-recaptcha {
  transform: scale(.85);
  position: relative;
  left: -20px;
  top: -6px;
  display: inline-block;
}
form .wpcf7-form-control-wrap {
  display: block;
  padding-bottom: 1.5em;
  position: relative;
}
form .wpcf7-form-control-wrap[data-name="your-message"] {
  padding-bottom: 1em;
}
form .wpcf7-form-control-wrap[data-name="newsletter"]{
  padding-bottom: 0;
}
form span.wpcf7-not-valid-tip { /*hide error label per field*/
  font-size: .75em;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: .5em;
}
.wpcf7 form .wpcf7-response-output {
  padding: 1em 0 0;
  border: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: red;
}
form div.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #454545;
}
form .form-end {

}
form .form-end .wpcf7-form-control-wrap, form .form-end p {
  padding-bottom: 0;
}
form .form-end .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  text-align: left;
  position: relative;
  margin-top: -.4em;
  bottom: inherit;
  right: inherit;
}
form .sub-wrap {
  position: relative;
  display: block;
  z-index: 0;
  width: 8.125em;
  background: var(--mer-dblue);
}
.sub-wrap input[type=submit] {
  background-color: transparent; /*wrap holds bg color*/
  position: relative;
  text-transform: none;
  font-family: var(--mer-fancy);
  font-weight: 600;
  font-size: 1em;
  z-index: 2;
}
form.submitting input[type=submit] {
  pointer-events: none;
  cursor: not-allowed;
}
.wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc(100% + .5em);
  z-index: 3;
}
div.wpcf7 .ajax-loader {
  position: absolute;
  left: calc(50% + 2em); /*half btn text*/
  margin: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-image: none;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
@keyframes ring-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tbar form *::-webkit-input-placeholder {
  color: var(--mer-blue);
  font-weight: 400;
}
.tbar form *::-moz-placeholder {
  color: var(--mer-blue);
  font-weight: 400;
}
.tbar form *:-ms-input-placeholder {
  color: var(--mer-blue);
  font-weight: 400;
}
.tbar form *:-moz-placeholder {
  color: var(--mer-blue);
  font-weight: 400;
}
form *::-webkit-input-placeholder {
  color: #808080;
  font-weight: 400;
}
form *::-moz-placeholder {
  color: #808080;
  font-weight: 400;
}
form *:-ms-input-placeholder {
  color: #808080;
  font-weight: 400;
}
form *:-moz-placeholder {
  color: #808080;
  font-weight: 400;
}
/*-------------COMPATIBILITY----------------*/
.transparent {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}
.transform {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.display-inline {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/*-----IE ONLY-----*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
}
/*RESPONSIVE*/
/*RETINA IMAGES*/
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
}
@media (max-height: 600px) and (min-width: 981px) {
  .dd-outer .width {
    min-height: 22em;
  }
}
@media (min-width: 1201px) {
  .has-badge {
    position: relative;
    z-index: 0;
  }
  .has-badge::after {
    content: " ";
    width: 13.25em;
    height: 13.25em;
    position: absolute;
    left: calc(100% + 2.25em);
    top: 0;
    background: url('img/badge-d.svg') no-repeat center;
    background-size: contain;
    opacity: .1;
  }
  .related .pslide-wrap {
    padding-left: 4.75em;
  }
}
@media (max-width: 1400px) {
  .hbanner .btn-next {
    left: inherit;
    right: 2vw;
  }
}
@media (max-width: 1300px) {
  .dot-dub::before {
    display: none;
  }
  .h-rt, .cmain .width {
    padding-right: 0;
  }
  .car4 .quote {
    padding-right: 2.5em;
  }
  .edev2 .vfill-left {
    right: calc(50% + 3em);
  }
  .sproject .tabs .tab {
    padding: 2.5em 2em;
  }
  .pslide-wrap {
    padding-left: 3em;
  }
  .mer-count .pslider .splide__arrows {
    right: 100%;
  }
  .mer-count .pslider #counter {
    right: calc(100% + .5em);
  }
}
@media (max-width:1200px) {
  .nav-top .menu>li>a {
    padding-left: .6em;
    padding-right: .6em;
  }
  .dd-outer .width {
    min-height:inherit;
  }
  .mega .dd-wrap[data-depth="1"] {
    padding-left:2em;
  }
  .hslider .width {
    height: 40em;
  }
  .sp-ban h1, .sp-ban h2 {
    font-size: 2.75em;
  }
  .sp-ban .column li {
    padding-top: 0;
  }
  .ptile .vflex {
    padding: 1em;
    row-gap: .5em;
  }
  .ptile h3 {
    font-size: 1.75em;
  }
  .pfeat {
    margin-top: -7em;
  }
  .pfeat .ptile a {
    padding-top: 100%;
  }
  .wbod .box.detail {
    padding: 2em;
  }
}
@media (max-width:1100px) {
  .car1 .bfx br {
    display: none;
  }
  .extrap p {
    font-size: 6.5em;
  }
  .nav-top .menu>li>a {
    padding-left: .4em;
    padding-right: .4em;
  }
  .ptiles .ptile {
    width: 50%;
  }
  .ptiles .ptile a {
    padding-top: 100%;
  }
}
/* Primary Break */
@media (max-width: 980px) {
  .nav-top, .tb-link, .tbar h2, .tbar .xsearch {
    display: none;
  }
  .mast {
    background-color: #fff;
    z-index: 100;
    top: -1px;
    height: calc(4rem + 2px);
  }
  .mast .width {
    padding-left: 0;
    height: 100%;
  }
  .h-rt {
    padding-left: 2em;
  }
  .m-nav {
    display:block;
  }
  .nav-top, .mast .lang {
    transform:translateX(100%);
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .mob-out .nav-top, .mob-out .mast .lang {
    transform:translateX(0);
    visibility: visible;
  }
  .logo {
    width: 8em;
  }
  .logo .logo-d{
    opacity: 1;
  }
  .logo .logo-w {
    opacity: 0;
  }
  .m-nav {
    height: 4rem;
  }
  main, main.hero-drop {
    margin-top: 4rem;
  }
  nav.nav-top {
    top: 4rem;
    padding-top: 2.25em;
    float: none;
  }
  nav.nav-top {
    height:calc(100% - 4rem);
    width:100%;
    overflow: hidden;
    position:fixed;
    max-width:100%;
    left:0;
    margin-top:0;
    display: block;
    z-index:98;
    background-color:#fff;
  }
  .menu-top-container {
    height: 100%;
    transition: transform 0.5s ease;
  }
  .nav-top ul {
    display: block;
  }
  .nav-top .menu {
    /* overflow-y:auto; */
    height: 100%;
    padding: 1.75em;
  }
  .mega .dd-wrap[data-depth="1"] {
    padding-left: 0;
  }
  .dd-outer .width {
    width: 100%;
  }
  .nav-top .menu>.menu-item-has-children>a::after, .mega li.menu-item-has-children>a::after {
    transform:rotate(270deg);
  }
  .nav-top .dd-back {
    margin-bottom: .5em;
  }
  .nav-top .dd-back>a::before {
    margin-left: 0;
    margin-right: .5em;
    transform:rotate(90deg);
  }
  .nav-top li {
    padding: .3125em 0;
  }
  .nav-top .sub-menu li {
    padding: .25em 0;
  }
  .nav-top .menu>li>a {
    font-family: var(--mer-reg);
  }
  .nav-top .menu>li>a, .nav-top li a {
    padding:.25em .5em;
    font-size: 1.25em;
    line-height: 1.2;
    color:var(--mer-blue);
    font-weight: 500;
  }
  .nav-top li a {
    display:inline-block;
    text-transform: none;
    position: relative;
  }
  .nav-top ul, .nav-top li {
    position: unset;
  }
  .nav-top a, .nav-top a:visited {
    color:var(--mer-blue);
    text-decoration: none;
  }
  .nav-top .dd-outer {
    padding:1.75em;
    width: 100vw;
  }
  .nav-top .dd-outer, .nav-top .dd-wrap[data-depth="1"] {
    position: absolute;
    left: 100vw;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
  .nav-top .dd-wrap[data-depth="1"] {
    width: calc(100vw - 3em); /*parent padding*/
  }
  .dd-wrap[data-depth="0"] {
    /*always vis*/
  }
  .nav-top .dd-wrap.active, .nav-top .dd-outer.active {
    opacity: 1;
    visibility: visible;
  }
  body[data-menu="0"] .menu-top-container {
    transform:translateX(0);
  }
  body[data-menu="1"] .menu-top-container {
    transform:translateX(-100vw);
  }
  body[data-menu="2"] .menu-top-container {
    transform:translateX(-200vw);
  }
  .mob-call>a {
    position: relative;
  }
  .mob-call>a::before {
    content: "Get in touch:";
    display: inline-block;
    font-weight: 400;
    position: relative;
    margin-right: .25em;
  }
  .nav-top li.break-pre {
    position: relative;
    margin-top: 1.5em;
    padding-top: 1.5em;
  }
  .nav-top li.break-pre::before {
    bottom: inherit;
    top: 0;
  }
  .mast .lang {
    position: fixed;
    left: 0;
    width: 100%;
    top: 4rem;
    padding: .375em 1.5em;
    display: flex;
    justify-content: flex-end;
    background: #efefef;
    z-index: 99;
  }
  .lang .ddn-wrap {
    background-color: transparent;
    font-size: 1.3125em;
  }
  .s-fire {
    position: absolute;
    right: 2.5em;
    top: 0;
    bottom: 0;
    width: 1.75em;
    height: 1.75em;
    margin: auto;
    background-size: 82% auto;
    background-image: url('img/icons/search.svg');
  }
  .tbar {
    top: 4rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
    transform: translateX(101%);
  }
  .tbar .width {
    z-index: 2;
  }
  .tbar form {
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .tbar .sfield {
    background-color: transparent;
  }
  .tbar::before {
    content: " ";
    width: calc(100% + 4em);
    height: calc(100% + 4em);
    top: 0;
    left: -2em;
    position: absolute;
    z-index: 0;
    box-shadow: inset 0 0 1.5em rgba(0, 0, 0, .5);
  }
  .tbar .s-sub {
    background: url('img/icons/search.svg') no-repeat right center;
    background-size: 90% auto;
    width: 1.675em;
    padding: 0;
  }
  /*end menu*/
  .mega .left, .trio .widget_nav_menu, .btn-next, .h2-detail h2::before, .location .desc::before, .sp-ban h2 br, .sp-ban h1 br, .mob-off, .project .twrap {
    display: none;
  }
  .banner>.width, .row>.column:first-of-type, .footer-pre .btn-wrap, .edev4 .width {
    padding-top: 0;
  }
  .column {
    width: 100%;
    float: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 2em;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .vcent, .row.invert, .credits .width {
    display: block;
  }
  .bfx br, .spon-con strong br {
    display: none;
  }
  .cmain .left {
    margin-top: 0;
  }
  .footer-pre .last {
    padding-top: 1em;
  }
  footer .trio {
    padding-top: 2em;
  }
  footer .trio .width {
    flex-wrap: wrap;
    max-width: 20em;
    text-align:center;
    padding-bottom: 2em;
  }
  .trio .col-mix, .credits ul {
    justify-content: center;
  }
  .credits .menu li:not(:last-of-type) {
    margin-right: .3125em;
    padding-right: .3125em;
  }
  .credits .width {
    padding-bottom: 1.5em;
  }
  .credits ul {
    padding: .875em 0 .5em;
  }
  .credits p {
    text-align: center;
  }
  .trio .col1, .trio .col-mix, .sb-form {
    width: 100%;
  }
  .sb-form {
    max-width: 30em;
  }
  .employee .bod, .news2 .width, .who1 .width {
    padding-bottom: 0;
  }
  #block-8 {
    padding: 1.5em 0 1.75em 0;
  }
  .trio .col1 .btn-wrap {
    padding-top: 1.75em;
  }
  #block-13 {
    position: relative;
    bottom: inherit;
    right: inherit;
  }
  .modal-wrap {
    padding: 40px;
  }
  .modal-box {
    max-width: 592px;
    width: 100%;
    padding: 60px 40px;
  }
  .modal-close {
    right: 16px;
  }
  .sbnav .commons .current_page_item::before {
    right: 100%;
  }
  .what2 .tile {
    width: 50%;
  }
  .car2 .width, .cmain .width {
    padding-bottom: 3em;
  }
  .home5 .box {
    margin-left: 0;
  }
  h2, .sp-ban h1, .sp-ban h2 {
    font-size: 2.5em;
  }
  .vfill-left, .vfill-right {
    position: relative;
    height: 50vw;
    right: inherit;
    width: 100%;
  }
  .edev2 .vfill-left {
    right: inherit;
  }
  .vis-slide-wrap {
    max-width: 38em;
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
  .etile h3 {
    font-size: 1.75em;
  }
  .etile .tline {
    font-size: 1.125em;
  }
  .etile .below {
    padding-top: 1.125em;
  }
  .employee .sub1 {
    padding-bottom: 2em;
  }
  .employee .top {
    padding-top: 1.25em;
    color: var(--mer-blue);
  }
  .employee .tline {
    color: var(--mer-dblue);
  }
  .cinfo.row {
    display: flex;
    flex-wrap: wrap;
    row-gap:2em;
    margin: -4em auto 0;
    width: 90%;
  }
  .cinfo .column {
    width: 50%;
  }
  .banner.default::after {
    width: 50%;
    right: 3vw;
    max-width: 25em;
    background-size: 100% auto;
  }
  .sres-main .term {
    padding: 3em 0 1.5em;
  }
  .hslider .width {
    height: 50em;
    justify-content: flex-start;
  }
  .hpager .inner {
    padding: .5em 1em 2em;
  }
  /* .sproject .width.hpage-wrap {
    margin-top: -6.5em;
  } */
  .vtile, .nfeat {
    max-width: 36em;
  }
  .vtile .right {
    padding-top: 1.25em;
  }
  .ntile.wide .inner {
    align-items: flex-start;
  }
  .blog-end::before {
    left: inherit;
    right: 2em;
  }
  .news2 .right, .blog .width, .mars1 .width {
    padding-top: 3em;
  }
  .loc .flexer {
    margin: 0 -2%;
  }
  .lbox {
    width: 33.333%;
    padding: 2%;
  }
  .hslider h1, .hslider h2 {
    font-size: 2.5em;
    padding-bottom: .5em;
  }
  .home-wrap .hslider .width {
    height: 44em;
  }
  .hslider .first p, .employee .icons label {
    font-size: 1.5em;
  }
  .hslider .column .btn-wrap.right {
    text-align: left;
    padding-top: 1.5em;
  }
  .home3 .sub2 .row {
    row-gap:0;
  }
  .pscroll {
    transform: translateY(0) !important; /*disable floats*/
  }
  .stats {
    padding-top: 2em;
  }
  .home3 .pscroll {
    display: none;
  }
  .home1 .stats ul {
    margin-right: 0;
  }
  .filters h3 {
    width: 100%;
  }
  .filters .col1 {
    padding-left: 0;
  }
  .filters .col2 {
    padding-right: 0;
  }
  .filters .col {
    width: 50%;
    max-width: 26em;
  }
  .insights .filters .col1 {
    flex-basis: 100%;
    padding-right: 0;
    max-width: 30em;
  }
  .insights .filters .col2 {
    padding-left: 0;
    padding-right: 2em;
  }
  .filters .col label {
    padding-bottom: .25em;
  }
  .clear-filters {
    bottom: inherit;
    top: 100%;
  }
  .insights .clear-filters {
    top: inherit;
    right: 1em;
    bottom: 0;
    left: inherit;
  }
  .work .sub1 .first {
    padding-top: 3em;
  }
  .pfeat {
    margin-top: 0;
    max-width: 30em;
  }
  .pbanner, .oa-slide .inner {
    height: 26em;
    min-height: inherit;
  }
  .related .btn-wrap {
    padding-left: 1.125em;
  }
  .itile {
    width: 50%;
  }
  .mb-ctog {
    font-weight: 700;
    color: var(--mer-blue);
    text-decoration: none;
    cursor: pointer;
    display: block;
    position: relative;
    margin-bottom: .75em;
  }
  .sbnav h3 {
    padding-bottom: 0;
    font-size: 1em;
  }
  .sbnav h3 a {
    cursor: pointer;
    position: relative;
  }
  .sbnav .menu {
    display: none;
    padding-top: .75em;
  }
  .sbnav ul.commons {
    display: none;
    overflow: hidden;
  }
  .sbnav .commons .current_page_item {
    margin-left: 1em;
  }
  .sbnav hr {
    margin:1.5em 0 1em;
  }
  .wbod .mob-title {
    display: block;
  }
  .wbod .mob-title h1 {
    color: var(--mer-blue);
    font-size: 2.5em;
    margin-bottom: 1.25em;
  }
}
@media (max-width: 800px) {
    h2, .sp-ban h1, .sp-ban h2 {
      font-size: 2em;
    }
  .itable .labels {
    display: none;
  }
  .tabs {
    flex-wrap: wrap;
    row-gap:1.5em;
  }
  .tabs .trig ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap:.5em;
  }
  .tabs .trig li:not(.active) a {
    background-color: #efefef;
  }
  .tabs .trig li {
    width: calc(50% - 1em);
    text-align: center;
  }
  .tabs .bod, .tabs .trig {
    width: 100%;
    padding: 0;
  }
  #post-1034 .banner {
    height: 12em;
  }
  .con1 .width {
    margin-top: -6em;
  }
  .tabs .bod {
    min-height: inherit !important;
  }
  .values li {
    font-size: 4em;
  }
  .etile {
    width: 50%;
  }
  .cinfo.row {
    margin-top: -2em;
  }
  .itable .grid>ul>li:not(:last-of-type) {
    padding-bottom: 1.25em;
  }
  .itable .grid .pre {
    font-weight: 600;
    color: var(--mer-blue);
  }
  .sproject .logos ul {
    flex-wrap: wrap;
  }
  .sproject .logos li {
    width: calc(50% - .75em);
  }
  .sproject .logos img {
    margin: auto;
  }
  .ntile.wide .left, .ntile.wide .detail, ul.cat-list {
    width: 100%;
  }
  .ntile.wide {
    max-width: 30em;
    margin-left:auto;
    margin-right:auto;
  }
  .controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .controls ul.cat-list {
    justify-content: center;
    column-gap: 5%;
  }
  .all-news h1 {
    text-align: center;
  }
  .mcol {
    width: 100%;
    max-width: 30em;
  }
  .mcol.mid p:last-of-type,   .mcol .btn-wrap.white.fix-bot {
    margin-top: 1.75rem;
  }
  .mars-trio>p:last-child {
    text-align: left;
    margin-top: 0;
  }
  .location .services ul {
    column-count: 1;
  }
  .ptiles .ptile a {
    padding-top: 130%;
  }
  .project .pre-bar {
    flex-wrap: wrap;
  }
  .pre-bar .item {
    width: 50% !important;
  }
}
@media (max-width: 600px) {
  .tile h3 {
    font-size: 1.25em;
    padding: .75rem;
  }
  .extrap p {
    font-size: 5em;
  }
  .tile .cta-wrap {
    padding: .5em .75em;
  }
  .tile .inner {
    transform: translateY(2.75em);
  }
  .home5 .box {
    padding: calc(6% + .25em);
  }
  .employee .banner.default {
    height: 20em;
  }
  .no-events {
    height: auto;
  }
  .nprevs {
    row-gap:1em;
  }
  .nprevs .ntile {
    width: 100%;
  }
  .lbox {
    width: 50%;
  }
  .lbox .inner {
    min-height: 10em;
  }
  .lbox ul {
    padding: .75em;
  }
  .home1 .stats ul {
    flex-wrap: wrap;
    row-gap:1.5em;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .home1 .stats li {
    width: calc(50% - .5em);
  }
  .cmain, .dotted, .employee .bod::after, .con1::after, .location .bod::after {
    background-size: contain;
  }
  .quote p strong {
    font-size: 1.375em;
  }
  .pslide-wrap {
    width: 19em;
    padding-left: 2em;
    max-width: 100%;
    margin: auto;
  }
  .ptiles .alm-listing {
    justify-content: center;
  }
  .filters {
    max-width: 22em;
    margin: auto;
  }
  .ptiles .ptile, .filters .col {
    width: 100%;
    max-width: 20em;
  }
  .filters .col {
    padding: 0;
  }
  .insights .filters .col {
    padding: 0 !important;
    max-width: 100%;
  }
  .sb-wrap {
    padding-bottom: 1em;
  }
}
@media (max-width: 500px) {
  .home5 .box p, .vtile .dt-box span, .hslider .last p, .quote p strong {
    font-size: 1.25em;
  }
  .sp-ban .p-lg p, .sp-ban .hslider .first.p-lg p {
    font-size: 1.125em;
  }
  .home5 .last p strong, .who2 .sub2 .last em, h3, .etile h3 {
    font-size: 1.5em;
  }
  .h2-sm h2, .sp-ban h1, .sp-ban h2, .cmain .mid h2 {
    font-size: 1.75em;
  }
  .banner h1 {
    font-size: 2.25em;
  }
  .wbod .mob-title h1 {
    font-size: 2em;
  }
  .values li {
    font-size: 2.675em;
  }
  .extrap p {
    font-size: 4.25em;
  }
  .values strong {
    font-size: .85em;
    padding-right: .25em;
  }
  .tabs .trig li {
    font-size: 1em;
  }
  .cookies .width {
    flex-wrap: wrap;
  }
  .cookies .btn-wrap {
    padding-top: 1em;
  }
  .fix-chrome-xl-text, .bx-wrapper p {
    -webkit-text-size-adjust: 100%
  }
  .modal-box {
    max-width: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -khtml-border-radius: 0;
  }
  .modal-wrap {
    padding: 0;
  }
  .leader2:not(.mod) h2 {
    text-align: center;
  }
  .egrid {
    row-gap:1em;
    justify-content: center;
  }
  .etile {
    width: 100%;
    max-width: 20em;
  }
  .cinfo .column {
    width: 100%;
  }
  .cinfo.row {
    margin-top: 0;
  }
  .cform form .half, .cform .closer .fine {
    width: 100%;
  }
  .cform .closer {
    row-gap:1em;
    flex-wrap: wrap;
  }
  .vtile .dt-box .day {
    font-size: 4em;
  }
  ul.cat-list {
    column-gap: 1em;
    justify-content: space-between;
  }
  .hpager .splide__list {
    justify-content: center;
  }
  .hpager .splide__track--nav>.splide__list>.splide__slide {
    border:0;
    background-color: transparent;
    opacity: 1;
  }
  .hpager .splide__track--nav>.splide__list>.splide__slide.is-active {
    background-color: transparent;
  }
  .width.hpage-wrap {
    bottom: 1.5em;
  }
  .hpager .inner {
    padding:0;
    overflow:hidden;
    font-size: 0;
    width: 1rem;
    height: 1rem;
    border-radius:50%;
    border:solid 1px white;
    opacity: 1;
  }
  .hpager .is-active .inner {
    background-color: #fff;
  }
  .home-wrap .hslider .width {
    justify-content: center;
    height: 38em;
  }
  .banner, .child .banner {
    min-height: 20em;
  }
  .vid-trigger {
    width: 3.75em;
    height: 3.75em;
  }
  .vid-full .vid-fit {
    padding-top: 60%;
  }
  .btn-right.mfix {
    text-align: right;
  }
  .btn-right.mfix a {
    line-height: 1.2;
    text-align: right;
    max-width: 12em;
  }
  .cform .closer .left {
    width: 100%;
  }
  .pre-bar .item {
    width: 100% !important;
  }
  .itile {
    width: 100%;
  }
  .project .twrap {
    min-height: inherit;
  }
}
