@charset "UTF-8";
/*
Theme Name: Martec
Theme URI: https://www.the-sports-ministry.co.uk
Author: Dan Curtis at Valient
Author URI: https://valiantdesign.co.uk/
Description: A custom WordPress website for Martec.
Text Domain: martec
version: 1.1
*/
/*******************************************
Global
*******************************************/
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  position: relative;
}

body,
html {
  overflow-x: hidden;
}

body.scroll-lock {
  overflow-y: hidden;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

header .hide-mag {
  opacity: 0;
}

.hide-burger {
  display: none !important;
}

#wpadminbar {
  z-index: 100000000000000000000000000000 !important;
}

.martec-mob-link {
  display: none !important;
}

@media only screen and (max-width: 992px) {
  .martec-mob-link {
    display: block !important;
  }
}
/*******************************************
Typography
*******************************************/
h1 {
  font-size: 42px;
  font-weight: 400;
  color: #163072;
}

h2 {
  font-size: 32px;
  font-weight: 400;
  color: #163072;
  line-height: 1.5;
}

h3 {
  font-size: 30px;
  font-weight: 400;
  color: #163072;
}

h4 {
  font-size: 28px;
  font-weight: 400;
  color: #163072;
}

h5 {
  font-size: 24px;
  font-weight: 400;
  color: #163072;
}

p {
  font-size: 17px;
  color: #163072;
  line-height: 1.8;
}

/*******************************************
Style Classes
*******************************************/
.flex-padding-none {
  padding: 0;
}

.flex-padding-top {
  padding: 100px 0 0 0;
}

.flex-padding-bottom {
  padding: 0 0 100px 0;
}

.flex-padding-top-bottom {
  padding: 100px 0;
}

.flex-margin-none {
  margin: 0;
}

.flex-margin-top {
  margin: 100px 0 0 0;
}

.flex-margin-bottom {
  margin: 0 0 100px 0;
}

.flex-margin-top-bottom {
  margin: 100px 0;
}

.vertical-align {
  display: flex;
  align-items: center;
}

.flex-bg-grad {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
}

.flex-bg-white {
  background-color: #fff;
}

.flex-bg-grey {
  background-color: #E8EAEE;
}

.flex-bg-d-blue {
  background-color: #163072;
}

.flex-bg-l-blue {
  background-color: #0076C4;
}

.flex-bg-l-grey {
  background-color: #F3F4F7;
}

.flex-bg-l-grey .btn-primary {
  background-color: #0076C4;
  color: #fff;
  background-image: url("./img/arrow-btn-light.svg");
}

/*******************************************
Buttons
*******************************************/
.btn-primary {
  background-color: #F3F4F7;
  color: #0076C4;
  font-size: 17px;
  padding: 15px 70px 15px 30px;
  display: inline-block;
  border-radius: 100px;
  background-image: url("./img/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
}
.btn-primary:hover {
  background-color: #0076C4;
  background-image: url("./img/arrow-btn-light.svg");
  background-position: right 18px center;
}

.btn-secondary {
  background-color: #0076C4;
  color: #fff;
  font-size: 17px;
  padding: 15px 70px 15px 30px;
  display: inline-block;
  border-radius: 100px;
  background-image: url("./img/right-light.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
}

/*******************************************
Header
*******************************************/
header .main-logo {
  width: 235px;
  transition: 0.3s ease-in-out;
}

body.logged-in header {
  top: 32px;
}

header {
  padding: 40px 50px 0 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  transition: 0.3s ease-in-out;
  z-index: 99999999999999;
}
header ul.main-nav {
  list-style: none;
  margin: 10px 0 0 0;
  float: right;
}
header ul.main-nav li {
  display: inline-block;
  margin: 0 0 0 55px;
}
header ul.main-nav li:first-child {
  margin: 0;
}
header ul.main-nav li a {
  color: #fff;
  font-size: 16px;
  padding-bottom: 20px;
}
header ul.main-nav ul.sub-menu {
  background-color: rgba(255, 255, 255, 0.13);
  background-color: #fff;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  position: absolute;
  padding: 10px;
  border-radius: 5px;
  margin-left: -20px;
  margin-top: 10px;
  clip: rect(auto, auto, 0, auto);
  transition-property: clip;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 140;
}
header ul.main-nav ul.sub-menu li {
  display: block;
  margin: 0;
}
header ul.main-nav ul.sub-menu li a {
  color: #fff;
  color: #163072;
  padding: 10px 12px;
  display: block;
  border-radius: 5px;
  font-size: 14px;
}
header ul.main-nav ul.sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #0076C4;
}

header.scrolled {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
  padding: 10px 50px;
  z-index: 9999999999;
}
header.scrolled .main-logo {
  width: 180px;
}
header.scrolled ul.main-nav {
  margin: 18px 0 0 0;
}

header ul.main-nav li.menu-item-has-children:hover ul.sub-menu {
  clip: rect(auto, auto, auto, auto);
}

header ul.main-nav li.menu-item-has-children:after {
  content: "";
  display: inline-block;
  background-image: url("./img/drop-arrow.svg");
  width: 10px;
  height: 10px;
  margin: 0 0 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
header ul.main-nav li.menu-item-has-children:hover::after {
  transform: rotate(-180deg);
}

header .container-fluid {
  position: relative;
}

header.scrolled .burger-menu {
  top: 8px;
}

.burger-menu {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 14px;
  right: 15px;
  display: none;
  z-index: 1400;
}
.burger-menu span {
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  display: block;
  position: relative;
}
.burger-menu span:first-child {
  top: 7px;
}
.burger-menu span:nth-child(2) {
  top: 15px;
}
.burger-menu span:last-child {
  top: 23px;
}

.mobile-menu {
  width: 100%;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  padding: 120px 15px 100px 15px;
  z-index: 1100;
  left: 100%;
  transition: 0.2s ease-in-out;
  /*z-index: 999999999;*/
  z-index: 100000000;
}
.mobile-menu ul.main-nav {
  list-style: none;
  padding: 0;
}
.mobile-menu ul.main-nav li {
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px 0;
}
.mobile-menu ul.main-nav li a {
  color: #fff;
}
.mobile-menu ul.main-nav li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  background-image: url("./img/drop-arrow.svg");
  width: 10px;
  height: 10px;
  margin: 0 0 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.mobile-menu ul.main-nav li.rotate-arrow a::after {
  transform: rotate(-180deg);
}
.mobile-menu ul.main-nav .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  height: 0px;
  overflow: hidden;
}
.mobile-menu ul.main-nav .sub-menu li:first-child {
  margin-top: 10px;
}
.mobile-menu ul.main-nav .sub-menu li:last-child {
  margin: 0;
}
.mobile-menu ul.main-nav .sub-menu.sub-active {
  height: initial;
}

.mobile-menu.mob-menu-active {
  left: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  background-image: url("./img/search-light.svg");
  display: inline-block;
  float: right;
  margin: 14px 0 0 59px;
  cursor: pointer;
}

header.scrolled .search-icon {
  margin: 20px 0 0 59px;
}

.sitewide-search {
  position: fixed;
  width: 100%;
  height: 100%;
  /*z-index: 999999999999;*/
  z-index: 100000000;
  visibility: hidden;
}
.sitewide-search .search-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  z-index: 2000;
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
  opacity: 0;
  transition: 0.5s;
}

.select2-container--open {
  z-index: 100000001 !important;
}

.sitewide-search.search-open {
  visibility: visible;
}
.sitewide-search.search-open .close-search {
  opacity: 1;
}
.sitewide-search.search-open .search-bg {
  opacity: 1;
}

.sitewide-search .close-search {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 32px;
  height: 32px;
  z-index: 4000;
  opacity: 0;
}
.sitewide-search .close-search:hover {
  cursor: pointer;
  opacity: 0.7;
}
.sitewide-search .close-search span:first-child {
  width: 32px;
  height: 2px;
  position: relative;
  background-color: #fff;
  border-radius: 2px;
  display: block;
  transform: rotate(-45deg);
}
.sitewide-search .close-search span:last-child {
  width: 32px;
  height: 2px;
  position: relative;
  background-color: #fff;
  border-radius: 2px;
  display: block;
  transform: rotate(45deg);
  top: -2px;
}
.sitewide-search .martec-search-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 15px;
  width: 80vw;
  max-width: 1170px;
  border: 1px solid #DBDBDB;
}
.sitewide-search .martec-search-bar li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.sitewide-search .martec-search-bar li:nth-child(-n+3) {
  width: 30%;
}
.sitewide-search .martec-search-bar li:nth-child(-n+3) label {
  width: 100%;
}
.sitewide-search .martec-search-bar select {
  display: inline-block;
  height: 100px;
  width: 100%;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #DBDBDB;
  outline: none;
  padding-left: 40px;
  color: #163072;
  -webkit-appearance: none;
  background-image: url("./img/select-arrow.svg");
  background-position: right 30px center;
  background-repeat: no-repeat;
}
.sitewide-search .martec-search-bar input[type=text] {
  display: inline-block;
  height: 100px;
  width: 100%;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #DBDBDB;
  outline: none;
  padding-left: 40px;
  color: #163072;
}
.sitewide-search .martec-search-bar input[type=text]::-moz-placeholder {
  color: #8E97AC;
  font-size: 14px;
  font-style: italic;
}
.sitewide-search .martec-search-bar input[type=text]::placeholder {
  color: #8E97AC;
  font-size: 14px;
  font-style: italic;
}
.sitewide-search .martec-search-bar input[type=submit] {
  width: 10%;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 15px 15px 0;
  border: none;
  background-image: url("./img/submit.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F3F4F7;
}
.sitewide-search .martec-search-bar ul {
  padding: 0;
}

/*******************************************
Footer
*******************************************/
footer {
  padding: 120px 0 100px 0;
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
  color: #fff;
}
footer .container-fluid {
  max-width: 1380px;
}
footer p {
  color: #8899BD;
}
footer p strong {
  font-weight: 400;
  color: #fff;
}
footer p.copyright,
footer h6 {
  color: #fff;
  margin: 0 0 20px 0;
}
footer a {
  color: #8899BD;
}
footer a:hover {
  color: #fff;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin: 0 0 10px 0;
}
footer .footer-text p {
  line-height: 1.2;
}
footer .footer-bottom {
  border-top: 1px solid rgba(243, 244, 247, 0.2);
  padding: 38px 0 0 0;
  margin: 100px 0 0 0;
}
footer .footer-bottom p {
  display: inline-block;
  color: #fff;
  margin: 0;
}
footer .footer-bottom ul.footer-bottom-nav {
  display: inline-block;
}
footer .footer-bottom ul.footer-bottom-nav li {
  display: inline-block;
}
footer ul.footer-legal-nav li:last-child {
  border-right: 1px solid rgba(243, 244, 247, 0.2);
  padding: 0 40px 0 0;
  margin: 0 40px 0 0;
}
footer ul.footer-social-nav li {
  margin: 0 0 0 50px;
}
footer .site-by {
  float: right;
  color: #F3F4F7;
}
footer .footer-form {
  border: 1px solid #DBDBDB;
  border-radius: 100px;
  position: relative;
  height: 75px;
  margin: 30px 0 0 0;
}
footer .footer-form input[type=text] {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  height: 100%;
  width: calc(100% - 70px) !important;
  border-radius: 100px 0 0 100px;
  padding-left: 30px !important;
  color: #fff;
}
footer .footer-form input[type=submit] {
  background-color: rgba(243, 244, 247, 0.1);
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 0px;
  border: none;
  outline: none;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-image: url("./img/submit-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
footer .footer-form input[type=submit]:hover {
  transform: scale(1.1);
}
footer .footer-form ::-moz-placeholder {
  color: rgba(243, 244, 247, 0.5);
}
footer .footer-form ::placeholder {
  color: rgba(243, 244, 247, 0.5);
}

/*******************************************
Heros
*******************************************/
.ask-expert {
  position: fixed;
  z-index: 90;
  background-color: #0076C4;
  color: #fff;
  padding: 50px 30px;
  border-radius: 0 7.5px 7.5px 0;
  text-orientation: sideways-right;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: calc(50% - 118px);
  font-weight: 500;
  right: 0;
  font-size: 20px;
}
.ask-expert:hover {
  color: #fff;
  padding: 50px 30px 50px 40px;
}

.hero {
  position: relative;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .hero-bg .hero-bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  /*background-attachment: fixed;*/
}
.hero .hero-bg .hero-img-bg-new {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero .hero-content {
  position: relative;
  z-index: 20;
}
.hero .hero-content #breadcrumbs {
  text-align: right;
  color: #fff;
}
.hero .hero-content #breadcrumbs a {
  color: #fff;
}
.hero .hero-content h1 {
  color: #fff;
  display: inline-block;
  padding: 0 0 0 85px;
  position: absolute;
  width: 100%;
}
.hero .hero-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 15;
  /*
  background: -moz-linear-gradient(top,  rgba(22,48,114,1) 0%, rgba(2,141,219,0) 89%, rgba(0,153,232,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(22,48,114,1) 0%,rgba(2,141,219,0) 89%,rgba(0,153,232,0) 100%);
  background: linear-gradient(to bottom,  rgba(22,48,114,1) 0%,rgba(2,141,219,0) 89%,rgba(0,153,232,0) 100%);
  */
}
.hero .hero-heading {
  position: relative;
}
.hero .page-down {
  width: 55px;
  height: 55px;
  background-image: url("./img/page-down.svg");
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 90;
}
.hero .page-down:hover {
  transform: scale(1.1);
}
.hero #heroScroller {
  position: absolute;
  width: 1px;
  height: 1px;
  bottom: 0;
}

.hero.hero-bg-needed {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
}

.page-hero .hero-content {
  padding: 355px 0 335px 0;
}

.small-hero .hero-content {
  padding: 270px 0 205px 0;
}

.hero-slider-wrapper {
  position: relative;
}
.hero-slider-wrapper .martec-search-bar {
  position: absolute;
  top: 60px;
  background-color: #fff;
  border-radius: 15px;
  width: 80vw;
  max-width: 1170px;
  border: 1px solid #DBDBDB;
}
.hero-slider-wrapper .martec-search-bar li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.hero-slider-wrapper .martec-search-bar li:nth-child(-n+3) {
  width: 30%;
}
.hero-slider-wrapper .martec-search-bar li:nth-child(-n+3) label {
  width: 100%;
}
.hero-slider-wrapper .martec-search-bar select {
  display: inline-block;
  height: 50px;
  width: 100%;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #DBDBDB;
  outline: none;
  padding-left: 40px;
  color: #163072;
  -webkit-appearance: none;
  background-image: url("./img/select-arrow.svg");
  background-position: right 30px center;
  background-repeat: no-repeat;
}
.hero-slider-wrapper .martec-search-bar input[type=text] {
  display: inline-block;
  height: 100px;
  width: 100%;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #DBDBDB;
  outline: none;
  padding-left: 40px;
  color: #163072;
}
.hero-slider-wrapper .martec-search-bar input[type=text]::-moz-placeholder {
  color: #8E97AC;
  font-size: 14px;
  font-style: italic;
}
.hero-slider-wrapper .martec-search-bar input[type=text]::placeholder {
  color: #8E97AC;
  font-size: 14px;
  font-style: italic;
}
.hero-slider-wrapper .martec-search-bar input[type=submit] {
  width: 10%;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 15px 15px 0;
  border: none;
  background-image: url("./img/submit.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F3F4F7;
  background-size: 55px;
  transition: 0.3s ease-in-out;
}
.hero-slider-wrapper .martec-search-bar input[type=submit]:hover {
  background-size: 62px;
}
.hero-slider-wrapper .martec-search-bar ul {
  padding: 0;
}
.hero-slider-wrapper .hero-slide-item {
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.hero-slider-wrapper .hero-slide-item .slide-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hero-slider-wrapper .hero-slide-item .hero-slide-content {
  position: absolute;
  /*bottom: 300px;*/
  width: 100%;
  z-index: 20;
  top: 50%;
  transform: translate(0, -50%);
}
.hero-slider-wrapper .hero-slide-item .hero-slide-content h1 {
  color: #fff;
  font-size: 52px;
  padding-right: 10%;
  line-height: 1.3;
  margin: 0;
}

.slider-nav-wrapper {
  position: absolute;
  z-index: 999;
  bottom: 260px;
  width: 100%;
}
.slider-nav-wrapper .slide-dot {
  display: inline-block;
  width: 8px !important;
  height: 8px;
  margin: 0 10px 0 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.slider-nav-wrapper .slick-track {
  width: 100% !important;
  transform: none !important;
}
.slider-nav-wrapper .slick-current.slide-dot {
  background-color: #fff;
}

.slider-nav-nu {
  position: absolute;
  bottom: calc(50% - 100px);
  width: 100%;
  z-index: 99999999;
}
.slider-nav-nu .slide-dot {
  display: inline-block;
  width: 8px !important;
  height: 8px;
  margin: 0 10px 0 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.slider-nav-nu .slick-track {
  width: 100% !important;
  transform: none !important;
}
.slider-nav-nu .slick-current.slide-dot {
  background-color: #fff;
}

.post-hero {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
  position: relative;
}
.post-hero .post-feat-img {
  position: relative;
  z-index: 10;
}
.post-hero .post-feat-img img {
  width: 100%;
  height: 670px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.post-hero .post-hero-content {
  padding: 260px 0 110px 0;
  position: relative;
}
.post-hero .post-hero-content .hero-heading {
  position: relative;
}
.post-hero .post-hero-content h1 {
  color: #fff;
  line-height: 1.4;
  padding-left: 85px;
}
.post-hero .post-hero-content .page-down {
  width: 55px;
  height: 55px;
  background-image: url("./img/page-down.svg");
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  margin: 0 20px 0 0;
  vertical-align: top;
}
.post-hero .post-hero-content .page-down:hover {
  transform: scale(1.1);
}
.post-hero .post-hero-content #breadcrumbs {
  text-align: right;
  color: #fff;
  margin: 10px 0 0 0;
}
.post-hero .post-hero-content #breadcrumbs a {
  color: #fff;
}
.post-hero .post-hero-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 340px;
  background-color: #fff;
  z-index: 1;
}
.post-hero #heroScroller {
  position: absolute;
  width: 1px;
  height: 1px;
  bottom: 0;
}

.select2-search--dropdown {
  display: none !important;
}

.select2-results__options li:first-child {
  display: none;
}

.select2-container--default .select2-selection--single {
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: 1px solid #DBDBDB;
  height: 100px;
  padding-left: 20px;
  background-color: transparent;
  border-radius: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 100px;
  color: #163072;
}

.select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("./img/select-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  top: calc(50% - 13px);
  right: 20px;
}

.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}

.select2-container--open .select2-dropdown {
  top: -12px;
  border-top: none;
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  left: 0px;
}

.select2-container--open .select2-dropdown--above {
  top: 10px;
  border-bottom: none;
}

.select2-results__option {
  padding: 20px 20px 20px 28px;
  color: #163072;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0076C4;
}

/*******************************************
Sections
*******************************************/
.text-block a {
  color: #0076C4;
  text-decoration: underline;
}
.text-block a:hover {
  color: #163072;
}
.text-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.text-block ul li {
  color: #163072;
  margin: 0 0 15px 0;
  font-size: 17px;
  background-image: url("./img/list-arrow.svg");
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding-left: 60px;
}
.text-block ol {
  margin: 0;
  padding: 0 0 0 17px;
}
.text-block ol li {
  color: #163072;
  margin: 0 0 15px 0;
  font-size: 17px;
}
.text-block h2, .text-block h3 {
  margin-bottom: 25px;
}
.text-block .text-column-left {
  padding: 0 30px 0 0;
}
.text-block .text-column-right {
  padding: 0 0 0 30px;
}

.text-block.flex-bg-d-blue p, .text-block.flex-bg-d-blue h2, .text-block.flex-bg-d-blue h3, .text-block.flex-bg-d-blue h4, .text-block.flex-bg-d-blue h5, .text-block.flex-bg-d-blue h6, .text-block.flex-bg-d-blue li,
.text-block.flex-bg-l-blue p,
.text-block.flex-bg-l-blue h2,
.text-block.flex-bg-l-blue h3,
.text-block.flex-bg-l-blue h4,
.text-block.flex-bg-l-blue h5,
.text-block.flex-bg-l-blue h6,
.text-block.flex-bg-l-blue li,
.text-block.flex-bg-grad p,
.text-block.flex-bg-grad h2,
.text-block.flex-bg-grad h3,
.text-block.flex-bg-grad h4,
.text-block.flex-bg-grad h5,
.text-block.flex-bg-grad h6,
.text-block.flex-bg-grad li {
  color: #fff;
}

.text-and-image.flex-bg-d-blue p, .text-and-image.flex-bg-d-blue h2, .text-and-image.flex-bg-d-blue h3, .text-and-image.flex-bg-d-blue h4, .text-and-image.flex-bg-d-blue h5, .text-and-image.flex-bg-d-blue h6, .text-and-image.flex-bg-d-blue li,
.text-and-image.flex-bg-l-blue p,
.text-and-image.flex-bg-l-blue h2,
.text-and-image.flex-bg-l-blue h3,
.text-and-image.flex-bg-l-blue h4,
.text-and-image.flex-bg-l-blue h5,
.text-and-image.flex-bg-l-blue h6,
.text-and-image.flex-bg-l-blue li,
.text-and-image.flex-bg-grad p,
.text-and-image.flex-bg-grad h2,
.text-and-image.flex-bg-grad h3,
.text-and-image.flex-bg-grad h4,
.text-and-image.flex-bg-grad h5,
.text-and-image.flex-bg-grad h6,
.text-and-image.flex-bg-grad li {
  color: #fff;
}

.testimonials.flex-bg-d-blue p, .testimonials.flex-bg-d-blue h2, .testimonials.flex-bg-d-blue h3, .testimonials.flex-bg-d-blue h4, .testimonials.flex-bg-d-blue h5, .testimonials.flex-bg-d-blue h6, .testimonials.flex-bg-d-blue li, .testimonials.flex-bg-d-blue .name, .testimonials.flex-bg-d-blue .role, .testimonials.flex-bg-d-blue .current,
.testimonials.flex-bg-l-blue p,
.testimonials.flex-bg-l-blue h2,
.testimonials.flex-bg-l-blue h3,
.testimonials.flex-bg-l-blue h4,
.testimonials.flex-bg-l-blue h5,
.testimonials.flex-bg-l-blue h6,
.testimonials.flex-bg-l-blue li,
.testimonials.flex-bg-l-blue .name,
.testimonials.flex-bg-l-blue .role,
.testimonials.flex-bg-l-blue .current,
.testimonials.flex-bg-grad p,
.testimonials.flex-bg-grad h2,
.testimonials.flex-bg-grad h3,
.testimonials.flex-bg-grad h4,
.testimonials.flex-bg-grad h5,
.testimonials.flex-bg-grad h6,
.testimonials.flex-bg-grad li,
.testimonials.flex-bg-grad .name,
.testimonials.flex-bg-grad .role,
.testimonials.flex-bg-grad .current {
  color: #fff !important;
}

.stats.flex-bg-d-blue p, .stats.flex-bg-d-blue h2, .stats.flex-bg-d-blue h3, .stats.flex-bg-d-blue h4, .stats.flex-bg-d-blue h5, .stats.flex-bg-d-blue h6, .stats.flex-bg-d-blue li, .stats.flex-bg-d-blue p.stat-item span.counter, .stats.flex-bg-d-blue p.stat-item span,
.stats.flex-bg-l-blue p,
.stats.flex-bg-l-blue h2,
.stats.flex-bg-l-blue h3,
.stats.flex-bg-l-blue h4,
.stats.flex-bg-l-blue h5,
.stats.flex-bg-l-blue h6,
.stats.flex-bg-l-blue li,
.stats.flex-bg-l-blue p.stat-item span.counter,
.stats.flex-bg-l-blue p.stat-item span,
.stats.flex-bg-grad p,
.stats.flex-bg-grad h2,
.stats.flex-bg-grad h3,
.stats.flex-bg-grad h4,
.stats.flex-bg-grad h5,
.stats.flex-bg-grad h6,
.stats.flex-bg-grad li,
.stats.flex-bg-grad p.stat-item span.counter,
.stats.flex-bg-grad p.stat-item span {
  color: #fff !important;
}

.resources.flex-bg-d-blue h3,
.resources.flex-bg-l-blue h3,
.resources.flex-bg-grad h3 {
  color: #fff;
}

.faqs.flex-bg-d-blue h3,
.faqs.flex-bg-l-blue h3,
.faqs.flex-bg-grad h3 {
  color: #fff;
}

.text-and-image {
  position: relative;
}
.text-and-image h2, .text-and-image h3 {
  margin-bottom: 25px;
}
.text-and-image ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}
.text-and-image ul li {
  color: #163072;
  margin: 0 0 15px 0;
  font-size: 17px;
  background-image: url("./img/list-arrow.svg");
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding-left: 60px;
}

.text-and-image.flex-bg-d-blue ul li,
.text-and-image.flex-bg-l-blue ul li,
.text-and-image.flex-bg-grad ul li,
.text-block.flex-bg-d-blue ul li,
.text-block.flex-bg-l-blue ul li,
.text-block.flex-bg-grad ul li {
  background-image: url("./img/arrow-btn-light.svg");
}

.text-and-image.fw-img-is-right img {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 75px 0 0 75px;
}

.text-and-image.fw-img-is-left img {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 75px 75px 0;
}

.text-and-image .btn-primary {
  margin: 40px 10px 0 0;
}

.tabbed-content {
  color: #fff;
}
.tabbed-content p {
  color: #fff;
}
.tabbed-content h3 {
  color: #fff;
  margin: 0 0 25px 0;
}
.tabbed-content h6 {
  color: #0076C4;
  margin: 0 0 30px 0;
}
.tabbed-content .list-group-item {
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 48px;
  background-color: transparent;
  color: #fff;
}
.tabbed-content .list-group-item:hover {
  text-decoration: underline;
}
.tabbed-content .list-group-item.active {
  color: #0076C4;
  text-decoration: underline;
}
.tabbed-content img {
  width: 90%;
  border-radius: 5px;
  margin: 0 auto;
  display: block;
  height: 760px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.tabbed-content .btn-primary {
  margin: 55px 0 0 0;
  min-width: 225px;
}

.tabbed-content.flex-bg-white .list-group-item,
.tabbed-content.flex-bg-grey .list-group-item,
.tabbed-content.flex-bg-l-grey .list-group-item {
  color: #0076C4;
}
.tabbed-content.flex-bg-white h3, .tabbed-content.flex-bg-white p, .tabbed-content.flex-bg-white ul, .tabbed-content.flex-bg-white ol,
.tabbed-content.flex-bg-grey h3,
.tabbed-content.flex-bg-grey p,
.tabbed-content.flex-bg-grey ul,
.tabbed-content.flex-bg-grey ol,
.tabbed-content.flex-bg-l-grey h3,
.tabbed-content.flex-bg-l-grey p,
.tabbed-content.flex-bg-l-grey ul,
.tabbed-content.flex-bg-l-grey ol {
  color: #163072;
}

.tabbed-content.flex-bg-grey .btn-primary {
  /*background-color: #E8EAEE;*/
}
.tabbed-content.flex-bg-grey .btn-primary {
  background-color: #0076C4;
  color: #fff;
  background-image: url("./img/arrow-btn-light.svg");
}

.tabbed-content.flex-bg-l-blue .list-group-item.active, .tabbed-content.flex-bg-l-blue h6 {
  color: #163072;
}

.tabbed-content.flex-bg-grad {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(12, 96, 168) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#163072", endColorstr="#0c60a8",GradientType=1 );
}

.full-width-cta {
  position: relative;
  background-position: center;
  background-size: cover;
}
.full-width-cta .cta-fw-content {
  position: relative;
  z-index: 10;
}
.full-width-cta .cta-fw-content .fw-cta-card {
  background-color: #0076C4;
  padding: 40px 120px 40px 50px;
  border-radius: 5px;
  margin: 310px 0;
  position: relative;
}
.full-width-cta .cta-fw-content .fw-cta-card h4 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 140px 0;
  line-height: 1.4;
}
.full-width-cta .cta-fw-content .fw-cta-card .cta-card-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("./img/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  right: 52px;
  bottom: 52px;
  transition: 0.3s ease-in-out;
}
.full-width-cta .cta-fw-content .fw-cta-card:hover .cta-card-arrow {
  right: 42px;
}
.full-width-cta .fw-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.stats .stat-card {
  padding: 0 20% 0 0;
}
.stats .stat-card h5 {
  font-size: 19px;
  color: #0076C4;
  margin: 0 0 28px 0;
}
.stats .stat-card h3 {
  font-size: 30px;
  line-height: 1.4;
}
.stats .stat-card p.stat-item {
  font-size: 113px;
  font-weight: 300;
  margin: 60px 0 0 0;
}
.stats .stat-card p.stat-item span {
  color: #0076C4;
}
.stats .stat-card p.stat-item span.counter {
  color: #163072;
}

.testimonials .testimonial-slide {
  padding: 0 20px;
}
.testimonials .testimonial-slide .testimonial-text p {
  font-size: 34px;
  line-height: 1.3;
  position: relative;
}
.testimonials .testimonial-slide .testimonial-text p:first-child::before {
  content: "“";
  position: absolute;
  left: -18px;
  font-family: "Inter", sans-serif;
}
.testimonials .testimonial-slide .testimonial-text p:last-child {
  margin-bottom: 70px;
}
.testimonials .testimonial-slide .testimonial-text p:last-child::after {
  content: "”";
  font-family: "Inter", sans-serif;
}
.testimonials .testimonial-slide .name {
  color: #0076C4;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.testimonials .testimonial-slide .role {
  color: #163072;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.testimonial-wrapper {
  position: relative;
}
.testimonial-wrapper .slide-next {
  position: absolute;
  top: 0;
  left: 90px;
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/right.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-wrapper .slide-next:hover {
  background-color: #E8EAEE;
}
.testimonial-wrapper .slide-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/left.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-wrapper .slide-prev:hover {
  background-color: #E8EAEE;
}
.testimonial-wrapper .testimonial-counter {
  position: absolute;
  left: 0;
  bottom: 0;
}
.testimonial-wrapper .testimonial-counter .count-heading {
  font-size: 15px;
  color: #163072;
  margin: 0;
}
.testimonial-wrapper .testimonial-counter .count-heading .slideCount {
  margin: 10px 0 0 0;
  font-weight: 400;
}
.testimonial-wrapper .testimonial-counter .count-heading .slideCount .current {
  color: #0076C4;
  font-weight: 500;
}

.resources .resources-intro {
  padding: 0 50px;
  margin: 0 0 90px 0;
}
.resources .resources-intro h3 {
  display: inline-block;
  margin: 0;
}
.resources .resources-intro a:hover {
  opacity: 0.6;
}
.resources .resources-intro .resource-controls {
  display: inline-block;
  float: right;
  margin: -20px 0 0 0;
}
.resources .slide-next-rs {
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/right.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -140px;
  right: 50px;
  margin: 0 0 0 20px;
}
.resources .slide-next-rs:hover {
  background-color: #E8EAEE;
}
.resources .slide-prev-rs {
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/left.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -140px;
  right: 140px;
}
.resources .slide-prev-rs:hover {
  background-color: #E8EAEE;
}
.resources .slick-slide {
  margin: 0 27px;
}
.resources .slick-list {
  margin: 0 -27px;
}
.resources .r-slide-item {
  background-color: #fff;
  padding: 54px 28px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  height: 495px;
}
.resources .r-slide-item .card-r-hover-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}
.resources .r-slide-item .slide-r-content {
  position: relative;
  z-index: 20;
  height: 100%;
}
.resources .r-slide-item .slide-r-content h3 a {
  color: #163072;
}
.resources .r-slide-item .slide-r-content a.card-link {
  position: absolute;
  bottom: 0px;
  width: 22px;
  height: 24px;
  display: block;
  background-image: url("./img/right-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
  left: 0;
}
.resources .r-slide-item .slide-r-content .post-card-cats {
  margin: 0 0 28px 0;
}
.resources .r-slide-item .slide-r-content .post-card-cats span {
  color: #0076C4;
  transition: 0.3s ease-in-out;
}
.resources .r-slide-item .slide-r-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 5px;
  overflow: hidden;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.resources .r-slide-item .slide-r-hover .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgb(22, 48, 114) 0%, rgba(22, 48, 114, 0) 100%);
  z-index: 15;
}
.resources .r-slide-item .slide-r-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.r-slide-item:hover .slide-r-hover {
  opacity: 1;
}
.r-slide-item:hover .slide-r-content h3 a {
  color: #fff;
}
.r-slide-item:hover .slide-r-content .post-card-cats span {
  color: #fff;
}
.r-slide-item:hover .slide-r-content a.card-link {
  background-image: url("./img/right-light.svg");
}

.rs-slider-wrapper {
  position: relative;
}

.faqs h3 {
  margin: 0 0 70px 0;
}
.faqs .accordion-item {
  border-radius: 5px !important;
  border: none;
  box-shadow: none;
  background-color: #F3F4F7;
  margin: 26px 0 0 0;
}
.faqs .accordion-button {
  background-color: #F3F4F7;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
  font-size: 22px;
  color: #163072;
  box-shadow: none;
  padding: 20px 20px;
}
.faqs .accordion-button::after {
  display: none;
}
.faqs .accordion-button::before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 47px;
  background-color: #E8EAEE;
  border-radius: 100px;
  background-image: url("./img/minus.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 40px 0 0;
  transition: 0.3s ease-in-out;
}
.faqs .accordion-button:focus, .faqs .accordion-button:active, .faqs .accordion-button:visited, .faqs .accordion-button:focus-within, .faqs .accordion-button:target, .faqs .accordion-button:focus-visible {
  outline: none !important;
  -webkit-appearance: none !important;
  border: none !important;
  box-shadow: none !important;
}
.faqs .accordion-button.collapsed::before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 47px;
  background-color: transparent;
  border-radius: 100px;
  background-image: url("./img/plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 40px 0 0;
}
.faqs .accordion-button.collapsed:hover::before {
  background-color: #E8EAEE;
}
.faqs .accordion-body {
  padding: 0 56px 56px 110px;
}
.faqs .accordion-body p:last-child {
  margin: 0;
}
.faqs .accordion-body .btn-secondary {
  margin: 40px 15px 0 0;
}

.logos {
  position: relative;
}
.logos .logo-slider {
  overflow-x: hidden;
  position: relative;
}
.logos .logo-slider .slick-slide {
  margin: 0 70px;
}
.logos .logo-slider .slick-list {
  margin: 0 -70px;
}
.logos .logo-slider .logo-wrapper {
  padding: 80px 0;
}
.logos .logo-slider .logo-wrapper img {
  width: 100%;
  height: auto;
}
.logos .slide-next-lg {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/right.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 35px);
  right: 50px;
}
.logos .slide-next-lg:hover {
  background-color: #E8EAEE;
}
.logos .slide-prev-lg {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #EDEFF2;
  border-radius: 100px;
  cursor: pointer;
  background-image: url("./img/left.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 35px);
  left: 50px;
}
.logos .slide-prev-lg:hover {
  background-color: #E8EAEE;
}

.cta-card-block .cta-card {
  padding: 76px 70px;
  border-radius: 5px;
  position: relative;
}
.cta-card-block .cta-card h3 {
  line-height: 1.4;
  margin: 0;
}
.cta-card-block .white-cta-card {
  background-color: #fff;
}
.cta-card-block .white-cta-card .cta-card-link {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("./img/right-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  bottom: 32px;
  right: 40px;
  transition: 0.3s ease-in-out;
}
.cta-card-block .blue-cta-card {
  background-color: #0076C4;
}
.cta-card-block .blue-cta-card h3 {
  color: #fff;
}
.cta-card-block .blue-cta-card .cta-card-link {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("./img/right-light.svg");
  background-position: center;
  background-repeat: no-repeat;
  bottom: 32px;
  right: 40px;
  transition: 0.3s ease-in-out;
}
.cta-card-block .blue-grad-cta-card {
  background: rgb(22, 48, 114);
  background: linear-gradient(45deg, rgb(22, 48, 114) 0%, rgb(42, 83, 157) 100%);
}
.cta-card-block .blue-grad-cta-card h3 {
  color: #fff;
}
.cta-card-block .blue-grad-cta-card .cta-card-link {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("./img/right-light.svg");
  background-position: center;
  background-repeat: no-repeat;
  bottom: 32px;
  right: 40px;
  transition: 0.3s ease-in-out;
}
.cta-card-block .cta-card:hover .cta-card-link {
  right: 28px;
}

.form-section .form-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 110px 80px 110px;
  position: relative;
}
.form-section .form-wrapper label.gfield_label,
.form-section .form-wrapper legend.gfield_label {
  color: #163072;
  font-size: 26px;
  font-weight: 400;
  margin: 80px 0 40px 0;
}
.form-section .form-wrapper input[type=text],
.form-section .form-wrapper input[type=email] {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
  border-bottom: 1px solid #DDE0E6;
  padding-left: 0px !important;
  outline: none;
  font-size: 16px !important;
  height: 50px !important;
}
.form-section .form-wrapper textarea {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
  border-bottom: 1px solid #DDE0E6;
  padding-left: 0px !important;
  outline: none;
  height: 50px !important;
  font-size: 16px !important;
}
.form-section .form-wrapper .gfield_checkbox .gchoice {
  display: inline-block;
  margin: 0 20px 0 0;
}
.form-section .form-wrapper .gfield_checkbox .gchoice label {
  background-color: #F3F4F7;
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 16px;
  color: #163072;
  display: inline;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form-section .form-wrapper .gfield_checkbox .gchoice input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.form-section .form-wrapper .gfield_checkbox .gchoice label.selection-made {
  background-color: #0076C4;
  color: #fff;
}
.form-section .form-wrapper .ginput_container_consent {
  margin-top: 80px;
}
.form-section .form-wrapper .ginput_container_consent input[type=checkbox] {
  display: none;
}
.form-section .form-wrapper .ginput_container_consent .gfield_consent_label {
  background-image: url("./img/not-selected.svg");
  background-position: left;
  padding-left: 33px;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  color: #163072;
}
.form-section .form-wrapper .ginput_container_consent .gfield_consent_label.selection-made {
  background-image: url("./img/selected.svg");
}
.form-section .form-wrapper input[type=submit] {
  background-color: #0076C4;
  color: #fff;
  border: none;
  font-size: 17px;
  padding: 15px 70px 15px 30px;
  display: inline-block;
  border-radius: 100px;
  background-image: url("./img/right-light.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
  margin: 64px 0 0 0;
}
.form-section .gform_wrapper.gravity-theme #field_submit, .form-section .gform_wrapper.gravity-theme .gform_footer {
  display: inline-block;
  text-align: right;
}

.downloads .dl-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 87px;
  grid-row-gap: 87px;
}
.downloads .dl-wrapper .dl-card {
  background-color: #F3F4F7;
  padding: 40px 50px;
  border-radius: 5px;
}
.downloads .dl-wrapper .dl-card a {
  display: block;
  line-height: 55px;
  background-repeat: no-repeat;
  color: #0076C4;
  margin: 0 0 50px 0;
}
.downloads .dl-wrapper .dl-card a::before {
  content: "";
  width: 55px;
  height: 55px;
  background-image: url("./img/dl-icon.svg");
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  transition: 0.3s ease-in-out;
}
.downloads .dl-wrapper .dl-card a:hover::before {
  transform: rotate(-90deg);
}

.images img {
  width: 100%;
  height: auto;
}
.images img.single-img {
  width: calc(100% + 100px);
  margin-left: -50px;
  border-radius: 5px;
}

.news-listing .post-filter-wrapper {
  padding: 0 50px;
}
.news-listing .cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 100px 0;
}
.news-listing .cat-list::before {
  content: "Filter";
  font-size: 17px;
  color: #163072;
  margin: 0 40px 0 0;
}
.news-listing .cat-list li {
  display: inline-block;
}
.news-listing .cat-list li a {
  padding: 15px 31px;
  background-color: #fff;
  border-radius: 50px;
  margin: 0 40px 0 0;
  color: #163072;
  font-size: 17px;
}
.news-listing .cat-list li a:hover {
  background-color: #0076C4;
  color: #fff;
}
.news-listing .cat-list li a.active {
  background-color: #0076C4;
  color: #fff;
}
.news-listing .news-listing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 63px;
  grid-row-gap: 63px;
}
.news-listing .news-listing-wrapper .news-listing-item {
  background-color: #fff;
  padding: 54px 28px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
  position: relative;
  height: 495px;
}
.news-listing .news-listing-wrapper .news-listing-item .card-r-hover-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-content {
  position: relative;
  z-index: 20;
  height: 100%;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-content h3 a {
  color: #163072;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-content a.card-link {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 22px;
  height: 24px;
  display: block;
  background-image: url("./img/right-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-content .post-card-cats {
  margin: 0 0 28px 0;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-content .post-card-cats span {
  color: #0076C4;
  transition: 0.3s ease-in-out;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 5px;
  overflow: hidden;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-hover .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgb(22, 48, 114) 0%, rgba(22, 48, 114, 0) 100%);
  z-index: 15;
}
.news-listing .news-listing-wrapper .news-listing-item .slide-r-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-listing .news-listing-item:hover .slide-r-hover {
  opacity: 1;
}
.news-listing .news-listing-item:hover .slide-r-content h3 a {
  color: #fff;
}
.news-listing .news-listing-item:hover .slide-r-content .post-card-cats span {
  color: #fff;
}
.news-listing .news-listing-item:hover .slide-r-content a.card-link {
  background-image: url("./img/right-light.svg");
  left: 20px;
}
.news-listing .news-listing-item.post-has-no-img .slide-r-content h3 a {
  color: #163072;
}
.news-listing .news-listing-item.post-has-no-img .slide-r-content .post-card-cats span {
  color: #0076C4;
}
.news-listing .news-listing-item.post-has-no-img .slide-r-content a.card-link {
  background-image: url("./img/right-blue.svg");
}
.news-listing .news-listing-item.post-has-no-img:hover .slide-r-content h3 a {
  color: #0076C4;
}
.news-listing .pager-navigation ul {
  list-style: none;
  padding: 0;
  margin: 100px 0 0 0;
  text-align: center;
}
.news-listing .pager-navigation ul li {
  display: inline-block;
  margin: 0 12px;
}
.news-listing .pager-navigation ul li a {
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  background-color: #fff;
  border-radius: 50px;
  color: #163072;
}
.news-listing .pager-navigation ul li a:hover {
  background-color: #DDE0E6;
}
.news-listing .pager-navigation ul li.active a {
  background-color: #DDE0E6;
}

.news-listing .filter-wrapper {
  padding: 0 50px;
  margin: 0 0 100px 0;
}
.news-listing .filter-wrapper .sf-field-search,
.news-listing .filter-wrapper .sf-field-category {
  display: inline-block;
}
.news-listing .filter-wrapper .sf-field-search {
  float: right;
}
.news-listing .filter-wrapper .sf-field-search input[type=text] {
  height: 56px;
  outline: none;
  border-radius: 100px;
  width: 240px;
  border: none;
  padding-left: 20px;
  background-image: url("./img/search.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  margin: 4px 0 0 0;
  color: #163072;
}
.news-listing .filter-wrapper ul {
  list-style: none;
  padding: 0;
}
.news-listing .filter-wrapper ul li {
  display: inline-block;
}
.news-listing .filter-wrapper ul li.sf-option-active .sf-label-checkbox {
  background-color: #0076C4;
  color: #fff;
}
.news-listing .filter-wrapper ul input[type=checkbox] {
  display: none;
}
.news-listing .filter-wrapper ul .sf-label-checkbox {
  display: inline-block;
  font-size: 17px;
  color: #163072;
  background-color: #fff;
  padding: 16px 40px;
  border-radius: 60px;
  cursor: pointer;
  margin: 0px 40px 0 0;
  transition: 0.3s ease-in-out;
}
.news-listing .filter-wrapper ul .sf-label-checkbox:hover {
  background-color: #0076C4;
  color: #fff;
}
.news-listing .pages {
  display: none;
}
.news-listing .wp-pagenavi {
  text-align: center;
  width: 100%;
  margin: 100px 0 0 0;
}
.news-listing .wp-pagenavi span.current {
  width: 55px;
  height: 55px;
  display: inline-block;
  line-height: 50px;
  border-radius: 50px;
  border: none;
  background-color: #DDE0E6;
  color: #163072;
  font-weight: 400;
  margin: 0 10px;
}
.news-listing .wp-pagenavi a {
  width: 55px;
  height: 55px;
  display: inline-block;
  line-height: 50px;
  border-radius: 50px;
  border: none;
  background-color: #fff;
  color: #163072;
  margin: 0 10px;
}
.news-listing .wp-pagenavi a:hover {
  background-color: #DDE0E6;
}
.news-listing .wp-pagenavi .nextpostslink,
.news-listing .wp-pagenavi .previouspostslink {
  display: none;
}

.martec-search-results {
  padding: 100px 0;
}
.martec-search-results .search-result-item {
  border-bottom: 1px solid #F2F3F7;
  padding: 30px 0;
}
.martec-search-results .search-result-item h4 a {
  color: #163072;
}
.martec-search-results .search-result-item h4 a:hover {
  color: #0076C4;
}

.top-image-mob {
  display: none;
}

.mobile-menu .search-icon {
  float: none;
  margin: 10px 0 0 0;
}

.results-sidebar {
  padding: 28px 0 0 0;
}
.results-sidebar li, .results-sidebar label {
  width: 100%;
}
.results-sidebar select,
.results-sidebar input[type=text] {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-left: 14px;
  font-size: 14px;
  outline: none;
}
.results-sidebar select {
  -webkit-appearance: none;
  background-image: url("./img/dl-icon.svg");
  background-size: 30px;
  background-position: right 14px center;
  background-repeat: no-repeat;
}
.results-sidebar input[type=submit] {
  display: none;
}

.r-slide-item.post-has-no-img:hover .slide-r-content h3 a {
  color: #0076C4;
}
.r-slide-item.post-has-no-img:hover .slide-r-content .post-card-cats span {
  color: #0076C4;
}
.r-slide-item.post-has-no-img:hover .slide-r-content a.card-link {
  background-image: url("./img/right-blue.svg");
}

.social-share {
  padding: 100px 0;
}
.social-share p {
  display: inline-block;
  margin: 0 30px 0 0;
}
.social-share .social-icon {
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 48px;
}
.social-share .social-icon:hover {
  transform: scale(1.1);
}
.social-share .facebook {
  background-image: url("./img/facebook.svg");
}
.social-share .linkedin {
  background-image: url("./img/linkedin.svg");
}
.social-share .twitter {
  background-image: url("./img/twitter.svg");
}
.social-share .single-post-nav {
  float: right;
}
.social-share .single-post-nav a {
  color: #163072;
}
.social-share .single-post-nav a:hover {
  color: #0076C4;
}
.social-share .single-post-nav a:nth-child(2) {
  border-left: 1px solid #163072;
  padding-left: 10px;
  margin-left: 8px;
}

.slide-r-does-have-img .slide-r-content h3, .slide-r-does-have-img .slide-r-content a {
  color: #fff !important;
}

.news-listing .news-listing-wrapper .news-listing-item.slide-r-does-have-img .slide-r-content .post-card-cats span {
  color: #fff;
}

.news-listing .news-listing-wrapper .news-listing-item.slide-r-does-have-img .slide-r-content a.card-link {
  background-image: url("./img/right-light.svg");
}

.post-now-has-img .slide-r-content h3, .post-now-has-img .slide-r-content a, .post-now-has-img .slide-r-content span {
  color: #fff !important;
}
.post-now-has-img .slide-r-content a.card-link {
  background-image: url("./img/right-light.svg") !important;
}

.resources .r-slide-item:hover a.card-link {
  left: 20px;
}

.video-placeholder {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  text-align: center;
  padding: 24% 0;
}
.video-placeholder:hover .play-icon {
  transform: scale(1.1);
}
.video-placeholder .play-icon {
  width: 100px;
  transition: 0.3s ease-in-out;
}

.lity {
  z-index: 100000000000000000000000000000000000 !important;
}

.slide-r-does-have-img .resource-date {
  color: #fff;
  opacity: 0.5;
}

.post-hero .resource-date,
.hero-content .resource-date {
  color: #fff;
  opacity: 0.4;
  float: right;
  margin: 10px 0 0 0;
}

.post-now-has-img .resource-date {
  color: #fff;
  opacity: 0.5;
}

.post-has-no-img .resource-date {
  color: #B8BCC6 !important;
  opacity: 1;
}

.mobile-hero-search {
  display: none;
  position: relative;
  background-color: #163072;
  padding: 20px 0;
}
.mobile-hero-search ul {
  padding: 0;
}
.mobile-hero-search ul:first-of-type {
  background-color: #fff;
  position: relative;
  width: 90vw;
  margin-left: 5vw;
  border-radius: 15px;
}
.mobile-hero-search .select2-container {
  height: 60px !important;
  width: 100% !important;
}
.mobile-hero-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px !important;
  height: 60px !important;
}
.mobile-hero-search .select2-container--default .select2-selection--single {
  height: 60px !important;
}
.mobile-hero-search .searchandfilter ul li {
  display: inline-block;
}
.mobile-hero-search .sf-field-taxonomy-sector,
.mobile-hero-search .sf-field-taxonomy-service {
  width: 33%;
  padding: 0 !important;
}
.mobile-hero-search .sf-field-search {
  width: 33%;
  padding: 0 !important;
}
.mobile-hero-search .sf-field-submit {
  position: absolute;
  top: 0;
  right: 0;
}
.mobile-hero-search .sf-field-search label {
  width: 100%;
}
.mobile-hero-search .sf-field-search .sf-input-text {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding-left: 20px;
}
.mobile-hero-search .sf-field-search ::-webkit-input-placeholder {
  font-style: italic;
}
.mobile-hero-search .sf-field-search ::-moz-placeholder {
  font-style: italic;
}
.mobile-hero-search .sf-field-search :-ms-input-placeholder {
  font-style: italic;
}
.mobile-hero-search .sf-field-search :-moz-placeholder {
  font-style: italic;
}
.mobile-hero-search input[type=submit] {
  width: 60px;
  height: 61px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 15px 15px 0;
  border: none;
  background-image: url("./img/submit.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F3F4F7;
  background-size: 40px;
  transition: 0.3s ease-in-out;
}
.mobile-hero-search input[type=submit]:hover {
  background-size: 50px;
}

.results-sidebar-update .select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #DBDBDB;
  width: 100%;
  max-width: 100%;
}
.results-sidebar-update .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
}
.results-sidebar-update .select2-container {
  width: 100% !important;
}
.results-sidebar-update .results-sidebar-update .select2-container {
  width: 100% !important;
  max-width: 100% !important;
}
.results-sidebar-update .sf-input-text {
  width: 100%;
  height: 60px;
  border: 1px solid #DBDBDB;
  padding-left: 10px;
}
.results-sidebar-update .searchandfilter label {
  display: block;
  width: 100%;
}
.results-sidebar-update .select2-container--default .select2-selection--single {
  padding-left: 4px;
}
.results-sidebar-update a.search-filter-reset {
  background-color: #F3F4F7;
  color: #0076C4;
  font-size: 17px;
  padding: 15px 70px 15px 30px;
  display: inline-block;
  border-radius: 100px;
  background-image: url("./img/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
}
.results-sidebar-update a.search-filter-reset:hover {
  background-color: #0076C4;
  background-image: url("./img/arrow-btn-light.svg");
  background-position: right 18px center;
  color: #fff;
}

.news-listing .sf-field-category {
  margin: 8px 0 0 0;
}
.news-listing .sf-field-category input {
  display: none;
}
.news-listing .sf-field-category .sf-label-radio {
  padding: 12px 20px;
  background-color: #fff;
  color: #163072;
  border-radius: 100px;
  margin: 0 18px 0 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.news-listing .sf-field-category .sf-label-radio:hover {
  background-color: #0076C4;
  color: #fff;
}
.news-listing .sf-field-category .sf-option-active .sf-label-radio {
  background-color: #0076C4;
  color: #fff;
}

.Campaign__content label.gfield_label,
.Campaign__content legend.gfield_label {
  color: #163072;
  font-size: 26px;
  font-weight: 400;
  margin: 80px 0 40px 0;
}
.Campaign__content input[type=text],
.Campaign__content input[type=email] {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0px !important;
  border-bottom: 1px solid #DDE0E6 !important;
  padding-left: 0px !important;
  outline: none !important;
  font-size: 16px !important;
  height: 50px !important;
}
.Campaign__content textarea {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0px !important;
  border-bottom: 1px solid #DDE0E6 !important;
  padding-left: 0px !important;
  outline: none !important;
  height: 100px !important;
  font-size: 16px !important;
}
.Campaign__content .gfield_checkbox .gchoice {
  display: inline-block !important;
  margin: 0 20px 0 0 !important;
}
.Campaign__content .gfield_checkbox .gchoice label {
  background-color: #F3F4F7 !important;
  padding: 15px 34px !important;
  border-radius: 100px !important;
  font-size: 16px !important;
  color: #163072 !important;
  display: inline !important;
  margin: 0 0 10px 0 !important;
  cursor: pointer !important;
  transition: 0.3s ease-in-out !important;
}
.Campaign__content .gfield_checkbox .gchoice input[type=checkbox] {
  opacity: 0 !important;
  position: absolute !important;
}
.Campaign__content .gfield_checkbox .gchoice label.selection-made {
  background-color: #0076C4 !important;
  color: #fff !important;
}
.Campaign__content .ginput_container_consent {
  margin-top: 10px !important;
  /*input[type="checkbox"] {
    display: none !important;
  }*/
}
.Campaign__content .ginput_container_consent .gfield_consent_label {
  cursor: pointer !important;
  color: #163072 !important;
  height: 27px !important;
  padding-top: 6px !important;
}
.Campaign__content .ginput_container_consent .gfield_consent_label.selection-made {
  background-image: url("./img/selected.svg") !important;
}
.Campaign__content input[type=submit] {
  background-color: #0076C4 !important;
  color: #fff !important;
  border: none !important;
  font-size: 17px !important;
  padding: 15px 70px 15px 30px !important;
  display: inline-block !important;
  border-radius: 100px !important;
  background-image: url("./img/right-light.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 24px center !important;
  margin: 24px 0 0 0 !important;
}
.Campaign__content .gform_heading {
  margin-bottom: 26px !important;
}
.Campaign__content input#input_5_4_3 {
  width: calc(100% - 12px) !important;
}

.CampaignType--popup {
  z-index: 9999999999999 !important;
}

/*********************************
Media Queries
**********************************/
@media only screen and (max-width: 1400px) {
  .ask-expert {
    padding: 50px 9px;
  }
  .search-icon {
    margin: 14px 0 0 40px;
  }
  header ul.main-nav li {
    margin-left: 40px;
  }
  header.scrolled .search-icon {
    margin: 21px 0 0 40px;
  }
}
@media only screen and (max-width: 1300px) {
  header ul.main-nav li {
    margin: 0 0 0 30px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero-slider-wrapper .martec-search-bar {
    top: 120px;
  }
}
@media only screen and (max-width: 1250px) {
  .hero-slider-wrapper .martec-search-bar {
    display: none;
  }
  .mobile-hero-search {
    display: block;
  }
}
@media only screen and (max-width: 1100px) {
  header ul.main-nav li {
    margin: 0 0 0 20px;
  }
  header ul.main-nav li.menu-item-has-children:after {
    margin: 0 0 0 8px;
  }
}
@media only screen and (max-width: 992px) {
  .select2-container--default .select2-selection--single {
    border-right: none;
    border-bottom: 1px solid #DBDBDB;
  }
  .flex-padding-top {
    padding: 70px 0 0 0;
  }
  .flex-padding-bottom {
    padding: 0 0 70px 0;
  }
  .flex-padding-top-bottom {
    padding: 70px 0;
  }
  .flex-margin-top {
    margin: 70px 0 0 0;
  }
  .flex-margin-bottom {
    margin: 0 0 70px 0;
  }
  .flex-margin-top-bottom {
    margin: 70px 0;
  }
  .sitewide-search .close-search {
    top: 24px;
    right: 15px;
  }
  .news-listing .news-listing-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .downloads .dl-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .news-listing .cat-list {
    margin: 0 0 70px 0;
  }
  .news-listing .post-filter-wrapper {
    padding: 0;
  }
  .news-listing .cat-list li a {
    padding: 10px 20px;
    margin: 0 14px 0 0;
    font-size: 16px;
  }
  .news-listing .cat-list::before {
    font-size: 16px;
    margin: 0 20px 0 0;
  }
  .page-hero .hero-content {
    padding: 285px 0 265px 0;
  }
  header .main-nav {
    display: none;
  }
  .form-section .form-wrapper {
    padding: 20px 40px 20px 40px;
  }
  .form-section .form-wrapper label.gfield_label, .form-section .form-wrapper legend.gfield_label {
    margin: 40px 0 40px 0;
  }
  .form-section .form-wrapper input[type=submit] {
    margin: 20px 0 0 0;
  }
  .form-section .form-wrapper .ginput_container_consent {
    margin-top: 20px;
  }
  .cta-card-block .cta-card {
    padding: 56px 50px;
  }
  .testimonial-wrapper .testimonial-counter {
    position: relative;
    left: initial;
    bottom: initial;
    margin: 0 0 0 15px;
  }
  .testimonial-wrapper .testimonial-counter .count-heading {
    position: absolute;
    top: 0;
    left: 300px;
  }
  .testimonial-wrapper .slide-prev {
    top: initial;
    bottom: -40px;
    left: 15px;
  }
  .testimonial-wrapper .slide-next {
    top: initial;
    bottom: -40px;
    left: 105px;
  }
  .testimonials .testimonial-slide .testimonial-text p:last-child {
    margin-bottom: 30px;
  }
  .testimonial-wrapper .testimonial-counter .count-heading {
    position: absolute;
    top: -20px;
    left: 190px;
  }
  .testimonial-wrapper .testimonial-slide {
    margin: 0 0 70px 0;
  }
  .testimonials {
    padding: 70px 0 100px 0;
  }
  .stats .stat-card p.stat-item {
    font-size: 73px;
    font-weight: 300;
    margin: 20px 0 0 0;
  }
  .full-width-cta .cta-fw-content .fw-cta-card {
    margin: 80px 0;
  }
  .tabbed-content .list-group {
    display: block;
  }
  .tabbed-content .list-group-item {
    font-size: 28px;
    display: inline-block;
    width: initial;
    margin: 0 20px 0 0;
  }
  .tabbed-content img {
    width: 100%;
    margin: 30px 0;
  }
  .text-and-image .top-image,
  .text-and-image .bottom-image {
    display: none;
  }
  .top-image-mob {
    display: block;
    margin: 0 0 30px 0;
  }
  .text-and-image.fw-img-is-right img,
  .text-and-image.fw-img-is-left img {
    position: relative;
    width: 100%;
    border-radius: 5px;
  }
  .text-block .text-column-right {
    padding: 0;
  }
  footer ul {
    margin-bottom: 40px;
  }
  footer {
    padding: 80px 0 60px 0;
  }
  footer .site-by {
    float: none;
  }
  .logos .slide-prev-lg,
  .logos .slide-next-lg {
    z-index: 80;
  }
  .hero-slider-wrapper .hero-slide-item .hero-slide-content h1 {
    font-size: 42px;
    padding-right: 0;
    margin: 0;
  }
  .hero-slider-wrapper .martec-search-bar li:nth-child(-n+3) {
    width: 100%;
  }
  .hero-slider-wrapper .martec-search-bar select {
    border-right: none;
    border-bottom: 1px solid #DBDBDB;
    height: 60px;
    padding-left: 20px;
  }
  .hero-slider-wrapper .martec-search-bar input[type=text] {
    height: 60px;
    padding-left: 20px;
  }
  .hero-slider-wrapper .martec-search-bar input[type=submit] {
    bottom: 0;
    top: initial;
    height: 60px;
    border-radius: 0 0 15px 0;
  }
  .burger-menu {
    display: inline-block;
  }
  .burger-menu span {
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    display: block;
    position: relative;
    transition: 0.2s ease-in-out;
  }
  .burger-menu span:first-child {
    top: 7px;
  }
  .burger-menu span:nth-child(2) {
    top: 15px;
  }
  .burger-menu span:last-child {
    top: 23px;
  }
  .burger-menu.mob-menu-active span {
    left: 0;
  }
  .burger-menu.mob-menu-active span:first-child {
    top: 7px;
    transform: rotate(-45deg);
    top: 20px;
  }
  .burger-menu.mob-menu-active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.mob-menu-active span:last-child {
    top: 23px;
    transform: rotate(45deg);
    top: 16px;
  }
  header {
    padding: 10px 0px;
  }
  header.scrolled {
    padding: 10px 0px;
  }
  header.scrolled .main-logo {
    width: 160px;
  }
  .sitewide-search .martec-search-bar li:nth-child(-n+3) {
    width: 100%;
  }
  .sitewide-search .martec-search-bar li:nth-child(-n+3):last-child {
    border: none;
  }
  .sitewide-search .martec-search-bar li {
    border: none;
  }
  .sitewide-search .martec-search-bar select {
    border-right: none;
    border-bottom: 1px solid #DBDBDB !important;
  }
  .sitewide-search .martec-search-bar select,
  .sitewide-search .martec-search-bar input[type=text] {
    height: 60px;
  }
  .sitewide-search .martec-search-bar input[type=text] {
    border-right: none;
  }
  .sitewide-search .martec-search-bar input[type=submit] {
    width: 60px;
    height: 60px;
    top: initial;
    bottom: 0;
    right: 0;
    left: initial;
  }
  header .search-icon {
    display: none;
  }
  .hero-slider-wrapper .martec-search-bar input[type=text] {
    border-right: none;
  }
  .tabbed-content img {
    height: initial;
  }
  .social-share .single-post-nav {
    float: none;
    margin: 20px 0 0 0;
  }
  .mobile-hero-search .sf-field-taxonomy-sector, .mobile-hero-search .sf-field-taxonomy-service {
    width: 100%;
    display: block;
  }
  .mobile-hero-search .sf-field-search {
    display: block;
    width: 100%;
  }
  .mobile-hero-search .sf-field-search .sf-input-text {
    border-radius: 0 0 15px 15px;
  }
  .mobile-hero-search .sf-field-submit {
    bottom: 0px;
    right: 0px;
    top: initial;
    height: 60px;
    width: 60px;
  }
  .mobile-hero-search input[type=submit] {
    height: 60px;
    border-radius: 0 0 15px 0;
  }
  .mobile-hero-search .sf-field-search .sf-input-text {
    padding-left: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .news-listing .filter-wrapper {
    padding: 0 0px;
    margin: 0 0 100px 0;
  }
  .news-listing .news-listing-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .news-listing .filter-wrapper .sf-field-search {
    float: right;
    width: 100%;
  }
  .video-placeholder {
    padding: 18% 0;
  }
  .video-placeholder .play-icon {
    width: 80px;
  }
  .post-hero .post-hero-content {
    padding: 185px 0 110px 0 !important;
  }
  .small-hero .hero-content {
    padding: 185px 0 110px 0 !important;
  }
  .post-hero .post-hero-content #breadcrumbs,
  .small-hero .post-hero-content #breadcrumbs {
    text-align: left;
    color: #fff;
    margin: 20px 0 0 0;
    font-size: 14px;
  }
  .post-hero .post-hero-content h1 {
    color: #fff;
    line-height: 1.4;
    padding-left: 85px;
    font-size: 26px;
  }
  .small-hero .hero-content h1 {
    font-size: 26px;
  }
  .post-hero .resource-date, .hero-content .resource-date {
    color: #fff;
    opacity: 0.4;
    float: none;
    margin: 10px 0 0 0;
    display: block;
  }
  .text-column-right {
    margin-top: 40px;
  }
  .downloads .dl-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
  header {
    padding: 30px 0 0 0;
  }
  header .main-logo {
    width: 160px;
  }
  .hero .hero-content h1 {
    position: relative;
  }
  .hero .hero-content #breadcrumbs {
    text-align: left;
    margin: 10px 0 0 85px;
    font-size: 14px;
  }
  .ask-expert {
    bottom: 10px;
    transform: none;
    text-orientation: initial;
    writing-mode: initial;
    width: calc(100% - 20px);
    left: 10px;
    top: initial;
    border-radius: 5px;
    text-align: center;
    padding: 20px 5px;
    font-size: 14px;
  }
  .page-hero .hero-content {
    padding: 185px 0 135px 0;
  }
  h1 {
    font-size: 32px;
  }
  .hero .hero-content h1 {
    margin: 8px 0 0 0;
  }
  .images .col-md-6 img {
    margin: 12px 0;
  }
  .downloads .dl-wrapper .dl-card {
    padding: 20px 30px;
  }
  .form-section .form-wrapper .gfield_checkbox .gchoice {
    display: inline-block;
    width: 100%;
    margin: 0 !important;
    text-align: center;
  }
  .form-section .form-wrapper .gfield_checkbox .gchoice label {
    width: 100%;
    display: inline-block;
  }
  .form-section .form-wrapper label.gfield_label, .form-section .form-wrapper legend.gfield_label {
    margin: 30px 0 10px 0;
  }
  .form-section .form-wrapper label.gfield_label, .form-section .form-wrapper legend.gfield_label {
    font-size: 22px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  .logos .logo-slider {
    overflow-x: hidden;
    position: relative;
    padding: 0 100px;
  }
  .logos .logo-slider .slick-slide {
    margin: 0 30px;
  }
  .logos .logo-slider .slick-list {
    margin: 0 -30px;
  }
  .logos .logo-slider .logo-wrapper {
    padding: 80px 0;
  }
  .logos .logo-slider .logo-wrapper img {
    width: 100%;
    height: auto;
  }
  .logos .slide-next-lg {
    right: 15px;
  }
  .logos .slide-prev-lg {
    left: 15px;
  }
  .faqs h3 {
    margin: 0 0 40px 0;
  }
  .faqs .accordion-button.collapsed::before {
    margin: 0 20px 0 0;
  }
  .faqs .accordion-button::before {
    margin: 0 20px 0 0;
  }
  .faqs .accordion-button {
    font-size: 18px;
  }
  .faqs .accordion-body {
    padding: 0 30px 40px 30px;
  }
  .form-section .form-wrapper {
    padding: 20px 20px 20px 20px;
  }
  .resources .resources-intro {
    padding: 0;
  }
  .resources .slide-next-rs {
    width: 50px;
    height: 50px;
    top: -80px;
    right: 10px;
    margin: 0 0 0 10px;
  }
  .resources .slide-prev-rs {
    width: 50px;
    height: 50px;
    top: -80px;
    right: 70px;
  }
  .resources .resources-intro {
    margin: 0 0 40px 0;
  }
  .resources .r-slide-item {
    height: 400px;
  }
  .resources {
    overflow-x: hidden;
  }
  .testimonials .testimonial-slide .testimonial-text p {
    font-size: 24px;
    line-height: 1.2;
  }
  .testimonial-wrapper .slide-prev {
    width: 50px;
    height: 50px;
  }
  .testimonial-wrapper .slide-next {
    width: 50px;
    height: 50px;
    left: 75px;
  }
  .testimonial-wrapper .testimonial-counter .count-heading {
    position: relative;
    top: -40px;
    left: 5px;
  }
  .stats .stat-card h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  .stats .stat-card h5 {
    font-size: 19px;
    margin: 0 0 18px 0;
  }
  .stats .stat-card p.stat-item {
    margin: 0px 0 20px 0;
  }
  .full-width-cta .cta-fw-content .fw-cta-card {
    padding: 30px 30px 30px 30px;
    margin: 40px 0;
  }
  .tabbed-content .list-group-item {
    font-size: 18px;
    margin: 0 30px 0 0;
  }
  .vertical-align {
    display: initial;
    vertical-align: initial;
  }
  .text-and-image.flex-padding-top-bottom.flex-margin-top,
  .text-and-image.flex-padding-top-bottom.flex-margin-bottom {
    margin: 0;
  }
  .text-block ul li {
    padding-left: 44px;
  }
  footer h6 {
    margin: 30px 0 20px 0;
  }
  footer ul {
    margin: 0;
  }
  footer ul.footer-legal-nav li:last-child {
    border-right: none;
  }
  footer .footer-bottom ul.footer-bottom-nav li {
    display: block;
  }
  footer .footer-bottom p {
    display: block;
  }
  footer .footer-bottom ul.footer-bottom-nav li {
    margin: 0;
  }
  footer .footer-bottom ul.footer-bottom-nav {
    display: block;
    margin: 0 0 20px 0;
  }
  .hero-slider-wrapper .martec-search-bar {
    position: absolute;
    top: 60px;
    background-color: #fff;
    border-radius: 15px;
    width: calc(100% - 24px);
    max-width: 1170px;
    border: 1px solid #DBDBDB;
  }
  .hero-slider-wrapper .hero-slide-item .hero-slide-content h1 {
    font-size: 30px;
  }
  .hero-slider-wrapper .martec-search-bar input[type=submit] {
    width: 70px;
  }
  .select2-container--default .select2-selection--single {
    padding-left: 10px;
  }
  .mobile-hero-search .sf-field-search .sf-input-text {
    padding-left: 18px;
  }
}/*# sourceMappingURL=style.css.map */