@keyframes slideInUP {
  0% {
    transform: translateY(-100vh); }
  100% {
    transform: translateY(0); } }

@keyframes fade {
  from {
    opacity: 0.4; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
:root{
  --jr-green: #009745;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }
  *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 62.5em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 43.75em) {
    html {
      font-size: 50%; } }

body {
  font-family: aileron, sans-serif !important;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  overflow-x: hidden;
  color: #3d3d3d;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.header {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom right, rgba(61, 61, 61, 0.7), rgba(61, 61, 61, 0.6)), url(../../stock-photos/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column; }
  @media only screen and (max-width: 31.25em) {
    .header {
      padding: 2rem; } }

.nav {
  padding: 4rem 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20000;
  transition: all 0.7s ease; }
  @media only screen and (max-width: 31.25em) {
    .nav {
      padding: 2rem; } }
  .nav__active {
    background-color: rgba(255, 255, 255, 0.74);
    -webkit-backdrop-filter: blur(4px);
    -o-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-bottom: 0.08rem solid #eeeeee;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    padding: 2rem 4rem; }
    @media only screen and (max-width: 31.25em) {
      .nav__active {
        padding: 2rem; } }
  .nav__left {
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem; }
    .nav__left--logo {
      height: 5rem;
      text-decoration: none;
      display: block; }
      .nav__left--logo-1 {
        display: block; }
      .nav__left--logo-2 {
        display: none; }
      .nav__left--logo img {
        height: 100%;
        display: block;
        object-fit: cover; }
  .nav__active .nav__left--logo-1 {
    display: none; }
  .nav__active .nav__left--logo-2 {
    display: block; }
  .nav__right {
    display: flex;
    align-items: center; }
  .nav__contact--cta-container {
    margin-right: 3rem; }
    @media only screen and (max-width: 31.25em) {
      .nav__contact--cta-container {
        display: none; } }
  .nav__toggler--container {
    display: flex;
    padding: 1rem;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer; }
  .nav__toggler {
    width: 4rem;
    height: 0.2rem;
    background-color: #fff;
    margin: 0.4rem 0; }
    .nav__toggler:last-child {
      width: 2.8rem; }
  .nav__active .nav__toggler {
    background-color: #3d3d3d; }
  .nav__container {
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 30000000;
    transition: all 1s ease;
    transform: translateY(-130vh);
    visibility: hidden;
    overflow: auto; }
    .nav__container > div {
      display: flex;
      justify-content: space-between;
      min-height: 100vh;
      width: 100%; }
    .nav__container--active {
      transform: translateY(0);
      visibility: visible; }
    .nav__container--left, .nav__container--right {
      width: 50%;
      padding: 4rem; }
    .nav__container--left {
      background: linear-gradient(to bottom right, rgba(0, 151, 69, 0.96), rgba(0, 151, 69, 0.92));
      padding-left: 8rem; }
      @media only screen and (max-width: 50em) {
        .nav__container--left {
          padding: 4rem; } }
      @media only screen and (max-width: 37.5em) {
        .nav__container--left {
          display: none; } }
    .nav__container--right {
      overflow-y: auto;
      background: linear-gradient(to bottom right, rgba(225, 194, 55, 0.96), rgba(225, 194, 55, 0.92)), url(../../stock-photos/green-background.svg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      padding: 4rem 8rem; }
      @media only screen and (max-width: 50em) {
        .nav__container--right {
          padding: 4rem; } }
      @media only screen and (max-width: 37.5em) {
        .nav__container--right {
          width: 100%;
          padding: 2rem; } }
      .nav__container--right-image {
        display: none; }
        @media only screen and (max-width: 37.5em) {
          .nav__container--right-image {
            display: flex; } }
    .nav__container--close-wrapper {
      display: flex;
      width: 100%;
      justify-content: flex-end; }
      @media only screen and (max-width: 37.5em) {
        .nav__container--close-wrapper {
          justify-content: space-between;
          align-items: center; } }
    .nav__container--close--container {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
      padding: 0.5rem;
      border-radius: 10rem;
      cursor: pointer;
      transition: all 0.2s linear; }
      .nav__container--close--container:hover {
        background-color: #e6e6e6; }
      @media only screen and (max-width: 37.5em) {
        .nav__container--close--container {
          padding: 0.8rem; } }
    .nav__container--close--cta {
      background-color: #e1c237;
      width: 3.2rem;
      height: 3.2rem;
      border-radius: 50%;
      border: none;
      outline: none;
      box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 1.2rem;
      color: #ededed; }
      @media only screen and (max-width: 37.5em) {
        .nav__container--close--cta {
          height: 4rem;
          width: 4rem;
          font-size: 1.4rem; } }
    .nav__container--close--label {
      font-size: 1.4rem;
      font-weight: 600;
      color: #787c80;
      margin: 0 2.2rem; }
      @media only screen and (max-width: 37.5em) {
        .nav__container--close--label {
          font-size: 1.6rem; } }
    .nav__container--link-wrapper {
      display: flex;
      flex-direction: column;
      margin-top: 3rem;
      max-height: 80vh;
      overflow-y: auto;
      /* Track */
      /* Handle */
      /* Handle on hover */ }
      .nav__container--link-wrapper::-webkit-scrollbar {
        transition: all 0.3s;
        width: 8px; }
      .nav__container--link-wrapper::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #b5b5c3;
        border-radius: 10px; }
      .nav__container--link-wrapper::-webkit-scrollbar-thumb {
        background: #ededed;
        border-radius: 10px; }
      .nav__container--link-wrapper::-webkit-scrollbar-thumb:hover {
        background: #d4d4d4; }
    .nav__container--link, .nav__container--link:link, .nav__container--link:visited {
      text-decoration: none;
      color: #fff;
      font-size: 2.4rem;
      padding-bottom: 0.8rem;
      cursor: pointer; }
      @media only screen and (max-width: 37.5em) {
        .nav__container--link, .nav__container--link:link, .nav__container--link:visited {
          font-size: 2.4rem; } }
      .nav__container--link:hover, .nav__container--link:link:hover, .nav__container--link:visited:hover {
        color: #e6e6e6; }
    .nav__container--link-active {
      color: #3d3d3d !important;
      text-decoration: underline !important; }
      .nav__container--link-active:hover {
        color: #575757; }

.hero {
  flex: 1;
  align-self: center;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 70%;
  min-height: 100vh; }
  @media only screen and (max-width: 50em) {
    .hero {
      width: 90%; } }
  .hero__text--main {
    padding-bottom: 2rem;
    color: #fff;
    font-size: 5.6rem;
    font-weight: 600;
    letter-spacing: 0.3rem; }
    @media only screen and (max-width: 31.25em) {
      .hero__text--main {
        font-size: 4.4rem; } }
  .hero__text--sub {
    padding-bottom: 4rem;
    color: #ededed;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    width: 80%; }
    @media only screen and (max-width: 50em) {
      .hero__text--sub {
        width: 90%; } }
  .hero__card--container {
    width: 100%;
    padding: 0 8rem;
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 50em) {
      .hero__card--container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 4rem 2rem;
        margin-bottom: 0; } }

.footer {
  background-color: #272727;
  padding: 2rem 8rem;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 31.25em) {
    .footer {
      padding: 2rem; } }
  .footer__top, .footer__bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    width: 85%; }
    @media only screen and (max-width: 62.5em) {
      .footer__top, .footer__bottom {
        width: 90%; } }
    @media only screen and (max-width: 50em) {
      .footer__top, .footer__bottom {
        width: 100%;
        flex-wrap: wrap; } }
  .footer__bottom {
    align-items: center;
    padding: 2rem; }
    .footer__bottom > *,
    .footer__bottom > div {
      display: flex;
      width: 100%; }
      @media only screen and (max-width: 50em) {
        .footer__bottom > *,
        .footer__bottom > div {
          flex-wrap: wrap; } }
    @media only screen and (max-width: 50em) {
      .footer__bottom {
        flex-wrap: wrap; } }
    .footer__bottom--logo {
      color: #fff;
      font-size: 3.2rem;
      padding-right: 4rem; }
      @media only screen and (max-width: 50em) {
        .footer__bottom--logo {
          width: 100%;
          padding: 2rem 0; } }
    .footer__bottom--line {
      width: 1px;
      height: 8rem;
      background-color: #e1c237; }
      @media only screen and (max-width: 50em) {
        .footer__bottom--line {
          display: none; } }
    .footer__bottom--copyright {
      padding-left: 4rem;
      padding-right: 2rem;
      flex: 1; }
      @media only screen and (max-width: 50em) {
        .footer__bottom--copyright {
          width: 100%;
          padding: 0; } }
      .footer__bottom--copyright-text {
        color: #787c80;
        font-size: 1.3rem;
        font-weight: 500; }
        @media only screen and (max-width: 50em) {
          .footer__bottom--copyright-text {
            font-size: 1.5rem; } }
      .footer__bottom--copyright-links {
        padding: 1rem 0; }
        .footer__bottom--copyright-links a,
        .footer__bottom--copyright-links a:link,
        .footer__bottom--copyright-links a:visited {
          color: #fff;
          font-size: 1.2rem;
          font-weight: 500;
          line-height: 1.6;
          text-decoration: none;
          padding-bottom: 0.5rem;
          display: inline-block;
          padding-right: 2rem;
          transition: color 0.2s; }
          @media only screen and (max-width: 50em) {
            .footer__bottom--copyright-links a,
            .footer__bottom--copyright-links a:link,
            .footer__bottom--copyright-links a:visited {
              font-size: 1.4rem; } }
          .footer__bottom--copyright-links a:hover,
          .footer__bottom--copyright-links a:link:hover,
          .footer__bottom--copyright-links a:visited:hover {
            color: #787c80; }
  .footer__link--container {
    width: 25%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem; }
    @media only screen and (max-width: 50em) {
      .footer__link--container {
        width: 50%; } }
  .footer__link--heading {
    color: #fff;
    font-size: 1.6rem;
    padding: 1rem 0;
    padding-bottom: 2rem;
    text-transform: uppercase; }
    @media only screen and (max-width: 50em) {
      .footer__link--heading {
        font-size: 1.8rem; } }
  .footer__link--whatsapp, .footer__link--white, .footer__link, .footer__link:link, .footer__link:visited {
    color: #787c80;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    padding-bottom: 0.5rem;
    transition: color 0.2s; }
    .footer__link--whatsapp:hover, .footer__link--white:hover, .footer__link:hover, .footer__link:link:hover, .footer__link:visited:hover {
      color: #ededed; }
    @media only screen and (max-width: 50em) {
      .footer__link--whatsapp, .footer__link--white, .footer__link, .footer__link:link, .footer__link:visited {
        font-size: 1.5rem; } }
  .footer__link--whatsapp {
    color: #e1c237 !important;
    display: flex;
    align-items: center; }
    .footer__link--whatsapp i {
      font-size: 2.2rem;
      display: inline-block;
      margin-right: 0.5rem; }
  .footer__link--white {
    color: #fff; }

.ml-1 {
  margin-left: 1rem !important; }

.ml-2 {
  margin-left: 2rem !important; }

.ml-3 {
  margin-left: 3rem !important; }

.ml-4 {
  margin-left: 4rem !important; }

.ml-5 {
  margin-left: 5rem !important; }

.ml-6 {
  margin-left: 6rem !important; }

.mr-1 {
  margin-right: 1rem !important; }

.mr-2 {
  margin-right: 2rem !important; }

.mr-3 {
  margin-right: 3rem !important; }

.mr-4 {
  margin-right: 4rem !important; }

.mr-5 {
  margin-right: 5rem !important; }

.mr-6 {
  margin-right: 6rem !important; }

.mt-1 {
  margin-top: 1rem !important; }

.mt-2 {
  margin-top: 2rem !important; }

.mt-3 {
  margin-top: 3rem !important; }

.mt-4 {
  margin-top: 4rem !important; }

.mt-5 {
  margin-top: 5rem !important; }

.mt-6 {
  margin-top: 6rem !important; }

.mb-1 {
  margin-bottom: 1rem !important; }

.mb-2 {
  margin-bottom: 2rem !important; }

.mb-3 {
  margin-bottom: 3rem !important; }

.mb-4 {
  margin-bottom: 4rem !important; }

.mb-5 {
  margin-bottom: 5rem !important; }

.mb-6 {
  margin-bottom: 6rem !important; }

.bd-blue {
  border-color: #006fce !important; }

.bd-green {
  border-color: #009745 !important; }

.bd-yellow {
  border-color: #e1c237 !important; }

.bd-purple {
  border-color: #bc56c6 !important; }

.bd-white {
  border-color: #fff !important; }

.bd-green {
  border-color: #009745 !important; }

.bg-blue {
  background-color: #006fce !important; }

.bg-blue-dark {
  background-color: #004887 !important; }

.bg-blue {
  background-color: #006fce !important; }

.bg-yellow {
  background-color: #e1c237 !important; }

.bg-purple {
  background-color: #bc56c6 !important; }

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

.bg-green {
  background-color: #009745 !important; }

.t-main {
  color: #3d3d3d !important; }

.t-alt {
  color: #787c80 !important; }

a.cta,
a.cta:link,
a.cta:visited,
a.cta_button {
  background-color: #e1c237;
  padding: 1.7rem 4.6rem !important;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.6rem !important;
  font-weight: 400;
  letter-spacing: 0.2rem;
  border-radius: 10rem !important;
  box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
  cursor: pointer;
  transition: all 0.2s linear;
  display: inline-block !important;
  border: none;
  outline: none; }
  @media only screen and (max-width: 31.25em) {
    a.cta,
    a.cta:link,
    a.cta:visited,
    a.cta_button {
      padding: 2rem 3rem !important;
      width: 33rem !important; } }
  a.cta:hover,
  a.cta:link:hover,
  a.cta:visited:hover,
  a.cta_button:hover {
    background-color: #c7a81e !important; }

.heading__sub {
  padding-bottom: 0.5rem;
  color: #ededed;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.4rem; }
  @media only screen and (max-width: 31.25em) {
    .heading__sub {
      font-size: 1.4rem; } }

.card {
  min-height: 30rem;
  margin: 0 3rem;
  width: 25%;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  border-radius: 0.1rem;
  box-shadow: 0rem 0.2rem 0.5rem rgba(181, 181, 195, 0.3);
  margin-top: -10rem; }
  @media only screen and (max-width: 75em) {
    .card {
      width: 32%; } }
  @media only screen and (max-width: 50em) {
    .card {
      width: 90%;
      margin: 0;
      margin-bottom: 2rem; } }
  .card__margin {
    margin-top: -4rem; }
    @media only screen and (max-width: 50em) {
      .card__margin {
        margin: 0;
        margin-bottom: 2rem; } }
  .card__thumb {
    height: 18rem;
    width: 100%; }
    @media only screen and (max-width: 50em) {
      .card__thumb {
        height: 25rem; } }
    .card__thumb img {
      border-radius: 0.2rem;
      height: 100%;
      width: 100%;
      object-fit: cover;
      display: block; }
  .card__content {
    text-align: center;
    color: #3d3d3d;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .card__heading--sub {
    padding: 1rem 0;
    font-size: 1.6rem;
    width: 80%;
    font-weight: 300; }
    @media only screen and (max-width: 50em) {
      .card__heading--sub {
        font-size: 1.6rem;
        line-height: 1.6; } }
  .card__heading--main {
    font-weight: 700;
    padding: 1rem 0;
    font-size: 4.2rem; }
    @media only screen and (max-width: 50em) {
      .card__heading--main {
        font-size: 2rem; } }

.heading__horizontal {
  height: 4rem;
  width: 1px;
  background-color: #009745;
  margin-bottom: 2rem; }
  @media only screen and (max-width: 31.25em) {
    .heading__horizontal {
      height: 4rem; } }

.heading__icon {
  width: 8rem;
  height: 1.6rem;
  margin-bottom: 1rem;
  background-image: url(../../stock-photos/White-Swirl.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .heading__icon--blue {
    background-color: #006fce; }
  .heading__icon--purple {
    background-color: #9e0097; }

.p-v12 {
  padding: 0.5rem 0 !important; }

.p-v1 {
  padding: 1rem 0 !important; }

.p-v2 {
  padding: 2rem 0 !important; }

.p-v3 {
  padding: 3rem 0 !important; }

.p-v4 {
  padding: 4rem 0 !important; }

.p-v5 {
  padding: 5rem 0 !important; }

.p-v6 {
  padding: 6rem 0 !important; }

.p-h12 {
  padding: 0 0.5rem !important; }

.p-h1 {
  padding: 0 1rem !important; }

.p-h2 {
  padding: 0 2rem !important; }

.p-h3 {
  padding: 0 3rem !important; }

.p-h4 {
  padding: 0 4rem !important; }

.p-h5 {
  padding: 0 5rem !important; }

.p-h6 {
  padding: 0 6rem !important; }

.heading {
  font-size: 4.2rem;
  color: #ededed;
  font-weight: 600; }

.paragraph {
  font-size: 1.7rem;
  color: #ededed;
  font-weight: 300;
  line-height: 1.8; 
  letter-spacing: 1.2px; }
  @media only screen and (max-width: 31.25em) {
    .paragraph {
      font-size: 1.8rem; } }

.heading__style {
  padding: 2rem 0;
  font-weight: 600;
  font-size: 3.8rem;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0; }
  @media only screen and (max-width: 50em) {
    .heading__style {
      font-size: 3.2rem; } }

.circle {
  display: block;
  width: 2rem;
  height: 2rem;
  border: 0.3rem solid #e1c237;
  border-radius: 50%;
  transform: translate(-3rem, 2rem); }

.square {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.2rem solid #e1c237;
  transform: translate(-2rem, 2rem); }

.rectangle {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  border-color: #e1c237;
  align-self: flex-end;
  margin-top: -2rem;
  margin-right: -3rem; }
  @media only screen and (max-width: 31.25em) {
    .rectangle {
      width: 1.5rem;
      height: 1.5rem; } }

.plus {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  margin-top: -3rem;
  margin-right: -4rem; }
  .plus span {
    background-color: #fff;
    display: block; }
    .plus span:first-child {
      width: 0.2rem;
      height: 2.8rem; }
    .plus span:last-child {
      display: block;
      height: 0.2rem;
      width: 2.8rem;
      transform: translateX(-1.4rem); }

.section__promise {
  margin: 2rem 0;
  width: 100%;
  min-height: 60vh;
  background-image: linear-gradient(to right, rgba(0, 151, 69, 0.95), rgba(0, 151, 69, 0.97)), url(../../stock-photos/green-background.svg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
  text-align: center; }
  @media only screen and (max-width: 31.25em) {
    .section__promise {
      margin: 0;
      padding: 4rem 2rem; } }
  .section__promise--what {
    background-image: linear-gradient(to right, rgba(0, 72, 135, 0.95), rgba(0, 72, 135, 0.97)), url(../../stock-photos/white-bg.svg);
    margin-bottom: 15rem; }
    @media only screen and (max-width: 31.25em) {
      .section__promise--what {
        margin: 0; } }
  .section__promise--container {
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 62.5em) {
      .section__promise--container {
        width: 80%; } }
    @media only screen and (max-width: 50em) {
      .section__promise--container {
        width: 90%;
        padding: 4rem 2rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__promise--container {
        width: 100%; } }
  .section__promise--heading-main {
    padding-bottom: 0.5rem;
    color: #ededed;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 300; }
  .section__promise--heading-sub {
    padding: 2rem 0;
    font-weight: 600;
    font-size: 3.2rem;
    color: #fff;
    width: 60%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 0; }
    @media only screen and (max-width: 50em) {
      .section__promise--heading-sub {
        width: 80%;
        font-size: 3.2rem; } }
  .section__promise--paragraph {
    color: #ededed;
    padding: 1rem 0;
    font-weight: 300;
    font-size: 1.8rem;
    width: 70%;
    line-height: 1.8;
    text-align: center; }
    @media only screen and (max-width: 50em) {
      .section__promise--paragraph {
        width: 90%; } }
    @media only screen and (max-width: 31.25em) {
      .section__promise--paragraph {
        width: 100%;
        font-size: 2rem; } }
  .section__promise--text-design-end {
    width: 1.2rem;
    height: 1.2rem;
    border-right: 0.3rem solid #fff;
    border-bottom: 0.3rem solid #fff;
    border-color: #e1c237;
    align-self: flex-end;
    margin-top: -2rem; }
    @media only screen and (max-width: 31.25em) {
      .section__promise--text-design-end {
        width: 1.5rem;
        height: 1.5rem; } }
  .section__promise--text-design-start {
    width: 1.8rem;
    height: 1.8rem;
    border: 0.3rem solid #e1c237;
    border-radius: 50%;
    margin-top: 4rem; }

.section__getintouch {
  width: 100%;
  min-height: 60vh;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.93)), url(../../stock-photos/white-bg.svg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center; }
  @media only screen and (max-width: 31.25em) {
    .section__getintouch {
      padding: 4rem 2rem; } }
  .section__getintouch--top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .section__getintouch--bottom {
    width: 50%;
    text-align: center; }
    @media only screen and (max-width: 62.5em) {
      .section__getintouch--bottom {
        width: 60%; } }
    @media only screen and (max-width: 50em) {
      .section__getintouch--bottom {
        width: 80%; } }
    @media only screen and (max-width: 31.25em) {
      .section__getintouch--bottom {
        width: 100%; } }

.section__services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem; }
  @media only screen and (max-width: 50em) {
    .section__services {
      padding: 8rem 2rem; } }
  .section__services--what {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, rgba(158, 0, 151, 0.97), rgba(158, 0, 151, 0.98)), url(../../stock-photos/white-bg.svg);
    background-size: cover;
    background-position: center; }
  .section__services--top {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 4rem; }
    @media only screen and (max-width: 62.5em) {
      .section__services--top {
        width: 80%; } }
    @media only screen and (max-width: 50em) {
      .section__services--top {
        width: 90%;
        padding: 4rem 2rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__services--top {
        width: 100%; } }
    .section__services--top-heading-sub {
      padding-bottom: 0.5rem;
      color: #787c80;
      font-size: 1.2rem;
      text-transform: uppercase;
      font-weight: 300; }
      @media only screen and (max-width: 31.25em) {
        .section__services--top-heading-sub {
          font-size: 1.4rem; } }
    .section__services--top-heading-main {
      padding: 2rem 0;
      font-weight: 600;
      font-size: 3.2rem;
      color: #3d3d3d;
      width: 90%;
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      padding-top: 0; }
      @media only screen and (max-width: 50em) {
        .section__services--top-heading-main {
          width: 100%;
          font-size: 3.2rem; } }
    .section__services--top-paragraph {
      color: #787c80;
      padding: 1rem 0;
      font-weight: 400;
      font-size: 1.8rem;
      width: 90%;
      line-height: 1.8;
      text-align: center; }
      @media only screen and (max-width: 50em) {
        .section__services--top-paragraph {
          width: 80%;
          font-size: 2rem; } }
      @media only screen and (max-width: 31.25em) {
        .section__services--top-paragraph {
          width: 100%; } }
  .section__services--bottom {
    display: flex;
    padding: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; }
    .section__services--bottom--icon-card {
      background-color: #fff;
      margin: 1rem;
      box-shadow: 0rem 0.2rem 0.5rem rgba(181, 181, 195, 0.3);
      border-radius: 0.3rem;
      padding: 2rem;
      padding-top: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 17rem;
      text-align: center;
      min-height: 17rem; }
      @media only screen and (max-width: 62.5em) {
        .section__services--bottom--icon-card {
          margin: 2rem 1.2rem; } }
      @media only screen and (max-width: 50em) {
        .section__services--bottom--icon-card {
          width: calc(50% - 2.4rem);
          margin: 2rem 1.2rem; } }
      @media only screen and (max-width: 31.25em) {
        .section__services--bottom--icon-card {
          width: calc(50% - 1rem);
          margin: 2rem 0.5rem; } }
    .section__services--bottom--icon-label {
      font-size: 1.2rem;
      text-transform: uppercase;
      color: #3d3d3d;
      font-weight: 600;
      padding-top: 2rem;
      flex: 1; }
      @media only screen and (max-width: 50em) {
        .section__services--bottom--icon-label {
          font-size: 1.6rem; } }
    .section__services--bottom--icon-wrapper {
      height: 6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto; }
      .section__services--bottom--icon-wrapper img {
        height: 100%;
        object-fit: cover;
        display: block; }

.section__market--bottom {
  width: 100%; }
  .section__market--bottom > * {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    justify-self: center;
    justify-content: center;
    align-items: center; }
  @media only screen and (max-width: 62.5em) {
    .section__market--bottom {
      justify-content: center;
      width: 100%; } }

.section__what {
  margin: 4rem 0;
  padding: 4rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 100; }
  @media only screen and (max-width: 50em) {
    .section__what {
      padding: 0;
      flex-direction: column;
      flex-wrap: wrap;
      margin: 0; } }
  .section__what--left {
    background-color: #9e0097;
    min-height: 80vh;
    width: 53vw;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 15vw 2rem 5vw;
    position: relative; }
    .section__what--left-absolute {
      position: absolute;
      top: 2rem;
      width: 70%;
      height: 50%;
      background-image: url(../../stock-photos/style-group.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 1; }
    .section__what--left-right {
      padding: 4rem 4rem 4rem 15vw !important; }
    @media only screen and (max-width: 68.75em) {
      .section__what--left {
        min-height: 70vh; } }
    @media only screen and (max-width: 50em) {
      .section__what--left {
        width: 100%;
        flex-direction: column;
        order: 2;
        padding: 2rem !important; } }
  .section__what--flip {
    justify-content: flex-end !important; }
  .section__what--right {
    position: absolute;
    z-index: 300;
    min-height: 80vh;
    width: 53vw;
    transform: translate(0%, -10vh);
    top: 4rem;
    right: 4rem;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    background-image: linear-gradient(to bottom right, rgba(225, 194, 55, 0.1), rgba(0, 111, 206, 0.1)), url(../../stock-photos/bg-what.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 68.75em) {
      .section__what--right {
        min-height: 70vh; } }
    @media only screen and (max-width: 50em) {
      .section__what--right {
        width: 100%;
        position: static;
        transform: translate(0, 0);
        order: 1;
        min-height: 30rem; } }
    .section__what--right-left {
      left: 4rem !important;
      right: auto !important; }
    .section__what--right-bottom {
      top: auto;
      bottom: -8rem !important; }
    .section__what--right a {
      display: block;
      background-color: red; }
  .section__what--cta {
    padding-top: 3rem !important; }

.section__news {
  width: 100%;
  min-height: 80vh;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), url(../../stock-photos/white-bg.svg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 8rem; }
  @media only screen and (max-width: 62.5em) {
    .section__news {
      padding: 2rem; } }
  .section__news--top {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    @media only screen and (max-width: 50em) {
      .section__news--top {
        width: 70%; } }
    @media only screen and (max-width: 31.25em) {
      .section__news--top {
        width: 99%; } }
  .section__news--bottom {
    padding-top: 3rem;
    display: flex;
    width: 100%;
    justify-content: center; }
    @media only screen and (max-width: 50em) {
      .section__news--bottom {
        flex-wrap: wrap; } }
  .section__news--card {
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url(../../stock-photos/bg-what.jpg);
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 0.2rem;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    margin: 0.2rem;
    width: calc(27% - 2rem);
    min-height: 38rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.2s ease-out; }
    .section__news--card:not(:hover) {
      transform: scale(0.9); }
    .section__news--card:hover {
      transform: scale(1.01); }
    @media only screen and (max-width: 62.5em) {
      .section__news--card {
        width: calc(25% - 1rem);
        margin: 2rem 0.1rem; } }
    @media only screen and (max-width: 37.5em) {
      .section__news--card {
        width: calc(50% - 4rem);
        margin: 2rem 0.2rem;
        min-height: 40rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__news--card {
        width: 100%;
        margin: 1rem 0; } }
    .section__news--card-heading {
      font-size: 1.4rem;
      color: #ededed;
      font-weight: 500;
      padding-bottom: 1rem; }
      @media only screen and (max-width: 31.25em) {
        .section__news--card-heading {
          font-size: 1.6rem; } }
    .section__news--card-paragraph {
      font-size: 1.4rem;
      color: #f3f6f9;
      font-weight: 300;
      padding: 1rem 0; }
      @media only screen and (max-width: 31.25em) {
        .section__news--card-paragraph {
          font-size: 1.6rem; } }
    .section__news--card a,
    .section__news--card a:link,
    .section__news--card a:visited {
      color: #fff;
      font-size: 1.4rem;
      font-weight: 400;
      border-radius: 10rem; }

.section__event {
  width: 100%;
  min-height: 60vh;
  background-image: linear-gradient(to right, rgba(179, 152, 33, 0.95), rgba(179, 152, 33, 0.97)), url(../../stock-photos/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem; }
  @media only screen and (max-width: 50em) {
    .section__event {
      padding: 4rem 2rem; } }
  .section__event--heading {
    height: 16rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 50em) {
      .section__event--heading {
        height: 15rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__event--heading {
        height: 10rem; } }
    .section__event--heading img {
      height: 100%;
      display: block;
      object-fit: cover; }
  .section__event--top {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 62.5em) {
      .section__event--top {
        width: 60%; } }
    @media only screen and (max-width: 50em) {
      .section__event--top {
        width: 80%; } }
    @media only screen and (max-width: 31.25em) {
      .section__event--top {
        width: 100%; } }
  .section__event--bottom {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
  .section__event--card {
    width: calc(25% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    border-radius: 0.2rem;
    padding: 1.5rem;
    margin: 1rem;
    transition: all 0.2s ease-out;
    min-height: 50rem; }
    @media only screen and (max-width: 75em) {
      .section__event--card {
        width: calc(26% - 2rem); } }
    @media only screen and (max-width: 62.5em) {
      .section__event--card {
        width: calc(31% - 1rem);
        margin: 0.5rem; } }
    @media only screen and (max-width: 50em) {
      .section__event--card {
        width: calc(33.33% - 1rem);
        margin: 0.5rem; } }
    @media only screen and (max-width: 43.75em) {
      .section__event--card {
        width: calc(60%);
        margin: 1rem 0rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__event--card {
        width: calc(100%);
        margin: 1rem 0rem; } }
    .section__event--card:hover {
      transform: scale(1.05); }
    .section__event--card-thumb {
      height: 18rem;
      width: 100%; }
      @media only screen and (max-width: 50em) {
        .section__event--card-thumb {
          height: 22rem; } }
      @media only screen and (max-width: 50em) {
        .section__event--card-thumb {
          height: 25rem; } }
      .section__event--card-thumb img {
        border-radius: 0.2rem;
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block; }
    .section__event--card--card-details {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 2rem 0; }
    .section__event--card-location {
      font-size: 1.2rem;
      font-weight: 500;
      color: #787c80;
      text-transform: uppercase;
      padding: 2rem 0;
      padding-bottom: 1.4rem; }
      @media only screen and (max-width: 31.25em) {
        .section__event--card-location {
          font-size: 1.4rem; } }
      .section__event--card-location i {
        display: inline-block;
        padding-right: 0.4rem;
        color: #009745;
        font-size: 1.4rem; }
    .section__event--card-heading {
      font-size: 1.4rem;
      font-weight: 600;
      color: #3d3d3d; }
      @media only screen and (max-width: 31.25em) {
        .section__event--card-heading {
          font-size: 1.6rem; } }
    .section__event--card-paragraph {
      padding: 1rem 0;
      font-size: 1.5rem;
      font-weight: 300;
      color: #787c80;
      line-height: 1.8; }
      @media only screen and (max-width: 31.25em) {
        .section__event--card-paragraph {
          font-size: 1.6rem; } }
    .section__event--card-dates {
      font-size: 1.2rem;
      color: #787c80;
      padding: 1rem 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
      @media only screen and (max-width: 31.25em) {
        .section__event--card-dates {
          font-size: 1.4rem; } }
      .section__event--card-dates p:last-child {
        padding-left: 0.8rem; }
      .section__event--card-dates i {
        color: #009745;
        font-size: 1.2rem;
        display: inline-block;
        padding-right: 0.4rem; }
    .section__event--card a,
    .section__event--card a:link,
    .section__event--card a:visited {
      color: #009745;
      font-size: 1.3rem;
      font-weight: 600;
      padding-top: 3rem;
      letter-spacing: 0.1rem;
      cursor: pointer; }
      @media only screen and (max-width: 31.25em) {
        .section__event--card a,
        .section__event--card a:link,
        .section__event--card a:visited {
          font-size: 1.4rem; } }

.section__hub {
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media only screen and (max-width: 31.25em) {
    .section__hub {
      padding: 4rem 2rem; } }
  .section__hub--top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .section__hub--bottom {
    width: 95%;
    padding: 4rem 0;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 75em) {
      .section__hub--bottom {
        width: 100%; } }
    @media only screen and (max-width: 50em) {
      .section__hub--bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center; } }
    .section__hub--bottom > * {
      width: 30%;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      @media only screen and (max-width: 50em) {
        .section__hub--bottom > * {
          width: 50%; } }
      @media only screen and (max-width: 31.25em) {
        .section__hub--bottom > * {
          width: 85%; } }
      .section__hub--bottom > * > * {
        height: 48%; }
        @media only screen and (max-width: 50em) {
          .section__hub--bottom > * > * {
            height: auto; } }
  @media only screen and (max-width: 50em) {
    .section__hub--left {
      order: 2; } }
  @media only screen and (max-width: 50em) {
    .section__hub--right {
      order: 3; } }
  .section__hub--middle {
    width: 35%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding-top: 4rem; }
    @media only screen and (max-width: 50em) {
      .section__hub--middle {
        order: 1;
        height: 30rem;
        width: 50%; } }
    @media only screen and (max-width: 31.25em) {
      .section__hub--middle {
        order: 1;
        height: 35rem;
        width: 100%; } }
    .section__hub--middle-bg {
      height: 70%;
      background-image: url(../../stock-photos/hero-bg.jpg);
      width: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      @media only screen and (max-width: 50em) {
        .section__hub--middle-bg {
          height: 100%;
          margin-bottom: 2rem; } }
  .section__hub--heading {
    padding-bottom: 2rem; }
  .section__hub--text-container {
    padding: 0.5rem 0; }
    @media only screen and (max-width: 31.25em) {
      .section__hub--text-container {
        padding-bottom: 3rem; } }

.insider__feature {
  padding: 8rem 2rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 31.25em) {
    .insider__feature {
      padding: 4rem 2rem; } }
  .insider__feature--top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-align: center;
    padding: 4rem 0; }
    @media only screen and (max-width: 62.5em) {
      .insider__feature--top {
        width: 80%; } }
    @media only screen and (max-width: 50em) {
      .insider__feature--top {
        width: 100%; } }
  .insider__feature--bottom {
    display: flex;
    padding: 4rem 2rem;
    justify-content: center;
    align-items: center;
    width: 90%; }
    @media only screen and (max-width: 75em) {
      .insider__feature--bottom {
        width: 95%; } }
    @media only screen and (max-width: 62.5em) {
      .insider__feature--bottom {
        width: 100%;
        flex-direction: column; } }
  .insider__feature--card--left {
    width: 50rem;
    margin-right: 1rem; }
  .insider__feature--card--right {
    width: 50rem;
    margin-left: 1rem;
    display: flex;
    flex-wrap: wrap;
    height: calc(50rem + 2rem); }
    @media only screen and (max-width: 31.25em) {
      .insider__feature--card--right {
        height: auto; } }
  @media only screen and (max-width: 68.75em) {
    .insider__feature--card--left, .insider__feature--card--right {
      width: calc(45rem - 2rem); } }
  @media only screen and (max-width: 62.5em) {
    .insider__feature--card--left, .insider__feature--card--right {
      width: 75rem;
      margin: 0;
      margin-bottom: 2rem; } }
  @media only screen and (max-width: 50em) {
    .insider__feature--card--left, .insider__feature--card--right {
      width: 85%; } }
  @media only screen and (max-width: 31.25em) {
    .insider__feature--card--left, .insider__feature--card--right {
      width: 100%; } }
  .insider__feature--card-container {
    width: calc(50% - 2rem);
    margin: 1rem; }
    @media only screen and (max-width: 62.5em) {
      .insider__feature--card-container {
        margin: 2rem 1rem; } }
    @media only screen and (max-width: 31.25em) {
      .insider__feature--card-container {
        width: 100%;
        margin: 2rem 0;
        height: 35rem; } }
  .insider__feature--card-container-left {
    width: 100%;
    height: 50rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 62.5em) {
      .insider__feature--card-container-left {
        padding: 1rem; } }
    @media only screen and (max-width: 31.25em) {
      .insider__feature--card-container-left {
        padding: 0;
        height: 35rem; } }

.insider__card {
  background-image: linear-gradient(to bottom right, rgba(0, 72, 135, 0.85), rgba(0, 72, 135, 0.85)), url(../../stock-photos/green-background.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0rem 0.2rem 0.5rem rgba(181, 181, 195, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease; }
  .insider__card:hover {
    transform: scale(1.03); }
  .insider__card--heading-wrapper {
    background-color: rgba(0, 72, 135, 0.9);
    padding: 2rem;
    padding-top: 4rem; }
    .insider__card--heading-wrapper-padding {
      padding: 4rem 6rem !important; }
      @media only screen and (max-width: 31.25em) {
        .insider__card--heading-wrapper-padding {
          padding: 2rem !important;
          padding-top: 4rem !important; } }
  .insider__card--sub-heading {
    color: #f3f6f9;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3rem;
    text-align: left; }
    @media only screen and (max-width: 31.25em) {
      .insider__card--sub-heading {
        font-size: 1.5rem; } }
  .insider__card--heading {
    color: #f9f7f6;
    font-size: 1.8rem;
    font-weight: 500;
    padding-top: 2rem;
    text-decoration: none;
    display: inline-block;
    text-align: left; }
    @media only screen and (max-width: 31.25em) {
      .insider__card--heading {
        font-size: 2.4rem; } }
  .insider__card--link-container {
    display: flex;
    padding: 2rem; }
  .insider__card--link, .insider__card--link:link, .insider__card--link:visited {
    display: flex;
    text-decoration: none;
    flex-direction: column; }
  .insider__card--link-text {
    color: #ededed;
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase; }
  .insider__card--link-line {
    width: 100%;
    align-self: flex-start;
    height: 0.1rem;
    margin-top: 0.3rem;
    background-color: #ededed; }

.insider__feature--card-container-blog, .insider__feature--card-container-download {
  width: calc(33.33% - 2rem) !important;
  margin: 1rem;
  height: 30rem; }
  @media only screen and (max-width: 62.5em) {
    .insider__feature--card-container-blog, .insider__feature--card-container-download {
      width: calc(45% - 2rem) !important;
      margin: 1rem; } }
  @media only screen and (max-width: 50em) {
    .insider__feature--card-container-blog, .insider__feature--card-container-download {
      width: calc(50% - 2rem) !important;
      margin: 1rem; } }
  @media only screen and (max-width: 31.25em) {
    .insider__feature--card-container-blog, .insider__feature--card-container-download {
      width: calc(100%) !important;
      margin: 2rem 0rem; } }

.insider__feature--card-container-download {
  height: 30rem !important; }

.insider__blog {
  background-color: #f9f7f6; }
  .insider__blog--bottom {
    width: 80%;
    display: flex;
    padding: 4rem 2rem;
    flex-wrap: wrap; }
    @media only screen and (max-width: 75em) {
      .insider__blog--bottom {
        width: 80%; } }
    @media only screen and (max-width: 62.5em) {
      .insider__blog--bottom {
        width: 100%; } }

.insider__contact {
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.93)), url(../../stock-photos/white-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .insider__contact--bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column; }
  .insider__contact--form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%; }
    @media only screen and (max-width: 62.5em) {
      .insider__contact--form {
        width: 55%; } }
    @media only screen and (max-width: 50em) {
      .insider__contact--form {
        width: 70%; } }
    @media only screen and (max-width: 31.25em) {
      .insider__contact--form {
        width: 100%; } }
    .insider__contact--form-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      box-shadow: 0rem 0.2rem 0.5rem rgba(181, 181, 195, 0.3);
      border-radius: 10rem; }
      .insider__contact--form-wrapper .hs-input {
        flex: 1;
        padding: 1.5rem 2rem;
        outline: none;
        border: none;
        background-color: #fff;
        font-family: inherit;
        font-size: 1.4rem;
        font-weight: 400;
        color: #787c80;
        border-radius: 10rem;
        border-top-right-radius: 0rem;
        border-bottom-right-radius: 0rem; }
        @media only screen and (max-width: 50em) {
          .insider__contact--form-wrapper .hs-input {
            padding: 2rem;
            font-size: 1.8rem; } }
        .insider__contact--form-wrapper .hs-input::-webkit-input-placeholder {
          font-family: inherit;
          font-size: 1.4rem;
          font-weight: 400;
          color: #787c80; }
          @media only screen and (max-width: 50em) {
            .insider__contact--form-wrapper .hs-input::-webkit-input-placeholder {
              font-size: 1.8rem; } }
      .insider__contact--form-wrapper input[type="submit"] {
        border: none;
        outline: none;
        font-family: inherit;
        font-size: 1.3rem;
        font-weight: 400;
        color: #f9f7f6;
        text-transform: uppercase;
        background-color: #e1c237;
        align-items: flex-start;
        padding: 1.6rem 3rem;
        text-align: center;
        border-radius: 10rem;
        border-top-left-radius: 0rem;
        border-bottom-left-radius: 0rem;
        transition: all 0.3s ease; }
        @media only screen and (max-width: 50em) {
          .insider__contact--form-wrapper input[type="submit"] {
            padding: 2.1rem 2rem;
            font-size: 1.6rem; } }
        .insider__contact--form-wrapper input[type="submit"]:hover {
          background-color: #c7a81e; }

.insider__blog {
  width: 100%; }
  .insider__blog--bottom {
    position: relative !important;
    text-align: center;
    width: 75%; }
    @media only screen and (max-width: 50em) {
      .insider__blog--bottom {
        width: 80%; } }
    @media only screen and (max-width: 31.25em) {
      .insider__blog--bottom {
        width: 100%; } }
    .insider__blog--bottom-content img {
      display: block;
      margin: 4rem 0;
      height: 45rem !important;
      width: 100%; }
      @media only screen and (max-width: 31.25em) {
        .insider__blog--bottom-content img {
          height: 27rem !important;
          width: 100% !important; } }
  .insider__blog--image {
    margin: 4rem 0;
    height: 45rem;
    width: 100%;
    background-image: url(../../stock-photos/green-background.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    @media only screen and (max-width: 31.25em) {
      .insider__blog--image {
        height: 27rem !important; } }
  .insider__blog--control {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.1rem solid #c7c7d1;
    margin-top: 4rem; }
  .insider__blog--btn {
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
    border: none;
    background-color: #c7c7d1;
    border-radius: 10rem;
    min-width: 15rem;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 500;
    color: inherit;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
    transition: all 0.2s ease; }
    .insider__blog--btn:hover {
      background-color: #b1b1bf; }
    @media only screen and (max-width: 31.25em) {
      .insider__blog--btn {
        font-size: 1.5rem;
        padding: 0.8rem; } }
    .insider__blog--btn-arrow {
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 2.8rem;
      height: 2.8rem;
      border-radius: 50%;
      box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1);
      font-size: 1.4rem; }
      @media only screen and (max-width: 31.25em) {
        .insider__blog--btn-arrow {
          font-size: 1.5rem;
          width: 3.2rem;
          height: 3.2rem; } }
    .insider__blog--btn-text {
      padding: 0 1rem;
      flex: 1;
      text-align: center; }

.section__contact {
  display: flex;
  justify-content: center;
  width: 100%; }
  .section__contact--header {
    min-height: 100vh; }
    @media only screen and (max-width: 37.5em) {
      .section__contact--header {
        min-height: auto; } }
  .section__contact--card {
    display: flex;
    padding: 2rem;
    min-height: 80vh;
    box-shadow: 0.1rem 0.8rem 1.4rem rgba(120, 124, 128, 0.2);
    border-radius: 0.3rem;
    width: 90rem;
    min-height: 50rem;
    transform: translateY(-12rem);
    background-color: #fff; }
    @media only screen and (max-width: 75em) {
      .section__contact--card {
        transform: translateY(-10rem); } }
    @media only screen and (max-width: 62.5em) {
      .section__contact--card {
        transform: translateY(-12rem); } }
    @media only screen and (max-width: 37.5em) {
      .section__contact--card {
        box-shadow: 0 0 0 transparent;
        border-radius: 0;
        width: 100%;
        flex-direction: column;
        padding: 2rem;
        min-height: auto;
        transform: translateY(0rem); } }
  .section__contact--left {
    width: 38%;
    margin-right: 2rem;
    border-right: 0.2rem solid #ededed;
    padding-right: 3rem;
    padding-top: 2rem;
    margin: 4rem 3rem; }
    @media only screen and (max-width: 37.5em) {
      .section__contact--left {
        border-right: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        padding-bottom: 2rem;
        order: 2; } }
    .section__contact--left-text-wrapper {
      margin: 3rem 0;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    .section__contact--left-heading {
      font-size: 1.3rem;
      color: #3d3d3d;
      font-weight: 700;
      margin-bottom: 0.8rem; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--left-heading {
          font-size: 1.8rem; } }
    .section__contact--left-paragraph {
      color: #787c80;
      font-size: 1.3rem;
      font-weight: 500;
      width: 80%; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--left-paragraph {
          font-size: 2rem;
          width: 70%; } }
      .section__contact--left-paragraph strong {
        color: #3d3d3d; }
    .section__contact--left-social {
      display: flex;
      justify-content: center;
      align-items: center; }
      .section__contact--left-social a {
        text-decoration: none;
        display: block;
        margin: 0.5rem;
        color: #787c80;
        font-size: 2rem; }
        @media only screen and (max-width: 37.5em) {
          .section__contact--left-social a {
            font-size: 3.2rem; } }
  .section__contact--right {
    width: 62%;
    margin: 4rem 3rem;
    margin-left: 0; }
    @media only screen and (max-width: 37.5em) {
      .section__contact--right {
        margin: 0;
        padding: 2rem 0;
        padding-bottom: 4rem;
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 0.2rem solid #ededed; } }
    .section__contact--right--form-wrapper, .section__contact--right--form {
      width: 100%; }
    .section__contact--right-heading {
      font-size: 1.6rem;
      color: #3d3d3d;
      font-weight: 800;
      margin-bottom: 0.8rem;
      margin-bottom: 3rem;
      letter-spacing: 0.2rem; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--right-heading {
          font-size: 1.8rem;
          text-align: center;
          width: 70%;
          margin-top: 1rem; } }
    .section__contact--right-heading__sub {
      font-size: 1rem;
      color: #787c80;
      font-weight: 300;
      margin-bottom: 0.8rem;
      margin-bottom: 0.5rem;
      letter-spacing: 0.2rem; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--right-heading__sub {
          font-size: 1.5rem;
          text-align: center;
          width: 70%;
          margin-top: 1rem; } }
    .section__contact--right-form-label {
      font-size: 1.4rem;
      color: #3d3d3d;
      font-weight: 700;
      letter-spacing: 0.1rem; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--right-form-label {
          font-size: 1.6rem; } }
    .section__contact--right-input-group {
      margin: 2rem 0;
      display: flex;
      flex-direction: column; }
    .section__contact--right-btn {
      margin-top: 3rem; }
      @media only screen and (max-width: 37.5em) {
        .section__contact--right-btn {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%; } }
    .section__contact--right input,
    .section__contact--right textarea {
      flex: 1;
      padding: 1.4rem 2rem;
      outline: none;
      border: none;
      background-color: #fff;
      font-family: inherit;
      font-size: 1.4rem;
      font-weight: 400;
      color: #787c80;
      border-radius: 0.3rem;
      border: 0.07rem solid rgba(181, 181, 195, 0.4);
      margin-top: 0.5rem; }
      @media only screen and (max-width: 50em) {
        .section__contact--right input,
        .section__contact--right textarea {
          padding: 2rem;
          font-size: 1.8rem; } }
      .section__contact--right input::-webkit-input-placeholder,
      .section__contact--right textarea::-webkit-input-placeholder {
        font-family: inherit;
        font-size: 1.4rem;
        font-weight: 400;
        color: #787c80; }
        @media only screen and (max-width: 50em) {
          .section__contact--right input::-webkit-input-placeholder,
          .section__contact--right textarea::-webkit-input-placeholder {
            font-size: 1.8rem; } }

.section__rich-text {
  padding: 4rem 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media only screen and (max-width: 50em) {
    .section__rich-text {
      padding: 4rem; } }
  @media only screen and (max-width: 31.25em) {
    .section__rich-text {
      padding: 2rem; } }
  .section__rich-text--wrapper {
    width: 70%;
    padding: 2rem; }
    @media only screen and (max-width: 50em) {
      .section__rich-text--wrapper {
        width: 70%; } }
    @media only screen and (max-width: 31.25em) {
      .section__rich-text--wrapper {
        padding: 0;
        width: 100%; } }
    .section__rich-text--wrapper ul {
      padding-left: 3rem; }
      @media only screen and (max-width: 31.25em) {
        .section__rich-text--wrapper ul {
          padding-left: 2rem; } }
    .section__rich-text--wrapper ul > li,
    .section__rich-text--wrapper a,
    .section__rich-text--wrapper ul > li > span > a,
    .section__rich-text--wrapper div > span > strong > a,
    .section__rich-text--wrapper h2,
    .section__rich-text--wrapper h2 > a,
    .section__rich-text--wrapper h4,
    .section__rich-text--wrapper h4 > span,
    .section__rich-text--wrapper p {
      text-decoration: none;
      padding-bottom: 1rem;
      font-size: 1.4rem;
      color: #787c80;
      line-height: 1.8;
      letter-spacing: 0.1rem;
      font-weight: 300; }
      @media only screen and (max-width: 31.25em) {
        .section__rich-text--wrapper ul > li,
        .section__rich-text--wrapper a,
        .section__rich-text--wrapper ul > li > span > a,
        .section__rich-text--wrapper div > span > strong > a,
        .section__rich-text--wrapper h2,
        .section__rich-text--wrapper h2 > a,
        .section__rich-text--wrapper h4,
        .section__rich-text--wrapper h4 > span,
        .section__rich-text--wrapper p {
          font-size: 1.8rem; } }
    .section__rich-text--wrapper p > strong > span,
    .section__rich-text--wrapper h2 > a,
    .section__rich-text--wrapper div > span > strong > a {
      font-size: 2rem;
      font-weight: 600;
      text-decoration: none;
      color: #555555; }
      @media only screen and (max-width: 31.25em) {
        .section__rich-text--wrapper p > strong > span,
        .section__rich-text--wrapper h2 > a,
        .section__rich-text--wrapper div > span > strong > a {
          font-size: 2.4rem; } }
    .section__rich-text--wrapper p > a {
      color: #00a261; }
    .section__rich-text--wrapper h4,
    .section__rich-text--wrapper h4 > span {
      padding-top: 1rem; }

.site__map {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media only screen and (max-width: 31.25em) {
    .site__map {
      padding: 3rem; } }
  .site__map--container {
    width: 100%;
    padding: 2rem 8rem;
    display: flex; }
    @media only screen and (max-width: 50em) {
      .site__map--container {
        flex-wrap: wrap;
        padding: 2rem; } }
    @media only screen and (max-width: 31.25em) {
      .site__map--container {
        padding: 0; } }
  .site__map--link-container {
    width: calc(25% - 1rem);
    margin: 1rem 0.5rem;
    display: flex;
    flex-direction: column; }
    @media only screen and (max-width: 50em) {
      .site__map--link-container {
        width: calc(33.33% - 1rem);
        margin: 3rem 0rem; } }
    @media only screen and (max-width: 31.25em) {
      .site__map--link-container {
        width: calc(50% - 1rem); } }
    @media only screen and (max-width: 31.25em) {
      .site__map--link-container-main {
        width: 100%; } }
    .site__map--link-container a {
      color: #787c80;
      font-size: 1.7rem;
      font-weight: 300;
      letter-spacing: 0.1rem;
      text-decoration: none;
      padding-bottom: 0.5rem; }
      @media only screen and (max-width: 50em) {
        .site__map--link-container a {
          font-size: 2rem; } }
    .site__map--link-container a.big,
    .site__map--link-container h3 {
      color: #3d3d3d;
      font-size: 1.9rem;
      padding-bottom: 0.8rem;
      font-weight: 700; }
      @media only screen and (max-width: 50em) {
        .site__map--link-container a.big,
        .site__map--link-container h3 {
          font-size: 2.6rem; } }

.section__mil {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media only screen and (max-width: 75em) {
    .section__mil {
      padding: 2rem; } }
  @media only screen and (max-width: 31.25em) {
    .section__mil {
      padding: 2rem 4rem; } }
  .section__mil--card--wrapper {
    display: flex;
    justify-content: center;
    width: 100%; }
    @media only screen and (max-width: 50em) {
      .section__mil--card--wrapper {
        flex-wrap: wrap; } }
  .section__mil--card {
    padding: 4rem;
    border-radius: 0.3rem;
    width: 30rem;
    min-height: 43rem;
    margin: 1rem;
    box-shadow: 0 0 0.5rem 0.8rem rgba(120, 124, 128, 0.1);
    display: flex;
    flex-direction: column;
    position: relative; }
    @media only screen and (max-width: 75em) {
      .section__mil--card {
        width: calc(33.33% - 2rem);
        padding: 3rem; } }
    @media only screen and (max-width: 50em) {
      .section__mil--card {
        width: 52%;
        padding: 4rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__mil--card {
        width: 100%;
        min-height: 50rem;
        margin-bottom: 2rem;
        padding: 4rem 3rem; } }
    .section__mil--card-image {
      height: 5rem;
      display: flex;
      margin-bottom: 2rem; }
      .section__mil--card-image img {
        height: 100%;
        object-fit: cover;
        display: block; }
    .section__mil--card-heading {
      font-size: 1.6rem;
      text-transform: uppercase;
      font-weight: 700;
      padding-bottom: 1rem; }
      @media only screen and (max-width: 31.25em) {
        .section__mil--card-heading {
          font-size: 1.8rem; } }
    .section__mil--card-sub-heading,
    .section__mil--card-list-container > p {
      font-size: 1.5rem;
      font-weight: 300;
      color: #787c80;
      letter-spacing: 0.1rem; }
      @media only screen and (max-width: 31.25em) {
        .section__mil--card-sub-heading,
        .section__mil--card-list-container > p {
          font-size: 1.6rem;
          line-height: 1.7; } }
    .section__mil--card-list-wrapper {
      padding: 1rem 0; }
    .section__mil--card-list-container {
      display: flex;
      align-items: center;
      padding-left: 0.8rem; }
      .section__mil--card-list-container span {
        display: block;
        width: 0.7rem;
        height: 0.7rem;
        background-color: #004887;
        border-radius: 50%;
        margin-right: 1rem; }
    .section__mil--card a,
    .section__mil--card a:link,
    .section__mil--card a:visited {
      display: block;
      justify-self: flex-end;
      color: #004887;
      position: absolute;
      bottom: 2rem;
      font-weight: 600;
      font-size: 1.5rem;
      text-decoration: none; }
      @media only screen and (max-width: 31.25em) {
        .section__mil--card a,
        .section__mil--card a:link,
        .section__mil--card a:visited {
          font-size: 1.6rem; } }

.section__geomapping {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 31.25em) {
    .section__geomapping {
      padding: 2rem; } }
  .section__geomapping--wrapper {
    width: 70%; }
    @media only screen and (max-width: 50em) {
      .section__geomapping--wrapper {
        width: 90%; } }
    @media only screen and (max-width: 31.25em) {
      .section__geomapping--wrapper {
        width: 100%; } }

.section__team {
  padding: 4rem 2rem;
  padding-bottom: 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media only screen and (max-width: 68.75em) {
    .section__team {
      padding: 4rem 2rem; } }
  @media only screen and (max-width: 50em) {
    .section__team {
      padding: 4rem 2rem; } }
  @media only screen and (max-width: 31.25em) {
    .section__team {
      padding: 8rem 2rem; } }
  .section__team--top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .section__team--bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem; }
    @media only screen and (max-width: 31.25em) {
      .section__team--bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; } }
  .section__team--control {
    border: 0.1rem solid #b5b5c3;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    z-index: 2000;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: none; }
    .section__team--control i {
      color: #b5b5c3; }
    @media only screen and (max-width: 31.25em) {
      .section__team--control {
        order: 2;
        margin-left: 1rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__team--control-right {
        order: 3;
        align-self: flex-end;
        transform: translateY(-6rem);
        margin-right: 1rem; } }
  .section__team--container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%; }
  .section__team--wrapper, .section__team--wrapper-2 {
    display: flex;
    flex: 1;
    justify-content: center;
    width: 100%;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    display: none; }
    .section__team--wrapper-active, .section__team--wrapper-2-active {
      display: flex; }
    @media only screen and (max-width: 31.25em) {
      .section__team--wrapper, .section__team--wrapper-2 {
        flex-direction: column; } }
  .section__team--card {
    min-width: 35rem;
    margin: 1rem;
    min-height: 55rem;
    background-image: url(../../stock-photos/bg-what.jpg);
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: flex-end; }
    @media only screen and (max-width: 87.5em) {
      .section__team--card {
        min-width: calc(26rem - 1.5rem);
        margin: 0.75rem;
        min-height: 35rem; } }
    @media only screen and (max-width: 68.75em) {
      .section__team--card {
        min-width: calc(24rem - 1.5rem);
        margin: 0.75rem;
        min-height: 35rem; } }
    @media only screen and (max-width: 50em) {
      .section__team--card {
        min-width: calc(33.33% - 1.5rem);
        margin: 0.75rem;
        min-height: 38rem; } }
    @media only screen and (max-width: 31.25em) {
      .section__team--card {
        min-width: calc(100% - 2rem);
        margin: 1rem;
        min-height: 45rem; } }
    .section__team--card-name-wrapper {
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 2rem 0.5rem;
      text-align: center; }
    .section__team--card-name {
      font-size: 1.6rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.1rem; }
    .section__team--card-position {
      font-size: 1.2rem;
      font-weight: 400;
      color: #ededed;
      padding-top: 0.5rem;
      letter-spacing: 0.1rem; }
  .section__team--indicator-container {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  .section__team--indicator, .section__team--indicator-2 {
    width: 3rem;
    height: 3rem;
    border: 0.2rem solid rgba(225, 194, 55, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem; }
    @media only screen and (max-width: 31.25em) {
      .section__team--indicator, .section__team--indicator-2 {
        width: 4rem;
        height: 4rem; } }
  .section__team--indicator--inner, .section__team--indicator--inner-2 {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(225, 194, 55, 0.6);
    display: none; }
    @media only screen and (max-width: 31.25em) {
      .section__team--indicator--inner, .section__team--indicator--inner-2 {
        width: 2rem;
        height: 2rem; } }
    .section__team--indicator--inner-active, .section__team--indicator--inner-2-active {
      display: block; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(39, 39, 39, 0.98);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(39, 39, 39, 0.3); }
  .popup--active {
    opacity: 1;
    visibility: visible; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .popup {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(39, 39, 39, 0.3); } }
  .popup__content, .popup__content-webinar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80rem;
    min-height: 55rem;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(39, 39, 39, 0.2);
    border-radius: 3px;
    visibility: hidden;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0.25);
    transition: all 0.5s 0.2s; }
    @media only screen and (max-width: 87.5em) {
      .popup__content, .popup__content-webinar {
        width: 70rem;
        min-height: 43rem; } }
    @media only screen and (max-width: 31.25em) {
      .popup__content, .popup__content-webinar {
        width: 100%;
        min-height: 32rem; } }
    .popup__content--active, .popup__content-webinar--active {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1); }
    .popup__content iframe, .popup__content-webinar iframe {
      width: 100% !important;
      height: 55rem !important;
      z-index: 10; }
      @media only screen and (max-width: 87.5em) {
        .popup__content iframe, .popup__content-webinar iframe {
          height: 45rem !important; } }
      @media only screen and (max-width: 31.25em) {
        .popup__content iframe, .popup__content-webinar iframe {
          width: 100%;
          height: 32rem !important; } }
  .popup__close {
    color: #c7c7d1;
    display: flex;
    padding: 0.5rem 2rem;
    justify-content: flex-end;
    cursor: pointer;
    text-align: end;
    width: 100%;
    font-size: 4rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    line-height: 1; }
    .popup__close:hover {
      color: #009745; }

.blog__list {
  margin: auto;
  max-width: 1440px;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 75em) {
    .blog__list {
      padding: 4rem; } }
  @media only screen and (max-width: 31.25em) {
    .blog__list {
      padding: 4rem 2rem; } }
  .blog__list--top {
    width: 100%;
    padding: 1rem;
    margin-bottom: 6rem; }
  .blog__list--top-container {
    position: relative; }
  .blog__list--feature-image {
    width: 80%;
    height: 50rem;
    background-image: url(../../stock-photos/bg-what.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .2rem;
    box-shadow: 0 0.2rem 0.5rem rgba(120, 124, 128, 0.1); }
    @media only screen and (max-width: 31.25em) {
      .blog__list--feature-image {
        width: 100%;
        height: 28rem; } }
  .blog__list--feature-content {
    position: absolute;
    right: 0;
    top: 7.5rem;
    background-image: linear-gradient(to bottom right, rgba(0, 151, 69, 0.89), rgba(0, 151, 69, 0.9)), url(../../stock-photos/bg-what.jpg);
    background-position: no-repeat;
    background-size: cover;
    background-position: center;
    width: 40%;
    height: 35rem;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media only screen and (max-width: 62.5em) {
      .blog__list--feature-content {
        width: 55%; } }
    @media only screen and (max-width: 50em) {
      .blog__list--feature-content {
        width: 70%; } }
    @media only screen and (max-width: 31.25em) {
      .blog__list--feature-content {
        width: 100%;
        height: auto;
        position: static; } }
  .blog__list--feature-link-wrapper {
    display: flex; }
    .blog__list--feature-link-wrapper div {
      flex: 1; }
  .blog__list--feature-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media only screen and (max-width: 31.25em) {
      .blog__list--feature-wrapper {
        padding-top: 4rem;
        padding-bottom: 4rem; } }
  .blog__list--feature-link {
    color: #f3f6f9;
    font-size: 1.5rem;
    letter-spacing: .3rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex-direction: column; }
  .blog__list--feature-link-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-top: .5rem; }
  .blog__list--feature-heading {
    padding: 1rem 0;
    padding-top: .5rem; }
    .blog__list--feature-heading a {
      color: #fff;
      text-decoration: none;
      font-size: 3.2rem;
      font-weight: 500;
      letter-spacing: .2rem;
      line-height: 1.6; }
  .blog__list--middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 31.25em) {
      .blog__list--middle {
        flex-direction: column; } }
  @media only screen and (max-width: 31.25em) {
    .blog__list--middle-heading {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 2rem; } }
  .blog__list--middle-wrapper {
    width: 100%; }
    .blog__list--middle-wrapper > * {
      width: 100%; }
  .blog__list--middle-topics-toggler {
    position: relative;
    cursor: pointer;
    padding: 1.2rem 3rem;
    border-radius: 100rem;
    border: 1px solid #b5b5c3;
    color: #787c80;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: .2rem;
    transition: all .3s; }
    .blog__list--middle-topics-toggler span {
      padding-right: .8rem; }
    .blog__list--middle-topics-toggler i {
      display: inline-block;
      transition: all .3s; }
    @media only screen and (max-width: 31.25em) {
      .blog__list--middle-topics-toggler {
        width: 100%;
        text-align: center;
        font-size: 1.8rem; } }
    .blog__list--middle-topics-toggler-active i {
      transform: rotate(180deg); }
  .blog__list--middle-topics-wrapper {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    width: 30rem;
    box-shadow: 0 0.3rem 1rem rgba(120, 124, 128, 0.7);
    text-align: left;
    overflow-y: auto;
    padding: 2rem;
    right: -1rem;
    margin-top: 2rem;
    height: 40rem;
    border-radius: .3rem;
    animation: fadeIn .7s;
    animation-fill-mode: backwards;
    display: none; }
    .blog__list--middle-topics-wrapper-active {
      display: block; }
    @media only screen and (max-width: 31.25em) {
      .blog__list--middle-topics-wrapper {
        width: 100%; } }
    .blog__list--middle-topics-wrapper a {
      text-decoration: none;
      font-size: 1.4rem;
      font-weight: 500;
      text-transform: uppercase;
      color: #3d3d3d; }
      @media only screen and (max-width: 31.25em) {
        .blog__list--middle-topics-wrapper a {
          font-size: 1.8rem; } }
    .blog__list--middle-topics-wrapper li, .blog__list--middle-topics-wrapper ul {
      list-style: none; }
    .blog__list--middle-topics-wrapper li {
      padding: 1rem 0;
      border-bottom: 0.1rem solid #ededed; }
  .blog__list--bottom {
    display: flex;
    width: 100%;
    flex-wrap: wrap; }
  .blog__list--card {
    width: calc(25% - 2rem);
    margin: 1rem;
    margin-bottom: 6rem; }
    @media only screen and (max-width: 62.5em) {
      .blog__list--card {
        width: calc(33.33% - 2rem); } }
    @media only screen and (max-width: 43.75em) {
      .blog__list--card {
        width: calc(50% - 2rem); } }
    @media only screen and (max-width: 31.25em) {
      .blog__list--card {
        width: 100%;
        margin-bottom: 2rem; } }
  .blog__list--card-read-more {
    position: absolute;
    display: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .4s; }
    .blog__list--card-read-more span {
      display: none;
      text-align: center;
      border: .1rem solid #fff;
      padding: 1rem 3rem;
      border-radius: 100rem;
      font-size: 1.5rem;
      font-weight: 700;
      animation: fadeIn .6s;
      animation-fill-mode: backwards; }
    .blog__list--card-read-more i {
      padding-left: .8rem; }
  .blog__list--card-heading {
    padding: 1rem 0;
    color: #3d3d3d; }
    .blog__list--card-heading a {
      color: #3d3d3d;
      text-decoration: none;
      cursor: pointer;
      font-size: 1.8rem;
      font-weight: 700; }
      @media only screen and (max-width: 31.25em) {
        .blog__list--card-heading a {
          font-size: 2rem; } }
  .blog__list--content {
    color: #787c80;
    font-size: 1.6rem;
    font-weight: 300; }
    @media only screen and (max-width: 31.25em) {
      .blog__list--content {
        font-size: 1.8rem; } }
  .blog__list--card-thumb:hover .blog__list--card-read-more {
    display: flex;
    background-color: rgba(61, 61, 61, 0.9); }
    .blog__list--card-thumb:hover .blog__list--card-read-more span {
      display: block; }
  .blog__list--card-thumb {
    display: flex;
    text-decoration: none;
    height: 33rem;
    width: 100%;
    position: relative; }
    @media only screen and (max-width: 68.75em) {
      .blog__list--card-thumb {
        height: 28rem; } }
    .blog__list--card-thumb img {
      box-shadow: 0rem 0.2rem 0.5rem rgba(181, 181, 195, 0.3);
      border-radius: .2rem;
      width: 100%;
      display: block;
      object-fit: cover;
      height: 100%; }

.footer__transform {
  margin-top: -25vh; }
  @media only screen and (max-width: 31.25em) {
    .footer__transform {
      margin-top: 0; } }

.section__job--btn-wrapper {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .section__job--btn-wrapper {
      flex-direction: column; } }
  .section__job--btn-wrapper .cta, .section__job--btn-wrapper a {
    display: block;
    margin: 1rem;
    min-width: 32rem;
    transition: all .3s; }
    @media only screen and (max-width: 37.5em) {
      .section__job--btn-wrapper .cta, .section__job--btn-wrapper a {
        min-width: 100%; } }

.section__job--benefit {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%; }
  @media only screen and (max-width: 43.75em) {
    .section__job--benefit {
      padding: 2rem; } }
  .section__job--benefit-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .section__job--benefit-bottom {
    max-width: 900px;
    padding: 4rem 0;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 43.75em) {
      .section__job--benefit-bottom {
        justify-content: center;
        align-items: center; } }
    @media only screen and (max-width: 31.25em) {
      .section__job--benefit-bottom {
        padding: 2rem 0; } }
  .section__job--benefit-card {
    width: calc(50% - 4rem);
    margin: 2rem;
    box-shadow: 0 0 0.3rem 0.5rem rgba(120, 124, 128, 0.08);
    padding: 3rem;
    border-radius: .5rem; }
    @media only screen and (max-width: 43.75em) {
      .section__job--benefit-card {
        width: 70%; } }
    @media only screen and (max-width: 31.25em) {
      .section__job--benefit-card {
        width: 100%;
        margin: 2rem; } }
  .section__job--benefit-card-top {
    display: flex;
    padding-bottom: 2rem;
    align-items: center; }
  .section__job--benefit-card-img {
    height: 5rem;
    display: block;
    margin-right: 2rem;
    justify-content: center;
    align-items: center; }
    .section__job--benefit-card-img img {
      height: 100%;
      display: block;
      object-fit: cover; }
  .section__job--benefit-card-heading {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    flex-wrap: 1; }
    @media only screen and (max-width: 31.25em) {
      .section__job--benefit-card-heading {
        font-size: 1.7rem; } }

.section__job--openings-heading {
  font-size: 2rem;
  font-weight: 700; }
  @media only screen and (max-width: 31.25em) {
    .section__job--openings-heading {
      font-size: 2.2rem; } }

.section__job--openings-card-top {
  padding-bottom: 2rem; }

.section__job--openings-card-bottom {
  width: 100%;
  display: flex; }
  @media only screen and (max-width: 37.5em) {
    .section__job--openings-card-bottom {
      flex-direction: column; } }

.section__job--openings-paragraph-wrapper {
  width: 70%; }
  @media only screen and (max-width: 56.25em) {
    .section__job--openings-paragraph-wrapper {
      width: 60%; } }
  @media only screen and (max-width: 37.5em) {
    .section__job--openings-paragraph-wrapper {
      width: 100%; } }

.section__job--openings-cta-wrapper {
  flex: 1;
  margin-left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .section__job--openings-cta-wrapper {
      margin-left: 0;
      margin-top: 2rem; } }

.section__job--openings-cta {
  background-color: #009745 !important;
  transition: all .2s linear; }
  .section__job--openings-cta:hover {
    background-color: #007e39 !important; }

.section__job--openings-card {
  width: 100%;
  margin: 2rem;
  box-shadow: 0 0 0.3rem 0.5rem rgba(120, 124, 128, 0.08);
  padding: 4rem 3rem;
  border-radius: .5rem; }
  @media only screen and (max-width: 37.5em) {
    .section__job--openings-card {
      text-align: center !important;
      padding: 3rem; } }

.section__job--form-banner {
  background-image: linear-gradient(to bottom right, rgba(61, 61, 61, 0.7), rgba(61, 61, 61, 0.6)), url(../../stock-photos/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 4rem;
  padding-top: 8rem;
  min-height: 550px;
  width: 100%; }
  @media only screen and (max-width: 31.25em) {
    .section__job--form-banner {
      padding: 4rem 2rem;
      min-height: auto; } }

.section__job--form-wrapper {
  max-width: 900px;
  background-color: #fff;
  margin: 0 auto;
  margin-bottom: 4rem;
  transform: translateY(-30vh);
  border-radius: .5rem;
  box-shadow: 0 0 0.3rem 0.5rem rgba(120, 124, 128, 0.08);
  padding: 4rem 10rem;
  min-height: 50rem; }
  @media only screen and (max-width: 56.25em) {
    .section__job--form-wrapper {
      max-width: 70%; } }
  @media only screen and (max-width: 50em) {
    .section__job--form-wrapper {
      max-width: 80%; } }
  @media only screen and (max-width: 43.75em) {
    .section__job--form-wrapper {
      max-width: 90%; } }
  @media only screen and (max-width: 31.25em) {
    .section__job--form-wrapper {
      max-width: 100%;
      box-shadow: 0 0 0 transparent;
      border-radius: 0;
      transform: translateY(0);
      padding: 4rem 2rem; } }
  .section__job--form-wrapper-normal {
    transform: translateY(0);
    margin: 4rem auto;
    width: 100%;
    background-color: transparent;
    box-shadow: 0 0 0 transparent;
    min-height: auto; }
  .section__job--form-wrapper input,
  .section__job--form-wrapper textarea, .section__job--form-wrapper select {
    flex: 1;
    padding: 1.4rem 2rem;
    outline: none;
    border: none;
    background-color: #fff;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 400;
    color: #787c80;
    border-radius: 0.3rem;
    border: 0.07rem solid rgba(181, 181, 195, 0.4);
    margin-top: 0.5rem;
    width: 100%; }
    @media only screen and (max-width: 50em) {
      .section__job--form-wrapper input,
      .section__job--form-wrapper textarea, .section__job--form-wrapper select {
        padding: 2rem;
        font-size: 1.8rem; } }
    .section__job--form-wrapper input::-webkit-input-placeholder,
    .section__job--form-wrapper textarea::-webkit-input-placeholder, .section__job--form-wrapper select::-webkit-input-placeholder {
      font-family: inherit;
      font-size: 1.4rem;
      font-weight: 400;
      color: #787c80; }
      @media only screen and (max-width: 50em) {
        .section__job--form-wrapper input::-webkit-input-placeholder,
        .section__job--form-wrapper textarea::-webkit-input-placeholder, .section__job--form-wrapper select::-webkit-input-placeholder {
          font-size: 1.8rem; } }

.section__job--form-input-group {
  margin: 2rem 0;
  display: flex;
  flex-direction: column; }

.section__job--form-label {
  font-size: 1.4rem;
  color: #3d3d3d;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase; }
  @media only screen and (max-width: 37.5em) {
    .section__job--form-label {
      font-size: 1.6rem; } }

.section__job--form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  transform: translateY(-30vh);
  background-image: url(../../stock-photos/Bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 31.25em) {
    .section__job--form-container {
      padding: 4rem 2rem;
      transform: translateY(0); } }

.section__job--form-top {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.section__job--form-bottom {
  padding: 2rem 0; }
  .section__job--form-bottom p {
    color: #787c80 !important;
    line-height: 1.7 !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important; }


.section__title{
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-80 {
  height: 80%;
}

.h-90 {
  height: 90%;
}

.h-100 {
  height: 100%;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}


.p-1_4{
  padding: .25em;
}
.p-1_2{
  padding: .5em;
}
.p-1{
  padding: 1em;
}
.p-3_2{
  padding: 1.5em;
}
.p-2{
  padding: 2em;
}

.pb-1_4{
  padding-bottom: .25em;
}
.pb-1_2{
  padding-bottom: .5em;
}
.pb-1{
  padding-bottom: 1em;
}
.pb-3_2{
  padding-bottom: 1.5em;
}
.pb-2{
  padding-bottom: 2em;
}

.pt-1_4{
  padding-top: .25em;
}
.pt-1_2{
  padding-top: .5em;
}
.pt-1{
  padding-top: 1em;
}
.pt-3_2{
  padding-top: 1.5em;
}
.pt-2{
  padding-top: 2em;
}


.m-1_4{
  margin: .25em;
}
.m-1_2{
  margin: .5em;
}
.m-1{
  margin: 1em;
}
.m-3_2{
  margin: 1.5em;
}
.m-2{
  margin: 2em;
}
.m-auto {
  margin: auto;
}


.border{
  border: 1px solid black;
}
.border-white{
  border-color: white !important;
}
.border-left{
  border-left: 1px solid black;
}
.border-right{
  border-right: 1px solid black;
}
.border-top{
  border-top: 1px solid black;
}
.border-bottom{
  border-bottom: 1px solid black;
}
.border-1{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-3{
  border-width: 3px;
}
.border-4{
  border-width: 4px;
}
.border-5{
  border-width: 5px;
}

.grid {
  display: grid;
}

.grid-cols-1{
  grid-template-columns: 1fr;
}
.grid-cols-2{
  grid-template-columns: 1fr 1fr;
}
.grid-cols-3{
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-cols-4{
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5{
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6{
  grid-template-columns: repeat(6, 1fr);
}
.grid-cols-7{
  grid-template-columns: repeat(7, 1fr);
}
.grid-cols-8{
  grid-template-columns: repeat(8, 1fr);
}
.grid-cols-9{
  grid-template-columns: repeat(9, 1fr);
}
.grid-cols-10{
  grid-template-columns: repeat(10, 1fr);
}
.grid-cols-11{
  grid-template-columns: repeat(11, 1fr);
}
.grid-cols-12{
  grid-template-columns: repeat(12, 1fr);
}

.col-span-1{
  grid-column: span 1 / auto; 
}
.col-span-2{
  grid-column: span 2 / auto; 
}
.col-span-3{
  grid-column: span 3 / auto; 
}
.col-span-4{
  grid-column: span 4 / auto; 
}
.col-span-5{
  grid-column: span 5 / auto; 
}
.col-span-6{
  grid-column: span 6 / auto; 
}
.col-span-7{
  grid-column: span 7 / auto; 
}
.col-span-8{
  grid-column: span 8 / auto; 
}
.col-span-9{
  grid-column: span 9 / auto; 
}
.col-span-10{
  grid-column: span 10 / auto; 
}
.col-span-11{
  grid-column: span 11 / auto; 
}
.col-span-12{
  grid-column: span 12 / auto; 
}

@media (min-width: 576px){
  .col-sm-span-1{
    grid-column: span 1 / auto; 
  }
  .col-sm-span-2{
    grid-column: span 2 / auto; 
  }
  .col-sm-span-3{
    grid-column: span 3 / auto; 
  }
  .col-sm-span-4{
    grid-column: span 4 / auto; 
  }
  .col-sm-span-5{
    grid-column: span 5 / auto; 
  }
  .col-sm-span-6{
    grid-column: span 6 / auto; 
  }
  .col-sm-span-7{
    grid-column: span 7 / auto; 
  }
  .col-sm-span-8{
    grid-column: span 8 / auto; 
  }
  .col-sm-span-9{
    grid-column: span 9 / auto; 
  }
  .col-sm-span-10{
    grid-column: span 10 / auto; 
  }
  .col-sm-span-11{
    grid-column: span 11 / auto; 
  }
  .col-sm-span-12{
    grid-column: span 12 / auto; 
  }
}

@media(min-width: 768px){
  .col-md-span-1{
    grid-column: span 1 / auto; 
  }
  .col-md-span-2{
    grid-column: span 2 / auto; 
  }
  .col-md-span-3{
    grid-column: span 3 / auto; 
  }
  .col-md-span-4{
    grid-column: span 4 / auto; 
  }
  .col-md-span-5{
    grid-column: span 5 / auto; 
  }
  .col-md-span-6{
    grid-column: span 6 / auto; 
  }
  .col-md-span-7{
    grid-column: span 7 / auto; 
  }
  .col-md-span-8{
    grid-column: span 8 / auto; 
  }
  .col-md-span-9{
    grid-column: span 9 / auto; 
  }
  .col-md-span-10{
    grid-column: span 10 / auto; 
  }
  .col-md-span-11{
    grid-column: span 11 / auto; 
  }
  .col-md-span-12{
    grid-column: span 12 / auto; 
  }
}
@media(min-width: 992px){
  .col-lg-span-1{
    grid-column: span 1 / auto; 
  }
  .col-lg-span-2{
    grid-column: span 2 / auto; 
  }
  .col-lg-span-3{
    grid-column: span 3 / auto; 
  }
  .col-lg-span-4{
    grid-column: span 4 / auto; 
  }
  .col-sm-span-5{
    grid-column: span 5 / auto; 
  }
  .col-lg-span-6{
    grid-column: span 6 / auto; 
  }
  .col-lg-span-7{
    grid-column: span 7 / auto; 
  }
  .col-lg-span-8{
    grid-column: span 8 / auto; 
  }
  .col-lg-span-9{
    grid-column: span 9 / auto; 
  }
  .col-lg-span-10{
    grid-column: span 10 / auto; 
  }
  .col-lg-span-11{
    grid-column: span 11 / auto; 
  }
  .col-lg-span-12{
    grid-column: span 12 / auto; 
  }
}
@media(min-width: 1200px){
  .col-xl-span-1{
    grid-column: span 1 / auto; 
  }
  .col-xl-span-2{
    grid-column: span 2 / auto; 
  }
  .col-xl-span-3{
    grid-column: span 3 / auto; 
  }
  .col-xl-span-4{
    grid-column: span 4 / auto; 
  }
  .col-xl-span-5{
    grid-column: span 5 / auto; 
  }
  .col-xl-span-6{
    grid-column: span 6 / auto; 
  }
  .col-xl-span-7{
    grid-column: span 7 / auto; 
  }
  .col-xl-span-8{
    grid-column: span 8 / auto; 
  }
  .col-xl-span-9{
    grid-column: span 9 / auto; 
  }
  .col-xl-span-10{
    grid-column: span 10 / auto; 
  }
  .col-xl-span-11{
    grid-column: span 11 / auto; 
  }
  .col-xl-span-12{
    grid-column: span 12 / auto; 
  }
}
@media(min-width: 14000px){
  .col-xxl-span-1{
    grid-column: span 1 / auto; 
  }
  .col-xxl-span-2{
    grid-column: span 2 / auto; 
  }
  .col-xxl-span-3{
    grid-column: span 3 / auto; 
  }
  .col-xxl-span-4{
    grid-column: span 4 / auto; 
  }
  .col-xxl-span-5{
    grid-column: span 5 / auto; 
  }
  .col-xxl-span-6{
    grid-column: span 6 / auto; 
  }
  .col-xxl-span-7{
    grid-column: span 7 / auto; 
  }
  .col-xxl-span-8{
    grid-column: span 8 / auto; 
  }
  .col-xxl-span-9{
    grid-column: span 9 / auto; 
  }
  .col-xxl-span-10{
    grid-column: span 10 / auto; 
  }
  .col-xxl-span-11{
    grid-column: span 11 / auto; 
  }
  .col-xxl-span-12{
    grid-column: span 12 / auto; 
  }
}

.row-span-2 {
  grid-row: span 2 / auto;
}

.row-span-3 {
  grid-row: span 3 / auto;
}

.row-span-4 {
  grid-row: span 4 / auto;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.flex-grow {
  flex-grow: 1;
}

.gap-1 {
  gap: 1em;
}

.gap-2{
  gap: 2em;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.pos-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-white {
  color: white;
}

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

.text-small{
  font-size: 1.5rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.bg-green{
  background-color: var(--jr-green);
}

.bg-char{
  background-color: #313131;
}

.text-green{
  color: var(--jr-green);
}

.text-bold{
  font-weight: bold;
}

.thin-title{
  letter-spacing: .1em;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase
}

.btn-outline{
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  color: white;
  line-height: 1.5em;
  padding: .5rem 1.2rem;
  border: 2px solid white;
  display: inline-block;
}

.btn-outline:hover{
  background-color: rgba(255, 255, 255, .1);
}