@charset "UTF-8";
/*****
Reference to SMACSS - http://smacss.com/

NAMING CONVENTIONS:
c- : Color,
l- : Layout,
m- : Module,
f- : Form,
e- : Element,
*****/
.m-filters {
  margin-bottom: 20px;
}

.m-filters .e-options {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}

.m-filters .e-options select,
.m-filters .e-options input {
  width: 100%;
  margin-bottom: 15px;
}

.m-filters .e-options select:last-child,
.m-filters .e-options input:last-child {
  margin-bottom: 0;
}

.m-filters .e-options select:nth-last-child(2),
.m-filters .e-options input:nth-last-child(2) {
  width: calc(100% - 70px);
}

.m-filters .e-options input.datepicker {
  background-image: url(../images/Backgrounds/calendar-icon.png);
  background-position: right center;
  background-size: auto 30px;
  background-color: #F4F4F4;
  background-repeat: no-repeat;
}

.m-filters .e-options input.datepicker:active, .m-filters .e-options input.datepicker:focus {
  background-color: #ffffff;
}

.m-filters .e-options button {
  margin-left: 20px;
  width: 45px;
  height: 45px;
  padding: 0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("../images/icons/icon-ctaLink.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.m-filters .e-options button span {
  position: relative;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.m-filters .e-options button:hover {
  background-image: url("../images/icons/icon-ctaLinkBlue.svg");
}

@media (min-width: 992px) {
  .m-filters .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 30px;
  }
  .m-filters .e-options {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
  }
  .m-filters .e-options input,
  .m-filters .e-options select,
  .m-filters .e-options .radio {
    width: auto;
    margin: 0 0 0 15px;
    min-width: 300px;
  }
  .m-filters .e-options input:nth-last-child(2),
  .m-filters .e-options select:nth-last-child(2),
  .m-filters .e-options .radio:nth-last-child(2) {
    width: auto;
  }
  .m-filters .e-options button {
    margin-left: 20px;
  }
}

@media (min-width: 1230px) {
  .m-filters .e-options .radio {
    margin-left: 25px;
  }
}

.e-ctacircle {
  display: flex;
  align-items: center;
  color: #FF4215;
  font-weight: 800;
}

.e-ctacircle svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 26px;
  height: 26px;
  fill: #FF4215;
  margin-right: 15px;
}

.e-ctacircle:hover {
  color: #171F49;
}

.e-ctacircle:hover svg {
  fill: #171F49;
}

.e-newsitem {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 30px 0 0;
}

@media (min-width: 500px) {
  .e-newsitem {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .e-newsitem {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .e-newsitem {
    width: 33.33333%;
  }
}

@media (min-width: 1230px) {
  .e-newsitem {
    width: 33.33333%;
  }
}

@media (min-width: 1460px) {
  .e-newsitem {
    width: 33.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.e-newsitem a {
  color: #000000;
}

.e-newsitem a:hover .e-text h3 {
  color: #FF4215;
}

.e-newsitem a:hover .e-text h3 svg {
  fill: #FF4215;
}

.e-newsitem a:hover .e-image img {
  border-color: #FF4215;
}

.e-newsitem .e-image {
  margin-bottom: 30px;
  position: relative;
}

.e-newsitem .e-image:after {
  content: '';
  display: block;
  width: 18%;
  height: 18%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.e-newsitem .e-image img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 35px solid #F4F4F4;
  border-radius: 50%;
  width: 100%;
}

.e-newsitem .e-text h3 {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #010101;
  font-weight: 800;
  position: relative;
  padding-right: 30px;
  display: block;
}

.e-newsitem .e-text h3 svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  fill: #DFDFDF;
}

.e-newsitem .e-text .date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  font-family: interstate, sans-serif;
  font-weight: 800;
}

.e-newsitem .e-text p {
  padding-right: 30px;
}

.e-successstory {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 500px) {
  .e-successstory {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .e-successstory {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .e-successstory {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .e-successstory {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .e-successstory {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.e-successstory .e-image {
  margin-bottom: 20px;
  position: relative;
}

.e-successstory .e-image:after {
  content: '';
  display: block;
  width: 17%;
  height: 17%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.e-successstory .e-image img {
  -webkit-transition: border 0.3s ease-in-out;
  -moz-transition: border 0.3s ease-in-out;
  -ms-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border: 30px solid #F4F4F4;
  border-radius: 50%;
  width: 100%;
}

.e-successstory .e-image a:hover img {
  border-color: #FF4215;
}

.e-successstory .e-text img {
  max-width: 125px;
  max-height: 40px;
}

.e-successstory .e-text h3 {
  margin: 15px 0;
}

.e-successstory .e-text h3 a {
  color: #010101;
  font-weight: 800;
  position: relative;
  padding-right: 30px;
  display: block;
}

.e-successstory .e-text h3 a svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  fill: #DFDFDF;
}

.e-successstory .e-text h3 a:hover {
  color: #FF4215;
}

.e-successstory .e-text h3 a:hover svg {
  fill: #FF4215;
}

.e-successstory .e-text p {
  margin: 0;
}

.e-successstory .e-text p a {
  font-family: interstate, sans-serif;
  color: #010101;
  font-weight: 800;
}

.e-successstory .e-text p a:hover {
  color: #FF4215;
}

@media (min-width: 992px) {
  .e-successstory {
    flex-direction: row;
    margin-bottom: 50px;
    align-items: flex-start;
  }
  .e-successstory .e-image {
    width: 315px;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .e-successstory .e-text {
    padding-top: 50px;
    width: calc(100% - 330px);
    position: relative;
  }
}

.m-articleintro {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-articleintro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-articleintro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-articleintro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-articleintro.aos-animate h2:before {
  opacity: 1;
  transform: translateY(0);
}

.m-articleintro h2 {
  margin-bottom: 25px;
  position: relative;
  max-width: 700px;
}

.m-articleintro h2:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #FF4215;
  position: absolute;
  right: 105%;
  top: 6px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
}

.m-articleintro .e-info {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 2;
}

@media (min-width: 500px) {
  .m-articleintro .e-info {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-articleintro .e-info {
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .m-articleintro .e-info {
    width: 25%;
  }
}

@media (min-width: 1230px) {
  .m-articleintro .e-info {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-articleintro .e-info {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-articleintro .e-info p {
  margin-top: 0;
}

.m-articleintro .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 1;
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  .m-articleintro .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-articleintro .e-image {
    width: 33.33333%;
  }
}

@media (min-width: 992px) {
  .m-articleintro .e-image {
    width: 25%;
  }
}

@media (min-width: 1230px) {
  .m-articleintro .e-image {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-articleintro .e-image {
    width: 29.16667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-articleintro .e-image img {
  border-radius: 50%;
}

.m-articleintro .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 3;
}

@media (min-width: 500px) {
  .m-articleintro .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-articleintro .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-articleintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-articleintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-articleintro .e-text {
    width: 45.83333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-articleintro .e-text p:first-child {
  margin-top: 0;
}

@media (min-width: 992px) {
  .m-articleintro {
    background-image: url("../images/Backgrounds/ArticleIntro.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 295px auto;
    position: relative;
  }
  .m-articleintro .e-info {
    order: 1;
  }
  .m-articleintro .e-text {
    order: 2;
  }
  .m-articleintro .e-image {
    order: 3;
  }
}

@media (min-width: 1460px) {
  .m-articleintro {
    background-size: 495px auto;
  }
  .m-articleintro .e-image {
    display: block;
  }
}

.m-articletextimage {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .m-articletextimage {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-articletextimage {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-articletextimage {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-articletextimage .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-articletextimage .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-articletextimage .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-articletextimage .e-image {
    width: 33.33333%;
  }
}

@media (min-width: 1230px) {
  .m-articletextimage .e-image {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-articletextimage .e-image {
    width: 29.16667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-articletextimage .e-image img {
  border-radius: 50%;
}

.m-articletextimage .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-articletextimage .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-articletextimage .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-articletextimage .e-text {
    width: 66.66667%;
  }
}

@media (min-width: 1230px) {
  .m-articletextimage .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-articletextimage .e-text {
    width: 45.83333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-articletextimage .e-text h2 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
}

.m-articletextimage .e-text p:first-child {
  margin-top: 0;
}

@media (min-width: 992px) {
  .m-articletextimage .e-text {
    display: block;
    margin-left: auto;
  }
}

.m-brands {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #171F49;
}

@media (min-width: 992px) {
  .m-brands {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-brands {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-brands {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-brands h2,
.m-brands p {
  color: #ffffff;
}

.m-brands .e-logos {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 2;
}

@media (min-width: 500px) {
  .m-brands .e-logos {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-brands .e-logos {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-brands .e-logos {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-brands .e-logos {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-brands .e-logos {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-brands .e-logos .e-items .item {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 15px 0;
  width: 50%;
}

@media (min-width: 500px) {
  .m-brands .e-logos .e-items .item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .m-brands .e-logos .e-items .item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-brands .e-logos .e-items .item {
    width: 33.33333%;
  }
}

@media (min-width: 1230px) {
  .m-brands .e-logos .e-items .item {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-brands .e-logos .e-items .item {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-brands .e-logos .e-items .item img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  display: block;
}

.m-brands .e-logos .e-items .item a:hover img {
  opacity: 0.8;
}

.m-brands .e-logos .more {
  display: none;
}

.m-brands .e-logos .e-morecta {
  position: relative;
  color: #ffffff;
  font-weight: 800;
  padding-left: 40px;
  margin-top: 20px;
  display: inline-block;
}

.m-brands .e-logos .e-morecta:hover {
  color: #FF4215;
}

.m-brands .e-logos .e-morecta:hover:before {
  color: #FF4215;
  border-color: #FF4215;
}

.m-brands .e-logos .e-morecta:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-sizing: border-box;
  color: #ffffff;
  border: 3px #ffffff solid;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
}

.m-brands .e-logos .e-morecta.open:before {
  content: '-';
}

.m-brands .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 1;
}

@media (min-width: 500px) {
  .m-brands .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-brands .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-brands .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-brands .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-brands .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-brands .e-text a:hover {
  color: #ffffff;
}

.m-brands .e-text a:hover svg {
  fill: #ffffff;
}

@media (min-width: 992px) {
  .m-brands .e-logos {
    order: 1;
  }
  .m-brands .e-text {
    order: 2;
  }
}

.m-casestudyintro {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
  border-top: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-casestudyintro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-casestudyintro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-casestudyintro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-casestudyintro.aos-animate .e-text h2:before {
  opacity: 1;
  transform: translateY(0);
}

.m-casestudyintro .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-casestudyintro .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-casestudyintro .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-casestudyintro .e-text {
    width: 58.33333%;
  }
}

@media (min-width: 1230px) {
  .m-casestudyintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-casestudyintro .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-casestudyintro .e-text h2 {
  position: relative;
}

.m-casestudyintro .e-text h2:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #FF4215;
  position: absolute;
  right: 105%;
  top: 6px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
}

.m-casestudyintro .e-info {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-casestudyintro .e-info {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-casestudyintro .e-info {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-casestudyintro .e-info {
    width: 41.66667%;
  }
}

@media (min-width: 1230px) {
  .m-casestudyintro .e-info {
    width: 33.33333%;
  }
}

@media (min-width: 1460px) {
  .m-casestudyintro .e-info {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-casestudyintro .e-info .e-item + .e-item {
  margin-top: 30px;
}

.m-casestudyintro .e-info .e-item h3 {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 25px;
  padding-bottom: 15px;
  display: block;
}

.m-casestudyintro .e-info .e-item img {
  max-width: 260px;
}

@media (min-width: 992px) {
  .m-casestudyintro {
    background-image: url("../images/Backgrounds/ArticleIntro.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 295px auto;
    position: relative;
  }
  .m-casestudyintro .e-info .e-item + .e-item {
    margin-top: 50px;
  }
}

@media (min-width: 1460px) {
  .m-casestudyintro {
    background-size: 495px auto;
  }
}

.m-companyintro {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #F4F4F4;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-companyintro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-companyintro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-companyintro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-companyintro .inner {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .m-companyintro .inner {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-companyintro .inner {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-companyintro .inner {
    width: 100%;
  }
}

@media (min-width: 1230px) {
  .m-companyintro .inner {
    width: 83.33333%;
  }
}

@media (min-width: 1460px) {
  .m-companyintro .inner {
    width: 75%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-companyintro .row {
  align-items: flex-start;
}

.m-companyintro .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-companyintro .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-companyintro .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-companyintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-companyintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-companyintro .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-companyintro .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
}

@media (min-width: 500px) {
  .m-companyintro .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-companyintro .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-companyintro .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-companyintro .e-image {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-companyintro .e-image {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-companyintro .e-image {
  margin-bottom: 20px;
  position: relative;
}

.m-companyintro .e-image:after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background: #F4F4F4;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-companyintro .e-image img {
  width: 100%;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .m-companyintro {
    background-image: url("../images/Backgrounds/TextMedia1.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 295px auto;
    position: relative;
  }
  .m-companyintro.aos-animate .e-text:before {
    opacity: 1;
    transform: translateX(0);
  }
  .m-companyintro:after {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    border: 20px solid #ffffff;
    position: absolute;
    right: -60px;
    top: 70%;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .m-companyintro .e-image {
    order: 2;
  }
  .m-companyintro .e-text {
    order: 1;
    position: relative;
  }
  .m-companyintro .e-text:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    position: absolute;
    right: 105%;
    top: 0;
    background-image: url("../images/icons/icon-ctaWhite.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: translateX(-20px);
  }
}

@media (min-width: 1460px) {
  .m-companyintro {
    background-size: 495px auto;
  }
  .m-companyintro .e-image:after {
    width: 30%;
    height: 30%;
  }
}

.m-footercta {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .m-footercta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-footercta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-footercta {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-footercta .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-footercta .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-footercta .e-text {
    width: 66.66667%;
  }
}

@media (min-width: 992px) {
  .m-footercta .e-text {
    width: 66.66667%;
  }
}

@media (min-width: 1230px) {
  .m-footercta .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-footercta .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  .m-footercta {
    background-image: url("../images/Backgrounds/FooterCTA.svg");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
  }
}

.m-fullwidthtext {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-fullwidthtext {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-fullwidthtext {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-fullwidthtext {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-fullwidthtext .inner {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .m-fullwidthtext .inner {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-fullwidthtext .inner {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-fullwidthtext .inner {
    width: 83.33333%;
  }
}

@media (min-width: 1230px) {
  .m-fullwidthtext .inner {
    width: 66.66667%;
  }
}

@media (min-width: 1460px) {
  .m-fullwidthtext .inner {
    width: 66.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-homepagebanner {
  padding: 20px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.m-homepagebanner .row {
  justify-content: space-between;
}

.m-homepagebanner .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 2;
  margin-top: 20px;
  position: relative;
}

@media (min-width: 500px) {
  .m-homepagebanner .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-homepagebanner .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-homepagebanner .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-homepagebanner .e-text {
    width: 45.83333%;
  }
}

@media (min-width: 1460px) {
  .m-homepagebanner .e-text {
    width: 45.83333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-homepagebanner .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 40px;
}

@media (min-width: 500px) {
  .m-homepagebanner .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-homepagebanner .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-homepagebanner .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-homepagebanner .e-image {
    width: 54.16667%;
  }
}

@media (min-width: 1460px) {
  .m-homepagebanner .e-image {
    width: 54.16667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-homepagebanner .e-image:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  width: 110%;
  height: 115%;
  background-image: url("../images/Backgrounds/HomeBanner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.m-homepagebanner .e-image .item {
  outline: none;
}

.m-homepagebanner .e-image .item img {
  border-radius: 50%;
}

@media (min-width: 992px) {
  .m-homepagebanner {
    background-image: url("../images/Backgrounds/HomeBannerCorner.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 95px auto;
  }
  .m-homepagebanner.aos-animate .e-text:before, .m-homepagebanner.aos-animate .e-text:after {
    opacity: 1;
    transform: translate(0);
  }
  .m-homepagebanner:before {
    content: '';
    display: block;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 140px solid #FFD214;
    position: absolute;
    right: 85%;
    top: -320px;
    box-sizing: border-box;
  }
  .m-homepagebanner .e-text {
    order: 1;
    position: relative;
    margin-top: 0;
  }
  .m-homepagebanner .e-text:before, .m-homepagebanner .e-text:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    opacity: 0;
  }
  .m-homepagebanner .e-text:before {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 10px solid #FF4215;
    left: 110%;
    top: -40%;
    transform: translate(0, 20px);
  }
  .m-homepagebanner .e-text:after {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 15px solid #171F49;
    left: 80%;
    bottom: -40%;
    transform: translate(10px, 40px);
    transition-delay: 0.4s;
  }
  .m-homepagebanner .e-image {
    margin-left: auto;
    order: 2;
    margin-right: -50px;
    margin-bottom: 0;
  }
}

@media (min-width: 1460px) {
  .m-homepagebanner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.m-iconcarousel {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-iconcarousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-iconcarousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-iconcarousel {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-iconcarousel .e-top .e-title {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-iconcarousel .e-top .e-title {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-iconcarousel .e-top .e-title {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-iconcarousel .e-top .e-title {
    width: 58.33333%;
  }
}

@media (min-width: 1230px) {
  .m-iconcarousel .e-top .e-title {
    width: 58.33333%;
  }
}

@media (min-width: 1460px) {
  .m-iconcarousel .e-top .e-title {
    width: 58.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-iconcarousel .e-top .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-iconcarousel .e-top .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-iconcarousel .e-top .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-iconcarousel .e-top .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1230px) {
  .m-iconcarousel .e-top .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1460px) {
  .m-iconcarousel .e-top .e-text {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-iconcarousel .e-carousel {
  margin-top: 30px;
}

.m-iconcarousel .e-carousel .slick-dots {
  position: relative;
  bottom: auto;
  margin: 20px 0 0;
}

.m-iconcarousel .e-carousel .slick-track,
.m-iconcarousel .e-carousel .slick-list {
  overflow: visible;
}

.m-iconcarousel .e-item img {
  margin-bottom: 20px;
}

.m-iconcarousel .e-item h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  margin-bottom: 0;
  padding-left: 15px;
}

.m-iconcarousel .e-item p {
  padding-left: 15px;
  margin-top: 5px;
}

.m-iconcarousel .carousel-arrows {
  display: none;
  width: 100%;
  justify-content: flex-end;
}

.m-iconcarousel .carousel-arrows .prev,
.m-iconcarousel .carousel-arrows .next {
  width: 40px;
  height: 40px;
}

.m-iconcarousel .carousel-arrows .prev span,
.m-iconcarousel .carousel-arrows .next span {
  font-size: 0px;
  position: relative;
  width: 0;
  overflow: hidden;
}

.m-iconcarousel .carousel-arrows .prev svg,
.m-iconcarousel .carousel-arrows .next svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
}

.m-iconcarousel .carousel-arrows .prev:hover svg,
.m-iconcarousel .carousel-arrows .next:hover svg {
  fill: #FF4215;
}

.m-iconcarousel .carousel-arrows .prev.slick-disabled,
.m-iconcarousel .carousel-arrows .next.slick-disabled {
  pointer-events: none;
}

.m-iconcarousel .carousel-arrows .prev.slick-disabled svg,
.m-iconcarousel .carousel-arrows .next.slick-disabled svg {
  fill: #DBDBDC;
}

.m-iconcarousel .carousel-arrows .prev {
  margin-right: 15px;
}

.m-iconcarousel .carousel-arrows .prev svg {
  transform: rotate(-180deg);
}

@media (min-width: 992px) {
  .m-iconcarousel .carousel-arrows {
    display: flex;
    margin-top: -20px;
  }
  .m-iconcarousel .e-item {
    padding-right: 40px;
  }
}

@media (min-width: 1460px) {
  .m-iconcarousel .e-item {
    padding-right: 80px;
  }
}

.m-imagecarousel {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-imagecarousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-imagecarousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-imagecarousel {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-imagecarousel .slick-dots {
  position: relative;
  bottom: auto;
  margin: 20px 0 0;
}

.m-imagecarousel .slick-track,
.m-imagecarousel .slick-list {
  overflow: visible;
}

.m-imagecarousel .e-item {
  position: relative;
}

.m-imagecarousel .e-item .inner {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  max-width: 485px;
}

.m-imagecarousel .e-item .inner:hover span {
  opacity: 1;
}

.m-imagecarousel .e-item .inner span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: interstate, sans-serif;
  font-weight: 800;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
}

.m-imagecarousel .carousel-arrows {
  display: none;
  width: 100%;
  justify-content: flex-end;
}

.m-imagecarousel .carousel-arrows .prev,
.m-imagecarousel .carousel-arrows .next {
  width: 40px;
  height: 40px;
}

.m-imagecarousel .carousel-arrows .prev span,
.m-imagecarousel .carousel-arrows .next span {
  font-size: 0px;
  position: relative;
  width: 0;
  overflow: hidden;
}

.m-imagecarousel .carousel-arrows .prev svg,
.m-imagecarousel .carousel-arrows .next svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
}

.m-imagecarousel .carousel-arrows .prev:hover svg,
.m-imagecarousel .carousel-arrows .next:hover svg {
  fill: #FF4215;
}

.m-imagecarousel .carousel-arrows .prev.slick-disabled,
.m-imagecarousel .carousel-arrows .next.slick-disabled {
  pointer-events: none;
}

.m-imagecarousel .carousel-arrows .prev.slick-disabled svg,
.m-imagecarousel .carousel-arrows .next.slick-disabled svg {
  fill: #DBDBDC;
}

.m-imagecarousel .carousel-arrows .prev {
  margin-right: 15px;
}

.m-imagecarousel .carousel-arrows .prev svg {
  transform: rotate(-180deg);
}

@media (min-width: 992px) {
  .m-imagecarousel .slick-dots {
    margin-top: 50px;
  }
  .m-imagecarousel .e-item .e-image {
    margin-bottom: 0;
  }
  .m-imagecarousel .e-item .e-text blockquote {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 36px;
    padding-right: 50px;
  }
  .m-imagecarousel .carousel-arrows {
    display: flex;
    margin-top: -20px;
  }
}

.m-keyfacts {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-keyfacts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-keyfacts {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-keyfacts {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-keyfacts h2 {
  position: relative;
}

.m-keyfacts h2:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #171F49;
  position: absolute;
  right: 105%;
  top: 6px;
  box-sizing: border-box;
}

.m-keyfacts .item {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
}

@media (min-width: 500px) {
  .m-keyfacts .item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .m-keyfacts .item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-keyfacts .item {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-keyfacts .item {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-keyfacts .item {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-keyfacts .item img {
  margin-bottom: 20px;
}

.m-keyfacts .item .text {
  padding-left: 15px;
}

.m-keyfacts .item .text h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  margin-bottom: 0;
}

.m-keyfacts .item .text p {
  margin-top: 5px;
}

.m-landingform {
  border-bottom: 1px solid #dcdcdc;
}

.m-landingform .row {
  justify-content: space-between;
}

.m-landingform .e-text {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .m-landingform .e-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-landingform .e-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-landingform .e-text {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width: 500px) {
  .m-landingform .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-landingform .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-landingform .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-landingform .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-landingform .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-landingform .e-form {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #171F49;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #ffffff;
}

@media (min-width: 500px) {
  .m-landingform .e-form {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-landingform .e-form {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-landingform .e-form {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-landingform .e-form {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-landingform .e-form {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-landingform .e-form h2,
.m-landingform .e-form h3,
.m-landingform .e-form p,
.m-landingform .e-form label {
  color: #ffffff;
}

.m-landingform .e-form input,
.m-landingform .e-form select,
.m-landingform .e-form textarea {
  color: #000000;
}

.m-locations {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #CED6DF;
  border-bottom: 1px solid #CED6DF;
}

@media (min-width: 992px) {
  .m-locations {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-locations {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-locations {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-locations.full {
  background: #F4F4F4;
}

.m-locations.full .item .inner:before {
  background: #F4F4F4;
}

.m-locations.full .item .inner .e-text {
  background: #F4F4F4;
}

.m-locations .container {
  position: relative;
}

.m-locations .container:before, .m-locations .container:after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
}

.m-locations .container:before {
  right: 0;
  top: -15px;
  width: 58px;
  height: 58px;
  border-radius: 0 0 0 58px;
  -moz-border-radius: 0 0 0 58px;
  -webkit-border-radius: 0 0 0 58px;
  background: #FFD214;
}

.m-locations .container:after {
  right: 45px;
  top: 40px;
  width: 34px;
  height: 34px;
  border-radius: 0 0 0 34px;
  -moz-border-radius: 0 0 0 34px;
  -webkit-border-radius: 0 0 0 34px;
  background: #171F49;
}

.m-locations .item {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 15px 0;
}

@media (min-width: 500px) {
  .m-locations .item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .m-locations .item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-locations .item {
    width: 25%;
  }
}

@media (min-width: 1230px) {
  .m-locations .item {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-locations .item {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-locations .item .inner {
  position: relative;
}

.m-locations .item .inner:before {
  content: '';
  display: block;
  width: 22%;
  height: 22%;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.m-locations .item .inner img {
  border-radius: 50%;
  width: 100%;
}

.m-locations .item .inner .e-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: interstate, sans-serif;
  font-weight: 800;
  background: #ffffff;
}

.m-newsopinion {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #F4F4F4;
  border-top: 1px solid #CED6DF;
}

@media (min-width: 992px) {
  .m-newsopinion {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-newsopinion {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-newsopinion {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-newsopinion .container {
  position: relative;
}

.m-newsopinion.aos-animate h2:before {
  opacity: 1;
  transform: translateY(0);
}

.m-newsopinion h2 {
  position: relative;
}

.m-newsopinion h2:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #171F49;
  position: absolute;
  right: 105%;
  top: 10px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
}

.m-newsopinion p.author {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  color: #949494;
  margin-top: 5px;
}

.m-newsopinion .e-main {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-newsopinion .e-main {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-newsopinion .e-main {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-newsopinion .e-main {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-newsopinion .e-main {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-newsopinion .e-main {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-newsopinion .e-main .date {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 52px;
  display: block;
  font-weight: 800;
  font-family: interstate, sans-serif;
}

.m-newsopinion .e-main .month {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  color: #949494;
  display: block;
  font-family: interstate, sans-serif;
}

.m-newsopinion .e-main .link {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 32px;
  font-family: interstate, sans-serif;
  font-weight: 800;
  color: #010101;
  display: inline-block;
  position: relative;
  padding-right: 50px;
}

.m-newsopinion .e-main .link svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 0px;
  width: 35px;
  height: 35px;
  fill: #DFDFDF;
}

.m-newsopinion .e-main .link:hover {
  color: #FF4215;
}

.m-newsopinion .e-main .link:hover svg {
  fill: #FF4215;
}

.m-newsopinion .e-links {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
}

@media (min-width: 500px) {
  .m-newsopinion .e-links {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-newsopinion .e-links {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-newsopinion .e-links {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-newsopinion .e-links {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-newsopinion .e-links {
    width: 45.83333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-newsopinion .e-links .e-item {
  display: flex;
  margin-top: 30px;
}

.m-newsopinion .e-links .e-item:first-child {
  margin-top: 0;
}

.m-newsopinion .e-links .e-item .date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  margin-right: 15px;
  color: #949494;
  display: block;
  font-family: interstate, sans-serif;
  width: 100px;
}

.m-newsopinion .e-links .e-item .date span {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 38px;
  display: block;
  font-weight: 800;
  font-family: interstate, sans-serif;
  color: #010101;
}

.m-newsopinion .e-links .e-item .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  font-family: interstate, sans-serif;
  width: calc(100% - 100px);
  padding-right: 40px;
}

.m-newsopinion .e-links .e-item .title a {
  color: #010101;
  font-weight: 800;
  position: relative;
  padding-right: 30px;
  display: block;
}

.m-newsopinion .e-links .e-item .title a svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  fill: #DFDFDF;
}

.m-newsopinion .e-links .e-item .title a:hover {
  color: #FF4215;
}

.m-newsopinion .e-links .e-item .title a:hover svg {
  fill: #FF4215;
}

.m-newsopinion .e-links .e-item .title p.author {
  margin-top: 5px;
}

@media (min-width: 992px) {
  .m-newsopinion {
    background-image: url("../images/Backgrounds/NewsOpinion.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50px auto;
    position: relative;
  }
  .m-newsopinion .all {
    bottom: 50px;
    position: absolute;
    z-index: 20;
    left: 15px;
  }
}

@media (min-width: 1230px) {
  .m-newsopinion {
    background-size: 90px auto;
  }
  .m-newsopinion .e-main .link {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 42px;
    margin: 30px 0 0;
  }
  .m-newsopinion .e-main .link svg {
    top: 8px;
  }
  .m-newsopinion .e-main p.author {
    margin-top: 15px;
  }
}

@media (min-width: 1460px) {
  .m-newsopinion .e-links .e-item .date {
    margin-right: 80px;
  }
  .m-newsopinion .all {
    left: 25px;
  }
}

@media (min-width: 1800px) {
  .m-newsopinion {
    background-size: 180px auto;
  }
}

.m-ourbrands {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-ourbrands {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-ourbrands {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-ourbrands {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-ourbrands .row {
  justify-content: space-between;
}

.m-ourbrands .e-column {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-ourbrands .e-column {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-ourbrands .e-column {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-ourbrands .e-column {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-ourbrands .e-column {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-ourbrands .e-column {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-ourbrands .e-column + .e-column {
  margin-top: 20px;
}

.m-ourbrands .e-column h2:first-child,
.m-ourbrands .e-column h3:first-child,
.m-ourbrands .e-column h4:first-child,
.m-ourbrands .e-column h5:first-child,
.m-ourbrands .e-column p:first-child,
.m-ourbrands .e-column ul li:first-child {
  margin-top: 0;
}

.m-ourbrands .e-column .e-buttons {
  display: none;
  margin-top: 20px;
}

.m-ourbrands .e-column .e-buttons .btn:first-child {
  margin-right: 20px;
}

.m-ourbrands .e-column .e-buttons .btn:first-child:only-child {
  margin-right: 0;
}

.m-ourbrands .e-column .item {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-ourbrands .e-column .item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .m-ourbrands .e-column .item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-ourbrands .e-column .item {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-ourbrands .e-column .item {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-ourbrands .e-column .item {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-ourbrands .e-column .item img {
  margin: 10px 0 20px;
  max-width: 200px;
}

.m-ourbrands .e-mobilebuttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}

.m-ourbrands .e-mobilebuttons .btn:first-child {
  margin-bottom: 20px;
}

.m-ourbrands .e-mobilebuttons .btn:first-child:only-child {
  margin-bottom: 0;
}

@media (min-width: 500px) {
  .m-ourbrands .e-mobilebuttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .m-ourbrands .e-mobilebuttons .btn {
    margin-bottom: 20px;
  }
  .m-ourbrands .e-mobilebuttons .btn:first-child {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .m-ourbrands .e-column + .e-column {
    margin-top: 20px;
  }
  .m-ourbrands .e-column .e-buttons {
    display: flex;
    flex-wrap: wrap;
  }
  .m-ourbrands .e-column .e-buttons .btn {
    margin-bottom: 20px;
  }
  .m-ourbrands .e-mobilebuttons {
    display: none;
  }
}

.m-ourculture {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .m-ourculture {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-ourculture {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-ourculture {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-ourculture.aos-animate .e-image:before, .m-ourculture.aos-animate .e-image:after {
  opacity: 1;
  transform: translateY(0);
}

.m-ourculture .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 2;
  position: relative;
  z-index: 10;
}

@media (min-width: 500px) {
  .m-ourculture .e-text {
    width: 66.66667%;
  }
}

@media (min-width: 768px) {
  .m-ourculture .e-text {
    width: 58.33333%;
  }
}

@media (min-width: 992px) {
  .m-ourculture .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-ourculture .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-ourculture .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-ourculture .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  order: 1;
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  .m-ourculture .e-image {
    width: 33.33333%;
  }
}

@media (min-width: 768px) {
  .m-ourculture .e-image {
    width: 41.66667%;
  }
}

@media (min-width: 992px) {
  .m-ourculture .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-ourculture .e-image {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-ourculture .e-image {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-ourculture .e-image:before, .m-ourculture .e-image:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
}

.m-ourculture .e-image:before {
  width: 60px;
  height: 60px;
  left: 15%;
  bottom: 12%;
  background-image: url("../images/icons/icon-ctaYellow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  z-index: 5;
  transition-delay: .2s;
}

.m-ourculture .e-image:after {
  width: 40px;
  height: 40px;
  left: 80%;
  top: 20%;
  border-radius: 50%;
  border: 10px solid #171F49;
  box-sizing: border-box;
  z-index: 5;
}

.m-ourculture .e-image .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  max-width: 550px;
}

.m-ourculture .e-image .inner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: #F4F4F4;
  z-index: -1;
  box-sizing: border-box;
}

.m-ourculture .e-image .inner img {
  border-radius: 50%;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .m-ourculture .e-text {
    order: 1;
  }
  .m-ourculture .e-image {
    order: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}

@media (min-width: 1230px) {
  .m-ourculture .e-text {
    order: 1;
  }
}

.m-pagebanner {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.m-pagebanner .row {
  justify-content: space-between;
}

.m-pagebanner .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  order: 2;
  margin-top: 20px;
  position: relative;
}

@media (min-width: 500px) {
  .m-pagebanner .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-pagebanner .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-pagebanner .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-pagebanner .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1460px) {
  .m-pagebanner .e-text {
    width: 33.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-pagebanner .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 500px) {
  .m-pagebanner .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-pagebanner .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-pagebanner .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-pagebanner .e-image {
    width: 58.33333%;
  }
}

@media (min-width: 1460px) {
  .m-pagebanner .e-image {
    width: 58.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-pagebanner .e-image:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  width: 110%;
  height: 125%;
  background-image: url("../images/Backgrounds/NarrowBanner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.m-pagebanner .e-image img {
  border-radius: 50%;
}

@media (min-width: 992px) {
  .m-pagebanner.aos-animate .container:before, .m-pagebanner.aos-animate .container:after,
  .m-pagebanner.aos-animate .e-text:before,
  .m-pagebanner.aos-animate .e-text:after {
    opacity: 1;
    transform: translate(0);
  }
  .m-pagebanner.landing .row {
    max-height: 520px;
  }
  .m-pagebanner.landing .e-image {
    max-height: 520px;
  }
  .m-pagebanner .container {
    position: relative;
  }
  .m-pagebanner .container:before, .m-pagebanner .container:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 20%;
    opacity: 0;
  }
  .m-pagebanner .container:before {
    border-radius: 0 0 0 34px;
    -moz-border-radius: 0 0 0 34px;
    -webkit-border-radius: 0 0 0 34px;
    background: #FFD214;
    left: 0;
    transform: translate(0, 20px);
  }
  .m-pagebanner .container:after {
    background-image: url("../images/icons/icon-cta.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    left: 35%;
    transform: translate(10px, 40px);
    transition-delay: 0.4s;
  }
  .m-pagebanner .row {
    max-height: 670px;
  }
  .m-pagebanner .e-text {
    order: 1;
    position: relative;
    margin-top: 0;
  }
  .m-pagebanner .e-text:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -40%;
    background-image: url("../images/icons/icon-ctaBlue.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    left: 95%;
    opacity: 0;
    transform: translate(10px, 40px);
    transition-delay: 0.2s;
  }
  .m-pagebanner .e-image {
    margin-left: auto;
    order: 2;
    margin-right: -100px;
    margin-bottom: 0;
    max-height: 670px;
    display: flex;
    align-items: center;
  }
}

.m-pageintro {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #171F49;
  position: relative;
}

@media (min-width: 992px) {
  .m-pageintro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-pageintro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-pageintro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-pageintro .e-text {
  width: 100%;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .m-pageintro .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-pageintro .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-pageintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-pageintro .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-pageintro .e-text {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}

.m-pageintro .e-text p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  color: #ffffff;
  font-family: interstate, sans-serif;
  font-weight: 800;
}

@media (min-width: 992px) {
  .m-pageintro {
    background-image: url("../images/Backgrounds/PageIntro.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto 160px;
  }
  .m-pageintro:before {
    content: '';
    display: block;
    position: absolute;
    top: 40%;
    left: 10%;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    border: 6px solid #FF4215;
    border-radius: 50%;
  }
  .m-pageintro .e-text p {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 42px;
  }
}

@media (min-width: 1460px) {
  .m-pageintro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.m-peoplecarousel {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-peoplecarousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-peoplecarousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-peoplecarousel {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-peoplecarousel.aos-animate .e-carousel:before, .m-peoplecarousel.aos-animate .e-carousel:after {
  opacity: 1;
  transform: translate(0);
}

.m-peoplecarousel .e-top .e-title {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-peoplecarousel .e-top .e-title {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-peoplecarousel .e-top .e-title {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-peoplecarousel .e-top .e-title {
    width: 58.33333%;
  }
}

@media (min-width: 1230px) {
  .m-peoplecarousel .e-top .e-title {
    width: 58.33333%;
  }
}

@media (min-width: 1460px) {
  .m-peoplecarousel .e-top .e-title {
    width: 58.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-peoplecarousel .e-top .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-peoplecarousel .e-top .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-peoplecarousel .e-top .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-peoplecarousel .e-top .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1230px) {
  .m-peoplecarousel .e-top .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1460px) {
  .m-peoplecarousel .e-top .e-text {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-peoplecarousel .e-carousel {
  margin-top: 30px;
  position: relative;
}

.m-peoplecarousel .e-carousel:before, .m-peoplecarousel .e-carousel:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  position: absolute;
  opacity: 0;
}

.m-peoplecarousel .e-carousel:before {
  width: 70px;
  height: 70px;
  left: 25px;
  top: 25px;
  border-radius: 50%;
  border: 15px solid #FF4215;
  box-sizing: border-box;
  z-index: -1;
  transform: translate(20px, 20px);
}

.m-peoplecarousel .e-carousel:after {
  width: 50px;
  height: 50px;
  right: 2%;
  top: 45%;
  background-image: url("../images/icons/icon-ctaYellow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  z-index: -1;
  transform: translate(0, 20px);
}

.m-peoplecarousel .e-carousel .slick-dots {
  position: relative;
  bottom: auto;
  margin: 20px 0 0;
}

.m-peoplecarousel .e-carousel .slick-track,
.m-peoplecarousel .e-carousel .slick-list {
  overflow: visible;
}

.m-peoplecarousel .e-item {
  padding-right: 30px;
}

.m-peoplecarousel .e-item .e-image {
  margin-bottom: 30px;
  position: relative;
}

.m-peoplecarousel .e-item .e-image:after {
  content: '';
  display: block;
  width: 18%;
  height: 18%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-peoplecarousel .e-item .e-image img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 35px solid #171F49;
  border-radius: 50%;
  width: 100%;
}

.m-peoplecarousel .e-item .e-text h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #010101;
  font-weight: 800;
  position: relative;
  display: block;
}

.m-peoplecarousel .e-item .e-text .link {
  position: relative;
  padding-left: 45px;
}

.m-peoplecarousel .e-item .e-text .link a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  font-family: interstate, sans-serif;
  color: #010101;
  font-weight: 800;
}

.m-peoplecarousel .e-item .e-text .link a:hover {
  color: #FF4215;
}

.m-peoplecarousel .e-item .e-text .link span {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background: #171F49;
  color: #ffffff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.m-peoplecarousel .carousel-arrows {
  display: none;
  width: 100%;
  justify-content: flex-end;
}

.m-peoplecarousel .carousel-arrows .prev,
.m-peoplecarousel .carousel-arrows .next {
  width: 40px;
  height: 40px;
}

.m-peoplecarousel .carousel-arrows .prev span,
.m-peoplecarousel .carousel-arrows .next span {
  font-size: 0px;
  position: relative;
  width: 0;
  overflow: hidden;
}

.m-peoplecarousel .carousel-arrows .prev svg,
.m-peoplecarousel .carousel-arrows .next svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
}

.m-peoplecarousel .carousel-arrows .prev:hover svg,
.m-peoplecarousel .carousel-arrows .next:hover svg {
  fill: #FF4215;
}

.m-peoplecarousel .carousel-arrows .prev.slick-disabled,
.m-peoplecarousel .carousel-arrows .next.slick-disabled {
  pointer-events: none;
}

.m-peoplecarousel .carousel-arrows .prev.slick-disabled svg,
.m-peoplecarousel .carousel-arrows .next.slick-disabled svg {
  fill: #DBDBDC;
}

.m-peoplecarousel .carousel-arrows .prev {
  margin-right: 15px;
}

.m-peoplecarousel .carousel-arrows .prev svg {
  transform: rotate(-180deg);
}

@media (min-width: 992px) {
  .m-peoplecarousel {
    position: relative;
  }
  .m-peoplecarousel.aos-animate .e-top:after {
    opacity: 1;
    transform: translateY(0);
  }
  .m-peoplecarousel:before {
    content: '';
    display: block;
    position: absolute;
    right: 98.5%;
    bottom: 20%;
    width: 50px;
    height: 50px;
    border: 20px solid #FFD214;
    border-radius: 50%;
  }
  .m-peoplecarousel .e-top {
    position: relative;
  }
  .m-peoplecarousel .e-top:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    right: -10%;
    bottom: 100%;
    background-image: url("../images/icons/icon-cta.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    opacity: 0;
    transform: translateY(50px);
  }
  .m-peoplecarousel .carousel-arrows {
    display: flex;
    margin-top: -20px;
  }
  .m-peoplecarousel .e-item {
    padding-right: 40px;
  }
  .m-peoplecarousel .e-item .e-image {
    width: 85%;
    margin: 0 auto 30px;
  }
  .m-peoplecarousel .e-carousel .slick-dots {
    margin-top: 50px;
  }
}

@media (min-width: 1460px) {
  .m-peoplecarousel .e-item {
    padding-right: 80px;
  }
}

.m-quotecarousel {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-quotecarousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-quotecarousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-quotecarousel {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-quotecarousel .slick-dots {
  position: relative;
  bottom: auto;
  margin: 20px 0 0;
}

.m-quotecarousel .slick-track,
.m-quotecarousel .slick-list {
  overflow: visible;
}

.m-quotecarousel .e-item {
  width: 100%;
}

.m-quotecarousel .e-item .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  .m-quotecarousel .e-item .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-quotecarousel .e-item .e-image {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .m-quotecarousel .e-item .e-image {
    width: 25%;
  }
}

@media (min-width: 1230px) {
  .m-quotecarousel .e-item .e-image {
    width: 25%;
  }
}

@media (min-width: 1460px) {
  .m-quotecarousel .e-item .e-image {
    width: 25%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-quotecarousel .e-item .e-image img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  border-radius: 50%;
}

.m-quotecarousel .e-item .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

@media (min-width: 500px) {
  .m-quotecarousel .e-item .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-quotecarousel .e-item .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-quotecarousel .e-item .e-text {
    width: 75%;
  }
}

@media (min-width: 1230px) {
  .m-quotecarousel .e-item .e-text {
    width: 75%;
  }
}

@media (min-width: 1460px) {
  .m-quotecarousel .e-item .e-text {
    width: 75%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-quotecarousel .e-item .e-text blockquote {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  font-family: interstate, sans-serif;
  font-weight: 800;
  margin: 0;
  display: block;
  padding: 20px 20px 0 0;
}

.m-quotecarousel .e-item .e-text blockquote:before {
  display: block;
  content: "“";
  color: #171F49;
  width: 15px;
  height: 18px;
  transform: scale(5);
  font-family: Arial, Helvetica, sans-serif;
  transform-origin: left bottom;
}

.m-quotecarousel .e-item .e-text cite {
  font-weight: 500;
  margin: 20px 0 0;
  font-style: normal;
  display: block;
}

.m-quotecarousel .e-item.slick-active .e-image img {
  opacity: 1;
}

.m-quotecarousel .e-item.slick-active .e-text {
  opacity: 1;
}

.m-quotecarousel .carousel-arrows {
  display: none;
  width: 100%;
  justify-content: flex-end;
}

.m-quotecarousel .carousel-arrows .prev,
.m-quotecarousel .carousel-arrows .next {
  width: 40px;
  height: 40px;
}

.m-quotecarousel .carousel-arrows .prev span,
.m-quotecarousel .carousel-arrows .next span {
  font-size: 0px;
  position: relative;
  width: 0;
  overflow: hidden;
}

.m-quotecarousel .carousel-arrows .prev svg,
.m-quotecarousel .carousel-arrows .next svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
}

.m-quotecarousel .carousel-arrows .prev:hover svg,
.m-quotecarousel .carousel-arrows .next:hover svg {
  fill: #FF4215;
}

.m-quotecarousel .carousel-arrows .prev.slick-disabled,
.m-quotecarousel .carousel-arrows .next.slick-disabled {
  pointer-events: none;
}

.m-quotecarousel .carousel-arrows .prev.slick-disabled svg,
.m-quotecarousel .carousel-arrows .next.slick-disabled svg {
  fill: #DBDBDC;
}

.m-quotecarousel .carousel-arrows .prev {
  margin-right: 15px;
}

.m-quotecarousel .carousel-arrows .prev svg {
  transform: rotate(-180deg);
}

@media (min-width: 992px) {
  .m-quotecarousel .e-item .e-image {
    margin-bottom: 0;
  }
  .m-quotecarousel .e-item .e-text blockquote {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 36px;
    padding-right: 50px;
    padding-top: 60px;
  }
  .m-quotecarousel .e-item .e-text blockquote:before {
    height: 22px;
  }
  .m-quotecarousel .carousel-arrows {
    display: flex;
    margin-top: -20px;
  }
}

@media (min-width: 1230px) {
  .m-quotecarousel .e-item .e-text blockquote:before {
    height: 24px;
  }
}

.m-related {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-related {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-related {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-related {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-related.aos-animate h2:before {
  opacity: 1;
  transform: translateY(0);
}

.m-related.grey {
  background: #F4F4F4;
}

.m-related.grey .e-item .e-image:after {
  background: #F4F4F4;
}

.m-related.grey .e-item .e-image img {
  border-color: #ffffff;
}

.m-related .container {
  position: relative;
}

.m-related .container:before {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 20px solid #FF4215;
  position: absolute;
  left: 100%;
  top: -20px;
  box-sizing: border-box;
}

.m-related h2 {
  position: relative;
}

.m-related h2:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 8px solid #171F49;
  position: absolute;
  right: 105%;
  top: 6px;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(50px);
}

.m-related .e-item {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 30px 0 0;
}

@media (min-width: 500px) {
  .m-related .e-item {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-related .e-item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .m-related .e-item {
    width: 33.33333%;
  }
}

@media (min-width: 1230px) {
  .m-related .e-item {
    width: 33.33333%;
  }
}

@media (min-width: 1460px) {
  .m-related .e-item {
    width: 33.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-related .e-item a {
  color: #000000;
}

.m-related .e-item a:hover .e-text h3 {
  color: #FF4215;
}

.m-related .e-item a:hover .e-text h3 svg {
  fill: #FF4215;
}

.m-related .e-item a:hover .e-image img {
  border-color: #FF4215;
}

.m-related .e-item .e-image {
  margin-bottom: 30px;
  position: relative;
}

.m-related .e-item .e-image:after {
  content: '';
  display: block;
  width: 18%;
  height: 18%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-related .e-item .e-image img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 35px solid #F4F4F4;
  border-radius: 50%;
  width: 100%;
}

.m-related .e-item .e-text h3 {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #010101;
  font-weight: 800;
  position: relative;
  padding-right: 30px;
  display: block;
}

.m-related .e-item .e-text h3 svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  fill: #DFDFDF;
}

.m-related .e-item .e-text .date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  font-family: interstate, sans-serif;
  font-weight: 800;
}

.m-related .e-item .e-text p {
  padding-right: 30px;
}

@media (min-width: 992px) {
  .m-related.grey {
    background-image: url("../images/Backgrounds/TextMedia4.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 232px auto;
    position: relative;
  }
  .m-related.grey .container:before, .m-related.grey .container:after {
    display: none;
  }
}

.m-slimbanner {
  padding: 50px 0;
  background-image: url("../images/Backgrounds/SlimBanner.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  position: relative;
}

.m-slimbanner h1,
.m-slimbanner p {
  max-width: 700px;
}

@media (min-width: 992px) {
  .m-slimbanner {
    padding: 20px 0;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.m-splittext {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .m-splittext {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-splittext {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-splittext {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-splittext.blue {
  background: #171F49;
}

.m-splittext.blue h2,
.m-splittext.blue h3,
.m-splittext.blue h4,
.m-splittext.blue h5,
.m-splittext.blue p,
.m-splittext.blue ul li {
  color: #ffffff;
}

.m-splittext.blue h2 a,
.m-splittext.blue h3 a,
.m-splittext.blue h4 a,
.m-splittext.blue h5 a,
.m-splittext.blue p a,
.m-splittext.blue ul li a {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left 85%;
  padding-bottom: 5px;
  color: #ffffff;
  font-weight: 800;
}

.m-splittext.blue h2 a:hover,
.m-splittext.blue h3 a:hover,
.m-splittext.blue h4 a:hover,
.m-splittext.blue h5 a:hover,
.m-splittext.blue p a:hover,
.m-splittext.blue ul li a:hover {
  background-size: 0% 1px;
}

.m-splittext.blue h2 a:hover,
.m-splittext.blue h3 a:hover,
.m-splittext.blue h4 a:hover,
.m-splittext.blue h5 a:hover,
.m-splittext.blue p a:hover,
.m-splittext.blue ul li a:hover {
  color: #FF4215;
}

.m-splittext.grey {
  background-color: #F4F4F4;
}

.m-splittext .e-column {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-splittext .e-column {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-splittext .e-column {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-splittext .e-column {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-splittext .e-column {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-splittext .e-column {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-splittext .e-column + .e-column {
  margin-top: 20px;
}

.m-splittext .e-column h2:first-child,
.m-splittext .e-column h3:first-child,
.m-splittext .e-column h4:first-child,
.m-splittext .e-column h5:first-child,
.m-splittext .e-column p:first-child,
.m-splittext .e-column ul li:first-child {
  margin-top: 0;
}

.m-splittext .e-column .e-buttons {
  display: none;
  margin-top: 20px;
}

.m-splittext .e-column .e-buttons .btn:first-child {
  margin-right: 20px;
}

.m-splittext .e-column .e-buttons .btn:first-child:only-child {
  margin-right: 0;
}

.m-splittext .e-mobilebuttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}

.m-splittext .e-mobilebuttons .btn:first-child {
  margin-bottom: 20px;
}

.m-splittext .e-mobilebuttons .btn:first-child:only-child {
  margin-bottom: 0;
}

@media (min-width: 500px) {
  .m-splittext .e-mobilebuttons {
    flex-direction: row;
  }
  .m-splittext .e-mobilebuttons .btn {
    margin-bottom: 20px;
  }
  .m-splittext .e-mobilebuttons .btn:first-child {
    margin-right: 20px;
  }
}

@media (min-width: 992px) {
  .m-splittext.grey {
    background-image: url("../images/Backgrounds/SplitText2.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 315px auto;
  }
  .m-splittext .e-column + .e-column {
    margin-top: 0px;
  }
  .m-splittext .e-column .e-buttons {
    display: flex;
    flex-wrap: wrap;
  }
  .m-splittext .e-column .e-buttons .btn {
    margin-bottom: 20px;
  }
  .m-splittext .e-mobilebuttons {
    display: none;
  }
}

@media (min-width: 1230px) {
  .m-splittext.background {
    background-image: url("../images/Backgrounds/SplitText.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 310px auto;
  }
  .m-splittext.background.aos-animate h2:before {
    opacity: 1;
    transform: translateY(0);
  }
  .m-splittext.background h2 {
    position: relative;
  }
  .m-splittext.background h2:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #FF4215;
    position: absolute;
    right: 105%;
    top: 6px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
  }
}

.m-successstories {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
}

@media (min-width: 992px) {
  .m-successstories {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-successstories {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-successstories {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-successstories.aos-animate h2:before {
  opacity: 1;
  transform: translateY(0);
}

.m-successstories .e-story {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 500px) {
  .m-successstories .e-story {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-successstories .e-story {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-successstories .e-story {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-successstories .e-story {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-successstories .e-story {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-successstories .e-story .e-image {
  margin-bottom: 20px;
  position: relative;
}

.m-successstories .e-story .e-image:after {
  content: '';
  display: block;
  width: 17%;
  height: 17%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-successstories .e-story .e-image img {
  border: 30px solid #F4F4F4;
  border-radius: 50%;
  width: 100%;
}

.m-successstories .e-story .e-text img {
  max-width: 125px;
}

.m-successstories .e-story .e-text h3 {
  margin: 15px 0;
}

.m-successstories .e-story .e-text h3 a {
  color: #010101;
  font-weight: 800;
  position: relative;
  padding-right: 30px;
  display: block;
}

.m-successstories .e-story .e-text h3 a svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  -ms-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  fill: #DFDFDF;
}

.m-successstories .e-story .e-text h3 a:hover {
  color: #FF4215;
}

.m-successstories .e-story .e-text h3 a:hover svg {
  fill: #FF4215;
}

.m-successstories .e-story .e-text p {
  margin: 0;
}

.m-successstories .e-story .e-text p a {
  font-family: interstate, sans-serif;
  color: #010101;
  font-weight: 800;
}

.m-successstories .e-story .e-text p a:hover {
  color: #FF4215;
}

@media (min-width: 500px) {
  .m-successstories .e-story {
    flex-direction: row;
  }
  .m-successstories .e-story .e-image {
    width: 315px;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .m-successstories .e-story .e-text {
    padding-top: 50px;
    width: calc(100% - 330px);
    position: relative;
  }
}

@media (min-width: 992px) {
  .m-successstories {
    background-image: url("../images/Backgrounds/TextMedia4.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100px auto;
    position: relative;
  }
  .m-successstories .container {
    position: relative;
  }
  .m-successstories h2 {
    position: relative;
  }
  .m-successstories h2:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #171F49;
    position: absolute;
    right: 105%;
    top: 6px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
  }
}

@media (min-width: 1800px) {
  .m-successstories {
    background-size: 232px auto;
  }
}

.m-tabbedcarousel {
  padding: 70px 0;
  background: #F4F4F4;
  position: relative;
  overflow: hidden;
}

.m-tabbedcarousel.aos-animate .e-image .imagecarousel:before, .m-tabbedcarousel.aos-animate .e-image .imagecarousel:after {
  opacity: 1;
  transform: translateY(0);
}

.m-tabbedcarousel .e-title {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
}

@media (min-width: 500px) {
  .m-tabbedcarousel .e-title {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-tabbedcarousel .e-title {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-tabbedcarousel .e-title {
    width: 100%;
  }
}

@media (min-width: 1230px) {
  .m-tabbedcarousel .e-title {
    width: 100%;
  }
}

@media (min-width: 1460px) {
  .m-tabbedcarousel .e-title {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-tabbedcarousel .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-tabbedcarousel .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-tabbedcarousel .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-tabbedcarousel .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-tabbedcarousel .e-image {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-tabbedcarousel .e-image {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-tabbedcarousel .e-image .imagecarousel {
  position: relative;
}

.m-tabbedcarousel .e-image .imagecarousel:before, .m-tabbedcarousel .e-image .imagecarousel:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(50px);
}

.m-tabbedcarousel .e-image .imagecarousel:before {
  min-width: 80px;
  min-height: 80px;
  width: 11.5%;
  height: 11.5%;
  top: -20px;
  left: -20px;
  border: 20px solid #FFD214;
}

.m-tabbedcarousel .e-image .imagecarousel:after {
  width: 80px;
  height: 80px;
  top: 12%;
  right: -20px;
  border: 20px solid #FF4215;
  transition-delay: 0.2s;
}

.m-tabbedcarousel .e-image .slick-list {
  overflow: visible;
}

.m-tabbedcarousel .e-image .item {
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  padding: 0 10px;
  opacity: 0;
}

.m-tabbedcarousel .e-image .item.slick-active.slick-current {
  opacity: 1;
}

.m-tabbedcarousel .e-image .item.slick-active img {
  transform: scale(1);
}

.m-tabbedcarousel .e-image .item.slick-active .inner:before {
  transform: translate(-50%, -50%) scale(0);
  transition-delay: 0.5s;
}

@media all and (max-width: 767px) {
  .m-tabbedcarousel .e-image .item.slick-active ~ .item {
    opacity: 0.5;
  }
}

.m-tabbedcarousel .e-image .item .inner {
  position: relative;
  border-radius: 50%;
  background: #FFD214;
}

.m-tabbedcarousel .e-image .item .inner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  content: '';
  display: block;
  width: 50%;
  height: 50%;
  background: #F4F4F4;
  border-radius: 50%;
  z-index: 10;
}

.m-tabbedcarousel .e-image .item .inner:after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background: #F4F4F4;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-tabbedcarousel .e-image .item img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
  border-radius: 50%;
  display: block;
  width: 100%;
}

.m-tabbedcarousel .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-tabbedcarousel .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-tabbedcarousel .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-tabbedcarousel .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-tabbedcarousel .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-tabbedcarousel .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-tabbedcarousel .e-text h3 {
  margin: 100px 0 0;
}

.m-tabbedcarousel .e-text h3 + p {
  margin-top: 5px;
}

.m-tabbedcarousel .e-text h4 {
  margin: 30px 0 0;
}

.m-tabbedcarousel .e-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-tabbedcarousel .e-text ul li {
  margin: 0;
}

.m-tabbedcarousel [dir=rtl] .slick-slide {
  float: left !important;
}

.m-tabbedcarousel .slick-list {
  overflow: visible;
}

.m-tabbedcarousel .e-tabs {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  margin: 0 0 60px 0;
}

@media (min-width: 500px) {
  .m-tabbedcarousel .e-tabs {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-tabbedcarousel .e-tabs {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-tabbedcarousel .e-tabs {
    width: 100%;
  }
}

@media (min-width: 1230px) {
  .m-tabbedcarousel .e-tabs {
    width: 100%;
  }
}

@media (min-width: 1460px) {
  .m-tabbedcarousel .e-tabs {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-tabbedcarousel .e-tabs .navigation {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 0;
  width: calc(100% - 148px);
  display: none;
}

.m-tabbedcarousel .e-tabs .navigation .slick-list {
  width: 100%;
}

.m-tabbedcarousel .e-tabs .navigation .slick-track {
  display: flex;
}

.m-tabbedcarousel .e-tabs .navigation span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  flex: 1;
  float: none;
  padding: 20px;
  border-bottom: 3px solid #DBDBDC;
  border-right: 1px solid #DBDBDC;
  color: #888888;
  font-weight: 800;
  display: block;
  font-family: interstate, sans-serif;
  outline: none;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  height: auto;
}

.m-tabbedcarousel .e-tabs .navigation span.slick-current, .m-tabbedcarousel .e-tabs .navigation span:hover, .m-tabbedcarousel .e-tabs .navigation span:focus {
  color: #171F49;
  border-bottom-color: #171F49;
  cursor: pointer;
  background: #fff;
  position: relative;
}

.m-tabbedcarousel .e-tabs .navigation span.slick-current:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #171F49;
  position: absolute;
  top: 100%;
  left: 20px;
}

.m-tabbedcarousel .carousel-arrows {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.m-tabbedcarousel .prev,
.m-tabbedcarousel .next {
  width: 30px;
  height: 30px;
}

.m-tabbedcarousel .prev span,
.m-tabbedcarousel .next span {
  font-size: 0px;
  position: relative;
  width: 0;
  overflow: hidden;
}

.m-tabbedcarousel .prev svg,
.m-tabbedcarousel .next svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 30px;
  height: 30px;
}

.m-tabbedcarousel .prev:hover svg,
.m-tabbedcarousel .next:hover svg {
  fill: #FF4215;
}

.m-tabbedcarousel .prev.slick-disabled,
.m-tabbedcarousel .next.slick-disabled {
  pointer-events: none;
}

.m-tabbedcarousel .prev.slick-disabled svg,
.m-tabbedcarousel .next.slick-disabled svg {
  fill: #DBDBDC;
}

.m-tabbedcarousel .prev {
  margin-right: 15px;
}

.m-tabbedcarousel .prev svg {
  transform: rotate(-180deg);
}

@media (min-width: 992px) {
  .m-tabbedcarousel {
    background-image: url("../images/Backgrounds/TabbedCarousel.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50px auto;
    position: relative;
  }
  .m-tabbedcarousel:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url("../images/Backgrounds/TabbedCarousel2.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 66% auto;
    width: 180px;
    height: 90px;
  }
  .m-tabbedcarousel .e-image .imagecarousel:after {
    width: 120px;
    height: 120px;
    border: 30px solid #FF4215;
  }
  .m-tabbedcarousel .e-text {
    padding-left: 100px;
  }
  .m-tabbedcarousel .e-tabs .navigation {
    display: block;
  }
  .m-tabbedcarousel .e-tabs .navigation span {
    opacity: 1;
    pointer-events: visible;
  }
  .m-tabbedcarousel .e-tabs .carousel-arrows {
    border-bottom: 3px solid #DBDBDC;
    padding-top: 20px;
    width: 150px;
  }
  .m-tabbedcarousel .mobile-arrows {
    display: none;
  }
}

@media (min-width: 1460px) {
  .m-tabbedcarousel {
    background-size: 95px auto;
  }
}

@media (min-width: 1900px) {
  .m-tabbedcarousel {
    background-size: 180px auto;
  }
}

.m-textmedia {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #DCDCDC;
}

@media (min-width: 992px) {
  .m-textmedia {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-textmedia {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-textmedia {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-textmedia.aos-animate .e-image .inner:before, .m-textmedia.aos-animate .e-image .inner:after {
  opacity: 1;
  transform: translate(0);
}

.m-textmedia:nth-child(4n+3) {
  background-color: #F4F4F4;
}

.m-textmedia:nth-child(4n+3) .e-image {
  position: relative;
  z-index: 0;
}

.m-textmedia:nth-child(4n+3) .e-image:after {
  background: #F4F4F4;
}

.m-textmedia:nth-child(4n+3) .e-image .inner:before {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 25px solid #FF4215;
  top: 4%;
  right: 4%;
  z-index: -1;
}

.m-textmedia:nth-child(4n+3) .e-image .inner:after {
  top: 100%;
  right: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 15px solid #FFD214;
}

.m-textmedia:nth-child(4n+4) .inner:before, .m-textmedia:nth-child(4n+6) .inner:before {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 20px solid #171F49;
  top: 8%;
  left: 0%;
}

.m-textmedia:nth-child(4n+4) .inner:after, .m-textmedia:nth-child(4n+6) .inner:after {
  bottom: 100%;
  right: -2%;
  width: 13%;
  height: 13%;
  border-radius: 50%;
  background: url("../images/icons/icon-cta.svg") no-repeat 100% center;
}

.m-textmedia:nth-child(4n+5) {
  background-color: #F4F4F4;
}

.m-textmedia:nth-child(4n+5) .e-image:after {
  background: #F4F4F4;
}

.m-textmedia:nth-child(4n+5) .e-image .inner:before {
  width: 14%;
  height: 14%;
  border-radius: 50%;
  background: url("../images/icons/icon-cta.svg") no-repeat 100% center;
  top: 4%;
  right: 4%;
}

.m-textmedia:nth-child(4n+5) .e-image .inner:after {
  top: 90%;
  right: 20%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 15px solid #FFD214;
}

.m-textmedia .row {
  justify-content: space-between;
}

.m-textmedia .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  position: relative;
  z-index: 30;
}

@media (min-width: 500px) {
  .m-textmedia .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-textmedia .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-textmedia .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-textmedia .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-textmedia .e-text {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-textmedia .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 500px) {
  .m-textmedia .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-textmedia .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-textmedia .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-textmedia .e-image {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-textmedia .e-image {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-textmedia .e-image img {
  width: 100%;
}

.m-textmedia .e-image:after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.m-textmedia .e-image .inner {
  position: relative;
}

.m-textmedia .e-image .inner:before, .m-textmedia .e-image .inner:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  display: block;
  position: absolute;
  z-index: 20;
  box-sizing: border-box;
  opacity: 0;
  transition-delay: .4s;
}

.m-textmedia .e-image .inner:before {
  transform: translate(10px, 20px);
}

.m-textmedia .e-image .inner:after {
  transform: translate(-5px, 15px);
  transition-delay: .6s;
}

.m-textmedia .e-image img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .m-textmedia:nth-child(4n+3) .e-image .inner:before {
    border-width: 25px;
    z-index: 10;
  }
  .m-textmedia:nth-child(4n+3) .e-image .inner:after {
    border-width: 15px;
  }
  .m-textmedia:nth-child(4n+4) .inner:before, .m-textmedia:nth-child(4n+6) .inner:before {
    border-width: 25px;
  }
  .m-textmedia:nth-child(4n+5) .e-image .inner:after {
    border-width: 15px;
  }
}

@media (min-width: 992px) {
  .m-textmedia {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .m-textmedia:nth-child(4n+4) .e-text, .m-textmedia:nth-child(4n+6) .e-text {
    order: 1;
  }
  .m-textmedia:nth-child(4n+4) .e-image, .m-textmedia:nth-child(4n+6) .e-image {
    order: 2;
  }
  .m-textmedia .e-text {
    margin-top: 0;
  }
  .m-textmedia:nth-child(4n+3) {
    background-image: url("../images/Backgrounds/TextMedia1.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 295px auto;
  }
  .m-textmedia:nth-child(4n+3) .container:before {
    width: 34px;
    height: 34px;
    background: #FFD214;
    border-radius: 0 0 0 100px;
    -moz-border-radius: 0 0 0 100px;
    -webkit-border-radius: 0 0 0 100px;
    top: 20%;
    right: 100%;
  }
  .m-textmedia:nth-child(4n+3) .container:after {
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border: 8px solid #171F49;
    box-sizing: border-box;
    bottom: 105%;
    right: 38%;
    border-radius: 50%;
  }
  .m-textmedia:nth-child(4n+4) {
    background-image: url("../images/Backgrounds/TextMedia2.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 160px;
  }
  .m-textmedia:nth-child(4n+4):after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 159px;
    height: 178px;
    background-image: url("../images/Backgrounds/TextMedia3.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
  }
  .m-textmedia:nth-child(4n+4) .e-text {
    position: relative;
  }
  .m-textmedia:nth-child(4n+5) {
    background-image: url("../images/Backgrounds/TextMedia4.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 142px auto;
  }
  .m-textmedia:nth-child(4n+5) .container:before {
    right: 100%;
    bottom: 100%;
    width: 94px;
    height: 94px;
    border: 20px solid #FFD214;
    border-radius: 50%;
  }
  .m-textmedia:nth-child(4n+6) {
    background-image: url("../images/Backgrounds/TextMedia5.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 144px auto;
  }
  .m-textmedia:nth-child(4n+6) .e-text {
    position: relative;
  }
  .m-textmedia:nth-child(4n+6) .e-text:before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    background: #FF4215;
    border-radius: 0 0 0 100px;
    -moz-border-radius: 0 0 0 100px;
    -webkit-border-radius: 0 0 0 100px;
    position: absolute;
    top: 0%;
    right: 105%;
  }
  .m-textmedia .container {
    position: relative;
  }
  .m-textmedia .container:before {
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box;
  }
}

@media (min-width: 1660px) {
  .m-textmedia:nth-child(4n+3) {
    background-size: 495px auto;
  }
  .m-textmedia:nth-child(4n+4) {
    background-size: 495px auto;
  }
  .m-textmedia:nth-child(4n+4):after {
    width: 259px;
  }
  .m-textmedia:nth-child(4n+5) {
    background-size: 232px auto;
  }
  .m-textmedia:nth-child(4n+6) {
    background-size: 244px auto;
  }
}

.m-textvideo {
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  background: #F4F4F4;
}

@media (min-width: 992px) {
  .m-textvideo {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-textvideo {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-textvideo {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-textvideo .e-video {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media (min-width: 500px) {
  .m-textvideo .e-video {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-textvideo .e-video {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-textvideo .e-video {
    width: 66.66667%;
  }
}

@media (min-width: 1230px) {
  .m-textvideo .e-video {
    width: 58.33333%;
  }
}

@media (min-width: 1460px) {
  .m-textvideo .e-video {
    width: 58.33333%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-textvideo .e-video img {
  width: 100%;
}

.m-textvideo .e-video .e-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.m-textvideo .e-video .e-play svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: #ffffff;
  opacity: 0.5;
}

.m-textvideo .e-video .e-play span {
  font-size: 0;
  height: 0;
  position: relative;
  overflow: hidden;
}

.m-textvideo .e-video .e-play:hover svg {
  fill: #FF4215;
  opacity: 1;
}

.m-textvideo .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .m-textvideo .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-textvideo .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-textvideo .e-text {
    width: 33.33333%;
  }
}

@media (min-width: 1230px) {
  .m-textvideo .e-text {
    width: 41.66667%;
  }
}

@media (min-width: 1460px) {
  .m-textvideo .e-text {
    width: 41.66667%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  .m-textvideo .e-video .e-play {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 1230px) {
  .m-textvideo {
    position: relative;
  }
  .m-textvideo:before {
    content: '';
    display: block;
    position: absolute;
    right: 98.5%;
    bottom: 20%;
    width: 50px;
    height: 50px;
    border: 20px solid #FFD214;
    border-radius: 50%;
  }
}

@media (min-width: 1460px) {
  .m-textvideo {
    background-image: url("../images/Backgrounds/TextMedia4.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 90px auto;
  }
}

@media (min-width: 1900px) {
  .m-textvideo {
    background-image: url("../images/Backgrounds/TextMedia4.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 232px auto;
  }
}

.m-umbracoform {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DFDFDF;
}

@media (min-width: 992px) {
  .m-umbracoform {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1230px) {
  .m-umbracoform {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1460px) {
  .m-umbracoform {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.m-umbracoform .inner {
  width: 100%;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .m-umbracoform .inner {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-umbracoform .inner {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-umbracoform .inner {
    width: 66.66667%;
  }
}

@media (min-width: 1230px) {
  .m-umbracoform .inner {
    width: 58.33333%;
  }
}

@media (min-width: 1460px) {
  .m-umbracoform .inner {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .m-umbracoform {
    background-image: url("../images/Backgrounds/ArticleIntro.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 295px auto;
    position: relative;
  }
}

@media (min-width: 1230px) {
  .m-umbracoform {
    background-size: 495px auto;
  }
}

.m-verticalcarousel {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #DCDCDC;
}

.m-verticalcarousel .slick-dots {
  bottom: auto;
  top: 170px;
  height: auto;
}

.m-verticalcarousel .e-item {
  outline: none;
  position: relative;
}

.m-verticalcarousel .e-item .e-text {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 30px;
  padding-bottom: 30px;
  order: 2;
  position: relative;
}

@media (min-width: 500px) {
  .m-verticalcarousel .e-item .e-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-verticalcarousel .e-item .e-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-verticalcarousel .e-item .e-text {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-verticalcarousel .e-item .e-text {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-verticalcarousel .e-item .e-text {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-verticalcarousel .e-item .e-text:before, .m-verticalcarousel .e-item .e-text:after {
  content: '';
  display: block;
  position: absolute;
}

.m-verticalcarousel .e-item .e-text:before {
  width: 200px;
  height: 200px;
  box-sizing: border-box;
  border: 50px #F4F4F4 solid;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  border-radius: 50%;
}

.m-verticalcarousel .e-item .e-text:after {
  background: #ffffff;
  width: 100px;
  height: 50px;
  top: 50px;
  right: calc(50% + 50px);
  z-index: -1;
}

.m-verticalcarousel .e-item .e-image {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 200px;
}

@media (min-width: 500px) {
  .m-verticalcarousel .e-item .e-image {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-verticalcarousel .e-item .e-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .m-verticalcarousel .e-item .e-image {
    width: 50%;
  }
}

@media (min-width: 1230px) {
  .m-verticalcarousel .e-item .e-image {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .m-verticalcarousel .e-item .e-image {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.m-verticalcarousel .e-item .e-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.m-verticalcarousel .e-item .e-image:before {
  content: '';
  position: absolute;
  display: none;
  width: 200px;
  height: 200px;
  box-sizing: border-box;
  border: 50px #FF4215 solid;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .m-verticalcarousel {
    height: 90vh;
    position: relative;
    overflow: hidden;
  }
  .m-verticalcarousel .slick-dots {
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: 20px;
  }
  .m-verticalcarousel .slick-dots li {
    display: block;
    margin: 10px 0;
  }
  .m-verticalcarousel .slick-list,
  .m-verticalcarousel .slick-track {
    overflow: visible;
  }
  .m-verticalcarousel .e-item .row {
    height: 90vh;
  }
  .m-verticalcarousel .e-item.slick-active .e-text {
    transform: none;
    opacity: 1;
    transition-delay: 0.5s;
  }
  .m-verticalcarousel .e-item.slick-active .e-image:before {
    opacity: 1;
    transition-delay: 0.5s;
    transform: translateY(-50%);
  }
  .m-verticalcarousel .e-item .e-text {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    order: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 80px;
    transform: translateY(-100px);
    opacity: 0;
    display: flex;
    align-items: center;
  }
  .m-verticalcarousel .e-item .e-text:before {
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-width: 180px;
    right: -350px;
    left: auto;
  }
  .m-verticalcarousel .e-item .e-text:after {
    width: 180px;
    height: 180px;
    top: 50%;
    transform: translateY(170px);
    right: 160px;
    left: auto;
  }
  .m-verticalcarousel .e-item .e-image {
    width: 50vw;
    order: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    height: 100%;
    padding: 0 !important;
  }
  .m-verticalcarousel .e-item .e-image:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-40%);
    width: 700px;
    height: 700px;
    border-width: 180px;
    left: -350px;
    display: block;
    opacity: 0;
  }
}

@media (min-width: 1230px) {
  .m-verticalcarousel .e-item .e-text {
    padding-right: 80px;
  }
}

@media (min-width: 1460px) {
  .m-verticalcarousel .e-item .e-text {
    padding-right: 200px;
  }
}

@media (min-width: 1700px) {
  .m-verticalcarousel {
    background-image: url("../images/Backgrounds/VerticalCarousel.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 180px auto;
  }
  .m-verticalcarousel .slick-dots {
    left: -80px;
    width: 25px;
  }
  .m-verticalcarousel .slick-dots li button {
    width: 18px;
    height: 18px;
  }
  .m-verticalcarousel .slick-dots li button:before {
    width: 90%;
    height: 90%;
  }
  .m-verticalcarousel .slick-dots li.slick-active button {
    transform: scale(1.4);
  }
  .m-verticalcarousel .e-item .e-text {
    padding-left: 25px;
  }
}

.n-breadcrumb {
  padding: 5px 0;
  display: none;
  border-top: 1px solid #F4F4F4;
}

.n-breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.n-breadcrumb ul li {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  margin: 0 10px 0 0;
  color: #000000;
  font-family: interstate, sans-serif;
}

.n-breadcrumb ul li a {
  color: #000000;
  font-family: heebo, serif;
}

.n-breadcrumb ul li:after {
  content: '/';
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

.n-breadcrumb ul li:last-child:after {
  display: none;
}

@media (min-width: 768px) {
  .n-breadcrumb {
    display: block;
  }
}
