/* =======================================
   VARIABLES
   ======================================= */
/* =======================================
   IMPORTS
   ======================================= */
/* =======================================
   SIZES
   ======================================= */
/*BACKGROUND*/
/*PRIMARY*/
/*NEUTRALS*/
/*UTILITY*/
header {
  z-index: 999;
  width: 100%;
  top: 0;
  position: sticky;
  background: #0060A9 url(../img/blue-bg.svg) no-repeat center/cover;
  color: #FFFFFF;
}
header .container {
  max-width: 1328px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}
header .container .logo {
  padding: 16px 0;
  margin-right: 16px;
}
header .container .logo img {
  display: block;
}
@media (max-width: 1210px) {
  header .container .logo img {
    max-width: 125px;
    height: auto;
  }
}
header .container #menus {
  display: flex;
  flex-direction: column;
  padding-top: calc(16px / 2);
  justify-content: space-between;
}
@media (max-width: 1210px) {
  header .container #menus {
    justify-content: center;
    padding-top: 0;
  }
}
header .container #menus .top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(16px * 0.75);
}
header .container #menus .top input[type=search] {
  width: 104px;
  background: rgba(255, 255, 255, 0.2) url(../img/search.svg) no-repeat;
  background-position: 16px calc(16px * 0.75);
  border: none;
  border-radius: 100px;
  padding: calc(16px * 0.75) 16px calc(16px * 0.75) 40px;
  line-height: 128%;
  color: #737582;
  font-weight: 400 !important;
  color: #FFFFFF;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  float: right;
}
@media (max-width: 1210px) {
  header .container #menus .top input[type=search] {
    display: none;
  }
}
header .container #menus .top input[type=search]::-moz-placeholder {
  color: #F6F7FB;
  overflow: visible;
}
header .container #menus .top input[type=search]::placeholder {
  color: #F6F7FB;
  overflow: visible;
}
header .container #menus .top input[type=search]:focus {
  width: 100%;
  transition: all 0.2s ease;
}
header .container #menus .top .button {
  border: none;
}
@media (max-width: 1210px) {
  header .container #menus .top .button .mobileHide {
    display: none;
  }
}
header .container #menus .top .memberPortal {
  position: relative;
}
@media (max-width: 800px) {
  header .container #menus .top .memberPortal {
    display: none;
  }
}
header .container #menus .top .memberPortal .button::after {
  content: "";
  display: block !important;
  float: right;
  margin-left: 16px;
  background: url(../img/down-white.svg) no-repeat center/20px;
  width: 12px;
  min-width: 12px;
  height: 16px;
  transition: all 0.2s ease;
}
header .container #menus .top .memberPortal ul {
  padding: 16px;
  border-radius: 10px;
  margin: 4px 0 0;
  list-style: none;
  background: #003055;
  position: absolute;
  z-index: 999;
  width: 100%;
  display: none;
}
header .container #menus .top .memberPortal ul li a {
  color: #FFFFFF;
  padding: 4px;
  display: block;
}
header .container #menus .top .memberPortal.active .button::after {
  transform: rotate(180deg);
}
header .container #menus .top .memberPortal.active ul {
  display: block;
}
header .container #menus .top #mobile-toggle {
  display: none;
  z-index: 999;
  margin-left: auto;
}
header .container #menus .top #mobile-toggle a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
header .container #menus .top #mobile-toggle a span {
  visibility: hidden;
  transition: all 0.2s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #F3F4F8;
  border-radius: 100%;
}
header .container #menus .top #mobile-toggle a span.active {
  visibility: visible;
  opacity: 1;
}
header .container #menus .top #mobile-toggle a span img {
  display: inline-block;
}
@media (max-width: 1210px) {
  header .container #menus .top #mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .container #menus .top .mobile-menu {
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: calc(100% - calc(16px * 2));
  background: #FFFFFF;
  padding: 16px;
  opacity: 0;
  transition: all 0.2s ease;
  height: calc(100vh - 100% - calc(16px * 4));
  top: 100%;
  overflow-y: auto;
}
header .container #menus .top .mobile-menu .searchform {
  margin-bottom: 16px;
}
header .container #menus .top .mobile-menu .searchform input[type=submit] {
  display: none;
}
header .container #menus .top .mobile-menu .searchform input[type=search] {
  width: 100%;
  background: #F3F4F8 url(../img/search-mobile.svg) no-repeat;
  background-position: 20px 10px;
  padding: calc(16px / 2) calc(16px / 2) calc(16px / 2) 50px;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #FFFFFF;
  font-weight: 400;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  display: block;
  color: #737582;
  float: none;
}
header .container #menus .top .mobile-menu .searchform input[type=search]::-moz-placeholder {
  color: #737582;
}
header .container #menus .top .mobile-menu .searchform input[type=search]::placeholder {
  color: #737582;
}
header .container #menus .top .mobile-menu.active {
  visibility: visible;
  opacity: 1;
  z-index: 900;
}
header .container #menus .top .mobile-menu li {
  list-style: none;
  display: flex;
  align-items: center;
  width: 100%;
}
header .container #menus .top .mobile-menu li .sub-menu {
  display: none;
}
header .container #menus .top .mobile-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
header .container #menus .top .mobile-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/down.svg) no-repeat center/contain;
  margin-left: auto;
  transition: all 0.2s ease;
}
header .container #menus .top .mobile-menu li a {
  font-weight: bold;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 128%;
  color: #101223;
  padding: 16px 0;
  display: block;
  flex-grow: 1;
  text-decoration: none;
}
header .container #menus .top .mobile-menu li.hidden {
  display: none;
}
header .container #menus .top .mobile-menu li.expanded {
  flex-wrap: wrap;
  border: none;
}
header .container #menus .top .mobile-menu li.expanded a {
  padding: 16px;
  margin: 0 calc(0px - 16px) calc(0px - 16px);
}
header .container #menus .top .mobile-menu li.expanded a::after {
  transform: rotate(180deg);
}
header .container #menus .top .mobile-menu li.expanded .sub-menu {
  display: block;
  width: 100%;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li {
  border-top: none;
  display: block;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li::after {
  display: none;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li:not(:first-child) {
  margin-top: 16px;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li a {
  text-transform: none !important;
  display: flex;
  align-items: center;
  padding: calc(16px / 2) 0;
  background: transparent;
  margin: 0;
  border-bottom: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 142%;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li a::after {
  display: none;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li .sub-menu li {
  margin: 0;
}
header .container #menus .top .mobile-menu li.expanded .sub-menu li .sub-menu li a {
  font-weight: 400;
  padding: calc(16px / 2) 0;
}
header .container #menus .top .mobile-menu .mobileMemberCTA {
  background: #EBECF0;
  color: #101223;
  padding: calc(16px * 2);
  border-radius: 20px;
  margin-top: calc(16px * 2);
  margin-bottom: calc(16px * 2);
}
header .container #menus .top .mobile-menu .mobileMemberCTA h4 {
  margin-top: 0;
}
header .container #menus .main {
  margin-left: auto;
  display: flex;
  background: transparent;
  position: unset;
}
header .container #menus .main .mega-menu-wrap {
  position: unset;
  background: transparent;
}
@media (max-width: 1210px) {
  header .container #menus .main .mega-menu-wrap {
    display: none;
  }
}
header .container #menus .main #mega-menu-main-menu {
  padding: 0;
  list-style: none;
  position: unset;
  display: flex;
  gap: calc(16px * 4);
}
header .container #menus .main #mega-menu-main-menu li {
  display: inline-block;
  position: unset;
}
header .container #menus .main #mega-menu-main-menu li.mega-current-page-ancestor a.mega-menu-link, header .container #menus .main #mega-menu-main-menu li.mega-current-menu-ancestor:first-of-type a.mega-menu-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 142%;
  text-decoration: none;
  padding: 0;
  color: #FFFFFF;
  border-bottom: #FFFFFF 4px solid;
}
header .container #menus .main #mega-menu-main-menu li a {
  background: transparent !important;
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 142%;
  text-decoration: none;
  padding: 0 0 16px !important;
  border-bottom: transparent 4px solid;
  transition: all 0.2s ease;
}
header .container #menus .main #mega-menu-main-menu li a:hover, header .container #menus .main #mega-menu-main-menu li a[aria-expanded=true] {
  border-bottom: #FFFFFF 4px solid !important;
  background: transparent;
}
header .container #menus .main #mega-menu-main-menu li a .mega-indicator {
  display: none;
}
header .container #menus .main #mega-menu-main-menu li a {
  background: transparent;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu {
  display: flex;
  position: absolute;
  left: 0;
  width: 100%;
  background: #F6F7FB;
  z-index: 999;
  justify-content: center;
  padding: calc(16px * 3.5) 16px calc(16px * 4);
  box-shadow: 0px 16px 16px -8px rgba(0, 0, 0, 0.1);
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row {
  max-width: 1328px;
  margin: 0 auto;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row.active {
  background: linear-gradient(90deg, #FFFFFF 68%, #EBECF0 68%);
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu {
  display: flex;
  position: relative;
  padding: 0;
  gap: calc(16px * 3.5);
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  box-shadow: none;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li {
  width: 100% !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li:first-of-type {
  min-width: 400px;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li .mega-sub-menu {
  display: flex;
  flex-direction: column;
  gap: calc(16px * 1.5);
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li {
  padding: 0 !important;
  max-width: 100%;
  cursor: pointer;
  min-width: unset !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li a.mega-menu-link {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 130.3% !important;
  color: #101223 !important;
  text-transform: none !important;
  padding: 0 !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li a.mega-menu-link:hover {
  border: none !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li .mega-sub-menu {
  padding: 0;
  margin-top: 16px;
  gap: calc(16px * 0.75);
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li .mega-sub-menu li a {
  font-size: 16px !important;
  font-weight: normal !important;
  font-weight: 400 !important;
  line-height: 142% !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li.mega-menu-item-type-widget {
  background: #EBECF0 !important;
  border-radius: 20px;
  padding: calc(16px * 3) calc(16px * 2) !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li.mega-menu-item-type-widget h4 {
  color: #101223 !important;
  font-size: 28px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 116% !important;
  text-transform: none !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li.mega-menu-item-type-widget p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 142%;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li.mega-menu-item-type-widget a {
  display: inline-block !important;
  padding: calc(16px * 0.75) calc(16px * 2) !important;
  text-decoration: none !important;
  border: 1px solid !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 128% !important;
  background: #E22B28 !important;
  color: #FFFFFF !important;
  border-color: #E22B28 !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-grid .mega-sub-menu .mega-menu-row .mega-sub-menu li li.mega-menu-item-type-widget a:hover {
  background: #F6F7FB !important;
  color: #E22B28 !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-flyout .mega-sub-menu {
  background: #FFFFFF !important;
  padding: 16px;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: calc(16px / 2);
  border-radius: 5px;
  max-width: 18vw;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-flyout .mega-sub-menu li a {
  padding: calc(16px * 0.75) 16px !important;
  margin: none !important;
  line-height: 142% !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}
header .container #menus .main #mega-menu-main-menu li.mega-menu-flyout .mega-sub-menu li a:hover {
  color: #E22B28;
}

#alert {
  display: none;
}
#alert.visible {
  display: block;
  background: #FCF385;
  color: #101223;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 142%;
}
#alert .container {
  max-width: 1328px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2) calc(16px * 3) calc(16px / 2) 16px;
  position: relative;
  max-width: calc(1328px - calc(16px * 2));
}
#alert .container .copy {
  margin: 0 16px;
}
#alert .container .copy p {
  margin: 0;
}
#alert .container .copy p a {
  text-transform: none;
  font-weight: 600;
}
#alert .container #noticeClose {
  position: absolute;
  right: 0;
  cursor: pointer;
  margin-right: 16px;
}

footer {
  background: #0060A9 url(../img/blue-bg.svg) center bottom/cover no-repeat;
  color: #FFFFFF;
  margin-top: auto;
}
footer a {
  color: #101223;
  text-decoration: none !important;
}
footer a:hover {
  text-decoration: underline;
  color: #404252;
}
footer a::after {
  display: none !important;
}
footer .container {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 16px;
}
footer .container h3 {
  font-size: 20px;
  line-height: 22px;
  margin: 0 0 calc(16px / 2);
}
footer .container .top {
  padding: calc(16px * 3) 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .container .top .column:nth-child(2) {
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 1210px) {
  footer .container .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .container .top p {
  margin: 0;
  line-height: 28px;
}
footer .container .top .menu {
  padding: 0;
  margin: 16px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: calc(16px * 3);
}
@media (max-width: 1210px) {
  footer .container .top .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
footer .container .top .menu li {
  margin: calc(16px / 2) 0;
}
footer .container .top .menu a {
  line-height: 28px;
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 142%;
}
footer .container .top .social a {
  display: inline-block;
  transition: all 0.2s ease;
  margin: 0 calc(calc(16px / 2) / 2);
}
footer .container .top .social a svg path {
  fill: #FFFFFF;
}
footer .container .top .social a:hover {
  transform: translateY(-3px);
}
footer .bottom {
  background: rgba(0, 48, 85, 0.5);
}
footer .bottom .container {
  max-width: 1328px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px calc(16px * 2);
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
footer .bottom .container p {
  margin: 0;
}
footer .bottom .container .members {
  margin-left: auto;
}
footer .bottom .container .members a {
  display: flex;
  align-items: center;
  gap: calc(16px / 2);
}
@media (max-width: 600px) {
  footer .bottom .container .members {
    margin-left: 0;
  }
}
footer .bottom .container .menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: calc(16px * 2);
  margin: 0;
}
footer .bottom .container .menu a {
  color: #FFFFFF;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.hero {
  padding: 0;
}
.hero.video {
  position: relative;
}
.hero.video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.hero.video .playPause {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  position: absolute;
  right: calc(16px * 3);
  bottom: calc(16px * 3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero.video .pause {
  background: rgba(255, 255, 255, 0.25) url(../img/pause.svg) no-repeat center;
}
.hero.video .play {
  background: #E22B28 url(../img/play.svg) no-repeat center;
}
.hero.video .container {
  color: #FFFFFF;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 210px 16px;
}
.hero.video .container h1 {
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  margin: 0;
  max-width: 700px;
}
.hero.video .container .button {
  margin-top: calc(16px * 2);
}
.hero.video .container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(37, 74, 94, 0.4) 0%, rgba(37, 74, 94, 0.4) 100%);
  background-blend-mode: multiply;
}
.hero .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 1050px;
  padding: calc(16px * 4) 16px;
  display: flex;
  align-items: center;
  gap: calc(16px * 4);
}
@media (max-width: 1210px) {
  .hero .container {
    flex-wrap: wrap;
    gap: calc(16px * 2);
  }
  .hero .container .left, .hero .container .right {
    width: 100%;
    text-align: center;
  }
}
.hero.simple::before {
  content: "";
  display: block;
  background: url(../img/glow.svg) no-repeat center top/100% auto;
  width: 100%;
  height: 700px;
  position: absolute;
  z-index: -1;
}
.hero.simple .container {
  justify-content: space-between;
  max-width: 1328px;
  gap: 16px;
}
.hero.simple .container.nobottom {
  padding-bottom: 0;
}
.hero.simple .container .content {
  width: 100%;
  max-width: 650px;
  flex-grow: 1;
}
.hero.simple .container .content .button {
  margin: 16px 0;
}
.hero.simple .container .content ul.posts {
  list-style: none;
  padding: 0;
  margin: 0 0 calc(16px * 2);
  max-width: 800px;
}
.hero.simple .container .content ul.posts li {
  padding: calc(16px * 1.5) 0;
  border-bottom: #D2D4DA 1px solid;
}
.hero.simple .container .content ul.posts li .date {
  color: #404252;
  display: block;
  margin-bottom: calc(16px / 2);
}
.hero.simple .container .content ul.posts li a {
  font-size: 20px;
  font-weight: 700;
  line-height: 130.3%;
  color: #101223;
  text-decoration: none;
}
.hero.simple .container .content ul.posts li a:hover {
  text-decoration: underline;
}
.hero.simple .container .content .files {
  margin-bottom: calc(16px * 2);
}
.hero.simple .container .content .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero.simple .container .side.video, .hero.simple .container .side.image {
  width: 100%;
  max-width: 560px;
  position: relative;
}
.hero.simple .container .side.video img, .hero.simple .container .side.image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero.simple .container .side.buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: flex-start;
}
.hero.simple .container .side.cta {
  border-radius: 20px;
  background: rgba(246, 247, 251, 0.5);
  align-self: flex-start;
  padding: calc(16px * 2);
  display: flex;
  gap: calc(16px * 1.5);
  align-items: center;
  max-width: 360px;
}
.hero.simple .container .side.cta .content h3, .hero.simple .container .side.cta .content h4, .hero.simple .container .side.cta .content h5, .hero.simple .container .side.cta .content h6 {
  margin: calc(16px * 1.5) 0 calc(16px / 2);
}
.hero.simple .container .side.cta .content *:first-child {
  margin-top: 0;
}
.hero.simple .container .side.cta .content *:last-child {
  margin-bottom: 0;
}
.hero.simple .container .side .playVideo {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8.8000001907px);
          backdrop-filter: blur(8.8000001907px);
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: calc(16px / 2) calc(16px * 1.5) calc(16px / 2) calc(16px / 2);
  color: #FFFFFF;
  font-weight: 600;
  line-height: 142%;
  display: flex;
  gap: calc(16px / 2);
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero.simple .container .side .playVideo:hover {
  background: #E22B28;
}
.hero.simple.wide .container .content, .hero.simple.wide .anchorMenu, .hero.simple.small .anchorMenu {
  max-width: 880px;
}
.hero.simple.small .container {
  max-width: 880px;
  gap: calc(16px * 4);
}
.hero.simple.small .container .side.image {
  width: auto;
  min-width: 200px;
}
.hero #breadcrumbs {
  max-width: 1328px;
  margin: 0 auto;
  padding: 16px;
  font-size: 10px;
  font-style: normal;
  line-height: 128%;
  color: #404252;
}
.hero #breadcrumbs strong {
  font-weight: 600;
}
.hero #breadcrumbs a {
  text-decoration: none;
  color: #404252;
}
.hero #breadcrumbs a:hover {
  text-decoration: underline;
}
.hero .anchorMenu {
  max-width: 1328px;
  margin: 0 auto;
  margin: calc(16px * 3.5) auto 0;
  display: flex;
  align-items: center;
  gap: calc(16px / 2);
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .hero .anchorMenu {
    display: block;
    padding: 16px;
    margin: 16px auto 0;
  }
}
.hero .anchorMenu .button {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #404252;
  padding: calc(16px * 0.75) calc(16px * 1.5);
}
.hero .anchorMenu .button.active {
  background: #0060A9;
  border-color: #0060A9;
  color: #FFFFFF;
}
@media (max-width: 800px) {
  .hero .anchorMenu .button.active {
    color: #404252;
  }
}
.hero .anchorMenu .button:hover {
  background: #E22B28;
  border-color: #E22B28;
  color: #FFFFFF;
}
@media (max-width: 800px) {
  .hero .anchorMenu .button:hover {
    color: #404252 !important;
  }
}
@media (max-width: 800px) {
  .hero .anchorMenu .button {
    border-radius: 0;
    background: #F6F7FB !important;
    width: calc(100% - calc(16px * 3) - calc(16px * 2));
    margin: 0 auto;
    border: 0px;
    display: none;
  }
}
.hero .anchorMenu .mobileOnly {
  display: none;
  background: #FFFFFF;
  padding: calc(16px / 2) calc(16px * 1.5);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 2px;
}
.hero .anchorMenu .mobileOnly::after {
  content: "";
  display: block;
  float: right;
  margin-left: auto;
  background: url(../img/down.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}
@media (max-width: 800px) {
  .hero .anchorMenu .mobileOnly {
    display: block;
  }
}
.hero .anchorMenu.active .mobileOnly::after {
  transform: rotate(180deg);
}
.hero .anchorMenu.active .button {
  display: block;
}

.general, .tabbedFlex {
  padding: calc(16px * 4) 16px;
}
.general .container, .tabbedFlex .container {
  max-width: 1328px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
}
@media (max-width: 800px) {
  .general .container, .tabbedFlex .container {
    flex-wrap: wrap;
  }
}
.general .container .column, .tabbedFlex .container .column {
  width: 100%;
}
.general .container .column .module:not(:last-of-type), .tabbedFlex .container .column .module:not(:last-of-type) {
  margin-bottom: 16px;
}
.general .container .column .module.text, .tabbedFlex .container .column .module.text {
  max-width: 880px;
}
.general .container .column .module.icon, .tabbedFlex .container .column .module.icon {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: calc(16px * 2) 0;
}
.general .container .column .module.icon .content *, .tabbedFlex .container .column .module.icon .content * {
  margin: 0 0 4px 0;
}
.general .container .column .module.image img, .tabbedFlex .container .column .module.image img {
  margin: 0 auto;
}
.general .container .column .module.search, .tabbedFlex .container .column .module.search {
  border-radius: 20px;
  background: #EFEEEB;
  padding: calc(16px * 3.5) calc(16px * 3);
  width: calc(100% - calc(16px * 3) - calc(16px * 3));
}
.general .container .column .module.search input[type=search], .tabbedFlex .container .column .module.search input[type=search] {
  width: 100%;
  background: #FFFFFF url(../img/search-mobile.svg) no-repeat;
  background-position: 16px calc(16px * 0.75);
  border: none;
  border-radius: 100px;
  padding: calc(16px * 0.75) 16px calc(16px * 0.75) 40px;
  line-height: 128%;
  color: #737582;
  font-weight: 400 !important;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  margin-top: calc(16px / 2);
}
.general .container .column .module.search input[type=search]::-moz-placeholder, .tabbedFlex .container .column .module.search input[type=search]::-moz-placeholder {
  color: #737582;
  overflow: visible;
}
.general .container .column .module.search input[type=search]::placeholder, .tabbedFlex .container .column .module.search input[type=search]::placeholder {
  color: #737582;
  overflow: visible;
}
.general .container .column img, .general .container .column iframe, .tabbedFlex .container .column img, .tabbedFlex .container .column iframe {
  max-width: 100%;
  border-radius: 20px;
}
.general .container.halves .column, .tabbedFlex .container.halves .column {
  width: calc(50% - 50px);
}
@media (max-width: 600px) {
  .general .container.halves .column, .tabbedFlex .container.halves .column {
    width: 100% !important;
  }
}
.general .container.halves .column:last-child p.large, .tabbedFlex .container.halves .column:last-child p.large {
  margin-left: auto;
}
.general .container.smallleft, .general .container.smallleft2, .tabbedFlex .container.smallleft, .tabbedFlex .container.smallleft2 {
  gap: calc(16px * 3) 100px;
}
.general .container.smallleft .column:first-of-type, .general .container.smallleft2 .column:first-of-type, .tabbedFlex .container.smallleft .column:first-of-type, .tabbedFlex .container.smallleft2 .column:first-of-type {
  width: unset;
  flex-grow: 1;
}
.general .container.smallleft .column:last-of-type, .general .container.smallleft2 .column:last-of-type, .tabbedFlex .container.smallleft .column:last-of-type, .tabbedFlex .container.smallleft2 .column:last-of-type {
  width: 100%;
  max-width: 880px;
}
@media (max-width: 800px) {
  .general .container.smallleft .column, .general .container.smallleft2 .column, .tabbedFlex .container.smallleft .column, .tabbedFlex .container.smallleft2 .column {
    width: 100% !important;
  }
}
.general .container.smallright, .general .container.smallright2, .tabbedFlex .container.smallright, .tabbedFlex .container.smallright2 {
  gap: calc(16px * 3) 100px;
}
.general .container.smallright .column:first-of-type, .general .container.smallright2 .column:first-of-type, .tabbedFlex .container.smallright .column:first-of-type, .tabbedFlex .container.smallright2 .column:first-of-type {
  width: 100%;
  max-width: 880px;
}
.general .container.smallright .column:last-of-type, .general .container.smallright2 .column:last-of-type, .tabbedFlex .container.smallright .column:last-of-type, .tabbedFlex .container.smallright2 .column:last-of-type {
  width: unset;
  flex-grow: 1;
}
@media (max-width: 800px) {
  .general .container.smallright .column, .general .container.smallright2 .column, .tabbedFlex .container.smallright .column, .tabbedFlex .container.smallright2 .column {
    width: 100% !important;
  }
}
.general .container.smallleft2 .column:last-of-type, .tabbedFlex .container.smallleft2 .column:last-of-type {
  max-width: 60%;
}
@media (max-width: 800px) {
  .general .container.smallleft2 .column:last-of-type, .tabbedFlex .container.smallleft2 .column:last-of-type {
    max-width: 100%;
  }
}
.general .container.smallright2 .column:first-of-type, .tabbedFlex .container.smallright2 .column:first-of-type {
  max-width: 60%;
}
@media (max-width: 800px) {
  .general .container.smallright2 .column:first-of-type, .tabbedFlex .container.smallright2 .column:first-of-type {
    max-width: 100%;
  }
}
.general .container.thirds, .tabbedFlex .container.thirds {
  gap: calc(16px * 1.5);
}
.general .container.thirds .column, .tabbedFlex .container.thirds .column {
  width: calc(33.3333% - 16px);
}
@media (max-width: 800px) {
  .general .container.thirds .column, .tabbedFlex .container.thirds .column {
    width: 100%;
  }
}
.general .container.fourths, .tabbedFlex .container.fourths {
  gap: calc(16px * 1.5);
}
.general .container.fourths .column, .tabbedFlex .container.fourths .column {
  width: calc(25% - calc(16px * 0.75) - calc(16px / 2));
}
@media (max-width: 1210px) {
  .general .container.fourths .column, .tabbedFlex .container.fourths .column {
    width: calc(50% - calc(16px * 0.75) - calc(16px / 2));
  }
}
@media (max-width: 800px) {
  .general .container.fourths .column, .tabbedFlex .container.fourths .column {
    width: 100%;
  }
}
.general .container.fifths, .tabbedFlex .container.fifths {
  gap: calc(16px * 1.5);
}
.general .container.fifths .column, .tabbedFlex .container.fifths .column {
  width: calc(20% - calc(16px * 0.75) - calc(16px / 2));
}
@media (max-width: 1210px) {
  .general .container.fifths .column, .tabbedFlex .container.fifths .column {
    wwidth: calc(50% - calc(16px * 0.75) - calc(16px / 2));
  }
}
@media (max-width: 600px) {
  .general .container.fifths .column, .tabbedFlex .container.fifths .column {
    width: 100%;
  }
}
.general.small .container, .general.med .container, .tabbedFlex.small .container, .tabbedFlex.med .container {
  max-width: 1050px;
}
.general.xsmall .container, .tabbedFlex.xsmall .container {
  max-width: 880px;
}
.general.full, .tabbedFlex.full {
  padding: 0;
}
.general.full .container, .tabbedFlex.full .container {
  max-width: 100%;
}
.general.full .container .module, .tabbedFlex.full .container .module {
  max-width: 100% !important;
}
.general.full .container img, .tabbedFlex.full .container img {
  border-radius: 0;
}
.general.center .container, .tabbedFlex.center .container {
  align-items: center;
}
.general.bottom .container, .tabbedFlex.bottom .container {
  align-items: flex-end;
}

.tabbedFlex {
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
.tabbedFlex > .container {
  flex-direction: column;
  gap: calc(16px * 3);
  max-width: 100% !important;
}
.tabbedFlex > .container .tabNav {
  display: flex;
  align-items: center;
  gap: calc(16px / 2);
  white-space: nowrap;
  width: calc(100% - calc(16px * 2));
  overflow-x: auto;
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 16px;
}
.tabbedFlex > .container .tabNav .tab {
  border-radius: 100px;
  background: #EFEEEB;
  padding: calc(16px * 0.75) calc(16px * 1.5);
  color: #404252;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tabbedFlex > .container .tabNav .tab:hover {
  background: #E4E2DD;
}
.tabbedFlex > .container .tabNav .tab.active {
  background: #0060A9;
  color: #FFFFFF;
}
.tabbedFlex > .container > .content {
  width: calc(100% - calc(16px * 2));
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 16px;
}
.tabbedFlex > .container > .content .contentTabs {
  display: none;
  max-width: 880px;
}
.tabbedFlex > .container > .content .contentTabs.active {
  display: block;
}
.tabbedFlex > .container > .content .contentTabs > .content:not(:first-child) {
  margin-bottom: calc(16px * 2);
}
.tabbedFlex > .container > .content .contentTabs .container:not(.transparent) {
  border-radius: 10px;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.05);
  padding: calc(16px * 3);
  margin-bottom: calc(16px * 1.5);
}
.tabbedFlex > .container > .content .contentTabs .container.white {
  background: #FFFFFF;
}
.tabbedFlex > .container > .content .contentTabs .container.gray {
  background: #EFEEEB;
}
.tabbedFlex > .container > .content .contentTabs .container.blue {
  background: #0060A9;
}
.tabbedFlex > .container > .content .contentTabs .smallright, .tabbedFlex > .container > .content .contentTabs .smallright2, .tabbedFlex > .container > .content .contentTabs .smallright, .tabbedFlex > .container > .content .contentTabs .smallright2 {
  gap: 60px;
}
.tabbedFlex.small .tabNav, .tabbedFlex.small .container > .content {
  max-width: 880px !important;
}

.posts {
  padding: calc(16px * 4) 0;
}
.posts .container {
  max-width: 1328px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 1050px;
}
.posts .container h2 {
  margin: 0;
  max-width: 650px;
}
.posts .container .viewall {
  color: #404252;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 1.28px;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  margin-left: auto;
  display: inline-block;
  margin-top: calc(16px * 1.5);
}
.posts .container .viewall:hover {
  text-decoration: underline;
}
.posts .container .columns {
  display: flex;
  gap: calc(16px * 3);
  margin-top: calc(16px * 1.5);
  flex-wrap: wrap;
}
.posts .container .columns .post {
  width: calc(33.3333% - calc(16px * 2));
  max-width: 320px;
  background: #FFFFFF;
  text-decoration: none;
  color: #101223;
}
.posts .container .columns .post .thumbnail {
  max-width: 320px;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.posts .container .columns .post .thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.2s ease;
}
.posts .container .columns .post .content {
  padding: calc(16px * 2);
}
.posts .container .columns .post .content h4 {
  margin: 0 0 16px;
}
.posts .container .columns .post .content .date {
  margin-bottom: 16px;
  font-weight: 500;
}
.posts .container .columns .post:hover .thumbnail {
  border-color: #404252;
}
.posts .container .columns .post:hover .thumbnail img {
  transform: scale(1.05);
}
@media (max-width: 1210px) {
  .posts .container .columns .post {
    width: calc(50% - calc(16px * 2)) !important;
    max-width: 100%;
  }
  .posts .container .columns .post .thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .posts .container .columns .post {
    width: 100% !important;
  }
}
.posts.notop {
  padding-top: 0;
}
.posts.nobottom {
  padding-bottom: 0;
}
.posts.noposts {
  margin-bottom: calc(16px * 4) !important;
}

.accordion, .tabbedFlex {
  padding: calc(16px * 4) 16px;
}
.accordion.manage, .tabbedFlex.manage {
  padding: 0;
}
.accordion .container, .tabbedFlex .container {
  max-width: 1328px;
  margin: 0 auto;
}
.accordion .container .intro, .accordion .container .outro, .tabbedFlex .container .intro, .tabbedFlex .container .outro {
  max-width: 880px;
}
.accordion .container .intro, .tabbedFlex .container .intro {
  margin-bottom: calc(16px * 2);
}
.accordion .container .outro, .tabbedFlex .container .outro {
  margin-top: calc(16px * 2);
}
.accordion .container .accordionItems, .tabbedFlex .container .accordionItems {
  max-width: 880px;
}
.accordion .container .accordionItems .accordionItem, .tabbedFlex .container .accordionItems .accordionItem {
  background: #FFFFFF;
  border-radius: 10px;
  border: 0.5px solid var(#EFEEEB, #EFEEEB);
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: calc(16px * 1.5);
  color: #101223;
}
.accordion .container .accordionItems .accordionItem .accordionTitle, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 142%;
  padding: 16px calc(16px * 1.5);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accordion .container .accordionItems .accordionItem .accordionTitle span span, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle span span {
  font-weight: 400;
}
.accordion .container .accordionItems .accordionItem .accordionTitle:hover, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle:hover {
  color: #E22B28;
}
.accordion .container .accordionItems .accordionItem .accordionTitle::after, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle::after {
  content: "";
  display: inline-block;
  background: #F3F4F8 url(../img/plus.svg) no-repeat center/auto;
  width: 24px;
  height: 24px;
  margin-left: auto;
  transition: all 0.2s ease;
  border-radius: 100%;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle.active {
  display: flex;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active::after, .tabbedFlex .container .accordionItems .accordionItem .accordionTitle.active::after {
  background: #F3F4F8 url(../img/minus.svg) no-repeat center/auto;
}
.accordion .container .accordionItems .accordionItem .accordionCopy, .tabbedFlex .container .accordionItems .accordionItem .accordionCopy {
  display: none;
  padding: calc(16px * 0.75) calc(16px * 1.5) 16px;
}
.accordion .container .accordionItems .accordionItem .accordionCopy p:first-of-type, .tabbedFlex .container .accordionItems .accordionItem .accordionCopy p:first-of-type {
  margin-top: 0;
}
.accordion .container .accordionItems .accordionItem .accordionCopy ::marker, .tabbedFlex .container .accordionItems .accordionItem .accordionCopy ::marker {
  color: #404252;
}
.accordion.small .container, .tabbedFlex.small .container {
  max-width: 880px;
}

.testimonial {
  max-width: 100% !important;
  overflow: hidden;
  padding: calc(16px * 4) 16px;
  background-image: url(../img/testimonial1.svg), url(../img/testimonial2.svg), linear-gradient(182deg, #00508C 8.14%, #012D4F 127.34%);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, top right;
  background-size: auto, auto 100%;
  color: #FFFFFF;
}
.testimonial .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 1050px;
}
.testimonial .container .eyebrow {
  color: #0ABEFF;
  text-align: center;
  display: none;
}
@media (max-width: 800px) {
  .testimonial .container .eyebrow {
    display: block;
  }
}
.testimonial .container h2 {
  text-align: center;
  margin: calc(16px * 1.5) 0 calc(16px * 3);
}
.testimonial .container .testimonialSlider {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.testimonial .container .testimonialSlider .slick-list {
  border-radius: 20px;
  background: linear-gradient(103deg, #00508C 20.24%, #012D4F 94.29%);
  box-shadow: 8px 8px 24px 2px rgba(0, 0, 0, 0.15);
  max-width: 880px;
  width: calc(100% - 128px);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .testimonial .container .testimonialSlider .slick-list {
    width: 100%;
  }
}
.testimonial .container .testimonialSlider .slick-list .slide {
  display: flex !important;
}
@media (max-width: 800px) {
  .testimonial .container .testimonialSlider .slick-list .slide {
    flex-direction: column;
  }
}
.testimonial .container .testimonialSlider .slick-list .slide .content {
  padding: calc(16px * 4) 80px;
  width: 50%;
  align-self: center;
}
@media (max-width: 800px) {
  .testimonial .container .testimonialSlider .slick-list .slide .content {
    width: calc(100% - calc(16px * 4));
    padding: calc(16px * 3) calc(16px * 2);
  }
}
.testimonial .container .testimonialSlider .slick-list .slide .content h3 {
  margin: 0;
}
.testimonial .container .testimonialSlider .slick-list .slide .content blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: calc(16px * 1.5) 0 0;
}
.testimonial .container .testimonialSlider .slick-list .slide .image {
  max-width: 340px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 800px) {
  .testimonial .container .testimonialSlider .slick-list .slide .image {
    width: 100%;
    max-width: 100%;
  }
}
.testimonial .container .testimonialSlider .slick-list .slide .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.testimonial .container .testimonialSlider .slick-list .slide .image .playVideo {
  position: absolute;
  background: rgba(255, 255, 255, 0.25) url(../img/play.svg) no-repeat center/40px;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  cursor: pointer;
}
.testimonial .container .testimonialSlider .slick-list .slide .image .playVideo::after {
  display: none;
}
.testimonial .custom_paging li {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
}

.cards {
  padding: calc(16px * 4) 16px;
}
.cards .intro {
  max-width: 1328px;
  margin: 0 auto;
  margin-bottom: calc(16px * 1.5);
}
.cards .container {
  max-width: 1328px;
  margin: 0 auto;
  display: grid;
  grid-row-gap: calc(16px * 1.5);
  grid-column-gap: calc(16px * 1.5);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .cards .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cards .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cards .container h2 {
  width: 100%;
  margin: 0;
}
.cards .container .card {
  background-size: cover;
  background-position: center;
  background-color: #F3F4F8;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
  border-radius: 20px;
  padding: calc(16px * 2);
  height: calc(550px - calc(16px * 4));
  justify-content: flex-end;
}
.cards .container .card::before {
  content: "";
  display: block;
  width: 100%;
  height: 66%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 95%);
  border-radius: 20px;
  z-index: 0;
}
.cards .container .card .content {
  z-index: 1;
}
.cards .container .card .content .button {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8.8000001907px);
          backdrop-filter: blur(8.8000001907px);
  border: none;
}
.cards .container .card .content .button:hover {
  color: #FFFFFF;
  background: #E22B28;
}
.cards .container .card.first {
  background: #00508C;
  color: #FFFFFF;
  padding: calc(16px * 3);
  display: block;
  height: auto;
}
.cards .container .card.first::before {
  display: none;
}
.cards .container .card.last {
  background: #00508C;
  color: #FFFFFF;
  padding: calc(16px * 3);
  display: block;
  height: auto;
}
.cards .container .card.last::before {
  display: none;
}
.cards .container .card.noimage {
  height: auto !important;
  padding: calc(16px * 3);
  background: #F6F7FB;
  justify-content: flex-start;
  color: #101223;
}
.cards .container .card.noimage::before {
  display: none;
}
.cards .container .card.noimage * {
  padding: 0 !important;
}
.cards.stretch .container {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: calc(16px * 3);
}
@media (max-width: 600px) {
  .cards.stretch .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cards.bg .container {
  gap: calc(16px * 3) 0;
}
.cards.bg .container h2 {
  margin-bottom: calc(16px * 2);
}
.cards.bg .container .card {
  background-size: cover;
  background-position: center;
  width: 33.3333%;
}
.cards.bg .container .card .content {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  min-height: calc(270px - calc(16px * 4));
  padding: calc(16px * 2);
}
.cards.bg .container .card .content h4 {
  color: #FFFFFF;
  margin-top: auto;
  margin-bottom: 16px;
}
.cards.bg .container .card .content h4::after {
  opacity: 0;
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.cards.bg .container .card .image {
  display: none;
}
@media (max-width: 1210px) {
  .cards.bg .container .card {
    width: 100%;
  }
}
.cards.bg .container a:hover .content h4::after {
  margin-left: 16px;
  opacity: 1;
}

.form {
  padding: 80px 16px;
}
.form .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 880px;
}
.form .container .intro {
  width: 100%;
  margin-bottom: calc(16px * 3);
}
.form .container .gForm .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form.withside .container {
  display: flex;
  max-width: 1328px;
  gap: calc(16px * 2) 100px;
}
@media (max-width: 800px) {
  .form.withside .container {
    flex-wrap: wrap;
  }
}
.form.withside .container .content {
  flex-grow: 1;
  max-width: 880px;
}
.form.withside .container .sidebar {
  width: 360px;
  margin-left: auto;
}
@media (max-width: 800px) {
  .form.withside .container .sidebar {
    margin-left: 0;
  }
}
.form.withside .container .sidebar .block {
  background: rgba(246, 247, 251, 0.5);
  border-radius: 20px;
  padding: calc(16px * 2) calc(16px * 3);
  margin-bottom: calc(16px * 2);
}
.form.withside .container .sidebar .block h1, .form.withside .container .sidebar .block h2, .form.withside .container .sidebar .block h3, .form.withside .container .sidebar .block h4, .form.withside .container .sidebar .block h5, .form.withside .container .sidebar .block h6 {
  margin: 0 0 16px;
}
@media (max-width: 1210px) {
  .form.withside .container {
    gap: calc(16px * 4);
  }
}
@media (max-width: 800px) {
  .form.withside .container {
    flex-direction: column;
  }
  .form.withside .container .sidebar {
    width: 100%;
  }
}

.gform_wrapper.gravity-theme input[type=radio], .gform_wrapper.gravity-theme input[type=checkbox] {
  display: none;
}
.gform_wrapper.gravity-theme .gfield_radio label, .gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .ginput_container_consent label {
  display: inline-flex !important;
  align-items: center;
  cursor: pointer;
}
.gform_wrapper.gravity-theme .gfield_radio label::before, .gform_wrapper.gravity-theme .gfield_checkbox label::before, .gform_wrapper.gravity-theme .ginput_container_consent label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  margin-right: calc(16px / 2);
  border: #404252 1px solid;
}
.gform_wrapper.gravity-theme .gfield_radio input[type=radio]:checked + label::before, .gform_wrapper.gravity-theme .gfield_radio input[type=checkbox]:checked + label::before, .gform_wrapper.gravity-theme .gfield_checkbox input[type=radio]:checked + label::before, .gform_wrapper.gravity-theme .gfield_checkbox input[type=checkbox]:checked + label::before, .gform_wrapper.gravity-theme .ginput_container_consent input[type=radio]:checked + label::before, .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox]:checked + label::before {
  background: #0060A9;
  box-shadow: 0px 0px 0px 1.5px #FFFFFF inset;
}
.gform_wrapper.gravity-theme .gfield_radio .gchoice label::before {
  border-radius: 100%;
}
.gform_wrapper.gravity-theme .gfield_label {
  color: #101223;
  font-size: 16px !important;
  line-height: 142%;
  font-weight: 600;
}
.gform_wrapper.gravity-theme .gform_required_legend {
  margin-bottom: calc(16px * 2);
}
.gform_wrapper.gravity-theme .gfield_required {
  color: #101223;
  font-size: 16px !important;
  padding-left: 0px;
}
.gform_wrapper.gravity-theme .gfield:not(:last-child), .gform_wrapper.gravity-theme fieldset:not(:last-child) {
  margin-bottom: 16px;
}
.gform_wrapper.gravity-theme .gform_footer {
  justify-content: flex-end;
}
.gform_wrapper.gravity-theme .button {
  display: inline-block;
  padding: calc(16px * 0.75) calc(16px * 2);
  text-decoration: none;
  border: 1px solid;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 128%;
  background: #E22B28;
  color: #FFFFFF;
  border-color: #E22B28;
}
.gform_wrapper.gravity-theme .button:hover {
  background: #F6F7FB;
  color: #E22B28;
}
.gform_wrapper.gravity-theme .gform_validation_errors {
  border-color: #E3405F;
  background-color: #FFFFFF;
}
.gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  color: #E3405F;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  text-transform: none;
  font-size: 16px;
}
.gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error .gfield_required, .gform_wrapper.gravity-theme .gfield_error .validation_message {
  color: #E3405F;
}
.gform_wrapper.gravity-theme .gfield_error input, .gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: #E3405F;
}
.gform_wrapper.gravity-theme .gfield_error .validation_message {
  border: none;
  padding: 0;
  background: transparent;
}

label:not(.gform-field-label) {
  font-weight: 600;
  margin-bottom: 4px;
}

input[type=text], input[type=email], input[type=tel], input[type=number], textarea, select, input[type=password] {
  border-radius: 5px;
  border: 0.5px solid #B3B5BD;
  background: #F3F4F8;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  padding: calc(16px / 2) 16px !important;
  line-height: 142%;
  color: #101223;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
}
input[type=text]:focus, input[type=text]:focus-visible, input[type=email]:focus, input[type=email]:focus-visible, input[type=tel]:focus, input[type=tel]:focus-visible, input[type=number]:focus, input[type=number]:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input[type=password]:focus, input[type=password]:focus-visible {
  border-color: #101223;
  outline: none;
}
input[type=text]:disabled, input[type=email]:disabled, input[type=tel]:disabled, input[type=number]:disabled, textarea:disabled, select:disabled, input[type=password]:disabled {
  background: #D2D4DA;
  border-color: #737582;
  cursor: not-allowed;
}

.submit, input[type=submit], button {
  display: inline-block;
  padding: calc(16px * 0.75) calc(16px * 2);
  text-decoration: none;
  border: 1px solid;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 128%;
  background: #E22B28;
  color: #FFFFFF;
  border-color: #E22B28;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
}
.submit:hover, input[type=submit]:hover, button:hover {
  background: #F6F7FB;
  color: #E22B28;
}

.tyfooter {
  background: #F6F7FB;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: calc(16px * 3) 90px;
  border-radius: 10px;
}
.tyfooter img {
  margin: 0 !important;
}
.tyfooter .social::before {
  content: "Follow Us";
  display: block;
  font-size: 10px;
}
.tyfooter .social a::after {
  display: none !important;
}
.tyfooter .social a path {
  fill: #B3B5BD;
}

.newsletter {
  padding: calc(16px * 4) 0;
}
.newsletter .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  gap: 120px;
  align-items: flex-end;
}
.newsletter .container .left, .newsletter .container .right {
  width: 50%;
}
@media (max-width: 1210px) {
  .newsletter .container {
    flex-direction: column;
    gap: calc(16px * 2);
  }
  .newsletter .container .left, .newsletter .container .right {
    width: 100%;
  }
}

form#gform_1 {
  display: flex;
  align-items: flex-end;
}
form#gform_1 .gform_body {
  flex-grow: 1;
}
form#gform_1 .gform_footer {
  padding: 0;
}
form#gform_1 .gfield_required {
  display: none;
}
form#gform_1 .button {
  margin-bottom: 0;
  height: 50px;
  width: 50px;
  text-indent: -9999px;
  padding: 0;
  background: #FFFFFF url(../img/arrow-right-large.svg) no-repeat center/19px;
  margin-left: 16px;
  border: #737582 1px solid;
}

section.cta {
  padding: calc(16px * 4) 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
}
section.cta .container {
  max-width: 1328px;
  margin: 0 auto;
  text-align: center;
  max-width: 650px;
  padding: 0 16px;
}
section.cta .container .buttons {
  margin-top: calc(16px * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16px * 2);
  flex-wrap: wrap;
}
section.cta .image img {
  width: 100%;
  height: auto;
}

.comparison {
  padding: calc(16px * 4) 0;
}
.comparison .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 1050px;
}
.comparison .container .intro {
  max-width: 600px;
  padding-bottom: calc(16px * 2);
}
.comparison .container .comparisonTable {
  display: flex;
  gap: calc(16px * 3);
  justify-content: center;
}
@media (max-width: 1210px) {
  .comparison .container .comparisonTable {
    flex-wrap: wrap;
  }
}
.comparison .container .comparisonTable .tableItem {
  width: 33.3333%;
  background: #EBECF0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1210px) {
  .comparison .container .comparisonTable .tableItem {
    width: calc(50% - calc(16px * 4));
  }
}
@media (max-width: 600px) {
  .comparison .container .comparisonTable .tableItem {
    width: 100%;
  }
}
.comparison .container .comparisonTable .tableItem .heading {
  background: #737582;
  padding: 16px calc(16px * 2);
  min-height: calc(100px - calc(16px * 2));
}
.comparison .container .comparisonTable .tableItem .heading h3 {
  margin: 0;
  max-width: 80%;
}
.comparison .container .comparisonTable .tableItem.flagged .heading {
  position: relative;
}
.comparison .container .comparisonTable .tableItem.flagged .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 46px;
  background: #404252;
  mask-image: url(../img/banner.svg);
  -webkit-mask-image: url(../img/banner.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  top: 0;
  right: 16px;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading {
  border-color: #404252;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading::after {
  background: #404252;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading {
  border-color: #404252;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading::after {
  background: #404252;
}
.comparison .container .comparisonTable .tableItem .content {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.comparison .container .comparisonTable .tableItem .content .tableItems {
  padding: 16px calc(16px * 2);
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding: 16px 0;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  font-size: 16px;
  color: #101223;
  line-height: 26px;
  letter-spacing: 0.32px;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item span {
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #101223;
  font-weight: 500;
}
.comparison .container .comparisonTable .tableItem .content .cta {
  margin-top: auto;
  padding: 16px calc(16px * 2) calc(16px * 2);
}
.comparison .disclaimer {
  margin-top: -100px;
  padding: calc(100px + calc(16px * 2)) 0 calc(16px * 2);
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.32px;
  font-style: italic;
}
.comparison .disclaimer p {
  max-width: 700px;
  margin: 16px auto;
}

.slider {
  padding: calc(16px * 4) 16px;
}
.slider .container {
  max-width: 1328px;
  margin: 0 auto;
}
.slider .container .intro {
  margin: 0 auto;
  text-align: center;
  margin-bottom: calc(16px * 3);
}
.slider .container .intro.single {
  max-width: 650px;
}
.slider .container img {
  max-width: 100%;
}
.slider .container .slider-single {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.slider .container .slider-single .slick-list {
  width: calc(100% - 100px - calc(16px * 2));
}
@media (max-width: 1210px) {
  .slider .container .slider-single .slick-list {
    width: 100%;
  }
}
.slider .container .slider-single .slide {
  display: flex !important;
  align-items: center;
  gap: calc(16px * 2);
  flex-direction: column;
}
.slider .container .slider-single .slide img {
  border-radius: 20px;
}
.slider .container .slider-single .slide .copy {
  width: 100%;
}
@media (max-width: 1210px) {
  .slider .container .slider-single {
    display: block !important;
  }
  .slider .container .slider-single .slick-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .slider .container .slider-single .slick-arrow.slick-prev {
    right: calc(48px + 16px);
  }
  .slider .container .slider-single .slick-list {
    max-width: 100%;
  }
}
.slider .container .slider-multi {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.slider .container .slider-multi .slick-list {
  max-width: calc(100% - 92px);
}
.slider .container .slider-multi a {
  text-decoration: none !important;
}
.slider .container .slider-multi .slide {
  padding: 0 12px;
  width: calc(100% - calc(16px * 1.5)) !important;
}
.slider .container .slider-multi .slide img {
  border-radius: 20px;
}
.slider .container .slider-multi .slide .copy {
  margin-top: 16px;
}
.slider .container .slider-multi .slide .copy h4, .slider .container .slider-multi .slide .copy p {
  margin: calc(16px / 2) 0;
}

.custom_paging {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: calc(16px * 1.5) 0 0;
}
@media (max-width: 800px) {
  .custom_paging {
    text-align: left;
    height: 48px;
    display: flex;
    align-items: center;
  }
}
.custom_paging li {
  border-radius: 100px;
  background: #EFEEEB;
  color: #737582;
  padding: calc(16px / 2) calc(16px * 1.5);
  list-style: none;
  display: inline;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 128%;
}
.custom_paging li:not(.slick-active) {
  display: none;
}

.slick-arrow {
  background: #FFFFFF url(../img/chevron.svg) no-repeat center/24px;
  border: #B3B5BD 1px solid;
  font-size: 0;
  width: 48px;
  min-width: 48px;
  padding: 0;
  height: 48px;
  border-radius: 100%;
  cursor: pointer;
}

.slick-next {
  transform: rotate(180deg);
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(16px * 2);
  padding: 0;
  width: 100%;
}
.slick-dots li {
  list-style: none;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  border: none;
  background-color: #101223;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.slick-dots li.slick-active button {
  background-color: #404252;
}

.videoCarousel {
  position: inherit !important;
  padding: calc(16px * 4) 0;
}
.videoCarousel .container {
  max-width: 1328px;
  margin: 0 auto;
}
.videoCarousel .container .buttons {
  text-align: center;
}
.videoCarousel .container .buttons.left {
  text-align: left;
}
.videoCarousel .container .slide .thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoCarousel .container .slide .thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.videoCarousel .container .slide .thumbnail svg {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
}
.videoCarousel .video-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.videoCarousel .video-slider .slick-list {
  max-width: calc(100% - 92px);
  margin: 0 -20px;
}
.videoCarousel .video-slider .slick-list .slick-slide {
  margin: 0 20px;
}
.videoCarousel .popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}
.videoCarousel .popup .loading {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.videoCarousel .popup.active {
  display: flex;
}
.videoCarousel .popup .close {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 34px;
}
.videoCarousel .popup .content {
  z-index: 2;
  max-width: 90%;
}
.videoCarousel .popup .content iframe {
  max-width: 100%;
}
.videoCarousel .st0 {
  fill: none;
}
.videoCarousel .st1 {
  fill: #FFFFFF;
}
.videoCarousel .st2 {
  fill: #404252;
}

.tabs {
  padding: calc(16px * 4) 0;
}
.tabs .container {
  max-width: 1328px;
  margin: 0 auto;
}
.tabs .container .tabItems .topTabs {
  display: flex;
  justify-content: center;
}
@media (max-width: 1210px) {
  .tabs .container .tabItems .topTabs {
    flex-direction: column;
  }
}
.tabs .container .tabItems .topTabs .tabTitle {
  text-transform: uppercase;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .topTabs .tabTitle:hover {
  color: #101223;
  font-weight: bold;
}
.tabs .container .tabItems .topTabs .tabTitle.active {
  color: #404252;
  font-weight: bold;
}
.tabs .container .tabItems.side {
  display: flex;
  align-items: center;
}
.tabs .container .tabItems.side .sideTabs {
  width: 50%;
  margin-right: calc(16px * 2);
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (max-width: 600px) {
  .tabs .container .tabItems.side .sideTabs {
    width: 100%;
    margin: 0;
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle {
  display: flex;
  cursor: pointer;
}
.tabs .container .tabItems.side .sideTabs .tabTitle:not(:last-of-type) {
  margin-bottom: 16px;
}
.tabs .container .tabItems.side .sideTabs .tabTitle a {
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon {
  background: #FFFFFF;
  overflow: hidden;
  width: calc(16px * 2);
  height: calc(16px * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.2s ease;
  padding: calc(16px / 2);
}
@media (max-width: 600px) {
  .tabs .container .tabItems.side .sideTabs .tabTitle .icon {
    width: calc(calc(16px * 2) + calc(16px / 2));
    height: calc(calc(16px * 2) + calc(16px / 2));
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon img {
  max-width: 100%;
  max-height: 100%;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .tabTitleContent {
  width: calc(100% - calc(16px * 3));
}
.tabs .container .tabItems.side .sideTabs .tabTitle span {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: calc(16px / 2);
  display: block;
  transition: all 0.2s ease;
}
.tabs .container .tabItems.side .tabContent {
  width: 50%;
  display: flex;
}
@media (max-width: 600px) {
  .tabs .container .tabItems.side .tabContent {
    display: none;
  }
}
.tabs .container .tabItems.side .tabContent .tabCopy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs .container .tabItems.side .tabContent .tabCopy img {
  max-width: 100%;
}
.tabs .container .tabItems.right .sideTabs {
  order: 2;
  margin-right: 0;
  margin-left: calc(16px * 2);
}
@media (max-width: 600px) {
  .tabs .container .tabItems.right .sideTabs {
    margin-left: 0;
    margin-top: 16px;
  }
}
.tabs .container .tabItems.right .tabContent {
  order: 1;
}
.tabs .container .tabItems .tabContent {
  display: flex;
  overflow: hidden;
}
.tabs .container .tabItems .tabContent .tabCopy {
  width: 100%;
  margin-top: 16px;
  padding-bottom: 16px;
  margin-right: -100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .tabContent .tabCopy.active {
  opacity: 1;
  visibility: visible;
}
.tabs .container .tabItems .tabContent.top .flex {
  display: flex;
  align-items: center;
  gap: calc(16px * 3);
}
@media (max-width: 1210px) {
  .tabs .container .tabItems .tabContent.top .flex {
    flex-wrap: wrap;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.left {
  order: 1;
}
.tabs .container .tabItems .tabContent.top .flex .content {
  order: 2;
  width: 50%;
}
@media (max-width: 1210px) {
  .tabs .container .tabItems .tabContent.top .flex .content {
    width: 100%;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.right {
  order: 3;
  margin-left: 16px;
}
.tabs .container .tabItems .tabContent.top .flex img {
  width: 50%;
}
@media (max-width: 1210px) {
  .tabs .container .tabItems .tabContent.top .flex img {
    width: 100%;
    order: 3 !important;
    margin: 16px 0 0;
  }
}
.tabs .container .tabItems .tabContent.top .tabCopy.full .content {
  width: 100% !important;
}

section.gallery {
  padding: calc(16px * 4) 0;
}
section.gallery .container {
  max-width: 1328px;
  margin: 0 auto;
}
section.gallery .container .images {
  margin-top: calc(16px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}
section.gallery .container .images .image {
  width: calc(33.3333% - 16px * 1.3333);
}
section.gallery .container .images .image img {
  max-width: 100%;
  min-width: 50%;
  height: auto;
  margin: 0 auto;
}
section.gallery .container .images .image figcaption {
  margin-top: 16px;
  font-size: 16px;
  font-style: italic;
}
section.gallery .container .images.four .image {
  width: calc(25% - calc(16px * 1.5));
}
section.gallery .container .images.five .image {
  width: calc(20% - 16px * 1.6);
}
@media (max-width: 1210px) {
  section.gallery .container .images.four .image, section.gallery .container .images.five .image {
    width: calc(33.3333% - 16px * 1.3333);
  }
}
@media (max-width: 600px) {
  section.gallery .container .images .image {
    width: 100% !important;
  }
}

.wordbg {
  position: relative;
  overflow: hidden;
}
.wordbg .wrap {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.wordbg .wrap .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 1050px;
  display: flex;
  align-items: center;
  gap: calc(16px * 4) 120px;
  min-height: 680px;
}
@media (max-width: 800px) {
  .wordbg .wrap .container {
    flex-direction: column;
  }
}
.wordbg .wrap .container.blue .image::before {
  background: rgba(63, 165, 255, 0.3);
}
.wordbg .wrap .container.green .image::before {
  background: rgba(37, 151, 79, 0.2);
}
.wordbg .wrap .container .content {
  width: 50%;
  max-width: 450px;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .content {
    width: 100%;
    max-width: 100%;
    padding: calc(16px * 3) 0 0;
  }
}
.wordbg .wrap .container .image {
  position: absolute;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .image {
    position: relative;
  }
}
.wordbg .wrap .container .image::before {
  content: "";
  display: block;
  border-radius: 550px;
  filter: blur(153.5433044434px);
  width: 550px;
  height: 550px;
  position: absolute;
  z-index: 1;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .image::before {
    width: 90vw;
    height: 90vw;
  }
}
.wordbg .wrap .container .image span {
  color: #e9e8e4;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 8vw;
  line-height: 8vw;
  position: absolute;
  top: 16px;
  z-index: 0;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .image span {
    font-size: 14vw;
    line-height: 14vw;
    display: block;
    text-align: center;
    width: 100%;
  }
}
.wordbg .wrap .container .image figure {
  z-index: 2;
  position: relative;
}
.wordbg .wrap .container .image figure img {
  width: 46vw;
  max-width: 680px;
  height: auto;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .image figure img {
    max-width: 100%;
    width: 100%;
  }
}
.wordbg .wrap .container .image figure figcaption {
  border: 0.5px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  position: absolute;
  padding: calc(16px * 1.5) calc(16px * 2);
  max-width: 195px;
  bottom: 120px;
}
@media (max-width: 800px) {
  .wordbg .wrap .container .image figure figcaption {
	  bottom: 0px;
	}
}
.wordbg .wrap .container.left .image {
  right: 0;
}
.wordbg .wrap .container.left .image::before {
  top: calc(0px - calc(16px * 2));
  left: calc(0px - calc(16px * 2));
}
.wordbg .wrap .container.left .image span {
  right: 0;
}
.wordbg .wrap .container.left .image figcaption {
  border-radius: 20px 0px 20px 20px;
}
.wordbg .wrap .container.right .image {
  left: 0;
}
.wordbg .wrap .container.right .image::before {
  top: calc(0px - calc(16px * 2));
  right: calc(0px - calc(16px * 2));
}
.wordbg .wrap .container.right .image span {
  left: 0;
}
.wordbg .wrap .container.right .image figcaption {
  right: 0;
  border-radius: 0px 20px 20px 20px;
}
.wordbg .wrap .container.right .content {
  margin-left: auto;
}

.statistics {
  padding: calc(16px * 4) 16px;
}
.statistics .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 1050px;
}
.statistics .container .intro {
  text-align: center;
  margin-bottom: calc(16px * 4);
}
.statistics .container .intro p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.statistics .container .stats {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2) calc(16px * 1.5);
  justify-content: center;
  align-items: flex-start;
}
.statistics .container .stats a.stat:hover {
  background: #F6F7FB;
}
.statistics .container .stats a.stat:hover .image {
  margin-top: -5px;
  margin-bottom: calc(calc(16px * 1.5) + 5px);
  background: #FFFFFF;
}
.statistics .container .stats a.stat:hover h4 {
  color: #E22B28;
}
.statistics .container .stats .stat {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 210px;
  padding: calc(16px * 2) calc(16px * 3);
  color: currentColor;
  border-radius: 20px;
}
.statistics .container .stats .stat .image {
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 4.333px 4.333px 17.333px 0px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  transition: all 0.2s ease;
  margin-bottom: calc(16px * 1.5);
}
.statistics .container .stats .stat .image img {
  display: block;
}
.statistics .container .stats .stat h4, .statistics .container .stats .stat p {
  margin: calc(16px / 2) 0;
}

.timeline {
  padding: 80px 16px;
}
.timeline .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 880px;
}
.timeline .container table {
  margin: calc(16px * 3) 0;
  border-collapse: collapse;
  font-size: 20px;
  line-height: 130.3%;
  width: 100%;
}
.timeline .container table tr:not(:last-child) {
  border-bottom: #D2D4DA 1px solid;
}
.timeline .container table tr {
  background: transparent !important;
}
.timeline .container table td {
  padding: calc(16px * 1.5) 0;
  width: 100%;
  background: transparent !important;
  vertical-align: top;
}
.timeline .container table td:first-child {
  font-style: normal;
  font-weight: 700;
  padding-right: 16px;
  width: auto;
}
.timeline .container .toTop {
  text-align: center;
}

.locations {
  padding: 80px 16px;
}
.locations .container {
  max-width: 1328px;
  margin: 0 auto;
}
.locations .container .locationList {
  display: grid;
}
.locations .container .locationList a {
  padding: calc(16px * 1.5);
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 114.286%;
  text-decoration: none;
  background-size: auto 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.locations .container .locationList a::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.25) url(../img/arrow-right-white.svg) no-repeat center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  margin-bottom: calc(16px * 0.75);
  transition: all 0.2s ease;
}
.locations .container .locationList a span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-top: calc(16px / 2);
}
.locations .container .locationList a:hover {
  background-size: auto 105%;
}
.locations .container .locationList a:hover::before {
  background-color: #E22B28;
}
.locations.two .locationList {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: calc(16px * 3);
  grid-row-gap: calc(16px * 3);
}
.locations.two .locationList a {
  min-height: calc(420px - calc(16px * 3));
}
@media (max-width: 800px) {
  .locations.two .locationList {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(16px * 1.5);
    grid-row-gap: calc(16px * 1.5);
  }
  .locations.two .locationList a {
    min-height: calc(300px - calc(16px * 3));
  }
}
.locations.three .locationList {
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: calc(16px * 1.5);
  grid-row-gap: calc(16px * 1.5);
}
.locations.three .locationList a {
  min-height: calc(300px - calc(16px * 3));
}
@media (max-width: 800px) {
  .locations.three .locationList {
    grid-template-columns: repeat(1, 1fr);
  }
  .locations.three .locationList a {
    min-height: calc(200px - calc(16px * 3));
  }
}

.single-location .hero .container {
  align-items: unset;
}
@media (max-width: 1210px) {
  .single-location .hero .container {
    align-items: center;
  }
  .single-location .hero .container .side, .single-location .hero .container .side .image {
    width: 100%;
  }
}
.single-location .hero .container .content {
  padding: calc(16px * 2) 0;
}
.single-location .hero .container .content address {
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin: 16px 0;
}
.single-location .hero .container .content strong {
  font-weight: 700;
}
.single-location .hero .container .content .phone {
  color: #E22B28;
  font-size: 16px;
  font-weight: 600;
  line-height: 142%;
  text-decoration: none;
}
.single-location .hero .container .content .buttons {
  margin-top: calc(16px * 2);
}
.single-location .hero .container .content .staff {
  margin-top: calc(16px * 2);
  display: flex;
  align-items: center;
  gap: calc(16px * 2) 80px;
  flex-wrap: wrap;
}
.single-location .hero .container .content .staff .primary {
  display: flex;
  gap: calc(16px * 1.5);
  align-items: center;
}
.single-location .hero .container .content .staff .primary .headshot {
  width: 96px;
  height: 96px;
  border-radius: 100%;
  overflow: hidden;
}
.single-location .hero .container .content .staff .primary .headshot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-location .hero .container .content .staff h5 {
  margin: 0 0 calc(16px / 2) 0;
}
.single-location .hero .container .content .staff span {
  display: block;
  margin: calc(16px / 2) 0;
}
.single-location .hero .container .content .staff a {
  margin: calc(16px / 2) 0;
}
.single-location .hero .container .side .image {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}
.single-location .hero .container .side .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.linklist {
  padding: 80px 16px;
}
.linklist .container {
  max-width: 1328px;
  margin: 0 auto;
}
.linklist .container .listlink.calculator {
  padding-bottom: 0;
  align-items: flex-start;
}
.linklist .container .listlink.calculator::before {
  content: "";
  display: inline-block;
  background: url(../img/calc.svg) no-repeat center/cover;
  width: 11.813px;
  height: 15.75px;
  margin-top: 4px;
}
.linklist.small .container {
  max-width: 880px;
}

.page-template-template-team .hero .content:not(.active), .page-template-template-team .hero .side:not(.active), .page-template-template-team .team .category:not(.active) {
  display: none;
}
.page-template-template-team .team .bottomToggle .button.active {
  display: none;
}
.page-template-template-team .team .bottomToggle {
  max-width: 1328px;
  margin: 0 auto;
  margin-top: calc(16px * 3.5);
}
.page-template-template-team .hero .side.buttons .button {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #404252;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-template-template-team .hero .side.buttons .button.active {
  background: #0060A9;
  border-color: #0060A9;
  color: #FFFFFF;
}
.page-template-template-team .hero .side.buttons .button:hover {
  background: #E22B28;
  color: #FFFFFF;
  border-color: #E22B28;
}

section.team {
  padding: calc(16px * 4) 16px;
}
section.team .container {
  max-width: 1328px;
  margin: 0 auto;
}
section.team .container .category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: calc(16px * 1.5);
  grid-row-gap: calc(16px * 2);
}
@media (max-width: 1210px) {
  section.team .container .category {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  section.team .container .category {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  section.team .container .category {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.team .container .category .member img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
section.team .container .category .member h4 {
  margin: 16px 0 calc(16px / 2);
}

.single .container {
  max-width: 1328px;
  margin: 0 auto;
}
.single .container .content {
  margin: 0 auto;
}
.single .container .content .date {
  font-size: 16px;
  line-height: 142%;
  margin-bottom: 16px;
}
.single .container .content h1 {
  font-size: 36px;
  font-weight: 700;
}
.single .container .content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: calc(16px / 2) 0;
}
.single .container .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: calc(16px / 2) 0;
}
.single .container .content figure {
  margin-top: calc(16px * 3.5);
  margin-bottom: calc(16px * 2);
}

.date {
  display: block;
  color: #404252;
  font-size: 14px;
  line-height: 128%;
  margin-bottom: calc(16px / 2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: calc(16px / 2);
  color: #737582;
  font-weight: 600;
  line-height: 142%;
}
.nav-links a {
  text-decoration: none;
  color: #E22B28;
}
.nav-links .page-numbers:not(.prev):not(.next) {
  width: 38px;
  height: 38px;
  border: 1px solid;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F7FB;
  border-color: #D2D4DA;
  font-weight: 700;
  line-height: 142%;
  color: #737582;
}
.nav-links .page-numbers:not(.prev):not(.next).current {
  color: #F6F7FB;
  background: #0060A9;
  border-color: #0060A9;
}
.nav-links .prev {
  margin-right: calc(16px * 1.5);
}
.nav-links .next {
  margin-left: calc(16px * 1.5);
}

.single-post .container .mainContent .flex .content .data {
  margin-bottom: calc(16px * 2);
}
.single-post .container .mainContent .flex .content .data h1 {
  margin: 0;
}

.post-type-archive-event .date, .search .posts .date {
  font-weight: 500;
  margin-bottom: 16px;
}

.videos {
  padding: 80px 16px;
}
.videos .container {
  max-width: 1328px;
  margin: 0 auto;
}
.videos .container .videoList {
  display: grid;
  margin-top: calc(16px * 2);
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: calc(16px * 1.5);
  grid-row-gap: calc(16px * 2);
}
@media (max-width: 800px) {
  .videos .container .videoList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .videos .container .videoList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.videos .container .videoList .playVideo {
  cursor: pointer;
}
.videos .container .videoList .playVideo .thumbnail {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
}
.videos .container .videoList .playVideo .thumbnail::after {
  content: "";
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  position: absolute;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.25) url(../img/play.svg) no-repeat center;
}
.videos .container .videoList .playVideo .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.videos .container .videoList .playVideo h5 {
  margin: 16px 0;
}
.videos .container .videoList .playVideo:hover .thumbnail::after {
  background: #E22B28 url(../img/play.svg) no-repeat center;
}

.publications {
  padding: calc(16px * 4) 16px;
}
.publications .container {
  max-width: 1328px;
  margin: 0 auto;
}

ul.files {
  max-width: 880px;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.files li {
  padding: 16px 0;
  border-bottom: #EBECF0 1px solid;
}
ul.files li .date {
  display: block;
  color: #404252;
  font-size: 14px;
  line-height: 128%;
  margin-bottom: calc(16px / 2);
}
ul.files li a {
  color: #E22B28;
  font-weight: 600;
  line-height: 142%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: calc(16px / 2);
}
ul.files li a:hover {
  text-decoration: underline;
}
ul.files li a span {
  color: #737582;
  font-weight: 400;
  line-height: 128%;
  font-size: 14px;
  text-transform: uppercase;
}
ul.files li p {
  margin: calc(16px / 2) 0;
}

.bottomCTA {
  background: #F8F8F6;
  padding: calc(16px * 3) 16px;
}
.bottomCTA .container {
  max-width: 1328px;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottomCTA .container .right {
  display: flex;
  gap: calc(16px * 1.5);
  align-items: center;
}
.bottomCTA .container .right img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.bottomCTA .container .right p {
  margin: 0;
}
.bottomCTA .container .right a {
  color: #E22B28;
  text-decoration: none;
}
.bottomCTA .container .right a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  .bottomCTA .container {
    flex-direction: column;
    gap: calc(16px * 2);
  }
}

.results {
  max-width: 1328px;
  margin: 0 auto;
}
.results .back {
  margin-bottom: calc(16px * 3);
}
.results .posts {
  margin: 0;
  padding: 0 0 80px;
  max-width: 880px;
}
.results .posts .post:not(:last-child) {
  margin-bottom: calc(16px * 3);
}
.results .posts .post p {
  margin: calc(16px / 2) 0;
}

.calc {
  padding: 0 16px 80px;
}
.calc .container {
  max-width: 1328px;
  margin: 0 auto;
}
.calc .container .calcInclude {
  max-width: 880px;
}
.calc .container .calcInclude .disclaimerText {
  margin-top: calc(16px * 4);
}
.calc .container .calcInclude #harvest-loss-calculator .sample {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: calc(16px * 3);
}
.calc .container .calcInclude #harvest-loss-calculator .sample h3, .calc .container .calcInclude #harvest-loss-calculator .sample .result {
  width: 100%;
  margin: 0;
}
.calc .container .calcInclude #harvest-loss-calculator .sample div:not(.result) {
  display: flex;
  flex-direction: column;
  gap: calc(16px / 2);
}
.calc .container .calcInclude .form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.calc .container .calcInclude .form-group .input-group {
  display: flex;
  gap: 16px;
}
.calc .container .calcInclude .form-group .input-group .input-group-text {
  font-size: 26px;
  line-height: 39px;
}
.calc .container .calcInclude .form-group .input-group input {
  width: 100%;
}
.calc .container .calcInclude .form-group .checkbox-inline label, .calc .container .calcInclude .form-group .checkbox label {
  font-weight: 400;
}
.calc .container .table-title {
  margin: calc(16px * 4) 0 calc(16px * 2);
  background: transparent !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 114.286% !important;
  color: #101223 !important;
}
.calc .container table {
  text-align: center;
  table-layout: fixed;
}
.calc .container table#grossBeetPayment tbody tr td:first-child, .calc .container table#grossBeetPayment tbody tr th:first-child, .calc .container table#grossBeetPayment tfoot tr td:first-child, .calc .container table#grossBeetPayment tfoot tr th:first-child, .calc .container table#freightCost tbody tr td:first-child, .calc .container table#freightCost tbody tr th:first-child, .calc .container table#freightCost tfoot tr td:first-child, .calc .container table#freightCost tfoot tr th:first-child {
  width: 30%;
  white-space: normal;
  text-align: left;
}
.calc .container table tr td {
  padding: 16px !important;
}
.calc .container table input[type=number] {
  background: #FFFFFF;
  border: #D2D4DA 1px solid;
}
.calc .container table select {
  width: 100%;
}
.calc .container table input {
  width: calc(100% - calc(16px * 2) - 2px);
}
.calc .container .table-responsive:not(:last-child) {
  margin-bottom: calc(16px * 2);
}

#harvest-loss-calculator .sample:not(:last-child) {
  margin-bottom: calc(16px * 2);
}

.postings.accordion ul {
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
}

.single-share .hero .content, .single-tap .hero .content, .error404 .hero .content, .page-template-template-thanks .hero .content {
  padding: calc(16px * 3) calc(16px * 1.5) calc(16px * 1.5);
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}
.single-share .hero .content h1, .single-share .hero .content .date, .single-share .hero .content .center, .single-tap .hero .content h1, .single-tap .hero .content .date, .single-tap .hero .content .center, .error404 .hero .content h1, .error404 .hero .content .date, .error404 .hero .content .center, .page-template-template-thanks .hero .content h1, .page-template-template-thanks .hero .content .date, .page-template-template-thanks .hero .content .center {
  text-align: center;
}
.single-share .hero .content img, .single-tap .hero .content img, .error404 .hero .content img, .page-template-template-thanks .hero .content img {
  margin: 0 auto;
}
.single-share .hero .content .listing, .single-tap .hero .content .listing, .error404 .hero .content .listing, .page-template-template-thanks .hero .content .listing {
  display: flex;
  gap: 16px;
  margin: calc(16px * 2) 0;
  justify-content: space-evenly;
}
@media (max-width: 800px) {
  .single-share .hero .content .listing, .single-tap .hero .content .listing, .error404 .hero .content .listing, .page-template-template-thanks .hero .content .listing {
    flex-direction: column;
  }
}

.manage h2 {
  margin-bottom: calc(16px * 1.5);
}
.manage .accordionItems .accordionTitle span span {
  color: #E22B28;
}
.manage .accordionItems a span {
  display: none;
}
.manage .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-template-template-classifieds .buttons {
  margin-top: calc(16px * 2);
  display: flex;
  gap: 16px;
}
.page-template-template-classifieds .sales {
  padding: 0 16px 80px;
}
.page-template-template-classifieds .sales .container {
  max-width: 1328px;
  margin: 0 auto;
}
.page-template-template-classifieds .sales .container .listings {
  display: grid;
  grid-row-gap: calc(16px * 3);
  grid-column-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1210px) {
  .page-template-template-classifieds .sales .container .listings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .page-template-template-classifieds .sales .container .listings {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-template-template-classifieds .sales .container .listings .classified {
  color: #101223;
}
.page-template-template-classifieds .sales .container .listings .classified figure {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}
.page-template-template-classifieds .sales .container .listings .classified figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease;
}
.page-template-template-classifieds .sales .container .listings .classified h5 {
  margin: calc(16px * 1.5) 0 0;
}
.page-template-template-classifieds .sales .container .listings .classified:hover figure img {
  transform: scale(1.05);
}
.page-template-template-classifieds .sales .container .listings .classified:hover h5 {
  text-decoration: underline;
}

.single-classified .container {
  display: flex;
  align-items: flex-start;
}
.single-classified .container .content {
  max-width: unset !important;
}
.single-classified .container .content .price {
  margin-top: calc(16px * 1.5);
}
.single-classified .container .content h4 {
  margin: 4px 0 calc(16px * 1.5);
}
.single-classified .container .content .contact {
  margin-bottom: calc(16px * 2);
}
.single-classified .container .content .contact h5 {
  margin: 0;
}
.single-classified .container .content .contact a {
  font-weight: 600;
}
.single-classified .container .image {
  width: 100%;
  max-width: 600px;
}
.single-classified .container .image .large {
  height: 400px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 16px;
}
.single-classified .container .image .large figure {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  border-radius: 20px;
  overflow: hidden;
}
.single-classified .container .image .large figure.active {
  display: flex;
}
.single-classified .container .image .large figure img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-classified .container .image .small {
  display: grid;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1210px) {
  .single-classified .container .image .small {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 800px) {
  .single-classified .container .image .small {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .single-classified .container .image .small {
    grid-template-columns: repeat(2, 1fr);
  }
}
.single-classified .container .image .small figure {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: #EBECF0 2px solid;
}
.single-classified .container .image .small figure.active {
  border: #00508C 2px solid;
}
.single-classified .container .image .small figure:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.single-classified .container .image .small figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero #agnotesFilters {
  display: flex;
  gap: calc(16px * 2);
  margin: calc(16px * 3) 0;
}
.hero #agnotesFilters .toggle {
  display: none;
}
@media (max-width: 800px) {
  .hero #agnotesFilters {
    flex-direction: column;
    max-height: 40px;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .hero #agnotesFilters .toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: #D2D4DA 1px solid;
    padding: calc(16px / 2) 0;
    cursor: pointer;
  }
  .hero #agnotesFilters .toggle::after {
    content: "";
    background: url(../img/down.svg) no-repeat center/contain;
    width: 20px;
    height: 20px;
    display: block;
  }
  .hero #agnotesFilters.active {
    max-height: 310px;
  }
}
.hero #agnotesFilters .filter {
  flex-grow: 1;
}
.hero #agnotesFilters .filter label {
  margin-bottom: calc(16px / 2);
  display: block;
}
.hero #agnotesFilters .filter select {
  width: 100%;
}
.hero #agnotesFilters .filter input {
  width: calc(100% - calc(16px * 2) - 2px);
}
.hero #agnotesFilters .clear {
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 9px;
  color: #E22B28;
  visibility: hidden;
}
.hero #agnotesFilters .clear.active {
  visibility: visible;
}
.hero #agnotesFilters .clear:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* =======================================
   GLOBAL STYLES
   ======================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 142%;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #101223;
  /* --------- GLOBAL TEXT STYLES --------- */
  /* --------- IMAGE STYLES --------- */
  /* --------- LINKS --------- */
  /* --------- GLOBAL SECTION STYLES --------- */
  /* --------- LIST STYLES --------- */
  /* --------- TABLES --------- */
  /* --------- BREADCRUMBS --------- */
  /* --------- VIDEO POPUP ---------- */
  /* --------- MEMBER LOGIN POPUP ---------- */
  /* --------- TO TOP BUTTON ---------- */
}
body.active {
  overflow-y: hidden;
}
body h1, body h2, body h3 {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
}
body h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 100%;
  margin: 0 0 16px 0;
}
body h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 116%;
  margin: calc(16px * 2) 0 16px;
}
body h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 116%;
  margin: 16px 0;
}
body h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 114.286%;
  margin: 16px 0;
}
body h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130.3%;
  margin: 16px 0;
}
body .eyebrow {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 114.286%; /* 16px */
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #0060A9;
}
body .eyebrow.mobile {
  display: none;
}
@media (max-width: 600px) {
  body .eyebrow.mobile {
    display: block;
  }
}
body p.large {
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  max-width: 500px;
  color: #00508C;
}
body p.med {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
body p a:hover {
  text-decoration: underline;
}
body strong {
  font-weight: 600;
}
body div.gallery {
  margin: 0;
}
body div.gallery .gallery-item {
  margin-top: 0;
  margin-bottom: calc(16px * 2);
  margin-right: calc(16px * 3.5);
  width: auto !important;
}
body div.gallery .gallery-item img {
  border: none !important;
  border-radius: 0px !important;
}
body a {
  color: #E22B28;
  transition: all 0.2s ease;
  text-decoration: none;
}
body a[target=_blank]:not(.internal):not(.stat):not(.membersOnly) {
  display: inline-flex;
  align-items: flex-start;
  gap: calc(16px / 2);
}
body a[target=_blank]:not(.internal):not(.stat):not(.membersOnly)::after {
  content: "";
  display: block;
  mask-image: url(../img/external.svg) !important;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/external.svg) !important;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
}
body a[target=_blank]:not(.internal):not(.stat):not(.membersOnly):not(.button):hover {
  text-decoration: underline;
}
body a span.ext {
  color: #737582;
  font-weight: 400;
  line-height: 128%;
  font-size: 14px;
  text-transform: uppercase;
}
body a.button:not(.tertiary) span.ext {
  color: #FFFFFF;
}
body a.membersOnly {
  display: inline-flex;
  align-items: flex-start;
  gap: calc(16px / 2);
}
body a.membersOnly::after {
  content: "";
  display: block;
  mask-image: url(../img/lock.svg) !important;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/lock.svg) !important;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor !important;
  width: 14px !important;
  height: 14px !important;
  margin-top: 4px;
}
body a.membersOnly.allowed::after {
  mask-image: url(../img/unlock.svg) !important;
  -webkit-mask-image: url(../img/unlock.svg) !important;
}
body .button {
  display: inline-block;
  padding: calc(16px * 0.75) calc(16px * 2);
  text-decoration: none;
  border: 1px solid;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 128%;
}
body .button.membersOnly::after {
  margin-top: 0 !important;
}
body .button.primary {
  background: #E22B28;
  color: #FFFFFF;
  border-color: #E22B28;
}
body .button.primary:hover {
  background: #F6F7FB;
  color: #E22B28;
}
body .button.secondary {
  background: #00508C;
  color: #FFFFFF;
  border-color: #00508C;
}
body .button.secondary:hover {
  background: #E22B28;
  border-color: #E22B28;
}
body .button.tertiary {
  padding: 0;
  border: none;
  color: #E22B28;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
body .button.tertiary::after {
  content: "";
  display: block;
  background: url(../img/arrow-right.svg) no-repeat center/cover;
  width: 18px;
  height: 18px;
}
body .button.tertiary:hover {
  gap: calc(16px / 2);
}
body .button.back {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
body .button.back::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../img/arrow-white.svg);
          mask-image: url(../img/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: currentColor;
  width: 16px;
  height: 16px;
}
body .button.back::after {
  display: none !important;
}
body .button:hover {
  text-decoration: none;
  cursor: pointer;
}
body .playVideo {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
body .playVideo::after {
  content: "";
  display: block;
  mask-image: url(../img/play2.svg);
  -webkit-mask-image: url(../img/play2.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background: currentColor !important;
  width: 16px;
  height: 16px;
}
body hr {
  background: #E4E2DD;
  border: none;
  height: 1px;
  margin: 16px 0;
}
body hr.anchor {
  border: none;
  margin: 0;
  height: 0px;
}
body section {
  padding: 0 16px;
}
body section *:first-child {
  margin-top: 0;
}
body section *:last-child {
  margin-bottom: 0;
}
body section.plaingray {
  background: #F8F8F6;
}
body section.gray {
  background: linear-gradient(180deg, #EEEEEA 19.44%, rgba(238, 238, 234, 0) 135.95%);
}
body section.blue {
  background-image: url(../img/testimonial2.svg), linear-gradient(182deg, #00508C 8.14%, #012D4F 127.34%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  color: #FFFFFF;
}
body section.grayleft {
  background-color: #F8F8F6;
  background-image: url(../img/graybg1.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto 100%;
}
body section.grayright {
  background-color: #F8F8F6;
  background-image: url(../img/graybg1.svg), url(../img/graybg2.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom center, top right;
  background-size: auto, auto 100%;
}
body section.notop {
  padding-top: 0;
}
body section.nobottom {
  padding-bottom: 0;
}
body section.halftop {
  padding-top: calc(16px * 2);
}
body section.halfbottom {
  padding-bottom: calc(16px * 2);
}
body section img {
  display: block;
}
body section img.square {
  border-radius: 100%;
}
body .checklist {
  padding: 0;
  list-style: none;
}
body .checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(16px * 1.5);
  font-weight: 500;
}
body .checklist li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  margin-right: calc(16px / 2);
  margin-top: -2px;
}
body ol .button.tertiary, body ul .button.tertiary {
  font-weight: normal;
  font-size: 16px;
}
body ol .button.tertiary::after, body ul .button.tertiary::after {
  margin-top: 0;
}
body ol:not(.menu), body ul:not(.menu):not(.files) {
  padding-left: 20px;
}
body ol:not(.menu).two, body ul:not(.menu):not(.files).two {
  -moz-columns: 2;
       columns: 2;
}
@media (max-width: 800px) {
  body ol:not(.menu).two, body ul:not(.menu):not(.files).two {
    -moz-columns: 1;
         columns: 1;
  }
}
body ol:not(.menu).three, body ul:not(.menu):not(.files).three {
  -moz-columns: 3;
       columns: 3;
}
@media (max-width: 1210px) {
  body ol:not(.menu).three, body ul:not(.menu):not(.files).three {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 800px) {
  body ol:not(.menu).three, body ul:not(.menu):not(.files).three {
    -moz-columns: 1;
         columns: 1;
  }
}
body ol:not(.menu) li:not(:last-child), body ul:not(.menu):not(.files) li:not(:last-child) {
  margin-bottom: calc(16px / 2);
}
body ol:not(.menu).noBullets, body ul:not(.menu):not(.files).noBullets {
  list-style: none;
  margin: calc(16px * 2) 0 0;
  padding: 0;
}
body ol:not(.menu).noBullets li:not(:last-child), body ul:not(.menu):not(.files).noBullets li:not(:last-child) {
  margin-bottom: calc(16px * 1.5);
}
@media (max-width: 800px) {
  body ol:not(.menu).noBullets, body ul:not(.menu):not(.files).noBullets {
    -moz-columns: 1 !important;
         columns: 1 !important;
  }
}
body table, body .wp-block-table {
  box-shadow: 0px 0px 0px 1px #EBECF0;
  border-radius: 10px;
  overflow: hidden;
  border-spacing: 0;
  border: none;
  width: 100%;
  margin: calc(16px * 2) 0;
}
body table strong, body .wp-block-table strong {
  font-weight: 700;
}
body table caption, body .wp-block-table caption {
  caption-side: bottom;
  font-size: 12px;
  text-align: left;
  padding: calc(16px / 2) 16px;
  width: 100%;
}
@media (max-width: 800px) {
  body table, body .wp-block-table {
    width: unset;
  }
}
body table thead, body table th, body table thead td, body .wp-block-table thead, body .wp-block-table th, body .wp-block-table thead td {
  border: none;
  background: #EBECF0;
}
body table tr, body table td, body .wp-block-table tr, body .wp-block-table td {
  border: none;
}
body table tr *:first-child, body .wp-block-table tr *:first-child {
  text-align: left;
}
body table tr:nth-child(odd), body .wp-block-table tr:nth-child(odd) {
  background: #F6F7FB;
}
body table tr td, body table tr th, body .wp-block-table tr td, body .wp-block-table tr th {
  padding: 16px;
}
body .table-responsive {
  width: 100%;
  overflow: visible;
}
@media (max-width: 800px) {
  body .table-responsive {
    width: calc(100% + 16px);
  }
}
body #breadcrumbs > span {
  display: flex;
  gap: calc(16px / 2);
}
body .videoPopup, body .memberPopup {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -999;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s ease;
}
body .videoPopup .videoWrap, body .videoPopup .memberWrap, body .memberPopup .videoWrap, body .memberPopup .memberWrap {
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 880px;
  width: calc(100% - calc(16px * 4));
  position: relative;
}
body .videoPopup .videoWrap .close, body .videoPopup .memberWrap .close, body .memberPopup .videoWrap .close, body .memberPopup .memberWrap .close {
  position: absolute;
  right: 0;
  top: calc(0px - calc(16px * 3));
  background: #FFFFFF url(../img/close-dark.svg) no-repeat center/auto;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  margin: 0;
}
body .videoPopup .videoWrap .video, body .videoPopup .memberWrap .video, body .memberPopup .videoWrap .video, body .memberPopup .memberWrap .video {
  height: 0px;
  padding-bottom: 56.2%;
  width: 100%;
  max-height: 494.56px;
  position: relative;
}
body .videoPopup .videoWrap .video iframe, body .videoPopup .memberWrap .video iframe, body .memberPopup .videoWrap .video iframe, body .memberPopup .memberWrap .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
body .videoPopup .close, body .memberPopup .close {
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 142%;
  margin-top: calc(16px * 2);
  cursor: pointer;
}
body .memberPopup .memberWrap {
  max-width: calc(520px - calc(16px * 3) - calc(16px * 3));
  padding: calc(16px * 3);
}
body .memberPopup .memberWrap .issues, body .memberPopup .memberWrap .gform_required_legend {
  display: none;
}
body .memberPopup .memberWrap .login input {
  width: calc(100% - calc(16px * 2));
  margin-bottom: calc(16px * 1.5);
}
body .memberPopup .memberWrap .login #loginToggle {
  font-weight: 600;
  color: #E22B28;
  margin-top: calc(16px * 1.5);
}
body .memberPopup .memberWrap .login #loginToggle:hover {
  cursor: pointer;
  text-decoration: underline;
}
body .memberPopup .memberWrap .login #loginError {
  color: #FF4949;
  margin-bottom: 16px;
  padding: calc(16px / 2) 16px;
  border-radius: 5px;
  border: #FF4949 1px solid;
  background: rgba(255, 73, 73, 0.1);
}
body .memberPopup .memberWrap .login .loginFooter {
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}
body .memberPopup .memberWrap .issues form {
  max-height: 460px;
  overflow: auto;
  margin-bottom: calc(0px - calc(16px * 3));
}
body .memberPopup .memberWrap .issues form h4 {
  margin-top: 0;
}
body #toTop {
  max-width: 1328px;
  margin: 0 auto;
  position: sticky;
  bottom: calc(16px * 4);
  width: calc(100% - calc(16px * 2));
  left: 0;
  right: 0;
  z-index: 999;
  margin-bottom: 16px;
  margin-top: -16px;
}
body #toTop .btn {
  background: #FFFFFF url(../img/up.svg) no-repeat center/auto;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: #B3B5BD 1px solid;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */