/* convert px to rem */
/* max-width: rem(1440px); = max-width: 90rem; */
/* set font-size in rem with px fallback */
/* @include fontSize(24px); = font-size: 24px; font-size: 1.5rem; */
/* convert px to unitless line height */
/* mixin to add line px to unitless with px fallback */
/* @include lineHeight(24px, 24px) = line-height: 24px; line-height: 1; */
/* crop the line height whitespace from text */
/* all in action
THIS:

h1 {
  @include fontSize(24px);
  @include lineHeight(24px, 24px);
  @include lhCrop(1);
}

RESULTS IN:

h1 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1;
}

and adds a before and after element to
crop whitespace from text line-height

*/
body {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75;
}
body::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 28px) * 0.5em);
}
body::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 28px) * 0.5em);
}

.fw-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.2857142857;
}
.text-sm::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 18px) * 0.5em);
}
.text-sm::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 18px) * 0.5em);
}

.text-orange {
  color: #E05206 !important;
}

.text-blue {
  color: #20479A !important;
}

.text-blue-light {
  color: #87AED9 !important;
}

.text-green {
  color: #04A04C !important;
}

.text-white {
  color: #FFF !important;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  #content {
    padding-top: 96px;
  }
}
@media (max-width: 420px) {
  #content {
    padding-top: 74px;
  }
}

.transition, .research_paper h3, .btn-outline-orange, .linkStyle::before {
  -webkit-transition: all 0.14s ease-out;
  -moz-transition: all 0.14s ease-out;
  -o-transition: all 0.14s ease-out;
  transition: all 0.14s ease-out;
}

.grecaptcha-badge {
  opacity: 0;
}

.bgWhite {
  background-color: #fff;
  padding: 50px 0;
}
.bgGrey {
  background-color: #F5F5F5;
  padding: 50px 0;
}

.linkStyle {
  color: #E05206;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 60px;
  display: block;
}
.linkStyle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 14px;
  background-image: url(../assets/images/link-arrow.svg);
}
.linkStyle:hover {
  text-decoration: none;
  opacity: 0.7;
}
.linkStyle:hover::before {
  left: 8px;
}
.linkStyle:visited {
  color: #E05206;
}
.linkStyle.white {
  color: #FFF;
}
.linkStyle.white::before {
  background-image: url(../assets/images/link-arrow-white.svg);
}
.linkStyle.blue {
  color: #20479A;
}
.linkStyle.blue::before {
  background-image: url(../assets/images/link-arrow-blue.svg);
}
.linkStyle.blue-light {
  color: #87AED9;
}
.linkStyle.blue-light::before {
  background-image: url(../assets/images/link-arrow-blue-light.svg);
}
.linkStyle.green {
  color: #04A04C;
}
.linkStyle.green::before {
  background-image: url(../assets/images/link-arrow-green.svg);
}

a {
  color: #E05206;
}
a:visited, a:focus {
  color: #4D4F53;
  outline: none;
}
a:hover {
  color: #E05206;
  text-decoration: underline;
}

.btn-outline-orange {
  background-color: transparent !important;
  color: #FFF !important;
  font-weight: 300 !important;
  border: 2px solid #E05206 !important;
  border-radius: 20px !important;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 15px !important;
}
.btn-outline-orange:hover {
  background-color: #E05206 !important;
}
.btn-outline-orange:active, .btn-outline-orange:focus {
  box-shadow: unset !important;
}

.policyContent ul {
  margin: 0;
  padding: 0 0 0 13px;
}

.imageGallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.imageGallery a {
  height: auto;
  margin: 10px 0 35px;
  width: 25%;
}
.imageGallery a img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .bgWhite {
    padding: 30px 0;
  }
  .bgGrey {
    padding: 30px 0;
  }
  .imageGallery a {
    width: 50%;
  }
}
.header {
  padding-top: 21px;
  padding-bottom: 21px;
  background-color: #FFF;
}
.header nav {
  padding: 0;
}
.header nav .nav-link {
  color: #E05206;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.2857142857;
  letter-spacing: 1.74px;
  font-weight: 700;
  padding: 0;
  margin-left: 30px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.header nav .nav-link::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 18px) * 0.5em);
}
.header nav .nav-link::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 18px) * 0.5em);
}
.header nav .nav-link:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #E05206;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header nav .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header nav .nav-link.active {
  border-bottom: 2px solid #E05206;
}
.header nav .nav-link.dropdown-toggle::after {
  margin-left: unset;
  vertical-align: unset;
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
}
.header nav .dropdown-menu {
  border: none;
  border-radius: 0px 0px 9px 9px;
  padding: 18px 0 14px 0;
  box-shadow: 0px 0px 20px 0px rgba(57, 68, 86, 0.2);
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: 0.11s ease-out all;
}
.header nav .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5px);
  transition: 0.2s ease-out all;
}
.header nav .dropdown-item.active, .header nav .dropdown-item:active {
  background-color: #E05206;
}
.header nav .dropdown-item:first-child.active {
  background-color: #20479A;
}
.header nav .dropdown-item:first-child:active {
  background-color: #20479A;
}
.header nav .dropdown-item:nth-child(2).active {
  background-color: #04A04C;
}
.header nav .dropdown-item:nth-child(2):active {
  background-color: #04A04C;
}
.header nav .nav-item.dropdown .nav-link:after {
  background-color: #FFF;
}
.header nav .nav-item.dropdown::after {
  display: inline-block;
  width: 15px;
  height: 8px;
  margin-left: -9px;
  content: url(../assets/images/dropdown-arrow.svg);
  position: absolute;
  top: -2px;
  right: -9px;
  transition: 0.14s ease-out all;
}
.header nav .nav-item.dropdown:hover::after {
  top: 2px;
}
.header .header-logo {
  max-width: 180px;
  height: auto;
}
@media (max-width: 991px) {
  .header .header-logo {
    width: 160px;
  }
}
@media (max-width: 420px) {
  .header .header-logo {
    width: 130px;
  }
}
@media (max-width: 991px) {
  .header {
    position: fixed;
    padding-top: 14px;
    padding-bottom: 7px;
    z-index: 100;
  }
}
@media (max-width: 420px) {
  .header {
    padding-top: 14px;
    padding-bottom: 0;
  }
}

#mobileNav {
  background-color: #4D4F53;
  overflow-y: scroll;
  max-height: calc(100vh - 74px);
}
#mobileNav ul {
  list-style-type: none;
  padding-left: 0;
  margin: 21px 0 21px 0;
}
#mobileNav ul li {
  text-align: center;
  margin: 12px auto 0 auto;
}
#mobileNav ul li a, #mobileNav ul li button {
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #FFF;
  font-weight: 400;
  padding: 10px 20px;
}
#mobileNav ul li.active a {
  color: #E05206;
  font-weight: 600;
  border-bottom: 2px solid #E05206;
}

.insideHeader {
  background-color: #F5F5F5;
  color: #E05206;
  padding-top: 50px;
  padding-bottom: 50px;
}
.insideHeader h1 {
  font-weight: 700;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 35px;
  line-height: 0.9722222222;
  margin: 0;
  padding: 36px 0;
}
.insideHeader h1::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 35px) * 0.5em);
}
.insideHeader h1::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 35px) * 0.5em);
}
.insideHeader_gradient {
  border-radius: 100px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(224, 82, 6, 0.2049194678) 60%, rgb(224, 82, 6) 100%);
}
.insideHeader.policy {
  margin-bottom: 50px;
}
.insideHeader.highlight-blue {
  color: #20479A;
}
.insideHeader.highlight-blue .insideHeader_gradient {
  border-radius: 100px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(32, 71, 154, 0.2049194678) 60%, rgb(32, 71, 154) 100%);
}
.insideHeader.highlight-green {
  color: #04A04C;
}
.insideHeader.highlight-green .insideHeader_gradient {
  border-radius: 100px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(4, 160, 76, 0.2049194678) 60%, rgb(4, 160, 76) 100%);
}

.navbar-toggler {
  width: 60px;
  height: 45px;
  position: relative;
  border: none !important;
  border-radius: 0;
  margin: 8px 4px 0 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  outline: none;
}
.navbar-toggler:focus {
  outline: none !important;
}
.navbar-toggler span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #d3531a;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navbar-toggler span:nth-child(even) {
  left: 50%;
  border-radius: 0 4px 4px 0;
}
.navbar-toggler span:nth-child(odd) {
  left: 0px;
  border-radius: 4px 0 0 4px;
}
.navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
  top: 0px;
}
.navbar-toggler span:nth-child(4), .navbar-toggler span:nth-child(5) {
  top: 12px;
}
.navbar-toggler span:nth-child(6), .navbar-toggler span:nth-child(7) {
  top: 24px;
}
.navbar-toggler:not(.collapsed) span:nth-child(2), .navbar-toggler:not(.collapsed) span:nth-child(7) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(3), .navbar-toggler:not(.collapsed) span:nth-child(6) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  left: 5px;
  top: 7px;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  left: calc(50% - 5px);
  top: 7px;
}
.navbar-toggler:not(.collapsed) span:nth-child(4) {
  left: -25%;
  opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(5) {
  left: 75%;
  opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(6) {
  left: 5px;
  top: 27px;
}
.navbar-toggler:not(.collapsed) span:nth-child(7) {
  left: calc(50% - 5px);
  top: 27px;
}

@media (max-width: 767px) {
  .insideHeader_gradient {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(224, 82, 6, 0.204919) 76%, #e05206 100%);
  }
}
.footer {
  background-image: linear-gradient(179deg, #3C3C3B 27%, #282828 99%);
  padding: 35px 0;
  margin-top: 80px;
}
.footer img {
  display: block;
  margin: 0 0 20px 0;
}
.footer .address ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: unset;
  max-width: unset;
  justify-content: unset;
}
.footer .address ul li {
  color: #FFF;
  width: 100%;
}
.footer p {
  color: #FFF;
}
.footer p a {
  color: #FFF;
}
.footer p a:hover {
  color: #E05206;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.footer ul p {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 19px;
  line-height: 1.9;
  color: #fff;
  opacity: 0.5;
  margin: 12px 11px 0 0;
  display: block;
}
.footer ul p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 19px) * 0.5em);
}
.footer ul p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 19px) * 0.5em);
}
.footer ul a {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 19px;
  line-height: 1.4615384615;
  color: #fff;
  opacity: 0.5;
  margin: 0 11px 0 0;
  display: block;
}
.footer ul a::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 19px) * 0.5em);
}
.footer ul a::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 19px) * 0.5em);
}
.footer .footer-logo {
  max-width: 180px;
  height: auto;
}
@media (max-width: 991px) {
  .footer .footer-logo {
    width: 160px;
  }
}
@media (max-width: 420px) {
  .footer .footer-logo {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: 30px;
  }
}
@media (max-width: 430px) {
  .footer ul {
    flex-wrap: wrap;
    text-align: center;
  }
  .footer ul li {
    width: 50%;
  }
}
.resources {
  margin-top: 130px;
}
.resources_text {
  background-color: #F5F5F5;
  max-width: 330px;
  margin: 0 auto;
  height: 100%;
  padding: 46px 40px;
  border-radius: 5px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.resources_text h3 {
  color: #E05206;
  margin-top: 31px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 33px;
  line-height: 1.375;
}
.resources_text h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 33px) * 0.5em);
}
.resources_text h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 33px) * 0.5em);
}
.resources_text p {
  color: #4D4F53;
  letter-spacing: 0.7px;
}
.resources_text a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.resources_text::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.resources_text:hover {
  transform: scale(1.05, 1.05);
}
.resources_text:hover::after {
  opacity: 1;
}
.resources img {
  max-width: 92px;
  width: 100%;
}

.research {
  margin: 80px auto;
}
.research_headings > div {
  display: flex;
  align-content: center;
  padding-right: 5%;
}
.research_headings > div p {
  text-transform: uppercase;
  font-weight: 700;
  color: #A6A7A8;
  margin-bottom: 10px;
}
.research_headings > div:first-of-type {
  width: 30%;
}
.research_headings > div:nth-child(2) {
  width: 35%;
}
.research_headings > div:last-of-type {
  width: 35%;
}
.research_paper {
  padding: 24px 0;
  position: relative;
}
.research_paper > div {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  padding-right: 5%;
}
.research_paper > div:first-of-type {
  width: 30%;
}
.research_paper > div:first-of-type p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75;
  font-weight: 500;
  color: #4D4F53;
}
.research_paper > div:first-of-type p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 28px) * 0.5em);
}
.research_paper > div:first-of-type p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 28px) * 0.5em);
}
.research_paper > div:nth-child(2) {
  width: 35%;
}
.research_paper > div:last-of-type {
  width: 35%;
}
.research_paper > div:last-of-type span {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.4285714286;
}
.research_paper > div:last-of-type span::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 20px) * 0.5em);
}
.research_paper > div:last-of-type span::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 20px) * 0.5em);
}
.research_paper a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.research_paper p {
  margin-bottom: 0;
}
.research_paper span {
  line-height: 1.25rem;
}
.research_paper h3 {
  font-weight: 500;
  color: #4D4F53;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.4;
}
.research_paper h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 28px) * 0.5em);
}
.research_paper h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 28px) * 0.5em);
}
.research_paper_bg:nth-child(odd) {
  background-color: #F1F1F1;
}
.research_paper_bg:nth-child(even) {
  background-color: #FBFBFB;
}
.research_paper:hover h3 {
  color: #E05206;
}

@media (max-width: 900px) {
  .research_headings > div:first-child {
    display: none;
  }
  .research_headings > div:nth-child(2), .research_headings > div:last-of-type {
    width: 50%;
  }
  .research_paper > div:first-child {
    display: none;
  }
  .research_paper > div:nth-child(2), .research_paper > div:last-of-type {
    width: 50%;
  }
  .research_paper > div:nth-child(2) span, .research_paper > div:last-of-type span {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 18px;
    line-height: 1.3846153846;
  }
  .research_paper > div:nth-child(2) span::before, .research_paper > div:last-of-type span::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 18px) * 0.5em);
  }
  .research_paper > div:nth-child(2) span::after, .research_paper > div:last-of-type span::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((1 - 18px) * 0.5em);
  }
  .research_paper > div:nth-child(2) h3, .research_paper > div:last-of-type h3 {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
    line-height: 1.4117647059;
  }
  .research_paper > div:nth-child(2) h3::before, .research_paper > div:last-of-type h3::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 24px) * 0.5em);
  }
  .research_paper > div:nth-child(2) h3::after, .research_paper > div:last-of-type h3::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((1 - 24px) * 0.5em);
  }
}
.contact_text strong {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 37px;
  line-height: 1.3214285714;
  font-weight: 500;
  margin-bottom: 30px;
  display: block;
}
.contact_text strong::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 37px) * 0.5em);
}
.contact_text strong::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 37px) * 0.5em);
}
.contact_details ul {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}
.contact_details a {
  display: block;
  margin: 0;
  color: initial;
}
.contact_form {
  padding: 27px 0 60px;
  background-color: #F5F5F5;
  margin: 30px 0 60px;
}
.contact_form form > div {
  margin-bottom: 23px;
}
.contact_form_name {
  display: flex;
  flex-wrap: wrap;
}
.contact_form_name > div {
  width: 50%;
}
.contact_form_name > div input {
  width: 100%;
}
.contact_form_name > div:first-of-type {
  padding-right: 15px;
}
.contact_form_name > div:last-of-type {
  padding-left: 15px;
}
.contact_form_message {
  margin-top: 57px;
}
.contact_form_gdpr label {
  display: flex;
  flex-wrap: nowrap;
}
.contact_form_gdpr input {
  margin-top: 8px;
  margin-right: 20px;
}
.contact_form_gdpr p {
  font-weight: 400;
}
.contact_form_gdpr .wpcf7-list-item {
  margin: 0;
}
.contact_form label {
  width: 100%;
  margin-bottom: 7px;
  font-weight: 500;
}
.contact_form input[type=submit] {
  width: auto;
  background-color: #E05206;
  border: 0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px 81px;
  border-radius: 10px;
}
.contact_form input[name=gdpr] {
  width: auto;
}
.contact_form input, .contact_form textarea {
  border: 1px solid #979797;
  padding: 5px 15px;
  width: 100%;
}
.contact_form input::-webkit-input-placeholder, .contact_form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 14px;
  line-height: 15px;
  opacity: 0.27;
}
.contact_form input::-moz-placeholder, .contact_form textarea::-moz-placeholder { /* Firefox 19+ */
  font-size: 14px;
  line-height: 15px;
  opacity: 0.27;
}
.contact_form input :-ms-input-placeholder, .contact_form textarea :-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
.contact_form input:-moz-placeholder, .contact_form textarea:-moz-placeholder { /* Firefox 18- */
  font-size: 14px;
  line-height: 15px;
  opacity: 0.27;
}

.homepageSlider {
  position: relative;
}
.homepageSlider .slide {
  width: 100%;
  margin-right: 0;
}
.homepageSlider .slide img {
  width: 100%;
  height: auto;
  display: block;
}
.homepageSlider_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  max-width: 430px;
  color: #E05206;
}
.homepageSlider_text p:first-of-type {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 35px;
  line-height: 0.9722222222;
}
.homepageSlider_text p:first-of-type::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 35px) * 0.5em);
}
.homepageSlider_text p:first-of-type::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 35px) * 0.5em);
}
.homepageSlider_text.white {
  color: #FFF !important;
}
.homepageSlider_text.green {
  color: #04A04C !important;
}
.homepageSlider_text.blue {
  color: #20479A !important;
}
.homepageSlider_text.blue-light {
  color: #87AED9 !important;
}
.homepageSlider img {
  width: 100%;
}
.homepageSlider .flickity-page-dots {
  bottom: 25px;
}

@media (max-width: 1020px) {
  .homepageSlider {
    min-height: 260px;
  }
  .homepageSlider img {
    width: 80%;
    height: auto;
    margin-left: auto;
    display: block;
  }
}
@media (max-width: 690px) {
  .homepageSlider_text {
    position: relative;
    top: unset;
    transform: none;
    left: 0;
    z-index: 999;
    margin-top: 30px;
    margin-left: 40px;
  }
  .homepageSlider img {
    position: absolute;
    right: 0;
    top: 0;
    width: 600px;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .homepageSlider_text {
    max-width: 330px;
  }
  .homepageSlider img {
    width: 345px;
  }
}
@media (max-width: 420px) {
  .homepageSlider {
    margin-bottom: 20px;
    min-height: unset;
  }
  .homepageSlider_text {
    max-width: unset;
    margin: 0;
    padding: 21px;
  }
  .homepageSlider img {
    display: none;
  }
}
.twoColText_title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  line-height: 1.1111111111;
}
.twoColText_title::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 40px) * 0.5em);
}
.twoColText_title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 40px) * 0.5em);
}
.twoColText p, .twoColText h2, .twoColText h3, .twoColText h4 {
  color: #4D4F53;
  font-weight: 500;
}
.twoColText p strong, .twoColText h2 strong, .twoColText h3 strong, .twoColText h4 strong {
  font-weight: 700;
}

.twoColTextImage_wrap {
  padding: 50px 0;
}
.twoColTextImage h2 {
  color: #9C9FA1;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 30px;
  line-height: 2.3076923077;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}
.twoColTextImage h2::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 30px) * 0.5em);
}
.twoColTextImage h2::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 30px) * 0.5em);
}
.twoColTextImage h3 {
  color: #4D4F53;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  line-height: 1.1111111111;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.twoColTextImage h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 40px) * 0.5em);
}
.twoColTextImage h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 40px) * 0.5em);
}
.twoColTextImage h3 strong {
  font-weight: 700;
}
.twoColTextImage p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75;
  color: #4D4F53;
}
.twoColTextImage p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 28px) * 0.5em);
}
.twoColTextImage p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 28px) * 0.5em);
}
.twoColTextImage p strong {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 37px;
  line-height: 1.3214285714;
}
.twoColTextImage p strong::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 37px) * 0.5em);
}
.twoColTextImage p strong::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 37px) * 0.5em);
}
.twoColTextImage img {
  border-radius: 20px;
}
.twoColTextImage .linkStyle {
  margin: 30px 0;
}

@media (max-width: 767px) {
  .twoColTextImage img {
    margin-bottom: 20px;
  }
}
.subscribeBox {
  background-image: linear-gradient(180deg, #3C3C3B 1%, #292929 100%);
  border-radius: 20px;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 70px;
  margin-top: 44px;
}
.subscribeBox .row > div {
  padding: 0 30px;
}
.subscribeBox h3 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 1.1538461538;
  background-image: linear-gradient(-90deg, #E05206 21%, rgba(0, 0, 0, 0) 100%);
  text-transform: uppercase;
  width: fit-content;
  display: table;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 auto 35px;
  padding: 9px 30px;
  border-radius: 100px;
}
.subscribeBox h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 15px) * 0.5em);
}
.subscribeBox h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 15px) * 0.5em);
}
.subscribeBox strong {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 38px;
  line-height: 1.3571428571;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.subscribeBox strong::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 38px) * 0.5em);
}
.subscribeBox strong::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 38px) * 0.5em);
}
.subscribeBox_wrap {
  padding: 0 30px;
}

@media (max-width: 767px) {
  .subscribeBox {
    margin-top: 30px;
  }
}
.table_wrap {
  background-image: linear-gradient(180deg, #3C3C3B 1%, #1C1C1C 100%);
  padding: 50px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .table_wrap {
    padding: 36px 0;
  }
}
@media (max-width: 420px) {
  .table_wrap {
    margin-top: 36px;
  }
}
.table h3 {
  color: #fff;
  max-width: 570px;
  text-align: center;
  margin: 0 auto 40px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 37px;
  line-height: 1.3214285714;
}
.table h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 37px) * 0.5em);
}
.table h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 37px) * 0.5em);
}
.table .tablepress {
  margin-bottom: 0;
}
.table .tablepress caption {
  display: none;
}
.table .tablepress tbody td, .table .tablepress tfoot th {
  border-color: #E05206;
}
.table .column-1 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125;
  color: #fff;
}
.table .column-1::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 18px) * 0.5em);
}
.table .column-1::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 18px) * 0.5em);
}
.table .column-2 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 1.1538461538;
  color: #9C9FA1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.table .column-2::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 15px) * 0.5em);
}
.table .column-2::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 15px) * 0.5em);
}

.tablepress tfoot th, .tablepress thead th {
  background-color: #E05206 !important;
  color: #FFF !important;
  border-bottom: unset !important;
}
.tablepress .odd td, .tablepress .even td {
  border-color: #E05206;
  background-color: transparent !important;
}

.dataTables_paginate a.paginate_button {
  color: #E05206 !important;
  text-decoration: none !important;
  font-weight: 700;
}
.dataTables_paginate a.paginate_button:after, .dataTables_paginate a.paginate_button:before {
  color: #E05206;
  text-shadow: none !important;
}
.dataTables_paginate a.paginate_button.disabled {
  opacity: 0.5;
}

.blue .table .tablepress tbody td, .blue .table .tablepress tfoot th {
  border-color: #20479A;
}
.blue .tablepress tfoot th, .blue .tablepress thead th {
  background-color: #20479A !important;
}
.blue .tablepress .odd td, .blue .tablepress .even td {
  border-color: #20479A;
}
.blue .dataTables_paginate a.paginate_button {
  color: #20479A !important;
}
.blue .dataTables_paginate a.paginate_button:after, .blue .dataTables_paginate a.paginate_button:before {
  color: #20479A;
}

.green .table .tablepress tbody td, .green .table .tablepress tfoot th {
  border-color: #04A04C;
}
.green .tablepress tfoot th, .green .tablepress thead th {
  background-color: #04A04C !important;
}
.green .tablepress .odd td, .green .tablepress .even td {
  border-color: #04A04C;
}
.green .dataTables_paginate a.paginate_button {
  color: #04A04C !important;
}
.green .dataTables_paginate a.paginate_button:after, .green .dataTables_paginate a.paginate_button:before {
  color: #04A04C;
}

.fullWidthBlock img {
  width: 100%;
  border-radius: 20px;
}
.fullWidthBlock h2, .fullWidthBlock h3 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 35px;
  line-height: 0.9722222222;
  color: #4D4F53;
  font-weight: 500;
}
.fullWidthBlock h2::before, .fullWidthBlock h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 35px) * 0.5em);
}
.fullWidthBlock h2::after, .fullWidthBlock h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 35px) * 0.5em);
}
.fullWidthBlock h2 strong, .fullWidthBlock h3 strong {
  font-weight: 700;
}

.blocks--slider .flickity-viewport {
  transition: height 0.2s;
}
.blocks--slider---slide {
  width: 100%;
  margin-right: 15px;
}
.blocks--slider---slide img {
  width: 100%;
  height: auto;
  display: block;
}

.flickity-button-icon {
  fill: #E05206;
}

.flickity-page-dots .dot {
  background-color: #E05206;
}

.blue .flickity-button-icon {
  fill: #20479A;
}
.blue .flickity-page-dots .dot {
  background-color: #20479A;
}

.green .flickity-button-icon {
  fill: #04A04C;
}
.green .flickity-page-dots .dot {
  background-color: #04A04C;
}

.wp-caption {
  position: relative;
}
.wp-caption .wp-caption-text {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFF;
  font-size: 0.875rem;
  padding: 4px 14px 4px 9px;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, 0);
}
.wp-caption .wp-caption-text:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: text-top;
  background-image: url(../assets/images/univ8-icon-info.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
  margin-top: 1px;
}
@media (max-width: 767px) {
  .wp-caption .wp-caption-text {
    width: 100%;
  }
}
.wp-caption.alignnone {
  margin: 20px 0;
}

@media (max-width: 767px) {
  .blocks--slider img {
    padding-bottom: 29px;
  }
}

.fwSlider img {
  object-fit: cover;
  height: 450px;
  width: 100%;
}
.fwSlider .swiper-button-next,
.fwSlider .swiper-button-prev {
  background-image: url(../assets/images/slider-arrow-left.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 34px;
}
.fwSlider .swiper-button-next:after,
.fwSlider .swiper-button-prev:after {
  content: "";
}
.fwSlider .swiper-button-prev {
  left: 6%;
}
.fwSlider .swiper-button-next {
  transform: rotate(180deg);
  right: 6%;
}
.fwSlider .swiper-pagination-bullet {
  border: 2px solid #E05206;
  background-color: transparent;
  opacity: 1;
  width: 20px;
  height: 20px;
}
.fwSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E05206;
}

/*# sourceMappingURL=custom-style.css.map */
