@charset "UTF-8";
/*
Theme Name: Cardinal Theme
Text Domain: https://www.{sitename}.com
Author: Sabrina Matthews at Cardinal Digital Marketing
Author URI: https://www.cardinaldigitalmarketing.com
Version: 1.0.0
*/
/************************************************************************/
/******************************* VARIABLES ******************************/
/************************************************************************/
/* COLORS */
/* MIXINS */
/* media query styles */
/************************************************************************/
/**************************** FONT FAMILIES *****************************/
/************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Arimo:400,700&display=swap");
@font-face {
  font-family: "Avenir Book";
  src: url(fonts/Avenir/AvenirLTStd-Book.otf);
  font-display: swap;
}
/* DM SANS */
@font-face {
  font-family: DMSans-Regular;
  src: url(fonts/DM_Sans/DMSans-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: DMSans-Bold;
  src: url(fonts/DM_Sans/DMSans-Bold.ttf);
  font-display: swap;
}
/* DM SERIF DISPLAY */
@font-face {
  font-family: DMSerifDisplay-Regular;
  src: url(fonts/DM_Serif_Display/DMSerifDisplay-Regular.ttf);
  font-display: swap;
}
/* LATO */
@font-face {
  font-family: Lato-Light;
  src: url(fonts/Lato/Lato-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Lato-Regular;
  src: url(fonts/Lato/Lato-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Lato-Bold;
  src: url(fonts/Lato/Lato-Bold.ttf);
  font-display: swap;
}
/* MERRIWEATHER */
@font-face {
  font-family: Merriweather-Light;
  src: url(fonts/Merriweather/Merriweather-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Merriweather-Regular;
  src: url(fonts/Merriweather/Merriweather-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Merriweather-Bold;
  src: url(fonts/Merriweather/Merriweather-Bold.ttf);
  font-display: swap;
}
/* MONTSERRAT */
@font-face {
  font-family: Montserrat-Light;
  src: url(fonts/Montserrat/Montserrat-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Montserrat-Regular;
  src: url(fonts/Montserrat/Montserrat-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Montserrat-Bold;
  src: url(fonts/Montserrat/Montserrat-Bold.ttf);
  font-display: swap;
}
/* OPEN SANS */
@font-face {
  font-family: OpenSans-Light;
  src: url(fonts/Open_Sans/OpenSans/OpenSans-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: OpenSans-Regular;
  src: url(fonts/Open_Sans/OpenSans/OpenSans-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: OpenSans-Bold;
  src: url(fonts/Open_Sans/OpenSans/OpenSans-Bold.ttf);
  font-display: swap;
}
/* PLAYFAIR DISPLAY */
@font-face {
  font-family: PlayfairDisplay-Light;
  src: url(fonts/Playfair_Display/PlayfairDisplay-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: PlayfairDisplay-Regular;
  src: url(fonts/Playfair_Display/PlayfairDisplay-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: PlayfairDisplay-Bold;
  src: url(fonts/Playfair_Display/PlayfairDisplay-Bold.ttf);
  font-display: swap;
}
/* POPPINS */
@font-face {
  font-family: Poppins-Light;
  src: url(fonts/Poppins/Poppins-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Poppins-Regular;
  src: url(fonts/Poppins/Poppins-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Poppins-Bold;
  src: url(fonts/Poppins/Poppins-Bold.ttf);
  font-display: swap;
}
/* RALEWAY */
@font-face {
  font-family: Raleway-Light;
  src: url(fonts/Raleway/Raleway-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Raleway-Regular;
  src: url(fonts/Raleway/Raleway-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Raleway-Bold;
  src: url(fonts/Raleway/Raleway-Bold.ttf);
  font-display: swap;
}
/* ROBOTO */
@font-face {
  font-family: Roboto-Light;
  src: url(fonts/Roboto/Roboto-Light.ttf);
  font-display: swap;
}
@font-face {
  font-family: Roboto-Regular;
  src: url(fonts/Roboto/Roboto-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Roboto-Bold;
  src: url(fonts/Roboto/Roboto-Bold.ttf);
  font-display: swap;
}
/************************************************************************/
/*********************** GLOBAL DEFAULTS & RESETS ***********************/
/************************************************************************/
:root {
  --body-font: "Avenir Book", sans-serif;
  --heading-font: sans-serif;
  --section-padding: 1rem;
  --link-color-example: black;
  font-size: 16px;
}

@media only screen and (min-width: 769px) {
  :root {
    --section-padding: 2rem;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none;
}

html {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  width: 100vw;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  background-color: #FFFFFF;
  color: #353535;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Avenir Book", sans-serif;
}
@media only screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #E04F00;
  line-height: 1.25;
  margin: 0.25em 0;
}

h1 {
  font-size: 2em;
}
@media only screen and (min-width: 769px) {
  h1 {
    font-size: 2.5em;
  }
}
h1.heading {
  font-size: 2em;
}
@media only screen and (min-width: 769px) {
  h1.heading {
    font-size: 2.5em;
  }
}

h2 {
  font-size: 1.75em;
}
@media only screen and (min-width: 769px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  font-size: 1.5em;
  font-weight: normal;
}
@media only screen and (min-width: 769px) {
  h3 {
    font-size: 1.75em;
  }
}

h4 {
  font-size: 1.25em;
}
@media only screen and (min-width: 769px) {
  h4 {
    font-size: 1.5em;
  }
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: #353535;
  text-decoration: none;
  transition: 0.25s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/************************************************************************/
/***************************** GLOBAL CLASSES ***************************/
/************************************************************************/
.uppercase {
  text-transform: uppercase;
}

.align--center {
  text-align: center;
}

.align--left {
  text-align: left;
}

.align--right {
  text-align: right;
}

.heading {
  font-size: 2rem;
  color: #E04F00;
  font-family: "basic-sans", sans-serif;
}
@media only screen and (min-width: 769px) {
  .heading {
    font-size: 2rem;
  }
}

.subheading {
  font-size: 1.5em;
  font-family: "Avenir Book", sans-serif;
  font-weight: 400;
  color: #E04F00;
}

.section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.section.cta-height {
  padding: 2em 1em;
}
@media only screen and (min-width: 769px) {
  .section.cta-height {
    padding: 2em;
  }
}
.section.normal-height {
  padding: 4em 1em;
}
@media only screen and (min-width: 769px) {
  .section.normal-height {
    padding: 4em 2em;
  }
}
@media only screen and (max-width: 550px) {
  .section.normal-height {
    padding: 4em 2em;
  }
}

.section-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.image-wrapper {
  width: var(--image-width, auto);
  height: var(--image-height, auto);
  margin: 0 auto;
}
.image-wrapper img {
  display: block;
}

.dark-title {
  color: #E04F00;
}

.light-title {
  color: #eb8f8f;
}

.light-text {
  color: #FFFFFF;
}
.light-text h4 {
  color: #FFFFFF;
}

.dark-text {
  color: #000000;
}
.dark-text h4 {
  color: #E04F00;
}

.dark {
  color: #000;
}
.dark a {
  color: #000;
}

.white {
  color: #fff;
}
.white a {
  color: #fff;
}

.orange {
  color: #E04F00;
}
.orange a {
  color: #E04F00;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin: 0.5em 0;
  transition: 0.25s;
  text-transform: uppercase;
  text-align: center;
  -webkit-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  border-radius: 1.5em;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  color: #FFFFFF;
  background-color: #E04F00;
}

.btn-secondary {
  color: #FFFFFF;
  background-color: #8f0b0b;
}

.white-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  opacity: 0.67;
  z-index: 0;
}

.black-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.67;
  z-index: 0;
}

/******************* HELPERS *********************/
.desktop-only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .desktop-only {
    display: block;
  }
}

.mobile-only {
  display: block;
}
@media only screen and (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

.hide {
  display: none;
}

.show {
  display: block;
}

.full-width {
  width: 100%;
  max-width: 100%;
}

.no-padded-sides {
  padding-left: 0;
  padding-right: 0;
}

.no-padded-top {
  padding-top: 0;
}

.no-padded-bottom {
  padding-bottom: 0;
}

/******************* NATIVE PAGES *********************/
@media only screen and (min-width: 769px) {
  .section.error {
    min-height: calc(100vh - 315px);
  }
}

/******************* CAREERS EMBED *********************/
.cc-filters-container {
  box-sizing: border-box;
  margin-bottom: 20px;
  background-color: rgba(242, 105, 7, 0.3);
  padding: 15px;
  gap: 5px;
}

.cc-careers-container button {
  background-color: #e04f00;
  border-radius: 30px;
}

.cc-filters-container .cc-search-button-container .cc-submit-search-button:hover {
  background-color: #e04f00;
  opacity: 0.9;
}

.cc-department-name {
  color: #E04F00;
}

.cc-reset-search-button {
  color: #000;
}

.cc-department-container {
  text-align: left;
}

.cc-job-description-container .cc-job-description-text {
  margin: 15px 0;
  text-align: left;
}

.cc-job-description-container .link-button {
  background-color: #e04f00;
  border-radius: 30px;
}
.cc-job-description-container .link-button:hover {
  background-color: #e04f00;
  opacity: 0.9;
}

/******************* SLICK SLIDER *********************/
.slick-slider .slick-track {
  display: flex;
}
.slick-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.slick-slider .slick-track .slick-slide img {
  width: 100%;
}
.slick-slider .slick-dots li button:before {
  opacity: 1;
  font-size: 15px;
  color: #8f0b0b;
}
.slick-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #E04F00;
}

#careers {
  margin-top: -3rem;
  z-index: 2;
  position: relative;
}
#careers .one-col {
  padding-top: 2rem;
}

#care-team {
  margin-top: -3rem;
}

#voluntary {
  padding-bottom: 6rem;
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  #voluntary {
    padding-bottom: 3rem;
  }
}

#reach-model {
  padding-bottom: 6rem;
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  #reach-model {
    padding-bottom: 3rem;
  }
}

/********* BLOG SINGLE AND ARCHIVE PAGE STYLES **********/
.main--archive .category li a,
.main--single .category li a,
.main--single .btn-back {
  color: #E04F00;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/************************************************************************/
/**************************** HEADER STYLES *****************************/
/************************************************************************/
.main-nav {
  position: relative;
  z-index: 12;
}
.main-nav.sticky-margin {
  margin-top: 4rem !important;
}
@media only screen and (max-width: 768px) {
  .main-nav.sticky-margin {
    margin-top: 6rem !important;
  }
}
.main-nav .sticky-wrapper {
  background-color: #FFFFFF;
  top: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.main-nav .sticky-wrapper.sticky {
  position: fixed;
}
.main-nav .sticky-wrapper.sticky .main-nav__drawer.is-open {
  top: 6rem;
}
@media only screen and (min-width: 769px) {
  .main-nav .sticky-wrapper.sticky .main-nav__drawer.is-open {
    top: 0;
  }
}
.main-nav .topbar {
  background-color: #E6E6E6;
  height: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .main-nav .topbar {
    height: max-content;
  }
}
.main-nav .topbar .content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0.5em;
}
.main-nav .topbar .content .left, .main-nav .topbar .content .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .topbar .content .top-nav__phone a {
  color: #FFFFFF;
}
.main-nav .topbar .content .top-nav__phone:hover a {
  opacity: 0.8;
}
.main-nav .topbar .content .top-nav__icons {
  padding-left: 3em;
}
.main-nav .topbar .content .top-nav__icons .icon {
  margin: 0 0.25em;
}
.main-nav .topbar .content .top-nav__icons .icon img {
  width: 25px;
  height: 25px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-nav .topbar .content .top-nav__icons .icon img:hover {
  transform: scale(1.1);
}
.main-nav .topbar .content .top-nav__drawer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul {
  list-style: none;
  margin: -0.2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul li {
  margin: 0 0.5rem;
  font-size: 1rem;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul li a {
  display: inline-block;
  text-decoration: none;
  color: #e6e6e6;
  background: #58585a;
  border-radius: 50%;
  height: 1.5rem;
  width: 1.5rem;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul li a i {
  line-height: inherit;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul li a img {
  width: 60%;
}
.main-nav .topbar .content .top-nav__drawer .icons-social ul li:last-child {
  margin-right: 0;
}
.main-nav .topbar .content .top-nav__drawer .provider-login {
  display: flex;
  align-items: center;
  line-height: 1.5rem;
  justify-content: flex-end;
}
.main-nav .topbar .content .top-nav__drawer .provider-login .careempower {
  font-size: 16px;
  font-family: "Avenir Book", sans-serif;
  display: flex;
  color: #2D758C;
}
.main-nav .topbar .content .top-nav__drawer .provider-login .careempower a {
  color: #2D758C;
}
.main-nav .topbar .content .top-nav__drawer .provider-login .careempower img {
  margin-right: 0.3em;
}
.main-nav .main-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5em;
}
@media only screen and (min-width: 769px) {
  .main-nav .main-nav__wrapper {
    padding: 0;
  }
}
.main-nav .main-nav__wrapper .main-nav__logo {
  z-index: 3;
  padding: 0 0.5em;
}
@media only screen and (min-width: 1023px) {
  .main-nav .main-nav__wrapper .main-nav__logo {
    margin-left: 5em;
  }
}
.main-nav .main-nav__wrapper .main-nav__logo .logo a img {
  width: 18rem;
}
.main-nav .main-nav__wrapper .phone.mobile-only {
  max-width: 2.5em;
}
.main-nav .main-nav__wrapper .main-nav__bar {
  position: relative;
  z-index: 3;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button {
  width: 3.5rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0);
  border: none;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--top,
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--middle,
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--bottom {
  color: #E04F00;
  background-color: #E04F00;
  width: 3em;
  height: 0.5em;
  border-radius: 1em;
  position: absolute;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--top {
  top: 5px;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--middle {
  top: 20px;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button .hamburger-button__bar--bottom {
  top: 35px;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--top,
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--middle,
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--bottom {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--top {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 15px;
  left: 8px;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--middle {
  width: 0%;
  opacity: 0;
}
.main-nav .main-nav__wrapper .main-nav__bar .hamburger-button.is-open .hamburger-button__bar--bottom {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 8px;
}
.main-nav .main-nav__wrapper .main-nav__drawer {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 10vw;
  right: -50em;
  z-index: 2;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 1s;
  -moz-transition: right 1s;
  -ms-transition: right 1s;
  -o-transition: right 1s;
  transition: right 1s;
}
@media only screen and (min-width: 769px) {
  .main-nav .main-nav__wrapper .main-nav__drawer {
    transition: none;
    position: relative;
    height: auto;
    top: 0;
    right: 0;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1200px) {
  .main-nav .main-nav__wrapper .main-nav__drawer {
    flex-basis: 70%;
  }
}
.main-nav .main-nav__wrapper .main-nav__drawer.is-open {
  right: 0em;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav {
  padding-left: 0;
  list-style-type: none;
  overflow: scroll;
  height: 75vh;
  background-color: #FFFFFF;
  letter-spacing: 0.5px;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1023px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav {
    margin-top: 2em;
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav {
    padding: 0;
    margin: 0;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
    overflow: initial;
  }
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li {
  padding: 1em;
  margin-left: 2em;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn {
  margin: 1em;
  padding: 0;
  min-width: auto;
  text-align: center;
  display: block;
  color: #FFFFFF;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn a {
  color: #FFFFFF;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn a:hover {
  color: #FFFFFF;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn.current-menu-item > a {
  color: #FFFFFF !important;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn a {
  text-align: center;
  display: block;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  font-size: 1rem;
}
@media only screen and (min-width: 1023px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn a {
    padding: 1rem 2rem;
  }
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn a span {
  background-image: url("/wp-content/themes/cardinalthemev2/assets/Group-147.png");
  background-repeat: no-repeat;
  background-size: 80%;
  padding-left: 1.5em;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn.current-menu-item > a, .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.btn.current-menu-ancestor > a {
  border-bottom: none;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li a {
  color: #353535;
  font-size: 1rem;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li a:hover {
  color: #E04F00;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.current-menu-item > a, .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.current-menu-ancestor > a {
  border-bottom: 0px solid #E04F00;
}
@media only screen and (min-width: 769px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li {
    padding: 2em 0.5em;
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 769px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children {
    position: relative;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children.right-on-tablet .sub-menu {
    right: 0;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    width: 16em;
    padding-bottom: 1em;
    top: 5.1em;
    list-style-type: none;
    text-align: left;
    background-color: #FFFFFF;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu a {
    color: #000000;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu a:hover {
    color: #E04F00;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu .current-menu-item > a {
    color: #E04F00;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children:hover .sub-menu {
    display: block;
  }
}
@media only screen and (min-width: 1023px) {
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children.right-on-tablet .sub-menu {
    right: unset;
  }
  .main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu {
    top: 5em;
  }
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu {
  list-style-type: none;
  padding-top: 1em;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu li {
  padding: 1em;
  position: relative;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  position: absolute;
  left: -0.5em;
}
.main-nav .main-nav__wrapper .main-nav__drawer .primary-nav > li.menu-item-has-children .sub-menu li a:hover::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  position: absolute;
}
.main-nav .search__wrapper {
  position: relative;
  flex-basis: 15%;
}
.main-nav .search__wrapper::after {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-weight: 900;
  right: 1.5em;
  position: absolute;
  top: 25%;
  pointer-events: none;
}
.main-nav .search__wrapper .search-form {
  display: flex;
  position: relative;
}
.main-nav .search__wrapper .search-form .search-field {
  padding: 0.5em;
}
.main-nav .search__wrapper .search-form .search-submit {
  position: absolute;
  right: 1.5em;
  padding: 0.5em;
  color: rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0);
  border: none;
  width: 2em;
  cursor: pointer;
}

/************************************************************************/
/**************************** FOOTER STYLES *****************************/
/************************************************************************/
.footer {
  background: #E6E6E6 0% 0% no-repeat padding-box;
  text-align: center;
}
.footer .logo-container {
  margin: 0 auto;
}
.footer .logo-container img {
  max-width: 18em;
  margin-top: 4.5em;
}
.footer .icons-container .icon img {
  width: 1.5em;
  height: 1.5em;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.footer .icons-container .icon img:hover {
  transform: scale(1.1);
}
.footer .menu-container .footer-nav {
  padding-left: 0;
  list-style-type: none;
  text-align: center;
}
.footer .menu-container .footer-nav li {
  padding: 1em 0.5em;
}
@media only screen and (max-width: 768px) {
  .footer .menu-container .footer-nav li {
    padding: 0;
  }
}
.footer .menu-container .footer-nav li a {
  text-align: center;
  color: #1C515D;
  font-size: 1rem;
  margin: 0 1em;
}
.footer .menu-container .footer-nav li a:hover {
  opacity: 0.8;
}
.footer .menu-container .footer-nav li.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 10em;
  height: 2.5em;
  min-width: 10em;
  background-color: #eb8f8f;
}
.footer .menu-container .footer-nav li.btn:hover a {
  opacity: 0.8;
}
@media only screen and (min-width: 769px) {
  .footer .menu-container .footer-nav {
    display: flex;
    justify-content: center;
  }
}
.footer .btn-contact {
  box-shadow: none;
}
.footer .btn-contact a {
  text-align: center;
  display: block;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.footer .info-container {
  color: #E04F00;
  text-align: center;
  font-size: 0.5rem;
  padding-bottom: 1em;
}
.footer .info-container a {
  color: #E04F00;
}
.footer .info-container a:hover {
  opacity: 0.8;
}

.icons-social ul {
  list-style: none;
  margin: -0.2em 0;
  display: flex;
  padding-inline-start: 0;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}
.icons-social ul li {
  margin: 0 0.5rem;
  font-size: 1rem;
}
.icons-social ul li a {
  display: inline-block;
  text-decoration: none;
  color: #e6e6e6;
  background: #58585a;
  border-radius: 50%;
  height: 1.5rem;
  width: 1.5rem;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.icons-social ul li a i {
  line-height: inherit;
}
.icons-social ul li a img {
  width: 60%;
}
.icons-social ul li:last-child {
  margin-right: 0;
}

/************************************************************************/
/**************************** MODULES STYLES ****************************/
/************************************************************************/
.section--banner-cta {
  text-align: center;
}
.section--banner-cta .section-wrapper {
  max-width: 50em;
}
.section--banner-cta .section-wrapper .button-wrapper {
  padding: 1em 0;
  margin: 1em auto;
}
@media only screen and (min-width: 769px) {
  .section--banner-cta .section-wrapper .button-wrapper {
    width: 15em;
  }
}

.section--featured-blogs {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.section--featured-blogs .content {
  max-width: 50em;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .section--featured-blogs .featured_blogs {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
    margin-bottom: 3em;
    flex-wrap: wrap;
  }
}
.section--featured-blogs .featured_blogs .blog {
  background-color: #FFFFFF;
  padding: 2em 1em;
  margin: 1em 0;
  -webkit-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  border-radius: 1.5em;
}
@media only screen and (min-width: 769px) {
  .section--featured-blogs .featured_blogs .blog {
    flex-basis: calc(33% - 1em);
    padding: 2em 1em;
  }
}
.section--featured-blogs .featured_blogs .blog .image-wrapper {
  padding: 5em;
  width: 15em;
  background-position: center;
  background-size: cover;
  background-image: url("/wp-content/themes/cardinaltheme/assets/blog-placeholder.jpg");
  -webkit-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  border-radius: 1.5em;
}

.section--side-by-side .two-col {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .section--side-by-side .two-col {
    flex-direction: row;
  }
  .section--side-by-side .two-col .col {
    flex-basis: 50%;
  }
}
.section--side-by-side .two-col .col:first-child .image-wrapper {
  padding: 1em;
}
.section--side-by-side .two-col .col:nth-child(2) .button-wrapper {
  display: block;
  margin: 2em 0;
}

.section--featured-events {
  text-align: center;
  padding-top: 4%;
  padding-bottom: 4%;
  margin: 0 auto;
  padding: 2em 2em;
}
.section--featured-events h4 {
  text-align: left;
  font-weight: 400;
}
.section--featured-events .section-wrapper {
  /*max-width: 74em;*/
  padding-left: 3.2%;
  padding-right: 3.2%;
}
.section--featured-events .section-wrapper .grids {
  padding-top: 3em;
  padding-left: 2em;
}
.section--featured-events .section-wrapper .grids .media-button-wrapper {
  padding-bottom: 2em;
}
.section--featured-events .featuredEvent {
  max-width: 1180px;
  margin: 0 auto;
  background-color: #1c515d !important;
  border-top-right-radius: 75px !important;
  border-bottom-left-radius: 75px !important;
  min-height: 100px !important;
}
@media only screen and (min-width: 1023px) {
  .section--featured-events .featuredEvent .grid {
    width: calc(49% - 1.2rem) !important;
  }
}
.section--featured-events .featuredEvent h4 {
  color: #fff;
}
.section--featured-events .fEventModule {
  min-height: 100px !important;
  max-height: auto !important;
  background-color: #1c515d !important;
  border-top-right-radius: 75px !important;
  border-bottom-left-radius: 75px !important;
}
.section--featured-events .startingText {
  padding-top: 2%;
  padding-left: 5%;
  color: #fff;
}
.section--featured-events .feUl {
  padding: 5%;
}
.section--featured-events .feLi {
  list-style: none;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 4%;
}
.section--featured-events .insideLi {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-left: 5.5%;
  padding-right: 5.5%;
}
.section--featured-events .insideLi > p {
  text-align: left;
  font-size: 0.7em;
  color: #fff;
  font-weight: 300;
}
.section--featured-events .event {
  display: inline-flex;
}
.section--featured-events .eventDateEl {
  text-align: left;
  font-size: 3em;
  color: #fff;
  font-weight: 500;
}
.section--featured-events .eventTitleEl {
  text-align: left;
  color: #fff;
  font-size: 1em;
}
.section--featured-events .insideLiImg {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  background-size: cover;
  background-position: center;
  min-height: auto !important;
  height: 300px;
  border-radius: 12px;
}
.section--featured-events .ulFeventsCont {
  overflow: hidden;
  position: relative;
  width: 55%;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  padding-top: 0.4%;
  /*padding-bottom: 3.5%;*/
  padding-left: 0;
  padding-right: 0;
}
.section--featured-events .ulFevents {
  list-style: none;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 2%;
  position: absolute;
  min-width: 2300px;
  padding-left: 0%;
  padding-right: 32%;
}
.section--featured-events .ulFevents > a > li {
  display: inline-block;
  padding-left: 1.5%;
  padding-right: 1.5%;
  font-size: 18.5px;
}
.section--featured-events .filterArrowImage {
  width: 65%;
  vertical-align: middle;
}
.section--featured-events .active {
  background: #e04f00 0% 0% no-repeat padding-box;
  padding: 0.2em;
  margin: -0.2em 0;
  transition: 0.9s;
  text-align: center;
  -webkit-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  border-radius: 1.5em;
  color: #fff;
  z-index: 10;
  position: relative;
}
.section--featured-events .leftArrow {
  float: left;
  display: inline-block;
  z-index: 11;
  position: relative;
  background: #fff;
  width: 25px; /*100*/
  height: 40px;
  text-align: left;
  margin-top: -5px;
  padding-top: 5px;
  opacity: 1 !important;
}
.section--featured-events .rightArrow {
  float: right;
  display: inline-block;
  z-index: 11;
  position: relative;
  background: #fff;
  width: 25px;
  height: 40px;
  text-align: right;
  margin-top: -5px;
  padding-top: 5px;
  opacity: 1 !important;
}
.section--featured-events .leftArrow:hover {
  margin-top: -6px;
}
.section--featured-events .rightArrow:hover {
  margin-top: -6px;
}
.section--featured-events .onlyOne {
  display: grid;
}
.section--featured-events .loadingEvent {
  width: 1.5%;
  display: none;
  margin: 0 auto;
  margin-top: -3%;
  padding-bottom: 3%;
}
@media (min-width: 806px) and (max-width: 1000px) {
  .section--featured-events .eventDateEl {
    padding-top: 0px;
    margin-top: -8px;
  }
}
@media (max-width: 805px) {
  .section--featured-events .feLi {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section--featured-events .section-wrapper {
    padding-left: 0%;
    padding-right: 0%;
    width: 100%;
    margin-top: 0em;
    position: relative;
    padding-bottom: 2rem;
    margin-left: 0rem;
  }
  .section--featured-events .loadingEvent {
    margin-top: 0%;
  }
}
@media (min-width: 551px) and (max-width: 1000px) {
  .section--featured-events .ulFeventsCont {
    width: 78%;
    /*padding: 0em 2em !important;*/
  }
  .section--featured-events .section--featured-events .ulFevents {
    padding-right: 77%;
  }
}
@media (max-width: 550px) {
  .section--featured-events .section--featured-events .ulFeventsCont {
    padding: 0em 2em !important;
    margin: 0em 0em;
  }
  .section--featured-events .section--featured-events .featuredEvent {
    padding: 0em 2em !important;
    margin: 0em 2em;
  }
  .section--featured-events .eventDateEl {
    margin-top: 0em;
    font-size: 2.5em;
  }
  .section--featured-events .startingText {
    padding-top: 5%;
    padding-left: 0%;
    font-size: 0.9em;
    text-align: center !important;
    padding-right: 0%;
    color: #fff;
  }
  .section--featured-events .section--featured-events > h1 {
    font-size: 1.8em;
  }
  .section--featured-events .ulFeventsCont {
    width: 80%;
    /*padding: 0em 2em !important;*/
  }
  .section--featured-events .section-wrapper {
    margin: 0em 0em;
  }
  .section--featured-events .ulFevents {
    padding-left: 0%;
    padding-right: 94%;
  }
  .section--featured-events .active {
    margin: -0.1em 0;
  }
}
@media (min-width: 360px) and (max-width: 400px) {
  .section--featured-events .startingText {
    padding-top: 10%;
    font-size: 0.8em;
  }
}

/************************************************************************/
/***************************** BLOG STYLES ******************************/
/************************************************************************/
.main--archive {
  max-width: 1180px;
  margin: 0 auto;
}
.main--archive .heading-content {
  text-align: center;
  padding-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .main--archive .heading-content {
    padding-top: 3rem;
  }
}
.main--archive .heading-content .subheading {
  font-family: "Avenir Book", sans-serif;
  font-size: 18px;
  color: #000000;
}
@media only screen and (min-width: 1023px) {
  .main--archive .heading-content .intro {
    padding: 0em 15em !important;
  }
}
@media only screen and (min-width: 769px) {
  .main--archive .heading-content .intro {
    padding: 0.5em 9em;
  }
}
@media only screen and (max-width: 768px) {
  .main--archive .heading-content .intro {
    padding: 0em 4em;
  }
}
.main--archive #nav-posts {
  display: flex;
  justify-content: space-between;
  margin: 2em 0;
  padding-top: 1em;
  width: 100%;
}
@media only screen and (min-width: 1023px) {
  .main--archive {
    display: flex;
    justify-content: space-between;
  }
  .main--archive .section--archive {
    flex-basis: 75%;
  }
  .main--archive .section--aside {
    display: block;
    flex-basis: 25%;
  }
}
.main--archive .post-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: stretch;
  padding: 2em 0;
}
.main--archive .post-grid .post {
  width: calc(33% - 1rem);
  background: #fff;
  color: #000;
}
.main--archive .post-grid .post .content {
  padding: 1em;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .main--archive .post-grid .post .content {
    flex-basis: 70%;
  }
}
.main--archive .post-grid .post .content .title {
  text-align: left;
  color: #1C515D;
}
.main--archive .post-grid .post .content .blurb {
  text-align: left;
}
.main--archive .post-grid .post .content .button-wrapper a {
  text-transform: none;
  padding: 1rem 3rem;
}
.main--archive .post-grid .post .content .category .post-categories {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
}
.main--archive .post-grid .post .content .category .post-categories li {
  margin-right: 0.25em;
  font-size: 0.8em;
}
.main--archive .post-grid .post .content .category .post-categories li::after {
  content: ", ";
}
.main--archive .post-grid .post .content .category .post-categories li:last-child::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .main--archive .post-grid .post {
    width: 100%;
    text-align: center;
    padding: 0 1em;
  }
}

.main--single {
  max-width: 1180px;
  margin: 0 auto;
}

#nav-posts {
  display: flex;
  justify-content: space-between;
  margin: 2em 0;
  padding-top: 1em;
  width: 100%;
}
#nav-posts .next {
  text-align: left;
  flex-basis: 50%;
}
#nav-posts .prev {
  text-align: right;
  flex-basis: 50%;
}

@media only screen and (min-width: 769px) {
  .image-wrapper {
    margin: 1em auto;
  }
}

.post-thumbnail img {
  border-radius: 30px;
}

.blog-banner {
  margin: 5rem 0 0 0;
  padding: 7rem 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .blog-banner {
    padding: 5rem 2rem;
  }
}

.two-col {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .two-col {
    flex-direction: column;
    gap: 0rem;
  }
}
@media only screen and (min-width: 769px) {
  .two-col.one-third .col:first-child {
    width: 33%;
  }
  .two-col.one-third .col:nth-child(2) {
    width: 66%;
  }
  .two-col.third-one {
    gap: 6rem;
  }
  .two-col.third-one .col:first-child {
    width: 66%;
  }
  .two-col.third-one .col:nth-child(2) {
    width: 33%;
  }
  .two-col.half .cards {
    flex-basis: 50%;
    padding: 2rem 0;
    margin: 3rem 0;
    text-align: center;
  }
  .two-col.half .cards .title-card {
    text-align: center;
  }
  .two-col.half .cards .icon {
    width: 40%;
    text-align: center;
    display: inline-grid;
    margin: 12px;
  }
  .two-col.half .cards .icon img {
    width: 40%;
  }
  .two-col.half .col {
    flex-basis: 50%;
  }
  .two-col.forty-sixty .col:first-child {
    width: 40%;
  }
  .two-col.forty-sixty .col:nth-child(2) {
    width: 60%;
  }
  .two-col.sixty-forty .col:first-child {
    width: 60% !important;
  }
  .two-col.sixty-forty .col:nth-child(2) {
    width: 40% !important;
  }
}

.section--multi-col .white p {
  color: #fff;
}
.section--multi-col .white h4 {
  color: #fff;
}
@media only screen and (max-width: 1180px) {
  .section--multi-col {
    padding: 4rem 2em;
  }
}
@media only screen and (min-width: 769px) {
  .section--multi-col {
    padding: 4rem 2em;
  }
}
@media only screen and (max-width: 768px) {
  .section--multi-col {
    padding: 3em 2em;
  }
}
.section--multi-col .section-wrapper .heading-wrapper {
  text-align: center;
  margin-bottom: 4em;
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .heading-wrapper {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1023px) {
  .section--multi-col .section-wrapper .heading-wrapper .intro {
    margin-top: 3em;
    padding: 0 10em;
  }
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .heading-wrapper .intro {
    padding: 0 2em;
  }
}
.section--multi-col .section-wrapper .heading-wrapper .button-wrapper a {
  background-color: #E04F00;
  text-transform: none;
  padding: 0.5em 2.5em;
}
.section--multi-col .section-wrapper .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .cards {
    gap: 3rem;
    margin: 3rem 0;
  }
}
.section--multi-col .section-wrapper .cards div:nth-last-child(n+4):first-child, .section--multi-col .section-wrapper .cards div:nth-last-child(n+4):first-child ~ div {
  width: calc(25% - 1rem);
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .cards div:nth-last-child(n+4):first-child, .section--multi-col .section-wrapper .cards div:nth-last-child(n+4):first-child ~ div {
    width: 100%;
  }
}
.section--multi-col .section-wrapper .cards .numberOverlay.align--center {
  text-align: left;
}
.section--multi-col .section-wrapper .cards .numberOverlay h4 {
  z-index: 2;
  position: relative;
  top: -5rem;
  left: 2rem;
  font-size: 3rem;
  margin-bottom: -5rem;
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .cards .numberOverlay h4 {
    top: -8rem;
    left: 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .section--multi-col .section-wrapper .cards .numberOverlay h4 {
    top: -6rem;
    left: 2rem;
  }
}
.section--multi-col .section-wrapper .cards .numberOverlay img {
  width: 40% !important;
}
.section--multi-col .section-wrapper .cards .card {
  padding: 1em;
  width: calc(33% - 1rem);
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .cards .card {
    width: 100%;
    text-align: center;
    padding: 0 1em;
  }
}
.section--multi-col .section-wrapper .cards .card img {
  width: 30%;
}
.section--multi-col .section-wrapper .cards .card .card-title {
  color: #FFFFFF;
}
.section--multi-col .section-wrapper .cards .card .blurb {
  color: #FFFFFF;
}
.section--multi-col .section-wrapper .grids {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .grids div:nth-last-child(n+3):first-child, .section--multi-col .section-wrapper .grids div:nth-last-child(n+3):first-child ~ div {
    width: 100%;
  }
}
.section--multi-col .section-wrapper .grids .grid {
  padding: 1.5em;
  background: #1C515D 0% 0% no-repeat padding-box;
  border-radius: 0px 30px !important;
}
.section--multi-col .section-wrapper .grids .grid img {
  border-radius: 30px;
}
@media only screen and (min-width: 1023px) {
  .section--multi-col .section-wrapper .grids .grid {
    width: calc(33% - 1.2rem);
  }
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .grids .grid {
    width: 100%;
    text-align: center;
    padding: 0 1.5em;
  }
}
.section--multi-col .section-wrapper .grids .grid img {
  margin-top: 2em;
}
.section--multi-col .section-wrapper .grids .grid .grid-name {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}
.section--multi-col .section-wrapper .grids .grid .grid-title {
  color: #FFFFFF;
  text-align: center;
}
.section--multi-col .section-wrapper .grids .grid .grid-blurb {
  color: #FFFFFF;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  .section--multi-col .section-wrapper .statitics {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .statitics {
    width: 100%;
  }
}
.section--multi-col .section-wrapper .statitics .statistic {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 30px;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  .section--multi-col .section-wrapper .statitics .statistic {
    margin: 2em;
  }
}
@media only screen and (min-width: 769px) {
  .section--multi-col .section-wrapper .statitics .statistic {
    width: 100%;
    margin: 1em;
  }
}
@media only screen and (min-width: 1023px) {
  .section--multi-col .section-wrapper .statitics .statistic {
    width: calc(33% - 1rem) !important;
  }
}
.section--multi-col .section-wrapper .statitics .statistic .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.section--multi-col .section-wrapper .statitics .statistic .heading img {
  width: 3rem;
}
.section--multi-col .section-wrapper .statitics .statistic .heading .teal {
  color: #E04F00;
}
.section--multi-col .section-wrapper .statitics .statistic .content {
  width: 100%;
  margin-top: 1em;
  text-align: center;
}
.section--multi-col .section-wrapper .statitics .statistic .content p {
  color: #000000;
}

.faq {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  border-radius: 50px;
  /* Acordian styles */
  /* :checked */
  /* Icon */
}
.faq .tabs {
  margin-top: -18rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .faq {
    padding: 6rem 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .faq {
    padding: 6rem 1rem;
  }
}
.faq:before {
  content: "";
  position: relative;
  transform: rotate(2deg);
  display: flex;
  height: 300px;
  width: 100%;
  top: -7rem;
  left: 0rem;
}
@media only screen and (max-width: 768px) {
  .faq:before {
    height: 200px;
    width: 100%;
    top: -15rem;
    left: 5rem;
  }
}
@media only screen and (max-width: 550px) {
  .faq:before {
    top: -13rem;
    left: 1rem;
  }
}
@media only screen and (max-width: 413px) {
  .faq:before {
    top: -10rem;
  }
}
.faq a {
  color: #FFFFFF;
}
.faq .tab {
  position: relative;
  margin-bottom: 0.01em;
  width: 100%;
  overflow: hidden;
  background: #F8F8F8 0% 0% no-repeat padding-box;
  border-radius: 15px;
  padding: 0.5em;
}
.faq input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq label {
  position: relative;
  display: block;
  padding: 0 3em;
  font-size: 1rem;
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  .faq label {
    padding: 0 3em;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}
.faq .tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
}
.faq .tab-content p {
  margin: 1em 0;
  padding: 0 3rem;
}
.faq input:checked ~ .tab-content {
  max-height: fit-content;
}
.faq label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.faq input[type=checkbox] + label::before {
  content: "";
  color: #8f0b0b;
  font-size: 2rem;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.faq input[type=radio] + label::before {
  content: "";
  color: #8f0b0b;
  font-size: 2rem;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background: #FFFFFF;
}
.faq input[type=radio]:checked + label::before {
  color: #8f0b0b;
  background: #FFFFFF;
}
.faq label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 1.5em;
  color: #000000;
  height: 1.5em;
  text-align: center;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.faq input[type=checkbox] + label::after {
  content: "⌄";
  color: #45BAC1;
  font-size: 1.5rem;
  top: -0.6rem;
}
.faq input[type=radio] + label::after {
  content: "⌃";
  color: #45BAC1;
  font-size: 1.5rem;
  top: -0.6rem;
}
.faq input[type=checkbox]:checked + label::after {
  transform: rotate(180deg);
  color: #45BAC1;
  font-size: 1.5rem;
}
.faq input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
  color: #45BAC1;
  font-size: 1.5rem;
}

.section--faq {
  border-radius: 60px 60px 0px 0px !important;
  margin-top: -50px;
  z-index: 2;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--faq {
    border-radius: 30px 30px 0px 0px !important;
    margin-top: -30px;
  }
}
.section--faq.section {
  display: flex;
  max-width: 100%;
}
@media only screen and (min-width: 769px) {
  .section--faq.section .section-wrapper .two-col {
    gap: 6rem;
  }
}
.section--faq.section .section-wrapper .two-col .col-left {
  width: 40%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .section--faq.section .section-wrapper .two-col .col-left {
    width: 100%;
  }
}
@media only screen and (min-width: 1023px) {
  .section--faq.section .section-wrapper .two-col .col-left .heading-wrapper {
    margin-top: 5em !important;
  }
}
.section--faq.section .section-wrapper .two-col .col-left .heading-wrapper .heading {
  color: #E04F00;
}
.section--faq.section .section-wrapper .two-col .col-left .heading-wrapper .subheading {
  font-size: 1.5rem;
  color: #000000;
}
.section--faq.section .section-wrapper .two-col .col-left .heading-wrapper .blurb {
  color: #000000;
}
.section--faq.section .section-wrapper .two-col .col-left .heading-wrapper .button-wrapper a {
  text-align: center;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  padding: 0.5em 2.5em;
}
.section--faq.section .section-wrapper .two-col .col-right {
  width: 60%;
  float: right;
}
@media only screen and (max-width: 768px) {
  .section--faq.section .section-wrapper .two-col .col-right {
    width: 100%;
  }
}
.section--faq.section .section-wrapper .two-col .col-right .faq {
  margin-top: 0px;
}
.section--faq.section .section-wrapper .two-col .col-right .faq .tabs .tab {
  margin-bottom: 35px;
}
.section--faq.section .section-wrapper .two-col .col-right .faq .tabs .tab label {
  color: #333333;
}
.section--faq.section .section-wrapper .two-col .col-right .faq .tabs .tab .tab-content {
  color: #0C768D;
}

.tabs-wrapper {
  display: flex;
  align-items: center;
  margin-top: 5rem;
}
.tabs-wrapper.tabs-center {
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
.tabs-wrapper.tabs-left {
  flex-direction: row;
}
.tabs-wrapper.tabs-left .tabs {
  display: flex;
  flex-direction: column;
  min-width: 10em;
  align-items: stretch;
}
.tabs-wrapper.tabs-left .tabs .tab {
  margin: 0.2em;
  border-radius: 3px;
}
.tabs-wrapper.tabs-left .panel {
  min-height: 13em;
}
.tabs-wrapper .tab {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 2px;
  display: inline-block;
  border-radius: 3px 3px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.5019607843);
}
.tabs-wrapper .panels {
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.5019607843);
  min-height: 200px;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  padding: 20px;
}
.tabs-wrapper .panel {
  display: none;
  animation: fadein 0.8s;
}
@media only screen and (max-width: 768px) {
  .tabs-wrapper .panel {
    padding-top: 1.5rem;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs-wrapper .panel-title {
  font-size: 1.5em;
  font-weight: bold;
}
.tabs-wrapper .radio {
  display: none;
}
.tabs-wrapper #id-1:checked ~ .tabs #tab-1 {
  font-weight: 600;
}
.tabs-wrapper #id-2:checked ~ .tabs #tab-2 {
  font-weight: 600;
}
.tabs-wrapper #id-3:checked ~ .tabs #tab-3 {
  font-weight: 600;
}
.tabs-wrapper #id-4:checked ~ .tabs #tab-4 {
  font-weight: 600;
}
.tabs-wrapper #id-5:checked ~ .tabs #tab-5 {
  font-weight: 600;
}
.tabs-wrapper #id-6:checked ~ .tabs #tab-6 {
  font-weight: 600;
}
.tabs-wrapper #id-7:checked ~ .tabs #tab-7 {
  font-weight: 600;
}
.tabs-wrapper #id-8:checked ~ .tabs #tab-8 {
  font-weight: 600;
}
.tabs-wrapper #id-9:checked ~ .tabs #tab-9 {
  font-weight: 600;
}
.tabs-wrapper #id-10:checked ~ .tabs #tab-10 {
  font-weight: 600;
}
.tabs-wrapper #id-1:checked ~ .panels #panel-1 {
  display: block;
}
.tabs-wrapper #id-2:checked ~ .panels #panel-2 {
  display: block;
}
.tabs-wrapper #id-3:checked ~ .panels #panel-3 {
  display: block;
}
.tabs-wrapper #id-4:checked ~ .panels #panel-4 {
  display: block;
}
.tabs-wrapper #id-5:checked ~ .panels #panel-5 {
  display: block;
}
.tabs-wrapper #id-6:checked ~ .panels #panel-6 {
  display: block;
}
.tabs-wrapper #id-7:checked ~ .panels #panel-7 {
  display: block;
}
.tabs-wrapper #id-8:checked ~ .panels #panel-8 {
  display: block;
}
.tabs-wrapper #id-9:checked ~ .panels #panel-9 {
  display: block;
}
.tabs-wrapper #id-10:checked ~ .panels #panel-10 {
  display: block;
}

.section--banner {
  margin-bottom: 5em;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .section--banner {
    margin-top: -2rem;
  }
}
.section--banner .section-wrapper .two-col {
  display: flex;
  flex-direction: column-reverse;
  padding: 10%;
}
@media only screen and (max-width: 1180px) {
  .section--banner .section-wrapper .two-col {
    padding: 0 0 0 5% !important;
  }
}
@media only screen and (min-width: 1023px) {
  .section--banner .section-wrapper .two-col {
    padding: 0em 2em !important;
    flex-direction: row !important;
  }
}
@media only screen and (min-width: 1181px) {
  .section--banner .section-wrapper .two-col {
    padding: 0 0 0 0;
  }
}
.section--banner .section-wrapper .two-col .col {
  position: relative;
}
.section--banner .section-wrapper .two-col .col .heading-wrapper {
  z-index: 10;
}
@media only screen and (min-width: 1023px) {
  .section--banner .section-wrapper .two-col .col .heading-wrapper {
    margin-top: 5rem;
    width: 580px;
  }
}
@media only screen and (max-width: 768px) {
  .section--banner .section-wrapper .two-col .col .heading-wrapper {
    padding: 2em;
  }
}
.section--banner .section-wrapper .two-col .col .heading-wrapper .button-wrapper a {
  color: #FFFFFF;
  text-transform: capitalize;
}
.section--banner .section-wrapper .two-col .col .image-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(91deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.24) 100%) 0% 0% no-repeat padding-box;
  border-radius: 0px 0px 0px 151px;
}
.section--banner .section-wrapper .two-col .col .image-wrapper img {
  border-radius: 0px 0px 0px 151px;
}
@media only screen and (min-width: 1023px) {
  .section--banner .section-wrapper .two-col .left {
    width: 20%;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--banner .section-wrapper .two-col .left {
    z-index: 99999;
    position: relative;
  }
}
.section--banner .section-wrapper .two-col .right {
  float: right;
  z-index: -1;
  width: 85%;
}
@media only screen and (max-width: 768px) {
  .section--banner .section-wrapper .two-col .right {
    width: 100%;
  }
}
.section--banner .section-wrapper .blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: stretch;
  z-index: 2;
  position: relative;
  justify-content: center;
  margin: -15rem 50px 150px 50px;
}
.section--banner .section-wrapper .blocks a {
  background: #f8f8f8;
}
.section--banner .section-wrapper .blocks a:hover {
  background: rgb(45, 117, 140);
  opacity: 1;
  color: #FFFFFF;
}
.section--banner .section-wrapper .blocks a:hover .block .head .heading {
  color: #fff !important;
}
.section--banner .section-wrapper .blocks a:hover.heading {
  color: #FFFFFF;
}
.section--banner .section-wrapper .blocks .block:hover i {
  color: #fff !important;
}
.section--banner .section-wrapper .blocks .block:hover h4.heading {
  color: #fff !important;
}
@media only screen and (max-width: 1100px) {
  .section--banner .section-wrapper .blocks {
    margin: -12rem 50px 150px 50px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1022px) {
  .section--banner .section-wrapper .blocks {
    margin: 0rem 50px 150px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .section--banner .section-wrapper .blocks {
    margin: 0 30px 50px 30px;
  }
}
@media only screen and (max-width: 550px) {
  .section--banner .section-wrapper .blocks {
    margin: 50px 50px 80px 50px;
  }
}
.section--banner .section-wrapper .blocks .block {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section--banner .section-wrapper .blocks .block .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.section--banner .section-wrapper .blocks .block .head .heading {
  font-size: 1.5rem;
  color: #e04f00;
  width: 80%;
  float: left;
}
.section--banner .section-wrapper .blocks .block .head .block-arrow {
  width: 20%;
  float: right;
  color: #e04f00;
  margin-top: 0.5em;
}
.section--banner .section-wrapper .blocks .block .head i {
  color: #e04f00;
  font-size: 1.5rem;
}

.section--hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  min-height: 30em;
}
.section--hero .section-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .section--hero .section-wrapper {
    padding: 2em;
  }
}
@media only screen and (min-width: 769px) {
  .section--hero .section-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 1023px) {
  .section--hero .section-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 1180px) {
  .section--hero .section-wrapper {
    padding: 4em 2em;
  }
}
.section--hero .section-wrapper .heading {
  color: #FFFFFF;
}
.section--hero .section-wrapper .subheading {
  color: #FFFFFF;
}
.section--hero .section-wrapper .blurb {
  color: #FFFFFF;
}
.section--hero .section-wrapper .button-wrapper {
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  .section--hero .section-wrapper .button-wrapper {
    flex-direction: column;
  }
}
.section--hero .section-wrapper .button-wrapper a {
  text-transform: capitalize;
  background: #E04F00 0% 0% no-repeat padding-box;
}
@media only screen and (max-width: 768px) {
  .section--hero .section-wrapper .button-wrapper a {
    width: 100%;
  }
}

.hero-background-image {
  border-radius: 60px 60px 0px 0px;
  opacity: 0.8;
}
.hero-background-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 81, 94, 0.89);
  border-radius: inherit;
  z-index: 1;
}
.hero-background-image .blurb.halfway {
  width: 50%;
}
.hero-background-image .blurb.fullway {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .hero-background-image .blurb.halfway {
    width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .section--slider-testimonials {
    padding: 4em 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials {
    padding-top: 3em;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .cards {
    margin: 0rem 0 !important;
  }
}
.section--slider-testimonials .testimonial-block .content-section {
  text-align: center;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .content-section {
    margin: auto 5em;
  }
}
.section--slider-testimonials .testimonial-block .content-section .headline {
  font-family: "basic sans", sans-serif;
}
.section--slider-testimonials .testimonial-block .content-section .subheading {
  color: #000000;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .content-section .intro {
    padding: 0em 15em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .content-section .intro {
    padding: 0.5em 9em;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .content-section .intro {
    padding: 0em 4em;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .content-section .intro {
    padding: 0em;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders {
  margin: 30px 0 0 60px;
  position: relative;
}
.section--slider-testimonials .testimonial-block .two-col-sliders.two-col {
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .left {
    width: 50%;
    float: left;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .left {
    width: 90%;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right {
  position: relative;
  z-index: 2;
  margin-left: -3rem;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right {
    width: 50% !important;
    margin-left: -3rem;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right {
    width: 100%;
    margin-top: 2em;
    position: relative;
    padding-bottom: 5rem;
    margin-left: 0rem;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider {
  width: 100%;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide {
  padding: 1rem 0 2rem 0;
  background: #1C515D 0% 0% no-repeat padding-box;
  border-radius: 0px 80px;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide:before {
  font-size: 5rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  top: 0;
  position: absolute;
  margin-right: 90%;
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide:before {
    margin-right: 92%;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide {
    padding: 1.5rem;
    flex-direction: column;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .avatar {
    width: 5rem;
    margin-top: -120px;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .avatar {
    width: 40%;
    margin-top: 0;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .testimonial img {
  padding: 1rem 2rem;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content {
    width: 100%;
    padding-left: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content {
    width: 100%;
    padding-left: 0.5em;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline .headline-text {
  text-align: left;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline .headline-text .customer-name {
  font-size: 1.5rem;
  margin-block-start: 0;
  font-family: "basic sans", sans-serif;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline .headline-text .title {
  font-size: 0.9rem;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline .quote {
    margin-right: 2rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .headline .quote {
    font-size: 2rem;
    margin-right: 2rem;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .testimonial {
  font: normal normal normal 12px Avenir Book;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .testimonial iframe {
  width: 100%;
  height: 18rem;
  position: relative;
  border-radius: 20px;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .testimonial iframe {
    height: 15rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .testimonial iframe {
    height: 15rem;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .testimonial iframe {
    height: 10rem;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slide .content .button-wrapper a {
  text-align: center;
  display: block;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  font: normal normal 900 12px Avenir Book;
  width: 120px;
  padding: 0.6em;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .avatar {
  margin-top: auto;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .avatar {
    width: 20%;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .avatar img {
  border-radius: 30px;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .content {
  float: right;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .content {
    width: 100%;
    justify-content: space-around;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .cards-two-columns .content .testimonial img {
  width: 90%;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots {
  z-index: 10;
  position: relative;
  bottom: 0;
  padding-top: 2rem;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots {
    text-align: right;
    /* width: 30%; */
    /* margin-left: 30% !important; */
    bottom: 4.5rem;
    padding-right: 3rem;
  }
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots li {
    margin: 0 5px;
    width: 0.8em;
    opacity: 0.5;
  }
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots li a {
    color: #FFFFFF;
    font-size: 16px;
  }
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots li a::before {
    display: none;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-dots .slick-active {
  opacity: 1;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev {
  top: 81.5%;
  left: 73%;
}
@media only screen and (max-width: 1250px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev {
    top: 80.5%;
  }
}
@media only screen and (max-width: 1100px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev {
    top: 79.5%;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1080px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev {
    left: 70%;
  }
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev {
    z-index: 1;
  }
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev::before {
    content: "<";
    font-size: 16px;
  }
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-prev,
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 11;
}
.section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next {
  top: 81.5%;
}
@media only screen and (max-width: 1250px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next {
    top: 80.5%;
  }
}
@media only screen and (max-width: 1100px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next {
    top: 79.5%;
  }
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next {
    left: 92%;
  }
  .section--slider-testimonials .testimonial-block .two-col-sliders .right .testimonial-slider .slick-next::before {
    content: ">";
    font-size: 16px;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider {
  margin: 3em 0 6em 0;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider {
    padding-bottom: 1rem;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .slick-track {
  max-width: 1180px;
}
@media only screen and (max-width: 1250px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .slick-track {
    max-width: fit-content;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .slide:before {
  font-size: 5rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  top: 0;
  position: absolute;
  padding-bottom: 1rem;
  margin-left: 20%;
}
@media only screen and (min-width: 1920px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .slide:before {
    margin-left: 25%;
  }
}
@media only screen and (min-width: 1440px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .slide:before {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .slide:before {
    margin-right: 92%;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .slide.slick-center:before {
  color: #1c515d;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards {
  border-radius: 0px 100px;
  background: #1C515D 0% 0% no-repeat padding-box;
  text-align: left;
  width: 23rem;
  padding: 1.5rem;
  align-items: stretch !important;
  color: #fff;
  margin: 0 20px;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards:nth-child(2) {
  margin: 0 1rem !important;
}
@media only screen and (min-width: 769px) and (max-width: 1022px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards:nth-child(2) {
    margin: auto;
  }
}
@media only screen and (max-width: 1180px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards {
    margin: 0 20px !important;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards.slick-center {
  background: #f8f8f8 0% 0% no-repeat padding-box;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards.slick-center .content {
  color: #1C515D;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards {
    width: 21rem;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video {
    width: 100% !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video {
    width: 75%;
    margin: 0 auto;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video {
    padding-top: 0;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video img {
  width: 100%;
  position: relative;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .video img {
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards {
    padding: auto;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .avatar {
  width: 4rem;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .avatar {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .avatar {
    width: 7rem;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .avatar img {
  border-radius: 15px;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content {
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content {
    width: 80%;
    padding-left: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content {
    width: 100%;
    padding-left: 0.5em;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline {
  width: 100%;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .customer-name {
  font-size: 1.1rem;
  margin-block-start: 0;
  font-family: "basic sans", sans-serif;
}
@media only screen and (max-width: 1250px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .customer-name {
    font-size: 2rem;
    padding: 0;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .customer-name {
    line-height: 1;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .title {
  font-size: 0.8rem;
}
@media only screen and (max-width: 1250px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .headline-text .title {
    line-height: 1;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .quote {
  float: right;
  margin: -90px 30px 0 0;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .quote {
    width: 10%;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .quote {
    width: 20%;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .headline .quote .quotes-default {
  display: block;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content .testimonial {
  font: normal normal normal 12px Avenir Book;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 2em;
  padding-left: 1rem;
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video {
    flex-direction: column;
    gap: 2rem;
    padding-left: 0rem;
    text-align: center;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .avatar {
  flex: 0 0 auto;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .headline-text, .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .quote {
  display: inline-block;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .quote {
  margin: -100px 10px 0px 0;
  font-size: 2rem;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .quote {
    margin: 0 0 0 -40px !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .quote {
    margin: -50px 50px 0px 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .testimonial-block .one-col .col .slider .cards .content-with-video .content .quote {
    margin: 0;
  }
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards-with-video {
  display: flex;
  flex-direction: column;
  /*.avatar {
    @include tablet {
      width: 40%;
      margin-top: auto;
    }
  }*/
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards.slick-active.slick-current {
  background: #1c515d 0% 0% no-repeat padding-box !important;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards.slick-active.slick-current .content {
  color: #FFFFFF;
}
.section--slider-testimonials .testimonial-block .one-col .col .slider .cards.slick-active.slick-current .content .headline .quote .quotes-active {
  display: block;
}
.section--slider-testimonials .testimonial-block .one-col .col .button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section--slider-testimonials .testimonial-block .one-col .col .button-wrapper a {
  text-align: center;
  display: block;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  font: normal normal 900 12px Avenir Book;
  width: 120px;
  padding: 0.6em;
}
.section--slider-testimonials .generic-block {
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .generic-block {
    padding-top: 0rem;
  }
}
.section--slider-testimonials .generic-block .content .intro {
  text-align: center;
}
.section--slider-testimonials .generic-block .content .intro .subheading {
  font: normal normal bold 20px/26px Interstate;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.section--slider-testimonials .generic-block .content .intro .heading {
  font: normal normal bold 38px/45px Sofia Pro;
}
.section--slider-testimonials .generic-block .content .intro p {
  font: normal normal normal 15px/20px Interstate;
}
.section--slider-testimonials .generic-block .content .generic-slider {
  margin-top: 4rem;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards {
  border-radius: 30px;
  background: #F8F8F8 0% 0% no-repeat padding-box;
  text-align: center;
  width: 23rem;
  height: fit-content;
  margin: 0 20px;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .generic-block .content .generic-slider .cards {
    width: 21rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials .generic-block .content .generic-slider .cards {
    padding: 60px 30px;
  }
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .heading-cards {
  width: 100%;
  height: 30%;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .heading-cards .avatar {
  width: 25%;
  float: left;
  height: 100%;
  object-fit: fill;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .heading-cards .quotes {
  width: 10%;
  float: right;
  margin-top: -90px;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .heading-cards .quotes-default {
  display: block;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .heading-cards .quotes-active {
  display: none;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards .content {
  text-align: left;
  color: #283C69;
  margin-top: 45px;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards.slick-active.slick-current {
  background: #1c515d 0% 0% no-repeat padding-box !important;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards.slick-active.slick-current h4, .section--slider-testimonials .generic-block .content .generic-slider .cards.slick-active.slick-current .content {
  color: #FFFFFF;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards.slick-active.slick-current .quotes-default {
  display: none;
}
.section--slider-testimonials .generic-block .content .generic-slider .cards.slick-active.slick-current .quotes-active {
  display: block;
}

@media only screen and (min-width: 1200px) {
  .section-slider-testimonials-one-col {
    padding: 6em 0em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section-slider-testimonials-one-col {
    padding: 4em 0;
  }
}
@media only screen and (max-width: 768px) {
  .section-slider-testimonials-one-col {
    padding-top: 3em;
  }
}
@media only screen and (max-width: 550px) {
  .section-slider-testimonials-one-col {
    padding: 3em 1em 0em 1em;
  }
}

#lvideo-wrap {
  position: fixed;
  height: 100vh;
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
}
#lvideo-wrap, #lvideo-wrap:after, #lvideo-wrap .lvideo-overlay {
  left: 0;
  top: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
#lvideo-wrap:after, #lvideo-wrap .lvideo-overlay {
  height: 100%;
  position: absolute;
}
#lvideo-wrap:after {
  content: "";
  display: block;
  background-color: var(--primary-color);
  opacity: 0;
  z-index: -1;
}
#lvideo-wrap .lvideo-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lvideo-wrap video, #lvideo-wrap iframe {
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  background-color: #000;
  z-index: 10;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.16);
  display: block;
  max-width: 1280px;
  height: auto;
  width: 90%;
  aspect-ratio: 16/9;
}
#lvideo-wrap video.video, #lvideo-wrap iframe.video {
  object-fit: cover;
}
#lvideo-wrap .lvideo-close {
  background-color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5%;
  top: 5%;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: solid 2px var(--primary-color);
  padding: 0;
  transition: all 0.3s ease-in-out;
  z-index: 150;
  font-size: 2em;
  color: #FFFFFF;
}
#lvideo-wrap .lvideo-close:before, #lvideo-wrap .lvideo-close:after {
  content: "";
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease-in-out;
}
#lvideo-wrap .lvideo-close:before {
  transform: rotate(42deg);
}
#lvideo-wrap .lvideo-close:after {
  transform: rotate(-42deg);
}
#lvideo-wrap .lvideo-close:focus {
  outline: none;
}
#lvideo-wrap .lvideo-close:hover {
  opacity: 0.5;
}
#lvideo-wrap.active {
  opacity: 1;
  visibility: visible;
}
#lvideo-wrap.active:after {
  opacity: 0.5;
}

.play-btn-animated {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
  line-height: 100px;
  position: relative;
  padding: 0;
  cursor: pointer;
  border: 0;
}
.play-btn-animated:before, .play-btn-animated:after {
  content: "";
  border: 1px solid;
  border-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  animation: 1s it-zoom linear infinite;
}
.play-btn-animated:before {
  animation-delay: 0.5s;
}
.play-btn-animated:hover {
  transform: scale(1.1);
}
.play-btn-animated i {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #333;
  margin: auto;
}

.overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}

@keyframes it-zoom {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.testimonial-slider-one-col .slick-dots {
  position: relative;
  bottom: 0;
  padding-top: 2rem;
}

.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders {
  margin: 30px 0 0 60px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders {
    margin-left: 20px;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders.two-col {
  gap: 0;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .left {
    width: 60%;
    float: left;
    flex-basis: 60%;
    padding: 5em 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .left {
    display: none;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .left .image-wrapper {
  overflow: visible;
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .left .image-wrapper img {
  transform: scale(1.15, 1.2);
  max-width: none;
  border-radius: 1em;
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right {
  position: relative;
  z-index: 2;
  margin-left: -5rem;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right {
    width: 40% !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right {
    width: 100%;
    margin-top: 2em;
    position: relative;
    padding-bottom: 5rem;
    margin-left: 0rem;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right:before {
  font-size: 5rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  top: 0;
  position: absolute;
  margin-right: 90%;
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right:before {
    margin-right: 92%;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right {
    padding: 1.5rem;
    flex-direction: column;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards {
  background: #1C515D 0% 0% no-repeat padding-box;
  border-radius: 0px 80px;
  padding: 1rem 0 !important;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards {
    margin-top: 6.6em !important;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards {
    margin-top: -4em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .avatar {
    width: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .avatar {
    width: 40%;
    margin-top: 2em;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .avatar img {
  border-radius: 50%;
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .testimonial img {
    padding: 1rem 4rem !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .testimonial img {
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .testimonial img {
    padding: 1rem;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content {
    width: 100%;
    padding-left: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content {
    width: 100%;
    padding-left: 0.5em;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
@media only screen and (min-width: 1023px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .headline-text {
  text-align: left;
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .headline-text .customer-name {
  font-size: 1.5rem;
  margin-block-start: 0;
  font-family: "basic sans", sans-serif;
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .headline-text .customer-name {
    font-size: 1.2rem;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .headline-text .title {
  font-size: 0.9rem;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .quote {
    margin-right: 2rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .headline .quote {
    font-size: 2rem;
    margin-right: 2rem;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .testimonial {
  font: normal normal normal 12px Avenir Book;
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .testimonial iframe {
  width: 100%;
  height: 18rem;
  position: relative;
  border-radius: 20px;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .testimonial iframe {
    height: 15rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .testimonial iframe {
    height: 15rem;
  }
}
@media only screen and (max-width: 550px) {
  .section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .testimonial iframe {
    height: 10rem;
  }
}
.section--slider-testimonials-col-with-cover .testimonial-slider-col-with-cover .slide .two-col-sliders .right .cards .content .button-wrapper a {
  text-align: center;
  display: block;
  color: #FFFFFF;
  background-color: #E04F00;
  border-radius: 50px;
  text-transform: none;
  font: normal normal 900 12px Avenir Book;
  width: 120px;
  padding: 0.6em;
}
@media only screen and (min-width: 769px) {
  .section--slider-testimonials-col-with-cover .slick-dots {
    bottom: -3em;
  }
}

@media only screen and (min-width: 1023px) {
  .section--two-col-all {
    padding: 6em 2em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--two-col-all {
    padding: 3em 6em;
  }
}
@media only screen and (max-width: 768px) {
  .section--two-col-all {
    padding: 3em 2em;
  }
}
.section--two-col-all .two-col {
  align-items: center;
}
.section--two-col-all .reverse .section-wrapper .two-col {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .section--two-col-all .reverse .section-wrapper .two-col {
    flex-direction: column-reverse;
  }
}

.two-col .col .heading-wrapper .heading {
  color: #E04F00;
}
.two-col .col .heading-wrapper .subheading {
  color: #000000;
}
.two-col .col .heading-wrapper:first-child .image-wrapper {
  padding: 1em;
}
.two-col .col .heading-wrapper:nth-child(2) .button-wrapper {
  display: flex;
  gap: 1em;
  margin: 2em 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .two-col .col .heading-wrapper:nth-child(2) .button-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.two-col .col .button-wrapper a {
  text-align: center;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: capitalize;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .two-col .col .image-wrapper {
    margin-top: 3em;
  }
}
.two-col .col .sbs-list {
  list-style-type: none;
}
@media only screen and (min-width: 769px) {
  .two-col .col .sbs-list {
    column-count: 2;
    column-gap: 2em;
    column-span: none;
  }
  .two-col .col .sbs-list .top-icon {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
.two-col .col .sbs-list .top-icon .image-wrapper {
  margin: 0 0 1em 0;
}
.two-col .col .sbs-list .top-icon .title {
  font-size: 1.5rem;
  font-family: "basic sans", sans-serif;
}
.two-col .col .sbs-list-icons {
  margin: 0;
  padding: 0;
  padding-inline-start: 0px;
}
.two-col .cards-list {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .two-col .cards-list {
    gap: 1rem;
  }
}
.two-col .cards {
  flex-basis: calc(50% - 3rem) !important;
}
@media only screen and (max-width: 768px) {
  .two-col .cards h3 {
    text-align: center;
  }
}
.two-col .cards ul {
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .two-col .cards ul {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .two-col .cards {
    flex-basis: 100% !important;
  }
}

.button-wrapper a {
  opacity: 1 !important;
}
.button-wrapper a:hover {
  opacity: 0.8 !important;
}

.top-icon img {
  max-height: 80px;
}

.menu-dropdown .dropdown-btn {
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  text-transform: capitalize;
  background-color: #FFFFFF;
  color: #E04F00;
  width: 70%;
}
.menu-dropdown .dropdown-btn span {
  float: right;
}
.menu-dropdown .dropdown-content {
  display: none;
  background-color: #FFFFFF;
  list-style: none;
  padding: 1em;
  margin: 0;
  column-count: 2;
  width: 70%;
}
.menu-dropdown .dropdown-content li a {
  color: #000000;
  padding: 1em 0.5em;
  text-decoration: none;
  display: block;
}
.menu-dropdown .dropdown-content li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-right: 1em;
}
.menu-dropdown .dropdown-content li a:hover {
  color: #E04F00;
}
.menu-dropdown .dropdown-btn.active + .dropdown-content {
  display: block;
}

@media only screen and (min-width: 1023px) {
  .section--tab-content {
    padding: 6em 0em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--tab-content {
    padding: 3em 0em;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content {
    padding: 3em 1em;
  }
}
.section--tab-content .section {
  max-width: 1180px;
}
.section--tab-content .section .section-wrapper {
  max-width: 1300px;
}
.section--tab-content .section .section-wrapper .heading-wrapper {
  text-align: center;
}
.section--tab-content .section .section-wrapper .heading-wrapper .heading {
  color: #E04F00;
}
.section--tab-content .section .section-wrapper .heading-wrapper .sub-heading {
  font-size: 1.5rem;
  color: #000000;
}
@media only screen and (min-width: 1023px) {
  .section--tab-content .section .section-wrapper .heading-wrapper .blurb {
    padding: 0em 5em !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--tab-content .section .section-wrapper .heading-wrapper .blurb {
    padding: 0em 5em;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .heading-wrapper .blurb {
    padding: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs {
  width: 30%;
  background: #1C515D 0% 0% no-repeat padding-box;
  border-radius: 0px 100px;
  color: #FFFFFF;
}
@media only screen and (min-width: 769px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs {
    min-height: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs {
    width: 100%;
    padding: 1em 0;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each {
  width: 100%;
  display: flex;
  align-items: flex-start;
  box-shadow: none;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each {
    margin-top: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each {
    align-items: center;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .tab {
  display: flex;
  align-items: center;
  box-shadow: none;
  width: auto;
}
@media only screen and (min-width: 1023px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .tab {
    margin: 1rem 0 1rem 2rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .tab {
    width: 100%;
    justify-content: center;
    margin: 0.5em 0;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .tab .tab-text {
  margin-right: 10px;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .block-arrow {
  margin-left: 10px;
  width: auto;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .block-arrow img {
  display: block;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .tabs .tabs-each .block-arrow img {
    width: 15px;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels {
  width: 70%;
  box-shadow: none;
  padding: 0;
}
@media only screen and (min-width: 1023px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels {
    height: max-content;
  }
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels {
    display: contents;
    width: 100%;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col {
    width: 100%;
    flex-direction: column;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col img {
  border-radius: 30px;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .col {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .col {
    width: 100%;
  }
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .col .panel-title {
  font-size: 1.5rem;
  color: #1C515D;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .col .panel-text {
  color: #000000;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .col .button-wrapper a {
  font: normal normal 900 15px Avenir Book;
  color: #FFFFFF;
  text-transform: capitalize;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .panel-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .panel-content img {
  border-radius: 30px;
}
@media only screen and (max-width: 768px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .panel-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 769px) {
  .section--tab-content .section .section-wrapper .tabs-wrapper .panels .panel .two-col .panel-content {
    margin-left: 2em;
  }
}

.section--blocks {
  border-radius: 60px 60px 0px 0px !important;
  overflow: hidden;
}
@media only screen and (min-width: 1023px) {
  .section--blocks {
    margin: 5em 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--blocks {
    margin-bottom: 6em;
  }
}
.section--blocks .section-wrapper .multi-col {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .section--blocks .section-wrapper .multi-col {
    padding: 10%;
  }
}
@media only screen and (min-width: 1023px) {
  .section--blocks .section-wrapper .multi-col {
    padding: 0 0 0 5% !important;
  }
}
.section--blocks .section-wrapper .multi-col .heading-wrapper {
  width: 100%;
}
@media only screen and (min-width: 1023px) {
  .section--blocks .section-wrapper .multi-col .heading-wrapper {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section--blocks .section-wrapper .multi-col .heading-wrapper {
    padding: 2em;
  }
}
.section--blocks .section-wrapper .multi-col .heading-wrapper .heading {
  color: #E04F00;
}
.section--blocks .section-wrapper .multi-col .heading-wrapper .subheading {
  color: #000000;
}
.section--blocks .section-wrapper .multi-col .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.section--blocks .section-wrapper .multi-col .cards div:nth-last-child(n+3):first-child, .section--blocks .section-wrapper .multi-col .cards div:nth-last-child(n+3):first-child ~ div {
  width: calc(33% - 20px);
}
@media only screen and (max-width: 768px) {
  .section--blocks .section-wrapper .multi-col .cards div:nth-last-child(n+3):first-child, .section--blocks .section-wrapper .multi-col .cards div:nth-last-child(n+3):first-child ~ div {
    width: 100%;
  }
}
.section--blocks .section-wrapper .multi-col .cards .card {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 2em;
}
@media only screen and (max-width: 768px) {
  .section--blocks .section-wrapper .multi-col .cards .card {
    width: 100%;
    padding: 0 1em;
    margin: 1em;
  }
}
.section--blocks .section-wrapper .multi-col .cards .card .heading {
  color: #1C515E;
}
.section--blocks .section-wrapper .multi-col .cards .card .blurb {
  color: #000000;
}
.section--blocks .section-wrapper .multi-col .cards .card:hover {
  background: #45BAC1 0% 0% no-repeat padding-box;
}
.section--blocks .section-wrapper .multi-col .cards .card:hover a {
  opacity: 1;
}
.section--blocks .section-wrapper .multi-col .cards .card:hover .heading, .section--blocks .section-wrapper .multi-col .cards .card:hover .blurb {
  color: #FFFFFF;
}
.section--blocks .section-wrapper .multi-col .cards .button-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
}
.section--blocks .section-wrapper .multi-col .cards .button-wrapper a {
  text-transform: capitalize;
}
.section--blocks .section-wrapper .multi-col .blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: stretch;
}
@media only screen and (min-width: 1023px) {
  .section--blocks .section-wrapper .multi-col .blocks {
    margin: -300px 50px 150px 50px !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--blocks .section-wrapper .multi-col .blocks {
    margin: 0 30px 50px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .section--blocks .section-wrapper .multi-col .blocks {
    margin: 50px 50px 80px 50px;
  }
}
.section--blocks .section-wrapper .multi-col .blocks .block {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section--blocks .section-wrapper .multi-col .blocks .block .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.section--blocks .section-wrapper .multi-col .blocks .block .head .heading {
  color: #e04f00;
  width: 80%;
  float: left;
}
.section--blocks .section-wrapper .multi-col .blocks .block .head .block-arrow {
  width: 20%;
  float: right;
  margin-top: 0.5em;
}
.section--blocks .section-wrapper .multi-col .blocks .button-wrapper a {
  color: #FFFFFF;
  text-transform: capitalize;
  background: #E04F00 0% 0% no-repeat padding-box;
  border-radius: 25px;
}

.section--contact-form {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}
@media only screen and (min-width: 1023px) {
  .section--contact-form {
    padding: 0 5em;
  }
}
@media only screen and (max-width: 768px) {
  .section--contact-form {
    padding: 2em;
  }
}
.section--contact-form .reverse .section-wrapper .two-col {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .reverse .section-wrapper .two-col {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 769px) {
  .section--contact-form .section-wrapper .two-col {
    gap: 6rem;
  }
}
.section--contact-form .section-wrapper .two-col .col {
  width: 50%;
}
.section--contact-form .section-wrapper .two-col .col-left {
  float: left;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .section-wrapper .two-col .col-left {
    width: 100%;
  }
}
.section--contact-form .section-wrapper .two-col .col-right {
  float: right;
}
@media only screen and (min-width: 1023px) {
  .section--contact-form .section-wrapper .two-col .col-right {
    margin-left: auto !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--contact-form .section-wrapper .two-col .col-right {
    margin-left: 5em;
  }
}
@media only screen and (max-width: 768px) {
  .section--contact-form .section-wrapper .two-col .col-right {
    width: 100%;
  }
}
.section--contact-form .section-wrapper .two-col .col-right .heading-wrapper {
  margin-top: 0 !important;
}
.section--contact-form .section-wrapper .two-col .col-right .heading-wrapper .heading {
  color: #E04F00;
}
.section--contact-form .section-wrapper .two-col .col-right .heading-wrapper .subheading {
  font-size: 1.5rem;
  color: #000000;
}
.section--contact-form .section-wrapper .two-col .col-right .heading-wrapper .blurb {
  color: #000000;
}
.section--contact-form .section-wrapper .two-col .col-right .contact-form {
  margin-bottom: 4em;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .section-wrapper .two-col .col-right .contact-form {
    margin-bottom: 2em;
  }
}

.contact-form-background-image {
  opacity: 0.9;
}
.contact-form-background-image:before {
  content: "";
  background: rgba(28, 81, 94, 0.89);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: 1;
}

.gform_wrapper .gform_heading {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield div span label {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield div span input {
  border-radius: 31px;
  height: 3em;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .gform_wrapper form .gform_body .gform_fields .gfield div span input {
    margin: 1em 0;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield div input {
  border-radius: 31px;
  height: 3em;
  color: #000000;
}
@media only screen and (min-width: 1023px) {
  .gform_wrapper form .gform_body .gform_fields .gfield div input {
    margin: -0.5em 0 -2em 0;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield div input::-webkit-outer-spin-button, .gform_wrapper form .gform_body .gform_fields .gfield div input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.gform_wrapper form .gform_body .gform_fields .gfield div input[type=number] {
  -moz-appearance: textfield !important;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_description {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_textarea textarea {
  border-radius: 20px;
  color: #000000;
}
.gform_wrapper form .gform_footer input {
  display: block !important;
  background-color: #E04F00 !important;
  border-radius: 50px !important;
  width: 150px !important;
}

.section--one-col {
  background: #F8F8F8 0% 0% no-repeat padding-box;
  border-radius: 60px 60px 0px 0px;
}
@media only screen and (min-width: 1023px) {
  .section--one-col {
    padding: 6em 0 !important;
  }
}
@media only screen and (min-width: 769px) {
  .section--one-col {
    padding: 3em 6em;
  }
}
@media only screen and (max-width: 768px) {
  .section--one-col {
    padding: 3em 2em;
  }
}
.section--one-col .section-wrapper .one-col .heading-wrapper {
  text-align: center;
  margin-bottom: 4em;
}
@media only screen and (max-width: 768px) {
  .section--one-col .section-wrapper .one-col .heading-wrapper {
    margin-bottom: 2em;
  }
}
.section--one-col .section-wrapper .one-col .heading-wrapper .title {
  color: #E04F00;
}
.section--one-col .section-wrapper .one-col .heading-wrapper .subheading {
  font: normal normal 300 18px Avenir Book;
  color: #000000;
}
.section--one-col .section-wrapper .one-col .heading-wrapper .blurb {
  color: #000000;
}
@media only screen and (min-width: 1023px) {
  .section--one-col .section-wrapper .one-col .heading-wrapper .blurb {
    padding: 0 4em;
  }
}
@media only screen and (max-width: 768px) {
  .section--one-col .section-wrapper .one-col .heading-wrapper .blurb {
    padding: 0 2em;
  }
}
.section--one-col .section-wrapper .one-col .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: stretch;
  background: #1C515D 0% 0% no-repeat padding-box;
  padding: 2em 0;
  border-radius: 0px 100px;
}
@media only screen and (max-width: 768px) {
  .section--one-col .section-wrapper .one-col .block {
    border-radius: 0px 50px;
  }
}
.section--one-col .section-wrapper .one-col .block .card {
  padding: 1.5em;
  width: calc(30% - 1rem);
}
@media only screen and (max-width: 768px) {
  .section--one-col .section-wrapper .one-col .block .card {
    width: 100%;
    text-align: center;
    padding: 0 1em;
  }
}
.section--one-col .section-wrapper .one-col .block .card .title {
  text-align: center;
  color: #FFFFFF;
}
.section--one-col .section-wrapper .one-col .block .card:hover img {
  opacity: 0.5;
}
.section--one-col .section-wrapper .one-col .block .card:hover .title {
  text-decoration: underline;
}

.section-newsroom-two-col {
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .heading-wrapper {
    margin-top: 5em !important;
  }
}
.section-newsroom-two-col .two-col .col {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .two-col .col {
    width: 100%;
  }
}
.section-newsroom-two-col .two-col .col .image-wrapper {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .two-col .col .posts {
    margin-top: 2em;
    gap: 1rem;
    display: grid;
  }
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .two-col .col .posts .post-div {
    height: 380px;
  }
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .two-col .col .posts .post-div .post {
    height: 380px;
  }
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .two-col .col .posts .button-wrapper {
    text-align: center;
  }
}
.section-newsroom-two-col .posts-three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .section-newsroom-two-col .posts-three-columns {
    margin-top: 1rem;
  }
}
.section-newsroom-two-col .posts-three-columns .post-div {
  display: flex;
  flex-basis: 100%;
  height: 380px;
}
@media only screen and (min-width: 1023px) {
  .section-newsroom-two-col .posts-three-columns .post-div {
    flex-basis: calc(33.33% - 1rem) !important;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1080px) {
  .section-newsroom-two-col .posts-three-columns .post-div {
    height: 450px !important;
  }
}
.section-newsroom-two-col .posts-three-columns .button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-newsroom-two-col .posts-three-columns .button-wrapper a {
  text-transform: none;
}

.post {
  background: #1C515D;
  border-radius: 20px;
  color: #FFFFFF;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  padding: 2em;
}
@media only screen and (max-width: 768px) {
  .post {
    padding: 1em;
  }
}
.post .post-header {
  display: flex;
  flex-direction: column;
}
.post .post-header .post-info {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}
.post .post-header .post-info img {
  float: left;
  height: auto;
}
.post .post-header .post-info h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-top: 1em;
}
.post .post-header .post-date {
  font-size: 15px;
  width: 50%;
}
.post .post-content {
  font-size: 12px;
}

.section-newsroom-cards .section-wrapper .grids .grid {
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .section-newsroom-cards .section-wrapper .grids .grid {
    margin: 0em;
  }
}
.section-newsroom-cards .section-wrapper img {
  margin-bottom: 2rem;
}

.media-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.media-button-wrapper a {
  text-transform: capitalize;
}

#press-release .two-col {
  align-items: flex-start !important;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  pointer-events: auto;
}
.modal-wrapper .modal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  border-radius: 2rem;
  z-index: 1;
  overflow: auto;
}
@media only screen and (min-width: 769px) {
  .modal-wrapper .modal {
    width: 50%;
    height: 50%;
    padding: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .modal-wrapper .modal {
    width: 80%;
    height: 80%;
    padding: 2rem;
  }
}
.modal-wrapper .modal .heading,
.modal-wrapper .modal .subheading {
  margin: 0 auto;
  text-align: center;
}
.modal-wrapper .modal .image-wrapper {
  width: 70%;
}
.modal-wrapper .modal .image-wrapper img {
  border-radius: 2rem;
  margin: 50px 0;
}
.modal-wrapper .modal .video {
  margin: 0 auto;
  text-align: center;
}
.modal-wrapper .modal .video iframe {
  border-radius: 1rem;
  width: 95%;
  height: fit-content;
}
@media only screen and (min-width: 1023px) {
  .modal-wrapper .modal .video iframe {
    width: 100%;
    height: revert-layer;
  }
}
.modal-wrapper .close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.modal-wrapper .close:hover {
  background: #000000;
}

.section--featured-blogs {
  padding: 3rem 0;
}
.section--featured-blogs .btn {
  text-transform: none;
}
.section--featured-blogs .featured_blogs {
  justify-content: center;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .section--featured-blogs .featured_blogs {
    text-align: center;
  }
}
.section--featured-blogs .featured_blogs .blog-card {
  padding: 1rem 2rem;
}
.section--featured-blogs .featured_blogs .blog-card h4 {
  color: #1C515D;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: left;
}
.section--featured-blogs .featured_blogs .blog-card p {
  text-align: left;
}
.section--featured-blogs .featured_blogs .blog-card img {
  border-radius: 30px;
}
.section--featured-blogs .featured_blogs .blog-card .button-wrapper .btn {
  text-transform: none;
  padding: 1rem 3rem;
}

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