/*
Theme Name: Heart Relocation
Theme URI: https://www.heartrelocation.com/
Author: Bamb Creative
Author URI: https://www.ba,bcreative.com
Description: A custom WordPress website for Heart Relocation.
Text Domain: heartrelo
version: 1.0
*/
/*******************************************
Global
*******************************************/
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #19333C;
  background-color: #F8FBFC;
  position: relative;
}

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

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

.hr-tag {
  display: table;
  background-color: red;
  font-size: 10px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  margin: 0;
  padding: 11px 20px 9px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tag-red {
  background-color: #F7213F;
  color: #F8FBFC;
}

.tag-grey {
  background-color: #F0F8FB;
}

/*******************************************
Typography
*******************************************/
h1 {
  font-size: 40px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

h2 {
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

h3 {
  font-size: 24px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

h4 {
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

h5 {
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

h6 {
  font-family: "Mont", sans-serif;
  font-weight: 900;
}

p {
  font-size: 18px;
}

/*******************************************
Style Classes
*******************************************/
.pt-none {
  padding-top: 0px;
}

.pt-small {
  padding-top: 80px;
}

.pt-medium {
  padding-top: 120px;
}

.pt-large {
  padding-top: 160px;
}

.pb-none {
  padding-bottom: 0px;
}

.pb-small {
  padding-bottom: 80px;
}

.pb-medium {
  padding-bottom: 120px;
}

.pb-large {
  padding-bottom: 160px;
}

.bg-is-lb {
  background-color: #F0F8FB;
}

.bg-is-lg {
  background-color: #F8FBFC;
}

.bg-is-dg {
  background-color: #19333C;
}

.bg-is-dg-two {
  background-color: #152F37;
}

/*******************************************
Buttons
*******************************************/
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  background-color: #F7213F;
}
.btn-primary:hover {
  background-color: #F7213F;
  transform: scale(1.06);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  background-color: #19333C;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background-color: #19333C;
  transform: scale(1.06);
}

.link-sm {
  font-size: 12px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  color: #19333C;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.link-sm:hover {
  color: #F7213F;
}

/*******************************************
Header
*******************************************/
.sitewide-notice {
  background-color: #152F38;
  text-align: right;
  padding: 14px 22px;
  position: relative;
  z-index: 200;
}
.sitewide-notice.hidden {
  display: none;
}
.sitewide-notice .content {
  position: relative;
}
.sitewide-notice .content p {
  margin: 0;
  color: #F8FBFC;
  font-size: 15px;
  font-weight: 500;
  padding: 0 45px 0 0;
}
.sitewide-notice .content p a {
  color: #F8FBFC;
  text-decoration: underline;
}
.sitewide-notice .content p a:hover {
  color: #F7213F;
}
.sitewide-notice .content .close {
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background-image: url("./img/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  right: 0;
  top: calc(50% - 12.5px);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.sitewide-notice .content .close:hover {
  transform: rotate(90deg);
}

@media only screen and (max-width: 768px) {
  .sitewide-notice {
    padding: 14px 0;
  }
}
.site-navbar {
  position: absolute;
  width: 100%;
  z-index: 40;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  transition: 0.3s ease-in-out;
}
.site-navbar .btns {
  display: flex;
}
.site-navbar .btns .site-search {
  display: inline-block;
  height: 50px;
  margin: -10px 10px 0 0;
}
.site-navbar .btns .site-search input[type=text] {
  width: 50px;
  height: 50px;
  display: inline-block;
  background-color: rgba(25, 51, 60, 0.3);
  border-radius: 60px;
  background-image: url("./img/mag-glass.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  border: none;
  padding: 0 50px 0 2px;
  color: #F8FBFC;
  transition: 0.3s ease-in-out;
  outline: none;
  cursor: pointer;
}
.site-navbar .btns .site-search ::-moz-placeholder {
  color: #F8FBFC;
}
.site-navbar .btns .site-search ::placeholder {
  color: #F8FBFC;
}
.site-navbar .btns .site-search.active input[type=text] {
  width: 300px;
  padding: 0 50px 0 26px;
}
.site-navbar .btns .btn-secondary {
  background-color: rgba(25, 51, 60, 0.3);
}
.site-navbar .btns .burger {
  width: 50px;
  height: 50px;
  background-color: #19333C;
  display: inline-block;
  border-radius: 60px;
  position: relative;
  margin: 0 0 0 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.site-navbar .btns .burger span {
  width: 22px;
  height: 2px;
  background-color: #F8FBFC;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: calc(50% - 11px);
  transition: 0.3s ease-in-out;
}
.site-navbar .btns .burger span:nth-child(1) {
  top: 21px;
}
.site-navbar .btns .burger span:nth-child(2) {
  top: 28px;
}
.site-navbar .btns .burger.active {
  background-color: #F7213F;
}
.site-navbar .btns .burger.active span {
  top: 24px;
}
.site-navbar .btns .burger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.site-navbar .btns .burger.active span:nth-child(2) {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1400px) {
  .site-navbar {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 768px) {
  .site-navbar .btns .btn-secondary,
  .site-navbar .btns .mag-search {
    display: none;
  }
}
/*******************************************
Footer
*******************************************/
footer {
  background-color: #19333C;
  padding: 80px 0 100px 0;
  color: #F8FBFC;
  position: relative;
}
footer .footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0 0 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  footer .footer-logos {
    justify-content: center;
  }
}
footer .footer-logos img {
  max-height: 60px;
  max-width: 85px;
}
footer .logo {
  margin: 0 0 30px 0;
}
footer .contact p.address {
  font-size: 16px;
  line-height: 1.8;
}
footer .contact a {
  color: #F8FBFC;
  margin: 0 0 10px 0;
  display: table;
}
footer .contact a:hover {
  color: #F7213F;
}
footer h6 {
  font-size: 18px;
  margin: 0 0 18px 0;
}
footer p.copyright {
  font-size: 10px;
  margin: 18px 0 0 0;
}
footer .legal-reg {
  font-size: 10px;
  margin: 36px 0 0 0;
}
footer .footer-about {
  font-size: 16px;
  line-height: 1.8;
}
footer .legal-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 10px 0 0 0;
}
footer .legal-nav li {
  display: inline-block;
  font-size: 10px;
  margin: 0 10px 0 0;
}
footer .legal-nav li a {
  color: #F8FBFC;
}
footer .legal-nav li a:hover {
  opacity: 0.7;
}
footer .menu-grid {
  padding: 0 0 0 60px;
  display: grid;
  grid-template-rows: 1fr;
}
footer .menu-grid.menu-grid-1 {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 140px;
  grid-row-gap: 30px;
}
footer .menu-grid.menu-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 140px;
  grid-row-gap: 30px;
}
footer .menu-grid.menu-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 30px;
}
footer .menu-grid.menu-grid-3 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
footer .menu-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .menu-grid ul li {
  margin: 0 0 8px 0;
  font-size: 15px;
}
footer .menu-grid ul li a {
  color: #F8FBFC;
  opacity: 0.8;
}
footer .menu-grid ul li a:hover {
  opacity: 1;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-left: 60px;
}
@media only screen and (max-width: 992px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0 0;
  }
}
footer .loc-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer .loc-wrap .location-item {
  display: flex;
  flex-direction: column;
}
footer .loc-wrap .location-item h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  margin: 0 0 8px 0;
}
footer .loc-wrap .location-item p,
footer .loc-wrap .location-item a {
  font-size: 14px;
  margin: 0 0 4px 0;
  color: #fff;
  opacity: 0.7;
}
footer .loc-wrap .location-item a:hover {
  opacity: 1;
}
footer .footer-menu-wrap {
  display: flex;
  gap: 80px;
}
@media only screen and (max-width: 576px) {
  footer .footer-menu-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer-menu-wrap nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-menu-wrap nav ul li a {
  color: #fff;
  opacity: 0.7;
}
footer .footer-menu-wrap nav ul li a:hover {
  opacity: 1;
}
footer .social {
  display: table;
  margin: 38px 0 0 0;
}
@media only screen and (max-width: 992px) {
  footer .social {
    margin: 40px auto 0 auto !important;
  }
}
footer .social a.icon {
  width: 55px;
  height: 55px;
  display: inline-block;
  border-radius: 30px;
  background-color: #273F47;
  position: relative;
  margin: 0 20px 0 0;
}
footer .social a.icon:last-child {
  margin: 0;
}
footer .social a.icon:hover {
  background-color: #F7213F;
}
footer .social a.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
footer .top-page {
  width: 55px;
  height: 55px;
  display: table;
  margin: 100px 0 0 auto;
  background-color: #273F47;
  border-radius: 30px;
  position: relative;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
footer .top-page::before {
  content: "Scroll to Top";
  position: absolute;
  right: 75px;
  width: 120px;
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  display: block;
  top: 14px;
}
footer .top-page:hover {
  background-color: #F7213F;
}
footer .top-page img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
footer .foot-mb {
  display: none;
}

@media only screen and (max-width: 1200px) {
  footer .menu-grid {
    padding: 0 0 0 30px;
    display: grid;
    grid-template-rows: 1fr;
  }
  footer .menu-grid.menu-grid-1 {
    grid-column-gap: 300px;
    grid-row-gap: 30px;
  }
  footer .menu-grid.menu-grid-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  footer .menu-grid.menu-grid-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  footer .menu-grid.menu-grid-4 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media only screen and (max-width: 992px) {
  footer {
    text-align: center;
  }
  footer .contact a {
    margin: 8px auto;
  }
  footer .copyright,
  footer ul.legal-nav {
    display: none;
  }
  footer .menu-grid {
    padding: 0;
    margin: 30px 0;
  }
  footer .social {
    margin: 0 auto;
  }
  footer .top-page {
    display: none;
  }
  footer .foot-mb {
    display: block;
  }
  footer .foot-mb .copyright,
  footer .foot-mb ul.legal-nav {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  footer {
    padding: 60px 0;
  }
  footer .menu-grid.menu-grid-1, footer .menu-grid.menu-grid-2, footer .menu-grid.menu-grid-3, footer .menu-grid.menu-grid-4 {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
}
/*******************************************
Heros
*******************************************/
.home-hero {
  position: relative;
}
.home-hero .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: linear-gradient(88deg, rgb(15, 52, 61) 0%, rgb(15, 52, 61) 35%, rgba(15, 52, 61, 0.08) 85%, rgba(15, 52, 61, 0.08) 97%);
}
.home-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.home-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-hero .content {
  position: relative;
  z-index: 9;
  padding: 220px 0 130px 0;
  color: #F8FBFC;
}
.home-hero .content h1 {
  font-size: 61px;
  margin: 0 0 20px 0;
}
.home-hero .content p {
  font-size: 21px;
  padding: 0 28% 0 0;
  margin: 0;
}
.home-hero .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 30px 0 0 0;
}
.home-hero .content ul li {
  font-size: 18px;
  background-image: url("./img/tick.svg");
  background-position: top left;
  background-repeat: no-repeat;
  padding: 0 0 0 52px;
  margin: 0 0 18px 0;
}
.home-hero .content ul li:last-child {
  margin: 0;
}
.home-hero .content .btns {
  margin: 60px 0 0 0;
}
.home-hero .content .btns .btn-primary,
.home-hero .content .btns .btn-secondary {
  margin: 0 20px 0 0;
}
.home-hero .content .btns .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
}
.home-hero.logos-shown .content {
  padding: 220px 0 340px 0;
}
.home-hero .hero-logos {
  position: absolute;
  bottom: 0;
  z-index: 11;
  width: 100%;
  overflow-x: hidden;
  padding: 0 0 20px 0;
}
.home-hero .hero-logos .logos-blanking {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #F8FBFC;
  z-index: 10;
  left: 0;
  bottom: 0;
}
.home-hero .hero-logos .wrapper {
  background-color: #ffffff;
  padding: 50px 110px;
  border-radius: 12px;
  position: relative;
  z-index: 20;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.home-hero .hero-logos .wrapper h5 {
  color: #F7213F;
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.home-hero .hero-logos .wrapper .slick-slide {
  margin: 0 60px;
}
.home-hero .hero-logos .wrapper .slick-list {
  margin: 0 -60px;
}

.hero-logo-slider {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .home-hero.logos-shown .content {
    padding: 180px 0 340px 0;
  }
  .home-hero .content {
    padding: 180px 0 100px 0;
  }
  .home-hero .content h1 {
    font-size: 48px;
    padding: 0 10% 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero .hero-logos .wrapper .slick-list {
    margin: 0 -30px;
  }
  .home-hero .hero-logos .wrapper .slick-slide {
    margin: 0 30px;
  }
  .home-hero .filter {
    background: rgba(15, 52, 61, 0.6);
  }
  .home-hero.logos-shown .content {
    padding: 160px 0 240px 0;
  }
  .home-hero.logos-shown .content h1 {
    margin: 0 0 10px 0;
  }
  .home-hero.logos-shown .content p {
    font-size: 18px;
  }
  .home-hero.logos-shown .content ul {
    margin: 18px 0 0 0;
  }
  .home-hero.logos-shown .content ul li {
    padding: 0 0 0 40px;
    margin: 0 0 12px 0;
  }
  .home-hero.logos-shown .content .btns {
    margin: 30px 0 50px 0;
  }
  .home-hero .hero-logos .wrapper {
    padding: 30px 60px;
  }
  .home-hero .content {
    padding: 160px 0 100px 0;
  }
  .home-hero .content h1 {
    font-size: 40px;
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  .home-hero .content h1 {
    font-size: 32px;
  }
  .home-hero .content p {
    padding: 0;
  }
  .home-hero .content .btns .btn-primary,
  .home-hero .content .btns .btn-secondary {
    display: block;
    text-align: center;
    margin: 20px 0 0 0;
  }
  .home-hero .hero-logos .wrapper {
    padding: 30px 20px;
  }
}
.page-hero {
  position: relative;
}
.page-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
.page-hero .filter {
  background: linear-gradient(45deg, rgba(25, 51, 60, 0.9) 0%, rgba(25, 51, 60, 0.9) 25%, rgba(25, 51, 60, 0.4) 75%, rgba(25, 51, 60, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.page-hero .content {
  position: relative;
  z-index: 6;
  padding: 210px 0 150px 0;
}
.page-hero .content h1 {
  color: #F8FBFC;
  line-height: 1.4;
  margin: 0 0 30px 0;
}
.page-hero .content p {
  color: #F8FBFC;
  width: 110%;
}
.page-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 4 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.page-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-hero .hero-badge {
  position: absolute;
  height: 140px;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

@media only screen and (max-width: 992px) {
  .page-hero .content p {
    width: 100%;
  }
  .page-hero.has-badge .content {
    padding: 210px 0 200px 0;
  }
  .page-hero.has-badge .hero-badge {
    right: initial;
    left: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero .content {
    padding: 180px 0 120px 0;
  }
  .page-hero .content h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 576px) {
  .page-hero .content {
    padding: 160px 0 100px 0;
  }
  .page-hero .content h1 {
    font-size: 26px;
  }
}
.resources-hero {
  background-color: #19333C;
}
.resources-hero .content {
  padding: 200px 0 120px 0;
}
.resources-hero .content h1 {
  color: #F8FBFC;
}

.resource-hero-art {
  position: relative;
  padding: 0 0 20px 0;
}
.resource-hero-art .blanking {
  width: 100%;
  height: calc(50% - 20px);
  top: 0;
  left: 0;
  position: absolute;
  background-color: #19333C;
  z-index: 1;
}
.resource-hero-art article {
  position: relative;
  z-index: 4;
  background-color: #ffffff;
  padding: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.resource-hero-art article .content {
  width: calc(50% - 30px);
}
.resource-hero-art article .content h2 {
  color: #19333C;
  font-size: 28px;
  margin: 21px 0 42px 0;
  transition: 0.3s ease-in-out;
  line-height: 1.6;
}
.resource-hero-art article .content h2:hover {
  color: #F7213F;
}
.resource-hero-art article .feat-img {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.resource-hero-art article .feat-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.resource-hero-art article .feat-img:hover img {
  transform: scale(1.06);
}

@media only screen and (max-width: 1200px) {
  .resource-hero-art article {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .resources-hero .content {
    padding: 140px 0 60px 0;
  }
  .resources-hero .content h1 {
    font-size: 32px;
  }
  .resource-hero-art .blanking {
    height: 300px;
  }
  .resource-hero-art article {
    padding: 30px;
  }
  .resource-hero-art article .content {
    width: 100%;
    padding: 300px 0 0 0;
  }
  .resource-hero-art article .content h2 {
    font-size: 22px;
    margin: 20px 0;
  }
  .resource-hero-art article .feat-img {
    width: 100%;
    height: 300px;
  }
}
@media only screen and (max-width: 576px) {
  .resource-hero-art .blanking {
    height: 200px;
  }
  .resource-hero-art article {
    padding: 30px 20px;
  }
  .resource-hero-art article .feat-img {
    height: 200px;
  }
  .resource-hero-art article .content {
    padding: 200px 0 0 0;
  }
}
.full-rl-hero {
  background-color: #19333C;
}
.full-rl-hero .content {
  padding: 190px 0 80px 0;
}
.full-rl-hero .content h1 {
  color: #F8FBFC;
}

.team-hero {
  background-color: #19333C;
}
.team-hero .content {
  color: #F8FBFC;
  text-align: center;
  padding: 180px 0 80px 0;
}

.team-slider-wrap {
  position: relative;
  overflow-x: hidden;
}
.team-slider-wrap .blanking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #19333C;
}
.team-slider-wrap .team-slider .slick-slide {
  margin: 0 20px;
}
.team-slider-wrap .team-slider .slick-list {
  margin: 0 -20px;
}
.team-slider-wrap .team-slider .team-card {
  height: 410px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.team-slider-wrap .team-slider .team-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.team-slider-wrap .team-slider .team-card .content {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.team-slider-wrap .team-slider .team-card .content h4 {
  font-size: 18px;
  color: #F8FBFC;
}
.team-slider-wrap .team-slider .team-card .content h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18;
  font-style: normal;
  color: #F8FBFC;
}
.team-slider-wrap .team-slider .team-card .filter {
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(25, 51, 60, 0) 0%, rgba(25, 51, 60, 0.7) 100%);
  z-index: 4;
  transition: 0.3s ease-in-out;
}
.team-slider-wrap .team-slider .team-card .view-out {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 300px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.team-slider-wrap .team-slider .team-card .view-out .view-in {
  display: block;
  width: 90px;
  height: 90px;
  background-color: #F7213F;
  border-radius: 300px;
}
.team-slider-wrap .team-slider .team-card .view-out .view-in p {
  font-size: 15px;
  color: #F8FBFC;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.team-slider-wrap .team-slider .team-card:hover .view-out {
  opacity: 1;
}
.team-slider-wrap .team-slider .team-card:hover .filter {
  height: 100%;
}
.team-slider-wrap .arrows {
  display: table;
  margin: 40px auto 0 auto;
}
.team-slider-wrap .arrows .slide-arrow {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
  display: inline-block;
  margin: 0 0 0 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.team-slider-wrap .arrows .slide-arrow:hover {
  transform: scale(1.2);
}
.team-slider-wrap .arrows .slide-left-rt {
  background-image: url("./img/left-dark.svg");
}
.team-slider-wrap .arrows .slide-right-rt {
  background-image: url("./img/right-dark.svg");
}

.modal {
  background-color: rgba(25, 51, 60, 0.9);
}
.modal .btn-close {
  width: 40px !important;
  height: 40px !important;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 90;
  background-color: #F7213F;
  opacity: 1;
  color: #F8FBFC;
  background-image: url("./img/close-modal.svg");
  border-radius: 40px;
  transition: 0.3s ease-in-out;
}
.modal .btn-close:hover {
  transform: rotate(180deg);
}
.modal .modal-body {
  padding: 30px;
}
.modal .modal-body .intro {
  margin: 0 0 30px 0;
}
.modal .modal-body .intro img.profile {
  width: 160px;
  height: 160px;
  border-radius: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 20px 0 0;
}
.modal .modal-body .intro a img {
  width: 40px;
  margin: 10px 0 0 0;
}
.modal .modal-body .intro h4 {
  font-size: 18px;
  margin: 0;
}
.modal .modal-body .intro p {
  color: #F7213F;
  font-weight: 500;
  margin: 0;
}
.modal .modal-body p:last-child {
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .team-slider-wrap .team-slider .slick-slide {
    margin: 0 10px;
  }
  .team-slider-wrap .team-slider .slick-list {
    margin: 0 -10px;
  }
}
.post-hero {
  background-color: #19333C;
}
.post-hero .content {
  padding: 220px 0 80px 0;
}
.post-hero .content h1 {
  color: #F8FBFC;
  margin: 0 0 30px 0;
}

.post-hero-img {
  background-color: #F8FBFC;
  position: relative;
}
.post-hero-img .blanking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #19333C;
  z-index: 2;
}
.post-hero-img .content {
  position: relative;
  z-index: 10;
}
.post-hero-img .content img {
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

/*******************************************
Sections
*******************************************/
.feat-pills .feat-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.feat-pills .feat-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
}
.feat-pills .feat-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}
.feat-pills .feat-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}
.feat-pills .feat-pill {
  background-color: #F0F8FB;
  padding: 10px 30px 10px 10px;
  border-radius: 300px;
}
.feat-pills .feat-pill .icon {
  width: 82px;
  min-width: 82px;
  height: 82px;
  background-color: #19333C;
  display: inline-block;
  border-radius: 300px;
  position: relative;
}
.feat-pills .feat-pill .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(5916%) hue-rotate(165deg) brightness(100%) contrast(98%);
}
.feat-pills .feat-pill .content {
  display: inline-block;
  padding: 0 0 0 20px;
}
.feat-pills .feat-pill .content p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.feat-pills.bg-is-lb .feat-pill {
  background-color: #F8FBFC;
}
.feat-pills.bg-is-dg-two .feat-pill {
  background-color: #1E3E48;
  color: #F8FBFC;
}

@media only screen and (max-width: 992px) {
  .feat-pills .feat-grid.two-cols, .feat-pills .feat-grid.three-cols, .feat-pills .feat-grid.four-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .feat-pills .feat-grid.two-cols, .feat-pills .feat-grid.three-cols, .feat-pills .feat-grid.four-cols {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .feat-pills .feat-pill {
    display: block;
    text-align: center;
    padding: 20px 30px;
  }
  .feat-pills .feat-pill .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: table;
    margin: 0 auto 10px auto;
  }
  .feat-pills .feat-pill .icon img {
    width: 24px;
    height: auto;
  }
  .feat-pills .feat-pill .content {
    display: table;
    padding: 0;
  }
}
.testimonials {
  position: relative;
  padding: 120px 0 160px 0;
  background-color: #19333C;
}
.testimonials .arrows {
  display: table;
  margin: -10px 0 0 auto;
}
.testimonials .arrows .slide-arrow {
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
  display: inline-block;
  margin: 0 0 0 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.testimonials .arrows .slide-arrow:hover {
  transform: scale(1.2);
}
.testimonials .arrows .slide-left {
  background-image: url("./img/left-light.svg");
}
.testimonials .arrows .slide-right {
  background-image: url("./img/right-light.svg");
}
.testimonials img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  z-index: 1;
}
.testimonials .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: linear-gradient(88deg, rgb(15, 52, 61) 0%, rgb(15, 52, 61) 26%, rgba(15, 52, 61, 0.08) 85%, rgba(15, 52, 61, 0.08) 97%);
}
.testimonials .content {
  position: relative;
  z-index: 9;
}
.testimonials .content h3 {
  color: #F8FBFC;
  margin: 0 0 52px 0;
}
.testimonials .content .testimonial-slider {
  background-color: #F8FBFC;
  padding: 80px;
  border-radius: 12px;
}
.testimonials .content .testimonial-slider .testimonial-slide p {
  font-size: 22px;
  line-height: 1.6;
}
.testimonials .content .testimonial-slider .testimonial-slide h6 {
  color: #F7213F;
  font-size: 18px;
  margin: 30px 0 0 0;
}
.testimonials .content .testimonial-slider .testimonial-slide h6::after {
  content: "";
  width: 108px;
  height: 19px;
  background-image: url("./img/five-stars.svg");
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .testimonials .arrows {
    margin: 0 auto 20px auto;
  }
  .testimonials .arrows .slide-arrow {
    margin: 0 20px 0 0;
  }
  .testimonials .content h3 {
    margin: 0 0 20px 0;
    text-align: center;
  }
  .testimonials .content .testimonial-slider {
    padding: 30px;
  }
  .testimonials .content .testimonial-slider .testimonial-slide {
    text-align: center;
  }
  .testimonials .content .testimonial-slider .testimonial-slide p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .content .testimonial-slider {
    padding: 20px;
  }
  .testimonials .content .testimonial-slider .testimonial-slide p {
    font-size: 18px;
  }
  .testimonials .content .testimonial-slider .testimonial-slide h6::after {
    display: table;
    margin: 10px auto 0 auto;
  }
}
.latest-resources {
  overflow-x: hidden;
}
.latest-resources h3 {
  margin: 0 0 52px 0;
}
.latest-resources .slick-slide {
  margin: 0 40px;
}
.latest-resources .slick-list {
  margin: 0 -40px;
}
.latest-resources .latest-resource-slider {
  width: 220%;
}
.latest-resources .latest-resource-slider .resource-card {
  background-color: #ffffff;
  padding: 60px;
  border-radius: 6px;
  margin-bottom: 26px;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.latest-resources .latest-resource-slider .resource-card h4 {
  margin: 20px 0 40px 0;
  color: #19333C;
  font-size: 22px;
  transition: 0.3s ease-in-out;
}
.latest-resources .latest-resource-slider .resource-card h4:hover {
  color: #F7213F;
}
.latest-resources .arrows {
  display: table;
  margin: -10px 0 0 auto;
}
.latest-resources .arrows .slide-arrow {
  width: 55px;
  height: 55px;
  background-color: #E0EEF3;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
  display: inline-block;
  margin: 0 20px 0 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.latest-resources .arrows .slide-arrow:hover {
  transform: scale(1.2);
}
.latest-resources .arrows .slide-left-r {
  background-image: url("./img/left-dark.svg");
}
.latest-resources .arrows .slide-right-r {
  background-image: url("./img/right-dark.svg");
}
.latest-resources .arrows .link-sm {
  position: relative;
  top: -22px;
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .latest-resources .slick-slide {
    margin: 0 20px;
  }
  .latest-resources .slick-list {
    margin: 0 -20px;
  }
  .latest-resources .latest-resource-slider {
    width: 100%;
  }
  .latest-resources .latest-resource-slider .resource-card {
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .latest-resources h3 {
    margin: 0 0 20px 0;
    text-align: center;
  }
  .latest-resources .arrows {
    margin: 0 auto 20px auto;
  }
}
@media only screen and (max-width: 576px) {
  .latest-resources .latest-resource-slider .resource-card h4 {
    font-size: 18px;
  }
}
.text-img h1 {
  font-size: 40px;
  line-height: 1.6;
}
.text-img h2 {
  font-size: 32px;
  line-height: 1.6;
}
.text-img h3 {
  font-size: 28px;
  line-height: 1.6;
}
.text-img h4 {
  font-size: 20px;
  line-height: 1.6;
}
.text-img h5 {
  font-size: 16px;
  line-height: 1.6;
}
.text-img h6 {
  font-size: 14px;
  line-height: 1.6;
}
.text-img p {
  line-height: 1.8;
}
.text-img .btns {
  margin: 50px 0 0 0;
}
.text-img .btns .btn-primary,
.text-img .btns .btn-secondary {
  margin: 0 20px 0 0;
}
.text-img.text-left-img-right .content {
  padding: 0 12% 0 0;
}
.text-img.img-left-text-right .content {
  padding: 0 0 0 12%;
}
.text-img .main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: inline-block;
}
.text-img .content.feat-ul ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 30px 0;
}
.text-img .content.feat-ul ul li {
  font-size: 18px;
  background-image: url("./img/tick.svg");
  background-position: top left;
  background-repeat: no-repeat;
  padding: 0 0 0 52px;
  margin: 0 0 10px 0;
}
.text-img .content.feat-ul ul li:last-child {
  margin: 0;
}
.text-img.showing-stats .stat-block {
  width: 206px;
  display: inline-block;
  background-color: #19333C;
  margin: 0 60px 0 0;
  text-align: center;
  padding: 0 20px;
  border-radius: 12px;
}
.text-img.showing-stats .stat-block .stat-item {
  padding: 30px 0;
  border-bottom: 1px solid #9FABAF;
}
.text-img.showing-stats .stat-block .stat-item img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(14%) saturate(184%) hue-rotate(149deg) brightness(86%) contrast(89%);
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 16px 0;
}
.text-img.showing-stats .stat-block .stat-item h4 {
  color: #F8FBFC;
  font-size: 48px;
  margin: 0 0 14px 0;
  line-height: 1;
}
.text-img.showing-stats .stat-block .stat-item p {
  color: #F8FBFC;
  opacity: 0.6;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  padding: 0 15%;
}
.text-img.showing-stats .main-img {
  width: calc(100% - 266px);
}

@media only screen and (max-width: 992px) {
  .text-img .main-img {
    margin: 0 0 30px 0;
  }
  .text-img.text-left-img-right .content, .text-img.img-left-text-right .content {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .text-img .vertical-align {
    display: initial;
    align-items: initial;
  }
  .text-img.showing-stats .stat-block {
    display: block;
    width: 100%;
    margin: 0 0 30px 0;
  }
  .text-img.showing-stats .main-img {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .text-img.showing-stats .stat-block .stat-item h4 {
    font-size: 30px;
  }
  .text-img.showing-stats .stat-block .stat-item p {
    font-size: 18px;
    padding: 0;
  }
  .text-img .btns .btn-primary,
  .text-img .btns .btn-secondary {
    display: block;
    text-align: center;
    margin: 20px 0 0 0;
  }
}
.service-grid .service-grid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 60px;
}
.service-grid .service-grid-grid .service-item .img-wrap {
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  margin: 0 0 30px 0;
}
.service-grid .service-grid-grid .service-item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.service-grid .service-grid-grid .service-item .img-wrap:hover img {
  transform: scale(1.1);
}
.service-grid .service-grid-grid .service-item h3 {
  color: #19333C;
  font-size: 18px;
}
.service-grid .service-grid-grid .service-item a.link {
  text-transform: uppercase;
  color: #19333C;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  background-image: url("./img/red-arrow-sm.svg");
  background-repeat: no-repeat;
  padding: 0 24px 0 0;
  background-position: right;
}
.service-grid .service-grid-grid .service-item a.link:hover {
  color: #F7213F;
  padding: 0 30px 0 0;
}

@media only screen and (max-width: 768px) {
  .service-grid .service-grid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .service-grid .service-grid-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
.logos {
  text-align: center;
  overflow-x: hidden;
}
.logos h5 {
  color: #F7213F;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0 0 30px 0;
}
.logos .slick-slide {
  margin: 0 50px;
}
.logos .slick-slide img {
  max-width: 100%;
}
.logos .slick-list {
  margin: 0 -50px;
}

@media only screen and (max-width: 992px) {
  .logos .slick-slide {
    margin: 0 30px;
  }
  .logos .slick-list {
    margin: 0 -30px;
  }
}
@media only screen and (max-width: 768px) {
  .logos .slick-slide {
    margin: 0 15px;
  }
  .logos .slick-list {
    margin: 0 -15px;
  }
}
.faqs {
  background-color: #19333C;
  padding: 120px 0;
}
.faqs .sec-title {
  color: #F8FBFC;
  text-align: center;
  margin: 0 0 40px 0;
}
.faqs .text-under {
  text-align: center;
  margin: 30px 0 0 0;
}
.faqs .text-under p {
  color: #F8FBFC;
  font-size: 15px;
  margin: 0;
}
.faqs .text-under p a {
  color: #F8FBFC;
  font-weight: 500;
  text-decoration: underline;
}
.faqs .text-under p a:hover {
  color: #F7213F;
}
.faqs .accordion-item {
  margin: 0 0 20px 0;
  border: none;
  border-radius: 10px;
  background-color: #ffffff;
}
.faqs .accordion-item .accordion-button {
  border-radius: 10px;
  color: #19333C;
  font-size: 15px;
  font-weight: 600;
  padding: 22px 20px;
  outline: none;
  box-shadow: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.faqs .accordion-item .accordion-button::after {
  background-image: url("./img/faq-arrow.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
}
.faqs .accordion-item .accordion-button:not(.collapsed), .faqs .accordion-item .accordion-button:hover {
  background-color: #F7213F;
  color: #F8FBFC;
}
.faqs .accordion-item .accordion-body {
  padding: 20px;
}
.faqs .accordion-item .accordion-body p {
  font-size: 15px;
}
.faqs .accordion-item:last-of-type {
  border-radius: 10px;
}
.faqs .accordion-item:last-of-type .accordion-button {
  border-radius: 10px;
}

.info-cards {
  overflow-x: hidden;
}
.info-cards .arrows {
  display: table;
  margin: -10px 0 0 auto;
}
.info-cards .arrows .slide-arrow {
  width: 55px;
  height: 55px;
  background-color: #E0EEF3;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
  display: inline-block;
  margin: 0 20px 0 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.info-cards .arrows .slide-arrow:hover {
  transform: scale(1.2);
}
.info-cards .arrows .slide-left-rc {
  background-image: url("./img/left-dark.svg");
}
.info-cards .arrows .slide-right-rc {
  background-image: url("./img/right-dark.svg");
}
.info-cards h3 {
  margin: 0 0 50px 0;
}
.info-cards .card-slider {
  width: 200%;
}
.info-cards .card-slider .slick-slide {
  margin: 0 20px;
}
.info-cards .card-slider .slick-list {
  margin: 0 -20px;
}
.info-cards .card-slider .info-card {
  position: relative;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
.info-cards .card-slider .info-card .filter {
  background: linear-gradient(to bottom, rgba(15, 52, 61, 0.5) 0%, rgba(15, 52, 61, 0.95) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.info-cards .card-slider .info-card .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-cards .card-slider .info-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 60px;
  color: #F8FBFC;
}
.info-cards .card-slider .info-card .content .card-icon {
  background-color: #F7213F;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  position: relative;
}
.info-cards .card-slider .info-card .content .card-icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.info-cards .card-slider .info-card .content h4 {
  margin: 22px 0 15px 0;
  font-size: 20px;
}
.info-cards .card-slider .info-card .content p {
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .info-cards .card-slider {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .info-cards h3 {
    text-align: center;
  }
  .info-cards .arrows {
    margin: 0 auto 30px auto;
    padding: 0 0 0 10px;
  }
}
@media only screen and (max-width: 576px) {
  .info-cards .card-slider .info-card {
    min-height: initial;
  }
  .info-cards .card-slider .info-card .content {
    position: relative;
    padding: 160px 30px 30px 30px;
  }
}
.recent-cat .intro-row {
  margin: 0 0 60px 0;
}
.recent-cat .intro-row h4 {
  font-size: 22px;
  margin: 0 0 22px 0;
}
.recent-cat .intro-row .btn-primary {
  float: right;
}
.recent-cat .post-grid-of-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}
.recent-cat .post-grid-of-3 .count-1 {
  grid-area: 1/1/3/2;
}
.recent-cat .post-grid-of-3 .count-2 {
  grid-area: 1/2/2/3;
}
.recent-cat .post-grid-of-3 .count-3 {
  grid-area: 2/2/3/3;
}
.recent-cat .post-grid-of-3 article.count-1 .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 40px 20px 40px;
}
.recent-cat .post-grid-of-3 article.count-1 .content .content-inner {
  margin-top: -20px;
  padding-bottom: 20px;
}
.recent-cat .post-grid-of-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}
.recent-cat article {
  background-color: #ffffff;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.recent-cat article .feat-wrap {
  position: absolute;
  width: 100%;
  height: 80%;
  overflow: hidden;
  z-index: 2;
}
.recent-cat article .feat-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.recent-cat article .feat-wrap:hover img {
  transform: scale(1.06);
}
.recent-cat article .content {
  background-color: #ffffff;
  padding: 40px;
  position: relative;
  z-index: 4;
  bottom: 0;
}
.recent-cat article .content h3 {
  font-size: 22px;
  line-height: 1.6;
  margin: 20px 0;
  color: #19333C;
  transition: 0.3s ease-in-out;
}
.recent-cat article .content h3:hover {
  color: #F7213F;
}
.recent-cat.bg-is-dg .intro-row {
  color: #F8FBFC;
}

@media only screen and (max-width: 1200px) {
  .recent-cat .post-grid-of-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .recent-cat .post-grid-of-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .recent-cat .intro-row .btn-primary {
    float: none;
    margin: 20px 0 0 0;
  }
  .recent-cat .post-grid-of-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .recent-cat .post-grid-of-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .recent-cat .post-grid-of-3 .count-1 {
    grid-area: 1/1/2/2;
  }
  .recent-cat .post-grid-of-3 .count-2 {
    grid-area: 2/1/3/2;
  }
  .recent-cat .post-grid-of-3 .count-3 {
    grid-area: 3/1/4/2;
  }
  .recent-cat article .content {
    padding: 20px;
  }
  .recent-cat article .content h3 {
    font-size: 18px;
  }
  .recent-cat article .feat-wrap {
    position: relative;
    height: 200px;
    margin: 0 0 20px 0;
  }
  .recent-cat .post-grid-of-3 article.count-1 .content {
    padding: 20px;
    position: relative;
  }
  .recent-cat .post-grid-of-3 article.count-1 .content .content-inner {
    padding: 0;
  }
}
.full-rl-hero .resource-search {
  margin: 40px 0 0 0;
}
.full-rl-hero .resource-search ::-moz-placeholder {
  color: #BBC5C8;
}
.full-rl-hero .resource-search ::placeholder {
  color: #BBC5C8;
}
.full-rl-hero .resource-search ul {
  padding: 0;
}
.full-rl-hero .resource-search ul li {
  display: inline-block;
}
.full-rl-hero .resource-search ul li.sf-field-search {
  display: inline-block;
  float: right;
}
.full-rl-hero .resource-search ul li h4 {
  display: inline-block;
  color: #F8FBFC;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 20px 0 0;
  color: #BBC5C8;
}
.full-rl-hero .resource-search ul li select {
  background-color: #19333C;
  border: 1px solid #476169;
  background-color: #1F3E48;
  color: #BBC5C8;
  font-size: 15px;
  height: 55px;
  width: 330px;
  border-radius: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 20px;
  background-image: url("./img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  outline: none;
  cursor: pointer;
}
.full-rl-hero .resource-search ul li input[type=text] {
  background-color: #19333C;
  border-top: none;
  border-radius: 0;
  border-right: none;
  border-left: none;
  border-bottom: 1px dashed #476169;
  width: 310px;
  color: #BBC5C8;
  height: 55px;
  outline: none;
}

.rl-listing {
  position: relative;
  background-color: #F0F8FB;
}
.rl-listing .rl-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  position: relative;
  z-index: 10;
}
.rl-listing .rl-listing-grid article {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.rl-listing .rl-listing-grid article .feat-wrap {
  width: 100%;
  height: 335px;
  position: relative;
  overflow: hidden;
}
.rl-listing .rl-listing-grid article .feat-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.rl-listing .rl-listing-grid article .feat-wrap:hover img {
  transform: scale(1.06);
}
.rl-listing .rl-listing-grid article .content {
  padding: 40px;
}
.rl-listing .rl-listing-grid article .content h3 {
  font-size: 22px;
  line-height: 1.6;
  margin: 20px 0;
  color: #19333C;
  transition: 0.3s ease-in-out;
}
.rl-listing .rl-listing-grid article .content h3:hover {
  color: #F7213F;
}
.rl-listing.yes-imgs .blanking {
  position: absolute;
  width: 100%;
  height: 335px;
  background-color: #19333C;
}
.rl-listing.no-imgs .blanking {
  position: absolute;
  width: 100%;
  height: 135px;
  background-color: #19333C;
}

.full-faq-listing {
  position: relative;
}
.full-faq-listing .blanking {
  position: absolute;
  width: 100%;
  height: 80px;
  background-color: #19333C;
  top: 0;
  left: 0;
}
.full-faq-listing .accordion-item {
  margin: 0 0 40px 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.full-faq-listing .accordion-item:last-child {
  margin: 0;
}
.full-faq-listing .accordion-item .accordion-button {
  box-shadow: none;
  outline: none;
  border-radius: 12px;
  padding: 40px 110px 40px 40px;
  display: block;
  position: relative;
}
.full-faq-listing .accordion-item .accordion-button .arrow {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("./img/faq-arrow-lg.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 25px);
  right: 40px;
  transition: 0.3s ease-in-out;
}
.full-faq-listing .accordion-item .accordion-button .tags {
  display: block;
  margin: 0 0 20px 0;
}
.full-faq-listing .accordion-item .accordion-button .tags p {
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.full-faq-listing .accordion-item .accordion-button .tags p.tag-red {
  margin: 0 18px 0 0;
}
.full-faq-listing .accordion-item .accordion-button span {
  font-size: 20px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  transition: 0.3s ease-in-out;
}
.full-faq-listing .accordion-item .accordion-button:hover span {
  color: #19333C;
}
.full-faq-listing .accordion-item .accordion-button:not(.collapsed) {
  background-color: #ffffff;
}
.full-faq-listing .accordion-item .accordion-button:not(.collapsed) .arrow {
  transform: rotate(180deg);
}
.full-faq-listing .accordion-item .accordion-button:not(.collapsed) .tags p.tag-grey {
  color: #19333C;
}
.full-faq-listing .accordion-item .accordion-button:not(.collapsed) span {
  color: #19333C;
}
.full-faq-listing .accordion-item .accordion-body {
  padding: 0 40px 40px 40px;
}
.full-faq-listing .accordion-item .accordion-body .btn-primary,
.full-faq-listing .accordion-item .accordion-body .btn-secondary {
  margin: 30px 20px 0 0;
}
.full-faq-listing .accordion-item:last-of-type {
  border-radius: 12px;
}
.full-faq-listing .accordion-item:last-of-type .accordion-button {
  border-radius: 12px;
}

@media only screen and (max-width: 992px) {
  .rl-listing .rl-listing-grid article .feat-wrap {
    height: 260px;
  }
  .rl-listing.yes-imgs .blanking {
    height: 260px;
  }
  .rl-listing .rl-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    position: relative;
    z-index: 10;
  }
  .rl-listing .rl-listing-grid article .content {
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .rl-listing .rl-listing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    position: relative;
    z-index: 10;
  }
  .full-rl-hero .resource-search ul li.sf-field-search {
    float: none;
    width: 100%;
    display: block;
  }
  .full-rl-hero .resource-search ul li.sf-field-search label {
    width: 100%;
  }
  .full-rl-hero .resource-search ul li.sf-field-search label input[type=text] {
    width: 100%;
  }
  .full-rl-hero .resource-search ul li h4 {
    display: block;
    margin: 0 0 10px 0;
  }
  .full-rl-hero .resource-search ul li {
    display: block;
    width: 100%;
  }
  .full-rl-hero .resource-search ul li label {
    width: 100%;
  }
  .full-rl-hero .resource-search ul li label select {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .rl-listing .rl-listing-grid article .content {
    padding: 20px;
  }
  .rl-listing .rl-listing-grid article .content h3 {
    font-size: 18px;
  }
}
.getting-to-know {
  position: relative;
}
.getting-to-know .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.getting-to-know .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 4 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.getting-to-know .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.getting-to-know .filter {
  background: linear-gradient(45deg, rgba(25, 51, 60, 0.9) 0%, rgba(25, 51, 60, 0.9) 25%, rgba(25, 51, 60, 0.4) 75%, rgba(25, 51, 60, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.getting-to-know .content {
  position: relative;
  z-index: 6;
  padding: 200px 0 250px 0;
  text-align: center;
}
.getting-to-know .content h1 {
  color: #F8FBFC;
  margin: 0 0 30px 0;
}
.getting-to-know .content p {
  padding: 0 13%;
  font-size: 21px;
  color: #F8FBFC;
}
.getting-to-know .content select {
  margin: 30px 0 0 0;
  height: 55px;
  padding: 0 60px 0 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #F8FBFC;
  background-image: url("./img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 30px center;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.getting-to-know .content select option {
  color: #19333C !important;
}

@media only screen and (max-width: 992px) {
  .getting-to-know .content {
    padding: 160px 0 120px 0;
  }
  .getting-to-know .content h1 {
    font-size: 32px;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 768px) {
  .getting-to-know .content {
    padding: 160px 0 120px 0;
  }
  .getting-to-know .content h1 {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
  .getting-to-know .content p {
    padding: 0;
    font-size: 18px;
  }
}
.awards-slider {
  overflow-x: hidden;
}
.awards-slider h4 {
  text-align: center;
  color: #F7213F;
  margin: 40px 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.awards-slider .award-slide-item {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
  text-align: center;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  border-radius: 12px;
  aspect-ratio: 1/1;
  position: relative;
}
.awards-slider .award-slide-item img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px) !important;
  /*height: 70px;*/
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.awards-slider .slick-slide {
  margin: 0 20px;
}
.awards-slider .slick-list {
  margin: 0 -20px;
}

.centered-text-block h1,
.text-cols h1 {
  font-size: 32px;
}
.centered-text-block h2,
.text-cols h2 {
  font-size: 28px;
}
.centered-text-block h3,
.text-cols h3 {
  font-size: 22px;
}
.centered-text-block h4,
.text-cols h4 {
  font-size: 20px;
}
.centered-text-block h5,
.text-cols h5 {
  font-size: 18px;
}
.centered-text-block h6,
.text-cols h6 {
  font-size: 16px;
}

.text-cols .text-block-item {
  text-align: center;
  padding: 20px;
}
.text-cols .text-block-item .icon-wrap {
  background-color: #F7213F;
  display: table;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  border-radius: 6px;
  position: relative;
}
.text-cols .text-block-item .icon-wrap img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.cta-cards-grid .cta-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}
.cta-cards-grid .cta-card-grid .cta-card {
  min-height: 410px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.cta-cards-grid .cta-card-grid .cta-card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.cta-cards-grid .cta-card-grid .cta-card .filter {
  background: linear-gradient(to bottom, rgba(15, 52, 61, 0.5) 0%, rgba(15, 52, 61, 0.95) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cta-cards-grid .cta-card-grid .cta-card .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 5;
  color: #F8FBFC;
  padding: 20px 40px 40px 40px;
}
.cta-cards-grid .cta-card-grid .cta-card .content h4 {
  font-size: 20px;
}
.cta-cards-grid .cta-card-grid .cta-card .content .icon-wrap {
  background-color: #F7213F;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 6px;
  margin: 0 0 22px 0;
  position: relative;
}
.cta-cards-grid .cta-card-grid .cta-card .content .icon-wrap img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .cta-cards-grid .cta-card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .cta-cards-grid .cta-card-grid .cta-card {
    min-height: initial;
  }
  .cta-cards-grid .cta-card-grid .cta-card .content {
    position: relative;
    padding: 120px 30px 30px 30px;
  }
}
@media only screen and (max-width: 576px) {
  .cta-cards-grid .cta-card-grid .cta-card .content {
    position: relative;
    padding: 120px 20px 20px 20px;
  }
  .cta-cards-grid .cta-card-grid .cta-card .content .btn-primary {
    width: 100%;
    text-align: center;
  }
}
.banner-cta .cta-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.banner-cta .cta-card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-cta .cta-card .filter {
  background: linear-gradient(to bottom, rgba(15, 52, 61, 0.5) 0%, rgba(15, 52, 61, 0.95) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.banner-cta .cta-card .content {
  position: relative;
  z-index: 4;
  padding: 40px 60px;
  color: #F8FBFC;
}
.banner-cta .cta-card.add-margin {
  margin: 64px 0 0 0;
}

@media only screen and (max-width: 768px) {
  .banner-cta .cta-card.add-margin {
    margin: 30px 0 0 0;
  }
  .banner-cta .cta-card .content {
    padding: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .banner-cta .cta-card .content .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.contact .contact-details {
  background-color: #F7213F;
  border-radius: 12px;
  padding: 30px;
  position: sticky;
  top: 60px;
}
.contact .contact-details .item {
  padding: 20px 10px 0px 80px;
  background-size: 60px;
  background-repeat: no-repeat;
  min-height: 60px;
  margin: 0 0 15px 0;
  font-size: 17px;
  font-weight: 500;
}
.contact .contact-details .item:last-child {
  margin: 0;
}
.contact .contact-details .item a,
.contact .contact-details .item p {
  color: #ffffff;
}
.contact .contact-details .item.phone {
  background-image: url("./img/phone.svg");
}
.contact .contact-details .item.email {
  background-image: url("./img/email.svg");
}
.contact .contact-details .item.address {
  background-image: url("./img/location.svg");
  padding: 0 10px 0 80px;
}
.contact .contact-details .item.address a {
  font-size: 14px;
  text-decoration: underline;
}
.contact .form-wrap {
  background-color: #F0F8FB;
  padding: 40px;
  width: calc(100% - 60px);
  float: right;
  border-radius: 12px;
}
.contact .form-wrap input[type=text],
.contact .form-wrap input[type=email],
.contact .form-wrap input[type=tel] {
  width: 100%;
  height: 58px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #E3EFF4;
  outline: none;
  padding-left: 18px !important;
}
.contact .form-wrap textarea {
  width: 100%;
  height: 150px !important;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #E3EFF4;
  outline: none;
  padding-left: 18px !important;
}
.contact .form-wrap label {
  font-size: 16px;
  font-weight: 500 !important;
}
.contact .form-wrap .gform_required_legend {
  display: none;
}
.contact .form-wrap h5 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}
.contact .form-wrap input[type=submit] {
  background-color: #F7213F;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 50px;
  color: #F8FBFC;
  display: table;
  margin: 0 0 0 auto;
}
.contact .form-wrap .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .contact .contact-details {
    margin: 0 0 30px 0;
  }
  .contact .form-wrap {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .contact .contact-details .item {
    background-size: 40px;
    padding: 10px 0px 0 50px;
    font-size: 14px;
    margin: 0 10px 0 0;
  }
  .contact .contact-details .item.address {
    padding: 0 0px 0 50px;
  }
  .contact .contact-details .item.address p {
    font-size: 14px;
  }
  .contact .form-wrap {
    padding: 15px;
  }
  .contact .form-wrap input[type=submit] {
    width: 100%;
  }
}
.article-content .article-block {
  padding: 0 0 60px 0;
}
.article-content .article-block:last-child {
  padding: 0;
}
.article-content .article-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.article-content .article-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 30px 0;
}
.article-content .article-block ul li {
  font-size: 18px;
  background-image: url("./img/tick.svg");
  background-position: top left;
  background-repeat: no-repeat;
  padding: 0 0 0 52px;
  margin: 0 0 18px 0;
}
.article-content .article-block ul li:last-child {
  margin: 0;
}
.article-content .article-block .video-wrapper {
  position: relative;
  height: 480px;
}
.article-content .article-block .video-wrapper .ph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-content .article-block .video-wrapper .play {
  width: 110px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}
.article-content .article-block .video-wrapper:hover .play {
  width: 120px;
}
.article-content .article-block .dl-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 20px 0;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.article-content .article-block .dl-item h4 {
  margin: 0;
  font-size: 16px;
}
.article-content .article-block .dl-item .btn-primary {
  display: table;
  margin: 0 0 0 auto;
}
.article-content .article-block .dl-item:last-child {
  margin: 0;
}
.article-content .article-block-text h2,
.article-content .article-block-text h3,
.article-content .article-block-text h4,
.article-content .article-block-text h5,
.article-content .article-block-text h6 {
  margin: 2rem 0 1rem 0;
}
.article-content .article-block-text p a {
  color: #19333C;
  text-decoration: underline;
}
.article-content .article-block-text p a:hover {
  color: #F7213F;
}

@media only screen and (max-width: 768px) {
  .post-hero .content {
    padding: 160px 0 60px 0;
  }
  .post-hero .content h1 {
    font-size: 32px;
  }
  .post-hero-img .content img {
    height: 340px;
  }
  .article-content .article-block {
    padding: 0 0 30px 0;
  }
  .article-content .article-block .video-wrapper {
    height: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .post-hero .content h1 {
    font-size: 26px;
  }
  .article-content .article-block .video-wrapper {
    height: 280px;
  }
}
.related-resources .related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}
.related-resources .related-grid .resource-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.related-resources .related-grid .resource-card h3 {
  font-size: 22px;
  color: #19333C;
  line-height: 1.4;
  margin: 30px 0 40px 0;
  transition: 0.3s ease-in-out;
}
.related-resources .related-grid .resource-card h3:hover {
  color: #F7213F;
}
.related-resources .intro {
  margin: 0 0 50px 0;
}
.related-resources .intro h4 {
  margin: 10px 0 0 0;
}
.related-resources .intro .btn-primary {
  display: table;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 768px) {
  .related-resources .related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .related-resources .intro .btn-primary {
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .related-resources .related-grid .resource-card {
    padding: 20px;
  }
}
/*******************************************
Main menu
*******************************************/
nav.main-menu {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #19333C;
  z-index: 80;
  transition: 0.3s ease-in-out;
}
nav.main-menu .left {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: #19333C;
  padding: 260px 0 0 180px;
  overflow-y: scroll;
}
nav.main-menu .left .sub-nav-mob {
  display: none;
}
nav.main-menu .left .social {
  display: table;
  margin: 10px 0 0 0;
  position: absolute;
  bottom: 100px;
}
nav.main-menu .left .social h4 {
  color: #F8FBFC;
  font-size: 18px;
  margin: 0 0 10px 0;
}
nav.main-menu .left .social a.icon {
  width: 55px;
  height: 55px;
  display: inline-block;
  border-radius: 30px;
  background-color: #273F47;
  position: relative;
  margin: 0 20px 0 0;
}
nav.main-menu .left .social a.icon:last-child {
  margin: 0;
}
nav.main-menu .left .social a.icon:hover {
  background-color: #F7213F;
}
nav.main-menu .left .social a.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
nav.main-menu .left ul.top-level {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 60px;
}
nav.main-menu .left ul.top-level li {
  font-size: 30px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  margin: 0 0 26px 0;
}
nav.main-menu .left ul.top-level li a {
  color: #F8FBFC;
}
nav.main-menu .left ul.top-level li a:hover {
  color: #F7213F;
}
nav.main-menu .right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-color: #19333C;
  padding: 0;
}
nav.main-menu .right .menu-main-img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: 1.8s ease-in-out;
}
nav.main-menu .right .sub-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 260px 0 60px 100px;
}
nav.main-menu .right .sub-menu .filter {
  background-color: rgba(15, 52, 61, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
nav.main-menu .right .sub-menu .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
nav.main-menu .right .sub-menu ul {
  position: relative;
  z-index: 200;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  padding-bottom: 60px;
  height: 100%;
}
nav.main-menu .right .sub-menu ul li {
  font-size: 20px;
  font-weight: 500;
  background-image: url("./img/menu-arrow.svg");
  background-repeat: no-repeat;
  padding: 0 0 0 40px;
  background-position: top 5px left;
  margin: 0 0 12px 0;
}
nav.main-menu .right .sub-menu ul li a {
  color: #F8FBFC;
}
nav.main-menu .right .sub-menu ul li a:hover {
  color: #F7213F;
}
nav.main-menu.active {
  left: 0;
}
nav.main-menu.active .right .menu-main-img {
  opacity: 1;
}

body.menu-open {
  overflow-y: hidden;
}

@media only screen and (max-width: 1400px) {
  nav.main-menu .left {
    padding: 180px 0 0 20px;
  }
  nav.main-menu .right .sub-menu {
    padding: 180px 0 0 40px;
  }
}
@media only screen and (max-height: 1350px) {
  nav.main-menu .left .social {
    position: relative;
    margin: 60px 0 0 0;
  }
}
nav.mobile-menu {
  background-color: #19333C;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 200;
  padding: 130px 15px;
  left: -100%;
  transition: 0.3s ease-in-out;
  overflow-y: scroll;
  display: none;
}
nav.mobile-menu.active {
  left: 0;
}
nav.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav.mobile-menu ul li {
  font-size: 18px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  margin: 0 0 10px 0;
}
nav.mobile-menu ul li:last-child {
  margin: 0;
}
nav.mobile-menu ul li a {
  color: #F8FBFC;
}
nav.mobile-menu ul .mob-sub-nav ul li {
  background-image: url("./img/menu-arrow.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding: 0 0 0 36px;
  margin: 0 0 10px 10px;
}

@media only screen and (max-width: 998px) {
  nav.main-menu {
    display: none;
  }
  nav.mobile-menu {
    display: block;
  }
  body.menu-open .site-navbar {
    background-color: #19333C;
  }
}
@media only screen and (max-width: 992px) {
  .pt-small {
    padding-top: 80px;
  }
  .pt-medium {
    padding-top: 100px;
  }
  .pt-large {
    padding-top: 120px;
  }
  .pb-small {
    padding-bottom: 80px;
  }
  .pb-medium {
    padding-bottom: 100px;
  }
  .pb-large {
    padding-bottom: 120px;
  }
  .bg-is-lb {
    background-color: #F0F8FB;
  }
  .bg-is-lg {
    background-color: #F8FBFC;
  }
  .bg-is-dg {
    background-color: #19333C;
  }
}
@media only screen and (max-width: 768px) {
  .pt-small {
    padding-top: 50px;
  }
  .pt-medium {
    padding-top: 60px;
  }
  .pt-large {
    padding-top: 80px;
  }
  .pb-small {
    padding-bottom: 50px;
  }
  .pb-medium {
    padding-bottom: 60px;
  }
  .pb-large {
    padding-bottom: 80px;
  }
  .bg-is-lb {
    background-color: #F0F8FB;
  }
  .bg-is-lg {
    background-color: #F8FBFC;
  }
  .bg-is-dg {
    background-color: #19333C;
  }
}
@media only screen and (max-width: 576px) {
  .pt-small {
    padding-top: 40px;
  }
  .pt-medium {
    padding-top: 50px;
  }
  .pt-large {
    padding-top: 60px;
  }
  .pb-small {
    padding-bottom: 40px;
  }
  .pb-medium {
    padding-bottom: 50px;
  }
  .pb-large {
    padding-bottom: 60px;
  }
  .bg-is-lb {
    background-color: #F0F8FB;
  }
  .bg-is-lg {
    background-color: #F8FBFC;
  }
  .bg-is-dg {
    background-color: #19333C;
  }
}
.sr-hero {
  background-color: #19333C;
}
.sr-hero .content {
  padding: 160px 0 40px 0;
}
.sr-hero .content h1 {
  color: #F8FBFC;
}

.sr-hr {
  padding: 120px 0;
}
.sr-hr .pagination {
  margin: 20px 0 0 0;
}
.sr-hr .pagination a {
  color: #19333C;
}
.sr-hr .pagination a:hover {
  color: #F7213F;
}

.hr-result {
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 12px;
  margin: 0 0 20px 0;
  box-shadow: 0px 14px 24px -10px rgba(13, 63, 80, 0.12);
}
.hr-result h2 {
  font-size: 20px;
  margin: 0;
}
.hr-result h2 a {
  color: #19333C;
}
.hr-result h2 a:hover {
  color: #F7213F;
}

.pager-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: #E0EEF3;
  display: table;
  padding: 10px 5px;
  border-radius: 200px;
  margin: 0 auto;
}
.pager-navigation ul li {
  font-weight: 500;
  display: inline-block;
}
.pager-navigation ul li a {
  background-color: #F8FBFC;
  display: block;
  border-radius: 100px;
  line-height: 30px;
  margin: 0 5px;
  color: #19333C;
  width: 30px;
  height: 30px;
}
.pager-navigation ul li a:hover {
  background-color: #F7213F;
  color: #ffffff;
}
.pager-navigation ul li.active a {
  background-color: #F7213F;
  color: #ffffff;
}

.video-block .video-wrapper {
  position: relative;
  padding-top: 65%;
}
.video-block .video-wrapper .ph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-block .video-wrapper .play {
  width: 110px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}
.video-block .video-wrapper:hover .play {
  width: 120px;
}

.update-banner {
  background-color: #ffffff;
  border-radius: 10px;
  width: 385px;
  max-width: 100%;
  padding: 30px;
  box-shadow: 0px 1px 24px 1px rgba(13, 63, 80, 0.08);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 79;
  display: none;
}
@media only screen and (max-width: 768px) {
  .update-banner {
    width: calc(100% - 40px);
    bottom: 20px;
    right: 20px;
    max-height: 65vh;
    overflow-y: scroll;
  }
}
.update-banner .img-wrap {
  width: 100%;
  padding-top: 60%;
  position: relative;
}
.update-banner .img-wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.update-banner .img-wrap .play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.update-banner .banner-highlight {
  background-color: rgba(247, 33, 63, 0.08);
  font-size: 12px;
  font-family: "Mont", sans-serif;
  font-weight: 900;
  color: #F7213F;
  display: table;
  padding: 6px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  margin: 20px 0;
}
.update-banner h4 {
  font-size: 19px;
}
.update-banner p {
  font-size: 16px;
}
.update-banner .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
}
.update-banner .btn-secondary {
  display: block;
  margin: 10px 0 0 0;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  color: #19333C;
  border: 1px solid rgba(25, 51, 60, 0.2);
}/*# sourceMappingURL=style.css.map */