/*! project-name v0.0.1 | (c) 2024 YOUR NAME | MIT License | http://link-to-your-git-repo.com */
/** Fade In Left */
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/** Fade In Right */
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/** Fade In Up */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/** ========= RESET ========= */
/* line 3, src/sass/base/_base.scss */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* line 10, src/sass/base/_base.scss */
*:focus-visible {
  outline: 2px solid #4f7288;
  text-decoration: none;
}

/* line 29, src/sass/base/_base.scss */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* line 33, src/sass/base/_base.scss */
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

/* line 38, src/sass/base/_base.scss */
ul {
  list-style: none;
  margin-bottom: 0;
}

/* line 44, src/sass/base/_base.scss */
a, a:hover, a:visited, a:active, a:focus {
  text-decoration: none;
}

/* line 48, src/sass/base/_base.scss */
a {
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  color: inherit;
}

/* line 54, src/sass/base/_base.scss */
::-moz-selection {
  background-color: #4f7288;
  color: #ffffff;
}
::selection {
  background-color: #4f7288;
  color: #ffffff;
}

/* line 59, src/sass/base/_base.scss */
.nuxt-link-exact-active.nuxt-link-active {
  color: #4f7288 !important;
  font-weight: 500;
}

/** ========= TYPOGRAPHY ========= */
/* line 2, src/sass/base/_typography.scss */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  line-height: 24px;
  font-size: 18px;
  color: #3b3b3b;
}

/** Headers */
/* line 11, src/sass/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  line-height: inherit;
  margin-bottom: 0;
}

/* line 17, src/sass/base/_typography.scss */
h1, .h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

/* line 23, src/sass/base/_typography.scss */
h2, .h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 600;
}

/* line 29, src/sass/base/_typography.scss */
h3, .h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

/** General Rules */
/* line 38, src/sass/base/_typography.scss */
p {
  line-height: normal;
  margin-bottom: 0;
}

/* line 41, src/sass/base/_typography.scss */
p:not(:last-child) {
  margin-bottom: 10px;
}

/* line 47, src/sass/base/_typography.scss */
.font-sm {
  font-size: 12px !important;
  line-height: 20px;
}

/* line 51, src/sass/base/_typography.scss */
.font-md {
  font-size: 17px !important;
  line-height: 25px;
}

/* line 55, src/sass/base/_typography.scss */
.font-lg {
  font-size: 20px !important;
  line-height: 28px;
}

/* line 59, src/sass/base/_typography.scss */
.font-xl {
  font-size: 25px !important;
  line-height: 33px;
}

/* line 64, src/sass/base/_typography.scss */
.light {
  font-weight: 300;
}

/* line 67, src/sass/base/_typography.scss */
.normal {
  font-weight: 400;
}

/* line 70, src/sass/base/_typography.scss */
.medium {
  font-weight: 500;
}

/* line 73, src/sass/base/_typography.scss */
.semibold {
  font-weight: 600;
}

/* line 76, src/sass/base/_typography.scss */
.bold {
  font-weight: 700;
}

/* line 79, src/sass/base/_typography.scss */
.bolder {
  font-weight: 800;
}

/* line 82, src/sass/base/_typography.scss */
.boldest {
  font-weight: 900;
}

@media only screen and (max-width: 768.9px) {
  /* line 87, src/sass/base/_typography.scss */
  body {
    font-size: 16px;
    line-height: 24px;
  }
  /* line 91, src/sass/base/_typography.scss */
  h1, h1 {
    font-size: 32px;
    line-height: 40px;
  }
  /* line 95, src/sass/base/_typography.scss */
  h2, .h2 {
    font-size: 32px;
    line-height: 40px;
  }
  /* line 99, src/sass/base/_typography.scss */
  h3, .h3 {
    font-size: 24px;
    line-height: 32px;
  }
  /* line 103, src/sass/base/_typography.scss */
  .medium-sm {
    font-weight: 500;
  }
}

/** ========= UTILITIES ========= */
/** Text Alignment */
/* line 5, src/sass/base/_utilities.scss */
.text-center {
  text-align: center;
}

/* line 9, src/sass/base/_utilities.scss */
.text-right {
  text-align: right;
}

/* line 13, src/sass/base/_utilities.scss */
.text-left {
  text-align: left;
}

/* line 25, src/sass/base/_utilities.scss */
.text-underline {
  text-decoration: underline !important;
}

/* line 28, src/sass/base/_utilities.scss */
.custom-underline {
  text-decoration: underline !important;
  -webkit-text-decoration-color: #4f7288;
  text-decoration-color: #4f7288 !important;
  text-decoration-thickness: 2px !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
}

/* line 34, src/sass/base/_utilities.scss */
.custom-underline:hover {
  text-decoration: none;
}

/* line 38, src/sass/base/_utilities.scss */
.custom-underline-1 {
  text-decoration: underline !important;
  -webkit-text-decoration-color: #4f7288;
  text-decoration-color: #4f7288 !important;
  text-decoration-thickness: 1px !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
}

/* line 44, src/sass/base/_utilities.scss */
.custom-underline-1:hover {
  text-decoration: none;
}

/* line 48, src/sass/base/_utilities.scss */
.m-auto {
  margin: 0 auto;
}

/* line 51, src/sass/base/_utilities.scss */
.hover-effect {
  -webkit-transition: color 0.3s ease !important;
  transition: color 0.3s ease !important;
}

/* line 54, src/sass/base/_utilities.scss */
.hover-effect:hover {
  color: #3a5664 !important;
  /* Change color on hover */
}

/** Text Colors */
/* line 63, src/sass/base/_utilities.scss */
.text-primary {
  color: #4f7288 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-accent-yellow {
  color: #f7c061 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-light-yellow {
  color: #ffefd6 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-light-blue {
  color: #ebf1f5 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-hero-blue {
  color: #d8e3e9 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-black {
  color: #000 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-black-light {
  color: #3b3b3b !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-white {
  color: #ffffff !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-error {
  color: #dc3545 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-disabled-copy {
  color: #e6e6e6 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-link {
  color: #4f7288 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-orange {
  color: #d93912 !important;
}

/* line 63, src/sass/base/_utilities.scss */
.text-disabled-background {
  color: #65656c !important;
}

/** Margins */
/* line 71, src/sass/base/_utilities.scss */
.m-1 {
  margin: 10px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-1 {
  margin-bottom: 10px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-1 {
  margin-top: 10px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-1 {
  margin-left: 10px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-1 {
  margin-right: 10px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-1 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-1 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-2 {
  margin: 20px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-2 {
  margin-bottom: 20px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-2 {
  margin-top: 20px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-2 {
  margin-left: 20px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-2 {
  margin-right: 20px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-2 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-2 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-3 {
  margin: 30px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-3 {
  margin-bottom: 30px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-3 {
  margin-top: 30px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-3 {
  margin-left: 30px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-3 {
  margin-right: 30px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-3 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-3 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-4 {
  margin: 40px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-4 {
  margin-bottom: 40px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-4 {
  margin-top: 40px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-4 {
  margin-left: 40px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-4 {
  margin-right: 40px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-4 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-4 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-5 {
  margin: 50px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-5 {
  margin-bottom: 50px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-5 {
  margin-top: 50px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-5 {
  margin-left: 50px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-5 {
  margin-right: 50px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-5 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-5 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-6 {
  margin: 60px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-6 {
  margin-bottom: 60px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-6 {
  margin-top: 60px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-6 {
  margin-left: 60px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-6 {
  margin-right: 60px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-6 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-6 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-7 {
  margin: 70px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-7 {
  margin-bottom: 70px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-7 {
  margin-top: 70px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-7 {
  margin-left: 70px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-7 {
  margin-right: 70px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-7 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-7 {
  margin-right: 70px !important;
  margin-left: 70px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-8 {
  margin: 80px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-8 {
  margin-bottom: 80px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-8 {
  margin-top: 80px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-8 {
  margin-left: 80px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-8 {
  margin-right: 80px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-8 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-8 {
  margin-right: 80px !important;
  margin-left: 80px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-9 {
  margin: 90px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-9 {
  margin-bottom: 90px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-9 {
  margin-top: 90px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-9 {
  margin-left: 90px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-9 {
  margin-right: 90px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-9 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-9 {
  margin-right: 90px !important;
  margin-left: 90px !important;
}

/* line 71, src/sass/base/_utilities.scss */
.m-10 {
  margin: 100px !important;
}

/* line 74, src/sass/base/_utilities.scss */
.mb-10 {
  margin-bottom: 100px !important;
}

/* line 77, src/sass/base/_utilities.scss */
.mt-10 {
  margin-top: 100px !important;
}

/* line 80, src/sass/base/_utilities.scss */
.ml-10 {
  margin-left: 100px !important;
}

/* line 83, src/sass/base/_utilities.scss */
.mr-10 {
  margin-right: 100px !important;
}

/* line 86, src/sass/base/_utilities.scss */
.my-10 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

/* line 90, src/sass/base/_utilities.scss */
.mx-10 {
  margin-right: 100px !important;
  margin-left: 100px !important;
}

/* line 95, src/sass/base/_utilities.scss */
.mb-16 {
  margin-bottom: 16px !important;
}

/* line 98, src/sass/base/_utilities.scss */
.mb-24 {
  margin-bottom: 24px;
}

/* line 101, src/sass/base/_utilities.scss */
.mb-12 {
  margin-bottom: 12px;
}

@media only screen and (max-width: 768.9px) {
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-1 {
    margin: 10px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-1 {
    margin-bottom: 10px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-1 {
    margin-top: 10px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-1 {
    margin-left: 10px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-1 {
    margin-right: 10px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-1 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-1 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-2 {
    margin: 20px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-2 {
    margin-bottom: 20px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-2 {
    margin-top: 20px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-2 {
    margin-left: 20px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-2 {
    margin-right: 20px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-2 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-2 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-3 {
    margin: 30px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-3 {
    margin-bottom: 30px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-3 {
    margin-top: 30px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-3 {
    margin-left: 30px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-3 {
    margin-right: 30px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-3 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-4 {
    margin: 40px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-4 {
    margin-bottom: 40px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-4 {
    margin-top: 40px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-4 {
    margin-left: 40px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-4 {
    margin-right: 40px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-4 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-5 {
    margin: 50px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-5 {
    margin-bottom: 50px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-5 {
    margin-top: 50px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-5 {
    margin-left: 50px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-5 {
    margin-right: 50px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-5 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-5 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-6 {
    margin: 60px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-6 {
    margin-bottom: 60px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-6 {
    margin-top: 60px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-6 {
    margin-left: 60px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-6 {
    margin-right: 60px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-6 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-6 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-7 {
    margin: 70px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-7 {
    margin-bottom: 70px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-7 {
    margin-top: 70px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-7 {
    margin-left: 70px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-7 {
    margin-right: 70px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-7 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-7 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-8 {
    margin: 80px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-8 {
    margin-bottom: 80px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-8 {
    margin-top: 80px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-8 {
    margin-left: 80px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-8 {
    margin-right: 80px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-8 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-9 {
    margin: 90px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-9 {
    margin-bottom: 90px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-9 {
    margin-top: 90px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-9 {
    margin-left: 90px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-9 {
    margin-right: 90px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-9 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-9 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  /* line 107, src/sass/base/_utilities.scss */
  .m-sm-10 {
    margin: 100px !important;
  }
  /* line 110, src/sass/base/_utilities.scss */
  .mb-sm-10 {
    margin-bottom: 100px !important;
  }
  /* line 113, src/sass/base/_utilities.scss */
  .mt-sm-10 {
    margin-top: 100px !important;
  }
  /* line 116, src/sass/base/_utilities.scss */
  .ml-sm-10 {
    margin-left: 100px !important;
  }
  /* line 119, src/sass/base/_utilities.scss */
  .mr-sm-10 {
    margin-right: 100px !important;
  }
  /* line 122, src/sass/base/_utilities.scss */
  .my-sm-10 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  /* line 126, src/sass/base/_utilities.scss */
  .mx-sm-10 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  /* line 131, src/sass/base/_utilities.scss */
  .mb-sm-16 {
    margin-bottom: 16px !important;
  }
}

/** Paddings */
/* line 139, src/sass/base/_utilities.scss */
.p-1 {
  padding: 10px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-1 {
  padding-bottom: 10px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-1 {
  padding-top: 10px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-1 {
  padding-left: 10px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-1 {
  padding-right: 10px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-1 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-1 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-2 {
  padding: 20px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-2 {
  padding-bottom: 20px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-2 {
  padding-top: 20px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-2 {
  padding-left: 20px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-2 {
  padding-right: 20px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-2 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-2 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-3 {
  padding: 30px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-3 {
  padding-bottom: 30px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-3 {
  padding-top: 30px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-3 {
  padding-left: 30px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-3 {
  padding-right: 30px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-3 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-4 {
  padding: 40px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-4 {
  padding-bottom: 40px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-4 {
  padding-top: 40px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-4 {
  padding-left: 40px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-4 {
  padding-right: 40px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-4 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-4 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-5 {
  padding: 50px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-5 {
  padding-bottom: 50px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-5 {
  padding-top: 50px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-5 {
  padding-left: 50px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-5 {
  padding-right: 50px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-5 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-6 {
  padding: 60px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-6 {
  padding-bottom: 60px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-6 {
  padding-top: 60px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-6 {
  padding-left: 60px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-6 {
  padding-right: 60px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-6 {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-7 {
  padding: 70px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-7 {
  padding-bottom: 70px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-7 {
  padding-top: 70px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-7 {
  padding-left: 70px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-7 {
  padding-right: 70px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-7 {
  padding-right: 70px !important;
  padding-left: 70px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-8 {
  padding: 80px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-8 {
  padding-bottom: 80px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-8 {
  padding-top: 80px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-8 {
  padding-left: 80px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-8 {
  padding-right: 80px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-8 {
  padding-right: 80px !important;
  padding-left: 80px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-9 {
  padding: 90px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-9 {
  padding-bottom: 90px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-9 {
  padding-top: 90px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-9 {
  padding-left: 90px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-9 {
  padding-right: 90px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-9 {
  padding-right: 90px !important;
  padding-left: 90px !important;
}

/* line 139, src/sass/base/_utilities.scss */
.p-10 {
  padding: 100px !important;
}

/* line 142, src/sass/base/_utilities.scss */
.pb-10 {
  padding-bottom: 100px !important;
}

/* line 145, src/sass/base/_utilities.scss */
.pt-10 {
  padding-top: 100px !important;
}

/* line 148, src/sass/base/_utilities.scss */
.pl-10 {
  padding-left: 100px !important;
}

/* line 151, src/sass/base/_utilities.scss */
.pr-10 {
  padding-right: 100px !important;
}

/* line 154, src/sass/base/_utilities.scss */
.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* line 158, src/sass/base/_utilities.scss */
.px-10 {
  padding-right: 100px !important;
  padding-left: 100px !important;
}

@media only screen and (max-width: 768.9px) {
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-0 {
    padding: 0px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-0 {
    padding-left: 0px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-0 {
    padding-right: 0px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-1 {
    padding: 10px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-1 {
    padding-bottom: 10px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-1 {
    padding-top: 10px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-1 {
    padding-left: 10px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-1 {
    padding-right: 10px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-1 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-1 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-2 {
    padding: 20px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-2 {
    padding-bottom: 20px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-2 {
    padding-top: 20px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-2 {
    padding-left: 20px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-2 {
    padding-right: 20px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-2 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-3 {
    padding: 30px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-3 {
    padding-bottom: 30px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-3 {
    padding-top: 30px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-3 {
    padding-left: 30px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-3 {
    padding-right: 30px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-3 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-3 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-4 {
    padding: 40px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-4 {
    padding-bottom: 40px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-4 {
    padding-top: 40px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-4 {
    padding-left: 40px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-4 {
    padding-right: 40px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-4 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-4 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-5 {
    padding: 50px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-5 {
    padding-bottom: 50px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-5 {
    padding-top: 50px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-5 {
    padding-left: 50px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-5 {
    padding-right: 50px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-5 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-6 {
    padding: 60px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-6 {
    padding-bottom: 60px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-6 {
    padding-top: 60px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-6 {
    padding-left: 60px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-6 {
    padding-right: 60px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-6 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-6 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-7 {
    padding: 70px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-7 {
    padding-bottom: 70px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-7 {
    padding-top: 70px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-7 {
    padding-left: 70px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-7 {
    padding-right: 70px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-7 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-7 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-8 {
    padding: 80px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-8 {
    padding-bottom: 80px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-8 {
    padding-top: 80px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-8 {
    padding-left: 80px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-8 {
    padding-right: 80px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-8 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-9 {
    padding: 90px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-9 {
    padding-bottom: 90px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-9 {
    padding-top: 90px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-9 {
    padding-left: 90px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-9 {
    padding-right: 90px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-9 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-9 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  /* line 166, src/sass/base/_utilities.scss */
  .p-sm-10 {
    padding: 100px !important;
  }
  /* line 169, src/sass/base/_utilities.scss */
  .pb-sm-10 {
    padding-bottom: 100px !important;
  }
  /* line 172, src/sass/base/_utilities.scss */
  .pt-sm-10 {
    padding-top: 100px !important;
  }
  /* line 175, src/sass/base/_utilities.scss */
  .pl-sm-10 {
    padding-left: 100px !important;
  }
  /* line 178, src/sass/base/_utilities.scss */
  .pr-sm-10 {
    padding-right: 100px !important;
  }
  /* line 181, src/sass/base/_utilities.scss */
  .py-sm-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  /* line 185, src/sass/base/_utilities.scss */
  .px-sm-10 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
}

/** Backgrounds */
/* line 195, src/sass/base/_utilities.scss */
.bg-primary {
  background: #4f7288 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-accent-yellow {
  background: #f7c061 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-light-yellow {
  background: #ffefd6 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-light-blue {
  background: #ebf1f5 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-hero-blue {
  background: #d8e3e9 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-black {
  background: #000 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-black-light {
  background: #3b3b3b !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-white {
  background: #ffffff !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-error {
  background: #dc3545 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-disabled-copy {
  background: #e6e6e6 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-link {
  background: #4f7288 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-orange {
  background: #d93912 !important;
}

/* line 195, src/sass/base/_utilities.scss */
.bg-disabled-background {
  background: #65656c !important;
}

/* line 199, src/sass/base/_utilities.scss */
.bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/** Display */
/* line 212, src/sass/base/_utilities.scss */
.d-centered {
  display: block;
  margin: auto;
}

/** Border */
/* line 218, src/sass/base/_utilities.scss */
.border {
  border: 1px solid #4f7288;
}

/* line 220, src/sass/base/_utilities.scss */
.border-light {
  border-color: #ffffff;
}

/* line 223, src/sass/base/_utilities.scss */
.border-top {
  border-top: 1px solid #4f7288 !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-1 {
  border-width: 1px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-2 {
  border-width: 2px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-3 {
  border-width: 3px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-4 {
  border-width: 4px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-5 {
  border-width: 5px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-6 {
  border-width: 6px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-7 {
  border-width: 7px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-8 {
  border-width: 8px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-9 {
  border-width: 9px !important;
}

/* line 227, src/sass/base/_utilities.scss */
.border-10 {
  border-width: 10px !important;
}

/** Border Radius */
/* line 235, src/sass/base/_utilities.scss */
.br-5 {
  border-radius: 5px !important;
}

/* line 238, src/sass/base/_utilities.scss */
.br-10 {
  border-radius: 10px !important;
}

/* line 241, src/sass/base/_utilities.scss */
.br-15 {
  border-radius: 15px !important;
}

/* line 244, src/sass/base/_utilities.scss */
.br-rounded {
  border-radius: 50px !important;
}

/** Shadow */
/* line 250, src/sass/base/_utilities.scss */
.shadow {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* line 252, src/sass/base/_utilities.scss */
.shadow-sm {
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1) !important;
}

/* line 255, src/sass/base/_utilities.scss */
.shadow-lg {
  -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1) !important;
}

/** Image */
/* line 262, src/sass/base/_utilities.scss */
.img-responsive {
  display: block;
  max-width: 100%;
}

/* line 266, src/sass/base/_utilities.scss */
.img-rounded {
  border-radius: 100%;
}

/** Positioning */
/* line 273, src/sass/base/_utilities.scss */
.p-relative {
  position: relative;
}

/* line 276, src/sass/base/_utilities.scss */
.p-vCentered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 279, src/sass/base/_utilities.scss */
.p-hCentered {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* line 282, src/sass/base/_utilities.scss */
.p-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 286, src/sass/base/_utilities.scss */
.mobile-show {
  display: none !important;
}

/* line 289, src/sass/base/_utilities.scss */
.desktop-show {
  display: block !important;
}

@media only screen and (max-width: 768.9px) {
  /* line 293, src/sass/base/_utilities.scss */
  .mobile-show {
    display: block !important;
  }
  /* line 296, src/sass/base/_utilities.scss */
  .desktop-show {
    display: none !important;
  }
}

/** ========= BUTTONS ========= */
/** General */
/* line 4, src/sass/base/_buttons.scss */
.btn {
  border: 2px solid transparent;
  padding: 4px 6px;
  border-radius: 60px;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  outline: none;
  position: relative;
  /** Button Type */
  /** Button Size */
  /** Button Colors */
  /** Outline Button */
}

/* line 20, src/sass/base/_buttons.scss */
.btn-block {
  display: block;
}

/* line 22, src/sass/base/_buttons.scss */
.btn-block:not(:last-child) {
  margin-right: 0;
  margin-bottom: 20px;
}

/* line 27, src/sass/base/_buttons.scss */
.btn-rounded {
  border-radius: 50px;
}

/* line 30, src/sass/base/_buttons.scss */
.btn-link {
  background: transparent;
  color: #4f7288;
}

/* line 34, src/sass/base/_buttons.scss */
.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 3rem 0 1.5rem;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: center;
  color: #4f7288;
}

/* line 46, src/sass/base/_buttons.scss */
.btn-icon::before, .btn-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 53, src/sass/base/_buttons.scss */
.btn-icon::before {
  border-radius: 19px;
  width: 38px;
  height: 38px;
  border: 2px solid #4f7288;
  right: 0;
  -webkit-transition: width ease-in-out .5s, background 0.25s ease-in-out;
  transition: width ease-in-out .5s, background 0.25s ease-in-out;
}

/* line 62, src/sass/base/_buttons.scss */
.btn-icon::after {
  content: '';
  width: 2.5rem;
  right: 0;
  font-family: 'icomoon' !important;
}

/* line 68, src/sass/base/_buttons.scss */
.btn-icon > span {
  position: relative;
  z-index: 1;
}

/* line 74, src/sass/base/_buttons.scss */
.btn-icon:hover::before {
  width: 100%;
}

/* line 80, src/sass/base/_buttons.scss */
.btn-icon--download::after {
  content: "\e900";
}

/* line 86, src/sass/base/_buttons.scss */
.btn-icon--forward::after {
  content: "\e913";
  color: #ebf1f5;
  font-size: 2.3em;
}

/* line 94, src/sass/base/_buttons.scss */
.btn-icon--blue::before {
  border-color: #4f7288;
}

/* line 97, src/sass/base/_buttons.scss */
.btn-icon--blue::after {
  color: #4f7288;
}

/* line 102, src/sass/base/_buttons.scss */
.btn-icon--blue-yellow::before {
  background: #f7c061;
}

/* line 106, src/sass/base/_buttons.scss */
.btn-icon--blue-yellow:hover::before {
  background: rgba(0, 0, 0, 0);
}

/* line 111, src/sass/base/_buttons.scss */
.btn-icon:focus-visible {
  min-height: 46px;
}

/* line 116, src/sass/base/_buttons.scss */
.btn .border-2 {
  border: 1.5px solid transparent;
  padding: 4px 16px;
  border-radius: 50px;
}

/* line 122, src/sass/base/_buttons.scss */
.btn-sm {
  font-size: 11px;
  padding: 5px 15px;
}

/* line 126, src/sass/base/_buttons.scss */
.btn-md {
  font-size: 14px;
  padding: 8px 15px;
}

/* line 130, src/sass/base/_buttons.scss */
.btn-lg {
  font-size: 18px;
  padding: 15px 35px;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-primary {
  border-color: #4f7288;
  color: #4f7288;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-primary:hover {
  border-color: #658ca5;
  background: #658ca5;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-accent-yellow {
  border-color: #f7c061;
  color: #f7c061;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-accent-yellow:hover {
  border-color: #f9d392;
  background: #f9d392;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-light-yellow {
  border-color: #ffefd6;
  color: #ffefd6;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-light-yellow:hover {
  border-color: white;
  background: white;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-light-blue {
  border-color: #ebf1f5;
  color: #ebf1f5;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-light-blue:hover {
  border-color: white;
  background: white;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-hero-blue {
  border-color: #d8e3e9;
  color: #d8e3e9;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-hero-blue:hover {
  border-color: #f9fafb;
  background: #f9fafb;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-black {
  border-color: #000;
  color: #000;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-black:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-black-light {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-black-light:hover {
  border-color: #555555;
  background: #555555;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-white {
  border-color: #ffffff;
  color: #ffffff;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-white:hover {
  border-color: white;
  background: white;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-error {
  border-color: #dc3545;
  color: #dc3545;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-error:hover {
  border-color: #e4606d;
  background: #e4606d;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-disabled-copy {
  border-color: #e6e6e6;
  color: #e6e6e6;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-disabled-copy:hover {
  border-color: white;
  background: white;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-link {
  border-color: #4f7288;
  color: #4f7288;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-link:hover {
  border-color: #658ca5;
  background: #658ca5;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-orange {
  border-color: #d93912;
  color: #d93912;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-orange:hover {
  border-color: #ee5530;
  background: #ee5530;
  color: #ffffff;
}

/* line 140, src/sass/base/_buttons.scss */
.btn-outline-disabled-background {
  border-color: #65656c;
  color: #65656c;
}

/* line 143, src/sass/base/_buttons.scss */
.btn-outline-disabled-background:hover {
  border-color: #7e7e86;
  background: #7e7e86;
  color: #ffffff;
}

/* line 151, src/sass/base/_buttons.scss */
.btn-orange {
  background-color: #d93912;
  color: #ffffff;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
          box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
}

/* line 156, src/sass/base/_buttons.scss */
.btn-orange:hover {
  background-color: #ffffff;
  color: #d93912;
  border: 2px solid #d93912;
  -webkit-box-shadow: 0 2px 12px 4px rgba(217, 57, 18, 0.25);
          box-shadow: 0 2px 12px 4px rgba(217, 57, 18, 0.25);
}

/* line 162, src/sass/base/_buttons.scss */
.btn-orange.active, .btn-orange:active {
  background-color: #df2e01 !important;
  -webkit-box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45);
          box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45);
  color: #ffffff !important;
  border: 2px solid #d93912 !important;
}

/* line 168, src/sass/base/_buttons.scss */
.btn-orange.active .border-2, .btn-orange:active .border-2 {
  border: none !important;
}

/* line 172, src/sass/base/_buttons.scss */
.btn-orange:focus-visible {
  -webkit-box-shadow: 0 2px 12px 4px rgba(217, 57, 18, 0.25);
          box-shadow: 0 2px 12px 4px rgba(217, 57, 18, 0.25);
  border: solid 2px #ffffff;
  background-color: #d93912;
  color: #ffffff !important;
}

/* line 177, src/sass/base/_buttons.scss */
.btn-orange:focus-visible .border-2 {
  border: solid 1.5px #ffffff;
}

/* line 181, src/sass/base/_buttons.scss */
.btn-orange-text {
  background-color: transparent;
  color: #d93912;
}

/* line 184, src/sass/base/_buttons.scss */
.btn-orange-text .border-2 {
  text-decoration: underline;
}

/* line 186, src/sass/base/_buttons.scss */
.btn-orange-text .border-2:focus-visible {
  outline: none;
}

/* line 190, src/sass/base/_buttons.scss */
.btn-orange-text:hover, .btn-orange-text:active {
  color: #d93912;
  outline: none;
}

/* line 194, src/sass/base/_buttons.scss */
.btn-orange-text img {
  padding-left: 6px;
}

/* line 199, src/sass/base/_buttons.scss */
.btn-yellow {
  background-color: #f7c061;
  border: 2px solid #3b3b3b;
  color: #3b3b3b;
  -webkit-box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
          box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
}

/* line 204, src/sass/base/_buttons.scss */
.btn-yellow .icon-download {
  font-size: 18px;
  padding-left: 8px;
}

/* line 208, src/sass/base/_buttons.scss */
.btn-yellow:hover {
  background-color: #ffffff;
  border: 2px solid #3b3b3b;
  -webkit-box-shadow: 0 2px 12px 6px rgba(247, 192, 97, 0.35);
          box-shadow: 0 2px 12px 6px rgba(247, 192, 97, 0.35);
}

/* line 213, src/sass/base/_buttons.scss */
.btn-yellow.active, .btn-yellow:active {
  background-color: #ffefd6 !important;
  -webkit-box-shadow: 0 3px 6px 0 rgba(59, 59, 59, 0.45);
          box-shadow: 0 3px 6px 0 rgba(59, 59, 59, 0.45);
  border: 2px solid #3b3b3b !important;
}

/* line 218, src/sass/base/_buttons.scss */
.btn-yellow.active .border-2, .btn-yellow:active .border-2 {
  border: none !important;
}

/* line 222, src/sass/base/_buttons.scss */
.btn-yellow:focus-visible {
  -webkit-box-shadow: 0 2px 12px 6px rgba(247, 192, 97, 0.35);
          box-shadow: 0 2px 12px 6px rgba(247, 192, 97, 0.35);
  border: 2px solid #3b3b3b;
  background-color: #f7c061;
  color: #3b3b3b;
}

/* line 227, src/sass/base/_buttons.scss */
.btn-yellow:focus-visible .border-2 {
  border: solid 1.5px #3b3b3b;
}

/* line 232, src/sass/base/_buttons.scss */
.btn-blue {
  background-color: #ffffff;
  border: 2px solid #4f7288;
  color: #4f7288;
  -webkit-box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
          box-shadow: 0 4px 12px -2px rgba(60, 60, 60, 0.15);
}

/* line 237, src/sass/base/_buttons.scss */
.btn-blue i {
  font-size: 18px;
  padding-left: 8px;
}

/* line 241, src/sass/base/_buttons.scss */
.btn-blue:hover {
  background-color: #4f7288;
  border: 2px solid #ebf1f5;
  -webkit-box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
          box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
  color: #ffffff;
}

/* line 246, src/sass/base/_buttons.scss */
.btn-blue:hover i::before {
  color: #ffffff;
}

/* line 250, src/sass/base/_buttons.scss */
.btn-blue:active, .btn-blue.active {
  background-color: #ebf1f5 !important;
  -webkit-box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
          box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
  border: 2px solid #4f7288 !important;
  color: #4f7288 !important;
}

/* line 255, src/sass/base/_buttons.scss */
.btn-blue:active i::before, .btn-blue.active i::before {
  color: #4f7288;
}

/* line 258, src/sass/base/_buttons.scss */
.btn-blue:active .border-2, .btn-blue.active .border-2 {
  border: none !important;
}

/* line 262, src/sass/base/_buttons.scss */
.btn-blue:focus-visible {
  -webkit-box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
          box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
  border: 2px solid #4f7288;
  background-color: #ffffff;
  color: #4f7288;
}

/* line 267, src/sass/base/_buttons.scss */
.btn-blue:focus-visible .border-2 {
  border: solid 1.5px #4f7288;
}

/* line 272, src/sass/base/_buttons.scss */
.btn:disabled {
  background-color: #d93912;
  color: #ffffff;
  opacity: 0.6;
}

@media only screen and (max-width: 768.9px) {
  /* line 280, src/sass/base/_buttons.scss */
  .btn {
    font-size: 16px;
    line-height: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  /* line 284, src/sass/base/_buttons.scss */
  .btn-icon {
    font-size: 16px;
    line-height: normal;
  }
}

@media (max-width: 380px) {
  /* line 292, src/sass/base/_buttons.scss */
  .expand-section .btn {
    padding: 6px 10px;
  }
  /* line 294, src/sass/base/_buttons.scss */
  .expand-section .btn .border-2 {
    padding: 0;
  }
  /* line 298, src/sass/base/_buttons.scss */
  .expand-section .btn-blue i {
    font-size: 15px;
  }
}

/** ========= LISTS ========= */
/* line 2, src/sass/base/_list.scss */
.list {
  /** General */
  /** Hover */
}

/* line 5, src/sass/base/_list.scss */
.list-inline > li {
  display: inline-block;
  vertical-align: middle;
}

/* line 8, src/sass/base/_list.scss */
.list-inline > li:not(:last-child) {
  margin-right: 10px;
}

/* line 14, src/sass/base/_list.scss */
.list-inline-lg > li:not(:last-child) {
  margin-right: 15px;
}

/* line 21, src/sass/base/_list.scss */
.list-inline-xl > li:not(:last-child) {
  margin-right: 20px;
}

/* line 29, src/sass/base/_list.scss */
.list > li:not(:last-child) {
  margin-bottom: 5px;
}

/* line 35, src/sass/base/_list.scss */
.list-lg > li:not(:last-child) {
  margin-bottom: 15px;
}

/* line 42, src/sass/base/_list.scss */
.list-xl > li:not(:last-child) {
  margin-bottom: 20px;
}

/* line 49, src/sass/base/_list.scss */
.list-styled {
  padding-left: 8px;
}

/* line 51, src/sass/base/_list.scss */
.list-styled > li {
  position: relative;
  padding-left: 15px;
}

/* line 54, src/sass/base/_list.scss */
.list-styled > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-primary > li::before {
  background: #4f7288 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-accent-yellow > li::before {
  background: #f7c061 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-light-yellow > li::before {
  background: #ffefd6 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-light-blue > li::before {
  background: #ebf1f5 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-hero-blue > li::before {
  background: #d8e3e9 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-black > li::before {
  background: #000 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-black-light > li::before {
  background: #3b3b3b !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-white > li::before {
  background: #ffffff !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-error > li::before {
  background: #dc3545 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-disabled-copy > li::before {
  background: #e6e6e6 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-link > li::before {
  background: #4f7288 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-orange > li::before {
  background: #d93912 !important;
}

/* line 68, src/sass/base/_list.scss */
.list-styled-disabled-background > li::before {
  background: #65656c !important;
}

/* line 77, src/sass/base/_list.scss */
.list-ordered {
  counter-reset: count;
}

/* line 79, src/sass/base/_list.scss */
.list-ordered > li {
  list-style: none;
  position: relative;
  padding-left: 40px;
}

/* line 83, src/sass/base/_list.scss */
.list-ordered > li::before {
  counter-increment: count;
  content: counter(count);
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}

/* line 97, src/sass/base/_list.scss */
.list-ordered > li:not(:last-child) {
  margin-bottom: 20px;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-primary > li::before {
  background: #4f7288 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-accent-yellow > li::before {
  background: #f7c061 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-light-yellow > li::before {
  background: #ffefd6 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-light-blue > li::before {
  background: #ebf1f5 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-hero-blue > li::before {
  background: #d8e3e9 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-black > li::before {
  background: #000 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-black-light > li::before {
  background: #3b3b3b !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-white > li::before {
  background: #ffffff !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-error > li::before {
  background: #dc3545 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-disabled-copy > li::before {
  background: #e6e6e6 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-link > li::before {
  background: #4f7288 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-orange > li::before {
  background: #d93912 !important;
}

/* line 105, src/sass/base/_list.scss */
.list-ordered-disabled-background > li::before {
  background: #65656c !important;
}

/* line 116, src/sass/base/_list.scss */
.list-hover > li > a {
  display: block;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-primary > li > a:hover {
  color: #4f7288 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-accent-yellow > li > a:hover {
  color: #f7c061 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-light-yellow > li > a:hover {
  color: #ffefd6 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-light-blue > li > a:hover {
  color: #ebf1f5 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-hero-blue > li > a:hover {
  color: #d8e3e9 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-black > li > a:hover {
  color: #000 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-black-light > li > a:hover {
  color: #3b3b3b !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-white > li > a:hover {
  color: #ffffff !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-error > li > a:hover {
  color: #dc3545 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-disabled-copy > li > a:hover {
  color: #e6e6e6 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-link > li > a:hover {
  color: #4f7288 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-orange > li > a:hover {
  color: #d93912 !important;
}

/* line 124, src/sass/base/_list.scss */
.list-hover-disabled-background > li > a:hover {
  color: #65656c !important;
}

/** ========= FORMS ========= */
/* line 4, src/sass/base/_form.scss */
.form-control {
  border: 1px solid;
  font-size: "Poppins", sans-serif;
  font-family: inherit;
  padding: 10px 13px;
  height: auto;
  border-radius: 3px;
  display: block;
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
  width: 100%;
}

/* line 14, src/sass/base/_form.scss */
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 21, src/sass/base/_form.scss */
.fieldset {
  padding: 15px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* line 28, src/sass/base/_form.scss */
.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid;
  padding: 10px 13px;
  border-radius: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 34, src/sass/base/_form.scss */
.input-group.is-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 38, src/sass/base/_form.scss */
.input-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* line 41, src/sass/base/_form.scss */
.input-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

/* line 46, src/sass/base/_form.scss */
label {
  display: block;
  font-size: inherit;
}

/* line 49, src/sass/base/_form.scss */
label:not(:last-child) {
  margin-bottom: 10px;
}

/* line 53, src/sass/base/_form.scss */
.md-form {
  position: relative;
}

/* line 55, src/sass/base/_form.scss */
.md-form label {
  margin: 0;
  background: #ffffff;
  color: #3b3b3b;
  font-size: 13px;
  padding: 1px 5px;
  position: absolute;
  display: block;
  top: -20px;
  left: -5px;
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

/* line 67, src/sass/base/_form.scss */
.md-form .form-control {
  width: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  color: #3b3b3b;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transform: none !important;
          transform: none !important;
}

/* line 75, src/sass/base/_form.scss */
.md-form .form-control::-webkit-input-placeholder {
  font-weight: normal;
}
.md-form .form-control::-moz-placeholder {
  font-weight: normal;
}
.md-form .form-control:-ms-input-placeholder {
  font-weight: normal;
}
.md-form .form-control::-ms-input-placeholder {
  font-weight: normal;
}
.md-form .form-control::placeholder {
  font-weight: normal;
}

/* line 79, src/sass/base/_form.scss */
.md-form .form-control::-webkit-input-placeholder-shown + label {
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.md-form .form-control::-moz-placeholder-shown + label {
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.md-form .form-control:-ms-input-placeholder-shown + label {
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.md-form .form-control::-ms-input-placeholder-shown + label {
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.md-form .form-control::placeholder-shown + label {
  opacity: 0;
  visibility: hidden;
  top: 0;
}

/* line 88, src/sass/base/_form.scss */
.lined-form {
  border: none;
  border-bottom: 1px solid;
  padding-left: 0;
  padding-right: 0;
}

/* line 1, src/sass/base/_label.scss */
.label {
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
  font-size: 13px;
  line-height: normal;
  padding: 5px 10px;
  color: #ffffff;
}

/* line 10, src/sass/base/_label.scss */
.label-primary {
  background: #4f7288 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-accent-yellow {
  background: #f7c061 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-light-yellow {
  background: #ffefd6 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-light-blue {
  background: #ebf1f5 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-hero-blue {
  background: #d8e3e9 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-black {
  background: #000 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-black-light {
  background: #3b3b3b !important;
}

/* line 10, src/sass/base/_label.scss */
.label-white {
  background: #ffffff !important;
}

/* line 10, src/sass/base/_label.scss */
.label-error {
  background: #dc3545 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-disabled-copy {
  background: #e6e6e6 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-link {
  background: #4f7288 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-orange {
  background: #d93912 !important;
}

/* line 10, src/sass/base/_label.scss */
.label-disabled-background {
  background: #65656c !important;
}

/* line 3, src/sass/components/_dropdown.scss */
.dropdown > a,
.dropdown-single > a {
  cursor: pointer;
  display: block;
  color: #4f7288;
  line-height: normal;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* line 14, src/sass/components/_dropdown.scss */
.dropdown > a:hover,
.dropdown-single > a:hover {
  cursor: pointer;
}

/* line 19, src/sass/components/_dropdown.scss */
.dropdown > a:focus-visible,
.dropdown-single > a:focus-visible {
  outline: 3px solid #f7c061;
  border-radius: 5px;
  padding: 5px 0;
}

/* line 28, src/sass/components/_dropdown.scss */
.dropdown.active > a, .dropdown:hover > a,
.dropdown-single.active > a,
.dropdown-single:hover > a {
  cursor: pointer;
  position: relative;
}

/* line 31, src/sass/components/_dropdown.scss */
.dropdown.active > a::after, .dropdown:hover > a::after,
.dropdown-single.active > a::after,
.dropdown-single:hover > a::after {
  content: "" attr(data-text) "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  white-space: initial;
}

/* line 41, src/sass/components/_dropdown.scss */
.dropdown.active > a > span, .dropdown:hover > a > span,
.dropdown-single.active > a > span,
.dropdown-single:hover > a > span {
  opacity: 0;
}

/* line 52, src/sass/components/_dropdown.scss */
.dropdown:focus-within .dropdown-list li a,
.dropdown-single:focus-within .dropdown-list li a {
  text-decoration: underline;
}

/* line 56, src/sass/components/_dropdown.scss */
.dropdown:focus-within .dropdown-list li:hover a,
.dropdown-single:focus-within .dropdown-list li:hover a {
  text-decoration: underline;
  color: #3b3b3b;
}

/* line 1, src/sass/components/_quiz.scss */
.quiz-tab {
  display: none;
}

/* line 2, src/sass/components/_quiz.scss */
.quiz-tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
}

/* line 3, src/sass/components/_quiz.scss */
.next-btn {
  display: none;
}

/* line 4, src/sass/components/_quiz.scss */
.answer-section {
  display: none;
  padding-left: 180px;
  padding-right: 180px;
}

/* line 8, src/sass/components/_quiz.scss */
.answer-section h3 {
  font-size: 32px;
  color: #4f7288;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* line 16, src/sass/components/_quiz.scss */
.answer-section p > a {
  color: #4f7288;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

/* line 21, src/sass/components/_quiz.scss */
.answer-section p > a:hover {
  color: #3A5664;
}

/* line 27, src/sass/components/_quiz.scss */
.next-btn {
  margin-top: 32px;
}

/* line 29, src/sass/components/_quiz.scss */
.next-btn.active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: white !important;
}

/* line 35, src/sass/components/_quiz.scss */
.true-btn, .false-btn, .next-btn {
  padding: 6px 10px;
}

/* line 39, src/sass/components/_quiz.scss */
.btn .border-2 {
  padding: 6px 22px;
}

/* line 43, src/sass/components/_quiz.scss */
.question {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #4f7288;
  padding: 0 60px;
}

/* line 51, src/sass/components/_quiz.scss */
.quiz-btn-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

/* line 58, src/sass/components/_quiz.scss */
.quiz-btn-div .btn-blue:active {
  background-color: #ebf1f5 !important;
  -webkit-box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
          box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
  border: 2px solid #4f7288 !important;
  color: #4f7288 !important;
}

/* line 63, src/sass/components/_quiz.scss */
.quiz-btn-div .btn-blue:active i::before {
  color: #4f7288;
}

/* line 66, src/sass/components/_quiz.scss */
.quiz-btn-div .btn-blue:active .border-2 {
  border: none !important;
  padding: 6px 16px;
}

/* line 71, src/sass/components/_quiz.scss */
.quiz-btn-div .btn-blue:focus-visible {
  -webkit-box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
          box-shadow: 0 2px 12px 6px rgba(79, 114, 136, 0.25);
  border: 2px solid #4f7288;
  background-color: #ffffff;
  color: #4f7288;
}

/* line 76, src/sass/components/_quiz.scss */
.quiz-btn-div .btn-blue:focus-visible .border-2 {
  border: solid 1.5px #4f7288;
}

/* line 85, src/sass/components/_quiz.scss */
.quiz-box {
  position: relative;
  width: 100%;
  height: 458px;
  background: #FFEFD6;
  margin: auto;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 32px -6px rgba(60, 60, 60, 0.18);
          box-shadow: 0 4px 32px -6px rgba(60, 60, 60, 0.18);
}

/* line 98, src/sass/components/_quiz.scss */
.quiz-back-button > button {
  position: absolute;
  left: 42px;
  top: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  text-decoration: underline;
  color: #4f7288;
}

/* line 111, src/sass/components/_quiz.scss */
.quiz-back-button > button:hover {
  color: #3A5664;
}

/* line 117, src/sass/components/_quiz.scss */
.quiz-back-button > a,
.quiz-back-button > p {
  position: absolute;
  right: 42px;
  top: 40px;
  color: #4f7288;
  font-size: 24px;
  line-height: 32px;
}

/* line 127, src/sass/components/_quiz.scss */
#quiz-results {
  background: #FFEFD6;
}

/* line 130, src/sass/components/_quiz.scss */
.restart-quiz-cta {
  cursor: pointer;
}

/* line 133, src/sass/components/_quiz.scss */
.quiz-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* line 140, src/sass/components/_quiz.scss */
.quiz-top-bar div {
  content: "";
  width: 16.67%;
  height: 5px;
  background-color: #7799B1;
  padding: 6px 0;
  border: 2px solid #7799B1;
}

/* line 150, src/sass/components/_quiz.scss */
.quiz-top-bar-btn-active {
  width: 237px !important;
  background: #f7c061 !important;
  border: 2px solid #4f7288 !important;
}

/* line 154, src/sass/components/_quiz.scss */
.quiz-top-bar-btn-active.prev {
  width: 16.67% !important;
}

/* line 161, src/sass/components/_quiz.scss */
#restart-quiz {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/* line 165, src/sass/components/_quiz.scss */
#result-p {
  text-transform: none;
}

@media only screen and (max-width: 575px) {
  /* line 173, src/sass/components/_quiz.scss */
  .quiz-box {
    padding: 0 24px;
    height: 508px;
  }
  /* line 178, src/sass/components/_quiz.scss */
  .quiz-top-bar-btn-active {
    width: 105px !important;
  }
  /* line 183, src/sass/components/_quiz.scss */
  .quiz-content-box {
    width: 100%;
  }
  /* line 187, src/sass/components/_quiz.scss */
  .quiz-btn-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
  /* line 188, src/sass/components/_quiz.scss */
  .quiz-btn-div button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* line 194, src/sass/components/_quiz.scss */
  .quiz-btn-div-result {
    gap: 24px;
  }
  /* line 201, src/sass/components/_quiz.scss */
  .quiz-back-button {
    margin-bottom: 24px;
  }
  /* line 203, src/sass/components/_quiz.scss */
  .quiz-back-button button, .quiz-back-button p {
    font-size: 18px !important;
    line-height: 32px;
    top: 32px;
  }
  /* line 208, src/sass/components/_quiz.scss */
  .quiz-back-button button {
    left: 24px;
  }
  /* line 211, src/sass/components/_quiz.scss */
  .quiz-back-button p {
    right: 24px;
  }
  /* line 214, src/sass/components/_quiz.scss */
  .quiz-back-button .restart-quiz-cta {
    font-size: 18px !important;
    line-height: 32px;
    top: 32px;
    right: 24px;
  }
  /* line 222, src/sass/components/_quiz.scss */
  .question {
    font-size: 24px;
    line-height: 32px;
    padding: 0;
  }
  /* line 228, src/sass/components/_quiz.scss */
  .next-btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* line 235, src/sass/components/_quiz.scss */
  .answer-section {
    padding: 0 !important;
    text-align: left;
  }
  /* line 236, src/sass/components/_quiz.scss */
  .answer-section h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  /* line 241, src/sass/components/_quiz.scss */
  .answer-section p {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 251, src/sass/components/_quiz.scss */
  .answer-section {
    padding: 0 80px;
  }
}

/* line 8, src/sass/components/homepage-banner.scss */
.hero-init .cta-theme-lg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  max-width: 28%;
}

/* line 12, src/sass/components/homepage-banner.scss */
.hero-init .margin-xy {
  margin: 3px 2rem;
}

/* line 18, src/sass/components/homepage-banner.scss */
.hero {
  background-color: #d8e3e9;
  margin: 1.5rem 0 0.5rem;
  position: relative;
  z-index: 9999;
  font-size: 10px;
}

/* line 26, src/sass/components/homepage-banner.scss */
.hero-content {
  margin: auto;
  padding: 4rem 0 3.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 35, src/sass/components/homepage-banner.scss */
.hero-banner {
  position: absolute;
  left: -22rem;
  overflow: hidden;
  bottom: 0;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform: translateX(-5%) translateY(0);
          transform: translateX(-5%) translateY(0);
  z-index: 4;
  opacity: 0;
}

/* line 45, src/sass/components/homepage-banner.scss */
.hero-banner-utility {
  position: absolute;
  min-height: 200rem;
  background: #ffffff;
  width: 100%;
  top: 100%;
  z-index: 20;
}

/* line 53, src/sass/components/homepage-banner.scss */
.hero-banner-1, .hero-banner-2, .hero-banner-3 {
  opacity: 0;
}

/* line 56, src/sass/components/homepage-banner.scss */
.hero-banner-1, .hero-banner-2, .hero-banner-3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* line 70, src/sass/components/homepage-banner.scss */
.hero-banner img, .hero-banner picture {
  min-height: 100%;
}

/* line 73, src/sass/components/homepage-banner.scss */
.hero-banner .actor-portrayal-text {
  position: absolute;
  left: 2%;
  bottom: 4%;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

/* line 83, src/sass/components/homepage-banner.scss */
.hero-btn {
  display: block;
  z-index: 50;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* line 92, src/sass/components/homepage-banner.scss */
.hero-btn-pause-hover, .hero-btn-play-hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* line 99, src/sass/components/homepage-banner.scss */
.hero-btn-play {
  display: none;
}

/* line 103, src/sass/components/homepage-banner.scss */
.hero-btn:hover .hero-btn-pause-hover {
  opacity: 1;
}

/* line 106, src/sass/components/homepage-banner.scss */
.hero-btn:hover .hero-btn-pause {
  opacity: 0;
}

/* line 110, src/sass/components/homepage-banner.scss */
.hero-btn:focus-visible {
  outline: 3px solid #f7c061;
  border-radius: 5px;
}

/* line 117, src/sass/components/homepage-banner.scss */
.hero.active .hero-btn:hover .hero-btn-play, .hero.active .hero-btn:hover .hero-btn-pause, .hero.active .hero-btn:hover .hero-btn-pause-hover {
  opacity: 0;
}

/* line 120, src/sass/components/homepage-banner.scss */
.hero.active .hero-btn:hover .hero-btn-play-hover {
  opacity: 1;
}

/* line 126, src/sass/components/homepage-banner.scss */
.hero-caption {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  max-width: 77rem;
  width: 100%;
  text-align: right;
  color: #4f7288;
  font-size: 10px;
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 0;
  z-index: 20;
}

/* line 128, src/sass/components/homepage-banner.scss */
.hero-caption .wrapper h1 {
  font-size: inherit;
}

/* line 144, src/sass/components/homepage-banner.scss */
.hero-caption-1, .hero-caption-3 {
  z-index: 5;
  position: relative;
  font-size: 45px;
  line-height: 68px;
  font-weight: 200;
}

/* line 151, src/sass/components/homepage-banner.scss */
.hero-caption-1 {
  margin-right: 12rem;
}

/* line 154, src/sass/components/homepage-banner.scss */
.hero-caption-2 > span {
  font-size: 19em;
  font-weight: 300;
  line-height: 170px;
}

/* line 159, src/sass/components/homepage-banner.scss */
.hero-caption-2 {
  position: relative;
  display: inline-block;
  line-height: 1;
  z-index: 7;
  -webkit-transform: translateZ(0px) scale(1, 1);
          transform: translateZ(0px) scale(1, 1);
  margin-right: 8px;
}

/* line 169, src/sass/components/homepage-banner.scss */
.hero-caption-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 172, src/sass/components/homepage-banner.scss */
.hero-caption-3-sm {
  margin-right: 0.48em;
}

/* line 182, src/sass/components/homepage-banner.scss */
.hero-sub {
  opacity: 0;
  color: #4f7288;
}

/* line 188, src/sass/components/homepage-banner.scss */
.hero-sub .hero-sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 36px;
  margin: 16px 0;
}

/* line 198, src/sass/components/homepage-banner.scss */
.hero-animation .hero-banner {
  left: 0;
  -webkit-transform: scale(1) translateX(0) translateY(0);
          transform: scale(1) translateX(0) translateY(0);
  height: unset;
}

/* line 203, src/sass/components/homepage-banner.scss */
.hero-animation .hero-caption {
  left: 12.3rem;
  opacity: 1;
}

/* line 208, src/sass/components/homepage-banner.scss */
.hero-animation .hero-sub {
  left: 0;
  opacity: 1;
}

/* line 214, src/sass/components/homepage-banner.scss */
.hero-footer {
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
}

/* line 219, src/sass/components/homepage-banner.scss */
.hero-callout {
  padding: 1.5rem 0;
  font-size: 2.1rem;
  line-height: 2.7rem;
  letter-spacing: -0.21px;
  text-align: center;
}

/* line 226, src/sass/components/homepage-banner.scss */
.hero .btn-desktop {
  display: block;
}

/* line 229, src/sass/components/homepage-banner.scss */
.hero .btn-mobile {
  display: none;
}

/* line 233, src/sass/components/homepage-banner.scss */
.hero-btn-content-mb {
  display: none;
}

/* line 238, src/sass/components/homepage-banner.scss */
.animatingHero .hero {
  z-index: 1;
}

/* line 241, src/sass/components/homepage-banner.scss */
.animatingHero .hero-banner-utility {
  display: none;
}

/* line 250, src/sass/components/homepage-banner.scss */
.hero-btn-content-mb {
  display: none;
}

/* line 253, src/sass/components/homepage-banner.scss */
.play-section {
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 30;
}

@media screen and (min-width: 1025px) {
  /* line 268, src/sass/components/homepage-banner.scss */
  .hero-banner .actor-portrayal-text {
    left: 50%;
  }
}

@media screen and (min-width: 1600px) {
  /* line 277, src/sass/components/homepage-banner.scss */
  .hero-banner .actor-portrayal-text {
    left: 50%;
  }
  /* line 282, src/sass/components/homepage-banner.scss */
  .play-section {
    width: 1600px;
    margin: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 295, src/sass/components/homepage-banner.scss */
  .hero-btn > img {
    top: 0;
    right: 20px;
    width: 32px;
    height: 32px;
  }
  /* line 303, src/sass/components/homepage-banner.scss */
  .hero-caption-1, .hero-caption-3 {
    font-size: 21px;
    line-height: 31px;
    font-weight: 300;
  }
  /* line 308, src/sass/components/homepage-banner.scss */
  .hero-caption-1 {
    margin-right: 6rem;
  }
  /* line 311, src/sass/components/homepage-banner.scss */
  .hero-caption-2 {
    margin-right: 15px;
  }
  /* line 313, src/sass/components/homepage-banner.scss */
  .hero-caption-2 > span {
    font-size: 88px;
    line-height: inherit;
  }
  /* line 325, src/sass/components/homepage-banner.scss */
  .hero-btn-content-mb {
    display: block;
    padding: 20px 31px;
    background: #ebf1f5;
  }
  /* line 329, src/sass/components/homepage-banner.scss */
  .hero-btn-content-mb .hero-sub-title {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 12px;
  }
}

@media (max-width: 1024px) {
  /* line 338, src/sass/components/homepage-banner.scss */
  .hero-content {
    max-width: 100% !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 320px) and (max-width: 399.9px) {
  /* line 346, src/sass/components/homepage-banner.scss */
  .hero-caption {
    max-width: 350px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (min-width: 399.9px) and (max-width: 767.9px) {
  /* line 356, src/sass/components/homepage-banner.scss */
  .hero-banner img {
    min-height: 250px;
  }
  /* line 360, src/sass/components/homepage-banner.scss */
  .hero-caption {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin-left: 10%;
  }
  /* line 363, src/sass/components/homepage-banner.scss */
  .hero-caption .hero-sub {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* line 373, src/sass/components/homepage-banner.scss */
  .hero-banner img {
    min-height: 365px;
  }
  /* line 377, src/sass/components/homepage-banner.scss */
  .hero-btn {
    display: block;
  }
  /* line 380, src/sass/components/homepage-banner.scss */
  .hero-content {
    padding: 45.9px 0 40px;
  }
  /* line 383, src/sass/components/homepage-banner.scss */
  .hero-caption {
    max-width: 900px;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin-left: 15%;
  }
  /* line 390, src/sass/components/homepage-banner.scss */
  .hero-caption-1, .hero-caption-3 {
    font-size: 29.5px;
    font-weight: 300;
    line-height: 1;
  }
  /* line 396, src/sass/components/homepage-banner.scss */
  .hero-caption-1 {
    margin-right: 9.5rem;
  }
  /* line 400, src/sass/components/homepage-banner.scss */
  .hero-caption-2 span {
    font-size: 123px;
    line-height: 1;
  }
  /* line 409, src/sass/components/homepage-banner.scss */
  .hero-sub .hero-sub-title {
    font-size: 21px;
    line-height: normal;
    margin: 23px 0 16px;
  }
  /* line 414, src/sass/components/homepage-banner.scss */
  .hero-sub .btn {
    font-size: 18px;
  }
  /* line 416, src/sass/components/homepage-banner.scss */
  .hero-sub .btn .border-2 {
    padding: 4px 14px;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 425, src/sass/components/homepage-banner.scss */
  .hero-banner {
    left: 0;
  }
}

@media only screen and (max-width: 360px) {
  /* line 433, src/sass/components/homepage-banner.scss */
  .hero-caption-1 {
    margin-right: 3rem;
  }
  /* line 436, src/sass/components/homepage-banner.scss */
  .hero-caption-3 {
    margin-right: 4rem;
  }
}

/* line 1, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-btn-text.orange-line::after, .full-banner-cta-btn-text.darkblue-line::after, .two-card-cta-btn-text.orange-line::after, .two-card-cta-btn-text.darkblue-line::after {
  content: '';
  width: -webkit-fill-available;
  height: 2px;
  display: block;
  position: relative;
  top: 4px;
}

/* line 9, src/sass/components/_full-banner-cta.scss */
a.full-banner:focus-visible {
  -webkit-transition: none;
  transition: none;
}

/* line 11, src/sass/components/_full-banner-cta.scss */
a.full-banner:focus-visible .full-banner-cta {
  outline: 2px solid #4f7288;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}

/* line 16, src/sass/components/_full-banner-cta.scss */
a.full-banner:focus-visible .btn-icon {
  outline: 2px solid #4f7288;
  text-decoration: none;
  min-height: 46px;
}

/* line 22, src/sass/components/_full-banner-cta.scss */
.full-banner-cta {
  padding: 85px 0 82px 0;
  min-height: 275px;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  background-color: #ebf1f5;
  position: relative;
}

/* line 28, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-bg-img {
  position: absolute;
  right: 0;
  bottom: -1px;
}

/* line 32, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-bg-img-hover {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  overflow: hidden;
}

/* line 46, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--white-orange:before {
  background-color: white;
}

/* line 49, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--blue-yellow:before {
  background-color: #f7c061;
  border: 2px solid #4f7288 !important;
}

/* line 53, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--white:after {
  color: #d93912;
}

/* line 56, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--forward:after {
  font-weight: 400;
}

/* line 59, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--white:before {
  border-color: #d93912;
}

/* line 62, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--white:before {
  border: 2px solid #d93912;
}

/* line 65, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon--blue:before {
  border: 2px solid white;
}

/* line 68, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .btn-icon > span {
  font-size: 24px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* line 74, src/sass/components/_full-banner-cta.scss */
.full-banner-cta .custom-width {
  max-width: 768px;
  text-align: center;
}

/* line 78, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-text {
  text-align: center;
}

/* line 83, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-btn-text.orange-line::after {
  background-color: #d93912;
}

/* line 87, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-btn-text.darkblue-line::after {
  background-color: #4f7288;
}

/* line 91, src/sass/components/_full-banner-cta.scss */
.full-banner-cta-text {
  margin-bottom: 32px !important;
  font-size: 32px;
  line-height: 40px;
  font-family: "Open Sans", sans-serif;
  color: #4f7288;
}

/* line 99, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  background-color: #4f7288;
}

/* line 102, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .full-banner-cta-text {
  color: white;
}

/* line 105, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .btn-icon:before {
  width: 100%;
}

/* line 108, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .full-banner-cta-bg-img {
  display: none;
}

/* line 110, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .full-banner-cta-bg-img-hover {
  display: block;
}

/* line 114, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .full-banner-cta-btn-text {
  text-decoration: none;
}

/* line 117, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .btn-icon--blue-yellow:before {
  border: 2px solid white !important;
}

/* line 121, src/sass/components/_full-banner-cta.scss */
.full-banner-cta:hover .full-banner-cta-btn-text::after {
  display: none;
}

@media only screen and (min-width: 1080px) and (max-width: 1145px) {
  /* line 127, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img-customwidth {
    width: 240px;
  }
}

@media only screen and (min-width: 935px) and (max-width: 1080px) {
  /* line 132, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-1 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 841px) and (max-width: 935px) {
  /* line 139, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img-customwidth {
    width: 250px;
  }
  /* line 142, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-1 {
    max-width: 440px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 841px) {
  /* line 147, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img-customwidth {
    width: 240px;
  }
  /* line 150, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-1 {
    max-width: 410px;
  }
}

@media only screen and (min-width: 945px) and (max-width: 1175px) {
  /* line 156, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta .custom-width {
    max-width: 640px;
  }
  /* line 159, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img2-customwidth {
    max-width: 240px;
  }
}

@media only screen and (min-width: 900px) and (max-width: 945px) {
  /* line 164, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta .custom-width {
    max-width: 600px;
  }
  /* line 167, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img2-customwidth {
    max-width: 230px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 900px) {
  /* line 172, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta .custom-width {
    max-width: 550px;
  }
  /* line 175, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img2-customwidth {
    width: 200px;
  }
  /* line 178, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img2-customwidth {
    max-width: 230px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 850px) {
  /* line 183, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img2-customwidth {
    width: 170px;
  }
  /* line 186, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img2-customwidth {
    max-width: 190px;
  }
}

@media only screen and (min-width: 1030px) and (max-width: 1355px) {
  /* line 192, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-2 {
    max-width: 640px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 1030px) {
  /* line 197, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-2 {
    max-width: 540px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 980px) {
  /* line 202, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img3-customwidth {
    max-width: 180px;
  }
  /* line 205, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img3-customwidth {
    max-width: 210px;
  }
}

@media only screen and (min-width: 805px) and (max-width: 870px) {
  /* line 210, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img3-customwidth {
    max-width: 150px;
  }
  /* line 213, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img3-customwidth {
    max-width: 180px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 805px) {
  /* line 218, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img3-customwidth {
    max-width: 140px;
  }
  /* line 221, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img3-customwidth {
    max-width: 165px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 1030px) {
  /* line 227, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text.maxwidth-3 {
    max-width: 450px;
  }
}

@media only screen and (min-width: 835px) and (max-width: 900px) {
  /* line 232, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img4-customwidth {
    max-width: 235px;
  }
}

@media only screen and (min-width: 768.9px) and (max-width: 835px) {
  /* line 237, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img.img4-customwidth {
    max-width: 180px;
  }
  /* line 240, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover.img4-customwidth {
    max-width: 200px;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 246, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta .btn-icon > span {
    text-decoration: underline;
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 252, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta {
    min-height: 292px;
    padding: 32px 0 0;
  }
  /* line 256, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-bg-img {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  /* line 261, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-text {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 24px !important;
    text-align: center;
  }
  /* line 267, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta .btn-icon > span {
    font-size: 19px;
    line-height: 28px;
  }
  /* line 274, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-2 {
    min-height: 336px;
  }
  /* line 277, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta-3 {
    min-height: 341px;
  }
  /* line 283, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover {
    -webkit-transition: none;
    transition: none;
    background-color: #ebf1f5;
  }
  /* line 286, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-text {
    color: #4f7288;
  }
  /* line 289, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .btn-icon:before {
    width: 100%;
  }
  /* line 292, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img {
    display: block;
  }
  /* line 294, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-bg-img-hover {
    display: none;
  }
  /* line 298, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-btn-text {
    text-decoration: none;
  }
  /* line 301, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .btn-icon--blue-yellow:before {
    border: 2px solid #4f7288 !important;
  }
  /* line 304, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .full-banner-cta-btn-text::after {
    display: block;
  }
  /* line 307, src/sass/components/_full-banner-cta.scss */
  .full-banner-cta:hover .btn-icon:before {
    width: 38px;
  }
}

/* line 1, src/sass/components/_two-card-cta.scss */
.full-banner-cta-btn-text.orange-line::after, .full-banner-cta-btn-text.darkblue-line::after, .two-card-cta-btn-text.orange-line::after, .two-card-cta-btn-text.darkblue-line::after {
  content: '';
  width: -webkit-fill-available;
  height: 2px;
  display: block;
  position: relative;
  top: 4px;
}

/* line 10, src/sass/components/_two-card-cta.scss */
.two-card-cta {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  background-color: #EBF1F5;
}

/* line 13, src/sass/components/_two-card-cta.scss */
.two-card-cta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

/* line 18, src/sass/components/_two-card-cta.scss */
.two-card-cta-btn-download-icon::after {
  content: "\e90d";
  font-size: 1rem !important;
  font-weight: 500;
  padding-left: 2px;
}

/* line 24, src/sass/components/_two-card-cta.scss */
.two-card-cta .btn-icon--blue:after {
  font-size: 2.4rem;
  font-weight: 500;
  padding-left: 2px;
}

/* line 29, src/sass/components/_two-card-cta.scss */
.two-card-cta .btn-icon--orange:after {
  font-size: 2.4rem;
  font-weight: 500;
  padding-left: 2px;
}

/* line 34, src/sass/components/_two-card-cta.scss */
.two-card-cta .btn-icon {
  text-align: left;
}

/* line 37, src/sass/components/_two-card-cta.scss */
.two-card-cta-btn-download-icon:after {
  text-align: center;
}

/* line 40, src/sass/components/_two-card-cta.scss */
.two-card-cta-card {
  text-align: left;
  margin: auto;
  background-color: white;
  height: 100%;
  min-height: 252px;
  border-bottom: 3px solid #F7C061;
  -webkit-box-shadow: 0px 2px 12px -2px #3C3C3C1F;
          box-shadow: 0px 2px 12px -2px #3C3C3C1F;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 67px 31px 67px 134px;
}

/* line 56, src/sass/components/_two-card-cta.scss */
.two-card-cta-card > a {
  margin-left: -1.5rem;
  margin-top: 16px;
}

/* line 62, src/sass/components/_two-card-cta.scss */
.two-card-cta-card > div {
  margin-left: -1.5rem;
  margin-top: 16px;
}

/* line 68, src/sass/components/_two-card-cta.scss */
.two-card-cta-text {
  font-size: 26px;
  line-height: 32px;
  color: #4f7288;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

/* line 75, src/sass/components/_two-card-cta.scss */
.two-card-cta-btn-text {
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

/* line 81, src/sass/components/_two-card-cta.scss */
.two-card-cta-bg-img {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 85, src/sass/components/_two-card-cta.scss */
.two-card-cta-bg-img-hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 93, src/sass/components/_two-card-cta.scss */
.two-card-cta a:focus-visible .two-card-cta-card {
  outline: 3px solid #4f7288;
  text-decoration: none;
}

/* line 97, src/sass/components/_two-card-cta.scss */
.two-card-cta a:focus-visible .btn-icon {
  outline: 2px solid #4f7288;
  text-decoration: none;
  min-height: 46px;
}

/* line 105, src/sass/components/_two-card-cta.scss */
.two-card-cta-btn-text.orange-line::after {
  background-color: #d93912;
}

/* line 109, src/sass/components/_two-card-cta.scss */
.two-card-cta-btn-text.darkblue-line::after {
  background-color: #4f7288;
}

/* line 115, src/sass/components/_two-card-cta.scss */
.btn-icon--orange::after {
  color: white;
}

/* line 119, src/sass/components/_two-card-cta.scss */
.btn-icon--orange:before {
  background: #d93912 !important;
  border-color: #d93912;
}

/* line 124, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover {
  border-bottom: 3px solid #4f7288;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

/* line 127, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .btn-icon > span {
  border: none;
}

/* line 130, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .two-card-cta-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

/* line 135, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .two-card-cta-bg-img-hover {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 142, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .btn-icon--blue-yellow:hover:before {
  background: #f7c061;
}

/* line 145, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .btn-icon--orange > span {
  color: white !important;
  text-decoration: none !important;
}

/* line 150, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .btn-icon--orange::before {
  width: 100%;
}

/* line 153, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .btn-icon--blue::before {
  width: 100%;
}

/* line 156, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .two-card-cta-btn-text::after {
  display: none;
}

/* line 160, src/sass/components/_two-card-cta.scss */
.two-card-cta-card:hover .two-card-cta-btn-text.darkblue-line:after {
  content: "";
  height: 2px;
  background-color: transparent;
  width: -webkit-fill-available;
  display: block;
}

/* line 171, src/sass/components/_two-card-cta.scss */
.btn-icon--orange:hover .btn-icon--orange > span {
  color: white !important;
  text-decoration: none !important;
}

/* line 176, src/sass/components/_two-card-cta.scss */
.btn-icon--orange:hover .btn-icon--orange::before {
  width: 100%;
}

@media only screen and (min-width: 1199.9px) {
  /* line 181, src/sass/components/_two-card-cta.scss */
  .two-card-cta-btn-text {
    white-space: nowrap;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1199.9px) {
  /* line 186, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .btn-icon--blue:before, .two-card-cta-card:hover .btn-icon--orange:before {
    height: 125%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 191, src/sass/components/_two-card-cta.scss */
  .full-banner-cta-btn-text.orange-line::after, .full-banner-cta-btn-text.darkblue-line::after, .two-card-cta-btn-text.orange-line::after, .two-card-cta-btn-text.darkblue-line::after {
    content: none;
  }
  /* line 194, src/sass/components/_two-card-cta.scss */
  .two-card-cta-btn-text {
    text-decoration: underline;
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 200, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card {
    padding: 32px 9px 32px 14px;
    min-height: 160px;
    max-height: unset;
  }
  /* line 205, src/sass/components/_two-card-cta.scss */
  .two-card-cta-text {
    padding-right: 85px;
    font-size: 20px;
    line-height: 26px;
  }
  /* line 210, src/sass/components/_two-card-cta.scss */
  .two-card-cta-bg-img {
    right: 0;
    left: unset;
  }
  /* line 214, src/sass/components/_two-card-cta.scss */
  .two-card-cta-btn-text {
    font-size: 16px;
    line-height: 24px;
  }
  /* line 220, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover {
    border-bottom: 3px solid #f7c061;
    -webkit-transition: none;
    transition: none;
  }
  /* line 223, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .btn-icon > span {
    border: none;
  }
  /* line 226, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .two-card-cta-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    left: unset;
    display: block;
  }
  /* line 232, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .two-card-cta-bg-img-hover {
    display: none;
  }
  /* line 236, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .btn-icon:before,
  .two-card-cta-card:hover .btn-icon--orange::before,
  .two-card-cta-card:hover .btn-icon--blue::before {
    width: 38px;
  }
  /* line 241, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .btn-icon--blue-yellow:hover:before {
    background: #f7c061;
  }
  /* line 244, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .btn-icon--orange > span {
    color: #d93912 !important;
  }
  /* line 247, src/sass/components/_two-card-cta.scss */
  .two-card-cta-card:hover .two-card-cta-btn-text::after {
    display: block;
  }
}

@media only screen and (max-width: 991.9px) {
  /* line 257, src/sass/components/_two-card-cta.scss */
  .two-card-cta .row .col-md-12:last-child {
    margin-top: 24px;
  }
}

/* line 3, src/sass/components/_accordion.scss */
#expand {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

/* line 9, src/sass/components/_accordion.scss */
.expand-section {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
}

/* line 14, src/sass/components/_accordion.scss */
.expand-section .active.expandall {
  background-color: #ebf1f5 !important;
  -webkit-box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
          box-shadow: inset 0 3px 6px 0 rgba(59, 59, 59, 0.45) !important;
  border: 2px solid #4f7288 !important;
  color: #4f7288;
}

/* line 19, src/sass/components/_accordion.scss */
.expand-section .active.expandall i::before {
  color: #4f7288;
}

/* line 23, src/sass/components/_accordion.scss */
.expand-section .active {
  font-weight: 800;
}

/* line 28, src/sass/components/_accordion.scss */
.indent-number {
  padding-left: 29px !important;
}

/* line 31, src/sass/components/_accordion.scss */
.accordion-main {
  padding: 16px 32px;
  margin-bottom: 16px;
  cursor: pointer;
}

/* line 35, src/sass/components/_accordion.scss */
.accordion-main-bg-white {
  -webkit-box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
          box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
  background-color: #ffffff;
}

/* line 39, src/sass/components/_accordion.scss */
.accordion-main-bg-yellow {
  -webkit-box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
          box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
  background-color: #ffefd6;
}

/* line 43, src/sass/components/_accordion.scss */
.accordion-main-bg-blue {
  -webkit-box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
          box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
  background-color: #ebf1f5;
}

/* line 49, src/sass/components/_accordion.scss */
.accordion-main:hover .headline {
  text-decoration: underline;
  -webkit-text-decoration-color: #4f7288 !important;
          text-decoration-color: #4f7288 !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
}

/* line 53, src/sass/components/_accordion.scss */
.accordion-main:hover .headline-add {
  content: url("/images/global/svg/circle-plus-hover.svg");
}

/* line 56, src/sass/components/_accordion.scss */
.accordion-main:hover .headline-minus {
  content: url("/images/global/svg/circle-minus-hover.svg");
}

/* line 62, src/sass/components/_accordion.scss */
.accordion-main .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 63, src/sass/components/_accordion.scss */
.accordion-main .headline p {
  margin-bottom: 0;
}

/* line 70, src/sass/components/_accordion.scss */
.accordion-main .headline-add {
  content: url("/images/global/svg/circle-plus.svg");
  width: auto;
}

/* line 74, src/sass/components/_accordion.scss */
.accordion-main .headline-minus {
  content: url("/images/global/svg/circle-minus.svg");
}

/* line 79, src/sass/components/_accordion.scss */
.accordion-main .accordion-section {
  margin: 16px 75px 8px 0;
}

/* line 81, src/sass/components/_accordion.scss */
.accordion-main .accordion-section ul {
  list-style: none;
  padding-left: 0;
}

/* line 85, src/sass/components/_accordion.scss */
.accordion-main .accordion-section ul li:not(:last-child) {
  margin-bottom: 16px;
}

/* line 90, src/sass/components/_accordion.scss */
.accordion-main .accordion-section a {
  text-decoration: underline;
  color: #4f7288;
}

/* line 100, src/sass/components/_accordion.scss */
.faq-page .accordion-main {
  padding: 24px 32px;
  cursor: pointer;
}

/* line 105, src/sass/components/_accordion.scss */
.faq-page .accordion-section .custom-underline {
  -webkit-text-decoration-color: #4f7288 !important;
          text-decoration-color: #4f7288 !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
}

/* line 113, src/sass/components/_accordion.scss */
.glossary-page .accordion-main {
  padding: 24px 32px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  /* line 119, src/sass/components/_accordion.scss */
  .indent-number {
    padding-left: 22px !important;
  }
}

@media (hover: none) {
  /* line 127, src/sass/components/_accordion.scss */
  .accordion-main:hover .headline {
    text-decoration: none;
  }
  /* line 130, src/sass/components/_accordion.scss */
  .accordion-main:hover .headline-add {
    content: url(/images/global/svg/circle-plus.svg);
  }
  /* line 133, src/sass/components/_accordion.scss */
  .accordion-main:hover .headline-minus {
    content: url(/images/global/svg/circle-minus.svg);
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 141, src/sass/components/_accordion.scss */
  .headline p {
    margin-right: 16px;
  }
  /* line 144, src/sass/components/_accordion.scss */
  .headline-add {
    width: 30px;
    height: 30px;
  }
  /* line 148, src/sass/components/_accordion.scss */
  .headline-minus {
    width: 30px;
    height: 30px;
  }
  /* line 153, src/sass/components/_accordion.scss */
  .accordion-main {
    padding: 12px 24px;
  }
  /* line 155, src/sass/components/_accordion.scss */
  .accordion-main .accordion-section {
    margin: 12px 0 0 0;
  }
  /* line 157, src/sass/components/_accordion.scss */
  .accordion-main .accordion-section a {
    display: inline !important;
  }
  /* line 163, src/sass/components/_accordion.scss */
  .faq-page .accordion-main {
    padding: 24px;
  }
  /* line 168, src/sass/components/_accordion.scss */
  .glossary-page .accordion-main {
    padding: 24px;
  }
  /* line 173, src/sass/components/_accordion.scss */
  .expand-section {
    gap: 13px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  /* line 176, src/sass/components/_accordion.scss */
  .expand-section #expand {
    margin-left: 0;
  }
}

/* line 183, src/sass/components/_accordion.scss */
.accordion-heading-hover {
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
}

/* line 2, src/sass/components/_tabs.scss */
.tabs .nav-tabs .nav-link {
  border: none;
  margin-bottom: 0 !important;
  border-radius: 0;
  background: #ebf1f5;
  color: #4f7288;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
}

/* line 12, src/sass/components/_tabs.scss */
.tabs .nav-tabs {
  border-bottom: solid 3px #4f7288;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
}

/* line 17, src/sass/components/_tabs.scss */
.tabs .nav-tabs .nav-item.show .nav-link, .tabs .nav-tabs .nav-link.active {
  background: #f7c061;
  height: 100%;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
}

/* line 26, src/sass/components/_tabs.scss */
.tab-content {
  padding: 40px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
}

/* line 31, src/sass/components/_tabs.scss */
.tab-title {
  border: solid 3px #4f7288;
  border-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 32px;
}

/* line 32, src/sass/components/_tabs.scss */
.tab-title:first-child {
  border-right: 0;
}

/* line 35, src/sass/components/_tabs.scss */
.tab-title button {
  padding: 24px;
}

/* line 46, src/sass/components/_tabs.scss */
.tab-pane p {
  margin-bottom: 24px;
}

/* line 50, src/sass/components/_tabs.scss */
.tab-pane ul > li {
  margin-bottom: 16px;
  list-style: disc;
}

/* line 54, src/sass/components/_tabs.scss */
.tab-pane ul > li:first-child {
  margin-top: 16px;
}

/* line 59, src/sass/components/_tabs.scss */
.tab-pane ul li::marker {
  color: #f7c061;
  width: 8px;
  height: 8px;
}

@media only screen and (max-width: 575px) {
  /* line 67, src/sass/components/_tabs.scss */
  .tab-title {
    width: 50%;
  }
  /* line 69, src/sass/components/_tabs.scss */
  .tab-title button {
    padding: 15px 10px;
  }
  /* line 75, src/sass/components/_tabs.scss */
  .tab-content {
    padding: 32px 24px;
  }
}

@media (min-width: 300px) and (max-width: 374.9px) {
  /* line 85, src/sass/components/_tabs.scss */
  .tabs .nav-link {
    font-size: 18px;
    line-height: 24px;
    padding: 15px 10px;
  }
}

/* line 6, src/sass/components/banner.scss */
.banner {
  position: relative;
  padding: 0;
  min-height: 250px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 13, src/sass/components/banner.scss */
.banner-text {
  margin-left: 29%;
}

/* line 17, src/sass/components/banner.scss */
.banner-text h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 73px;
  color: #4f7288;
}

/* line 24, src/sass/components/banner.scss */
.banner-text .font-large {
  font-size: 72px;
  line-height: 72px;
}

/* line 29, src/sass/components/banner.scss */
.banner-main {
  position: relative;
  z-index: 5;
  background-color: #d8e3e9;
}

/* line 34, src/sass/components/banner.scss */
.banner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 38, src/sass/components/banner.scss */
.banner-row picture {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: -15rem;
  position: relative;
}

/* line 44, src/sass/components/banner.scss */
.banner-img {
  position: relative;
}

/* line 48, src/sass/components/banner.scss */
.banner-top::after {
  content: '';
  position: absolute;
  width: 100%;
  min-height: 250px;
  bottom: 0;
  background-color: #d8e3e9;
}

/* line 57, src/sass/components/banner.scss */
.banner-top .banner-text {
  z-index: 9;
  margin-left: 0;
  width: 100%;
}

/* line 62, src/sass/components/banner.scss */
.banner-top-img {
  height: 100%;
  position: relative;
}

/* line 66, src/sass/components/banner.scss */
.banner-top-img img {
  height: 100%;
}

/* line 70, src/sass/components/banner.scss */
.banner-top img {
  position: relative;
  z-index: 5;
}

/* line 78, src/sass/components/banner.scss */
.actor-portrayal-text {
  position: absolute;
  left: 44%;
  bottom: 4%;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  z-index: 9;
}

/* line 88, src/sass/components/banner.scss */
.banner-page2 {
  background: url("/images/monitoring-ctcl/hero-image@3x.png") no-repeat left;
}

/* line 92, src/sass/components/banner.scss */
.banner-page3 {
  background: url("/images/managing-ctcl/hero-image@3x.png") no-repeat left;
}

/* line 94, src/sass/components/banner.scss */
.banner-page3 .banner-text {
  max-width: unset;
}

/* line 99, src/sass/components/banner.scss */
.banner-section-without-img {
  background-color: #d8e3e9;
  padding: 68px 0px;
}

/* line 102, src/sass/components/banner.scss */
.banner-section-without-img h1 {
  color: #4f7288;
  font-weight: 300;
  font-size: 50px;
  line-height: 80px;
}

/* line 108, src/sass/components/banner.scss */
.banner-section-without-img h1 span {
  font-size: 72px;
}

/* line 113, src/sass/components/banner.scss */
.resource-center .banner-section-without-img {
  padding: 60px 0;
}

@media (max-width: 1300px) {
  /* line 130, src/sass/components/banner.scss */
  .banner-row picture {
    margin-left: -15rem;
  }
}

@media (max-width: 500px) {
  /* line 139, src/sass/components/banner.scss */
  .banner-top .banner-text {
    position: absolute;
    width: auto;
    left: 39%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 149, src/sass/components/banner.scss */
  .banner-text {
    margin-left: 180px;
  }
  /* line 152, src/sass/components/banner.scss */
  .banner.banner-page2 {
    background: url("/images/monitoring-ctcl/sm/banner-sm.png") no-repeat left;
  }
  /* line 155, src/sass/components/banner.scss */
  .banner.banner-page3 {
    background: url("/images/managing-ctcl/sm/banner-sm.png") no-repeat left;
  }
  /* line 158, src/sass/components/banner.scss */
  .banner .actor-portrayal-text {
    left: 2%;
  }
  /* line 161, src/sass/components/banner.scss */
  .banner-row {
    padding: 0 !important;
    margin: 0 !important;
  }
  /* line 164, src/sass/components/banner.scss */
  .banner-row picture {
    margin-left: 0;
  }
  /* line 169, src/sass/components/banner.scss */
  .banner-top::after {
    min-height: 210px;
  }
  /* line 172, src/sass/components/banner.scss */
  .banner-top img {
    height: 250px;
  }
}

@media only screen and (max-width: 991.9px) {
  /* line 181, src/sass/components/banner.scss */
  .banner {
    min-height: 210px;
  }
  /* line 183, src/sass/components/banner.scss */
  .banner-text {
    margin-left: 146px;
    padding-right: 30px;
    max-width: 100%;
  }
  /* line 187, src/sass/components/banner.scss */
  .banner-text h1 {
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
  }
  /* line 192, src/sass/components/banner.scss */
  .banner-text .font-large {
    font-size: 32px;
    line-height: 40px;
  }
  /* line 196, src/sass/components/banner.scss */
  .banner-text span {
    font-weight: 500;
  }
  /* line 201, src/sass/components/banner.scss */
  .banner-top img {
    height: 210px;
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 208, src/sass/components/banner.scss */
  .banner-section-without-img {
    padding: 40px 0px;
  }
  /* line 210, src/sass/components/banner.scss */
  .banner-section-without-img h1 {
    font-size: 32px;
    line-height: 40px;
  }
  /* line 213, src/sass/components/banner.scss */
  .banner-section-without-img h1 span {
    font-size: 32px;
    line-height: 40px;
  }
  /* line 221, src/sass/components/banner.scss */
  .resource-center .banner-section-without-img {
    padding: 40px 0;
  }
}

/* line 8, src/sass/components/modal.scss */
.modal-dialog {
  max-width: 660px;
  text-align: center;
  background: none;
  padding: 0;
}

/* line 15, src/sass/components/modal.scss */
.modal-dialog h2 {
  color: #4f7288;
}

/* line 19, src/sass/components/modal.scss */
.modal-dialog p {
  color: #3b3b3b;
  padding: 14px 0 12px;
}

/* line 24, src/sass/components/modal.scss */
.modal-content {
  padding: 60px 40px;
  -webkit-box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
          box-shadow: 0 2px 12px -2px rgba(60, 60, 60, 0.12);
  border-radius: 0;
}

/* line 31, src/sass/components/modal.scss */
#external-link-popup1 .modal-content {
  padding: 60px 35px;
}

/* line 34, src/sass/components/modal.scss */
#external-link-popup1 .modal-content .modal-body h2 {
  margin-bottom: 20px;
}

/* line 40, src/sass/components/modal.scss */
.modal-dialog a.btn.btn-yellow.btn-bottom-space {
  margin-bottom: 32px;
}

/* line 44, src/sass/components/modal.scss */
.modal-dialog a.btn.btn-yellow {
  margin: 0 auto;
  width: 315px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 48, src/sass/components/modal.scss */
.modal-dialog a.btn.btn-yellow .border-2 {
  width: 311px;
}

/* line 52, src/sass/components/modal.scss */
.modal-open {
  padding: 0 !important;
}

@media (max-width: 767px) {
  /* line 57, src/sass/components/modal.scss */
  .modal-dialog {
    padding: 0 10px;
  }
  /* line 59, src/sass/components/modal.scss */
  .modal-dialog .modal-content {
    padding: 40px 15px;
  }
  /* line 63, src/sass/components/modal.scss */
  .modal-dialog .modal-body {
    padding: 0;
  }
}

@media (max-width: 390px) {
  /* line 70, src/sass/components/modal.scss */
  .modal-dialog a.btn.btn-yellow {
    width: 100%;
  }
  /* line 72, src/sass/components/modal.scss */
  .modal-dialog a.btn.btn-yellow .border-2 {
    width: 100%;
  }
}

/* line 7, src/sass/components/quote.scss */
.quote-section {
  background: #f7c061;
  text-align: center;
  padding: 60px 0px;
}

/* line 12, src/sass/components/quote.scss */
.quote-section.bigger-width blockquote {
  max-width: 1024px;
}

/* line 15, src/sass/components/quote.scss */
.quote-section blockquote {
  font-size: 21px;
  line-height: 29px;
  margin: 0;
  max-width: 698px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  /* line 26, src/sass/components/quote.scss */
  .quote-section blockquote {
    font-size: 19px;
    line-height: 27px;
  }
  /* line 31, src/sass/components/quote.scss */
  .quote-section {
    padding: 40px 20px;
  }
  /* line 33, src/sass/components/quote.scss */
  .quote-section .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*==========================================
   Quote with image section
===========================================*/
/* line 47, src/sass/components/quote.scss */
.quote-section-image {
  padding: 41px 0;
}

/* line 53, src/sass/components/quote.scss */
.quote-section-image .member-info {
  margin-right: 32px;
}

@media only screen and (max-width: 768.9px) {
  /* line 53, src/sass/components/quote.scss */
  .quote-section-image .member-info {
    margin: auto;
  }
}

/* line 59, src/sass/components/quote.scss */
.quote-section-image .member-img {
  width: 164px;
  height: 168px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 768.9px) {
  /* line 59, src/sass/components/quote.scss */
  .quote-section-image .member-img {
    width: 140px;
    height: 140px;
    margin: auto;
  }
}

/* line 68, src/sass/components/quote.scss */
.quote-section-image .member-img img {
  width: 100%;
  height: 100%;
}

/* line 76, src/sass/components/quote.scss */
.quote-section-image p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
}

/* line 82, src/sass/components/quote.scss */
.quote-section-image blockquote {
  max-width: 100%;
  text-align: left;
}

/* line 87, src/sass/components/quote.scss */
.quote-section-image blockquote span {
  display: block;
  margin-top: 29px;
}

@media (min-width: 768px) {
  /* line 95, src/sass/components/quote.scss */
  .vertical-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* line 100, src/sass/components/quote.scss */
  body .image-width {
    width: 23%;
    padding-right: 0;
  }
  /* line 105, src/sass/components/quote.scss */
  body .text-width {
    width: 77%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  /* line 114, src/sass/components/quote.scss */
  .quote-section-image blockquote {
    text-align: center;
  }
  /* line 118, src/sass/components/quote.scss */
  .member-name {
    padding-bottom: 16px;
    padding-top: 6px;
  }
  /* line 123, src/sass/components/quote.scss */
  .quote-section-image {
    padding: 40px 20px;
  }
}

/* line 2, src/sass/components/_accessibility.scss */
.access_nav-list {
  position: fixed;
  top: -20em;
  width: 100%;
  z-index: 150;
}

/* line 8, src/sass/components/_accessibility.scss */
.access_nav-item {
  background: #4f7288;
  padding: 1rem;
  color: #ffffff;
  text-align: center;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}

/* line 19, src/sass/components/_accessibility.scss */
.access_nav-item:focus {
  top: 20em;
}

/* line 2, src/sass/components/_tabs.scss */
.tabs .nav-tabs .nav-link {
  border: none;
  margin-bottom: 0 !important;
  border-radius: 0;
  background: #ebf1f5;
  color: #4f7288;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
}

/* line 12, src/sass/components/_tabs.scss */
.tabs .nav-tabs {
  border-bottom: solid 3px #4f7288;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
}

/* line 17, src/sass/components/_tabs.scss */
.tabs .nav-tabs .nav-item.show .nav-link, .tabs .nav-tabs .nav-link.active {
  background: #f7c061;
  height: 100%;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
}

/* line 26, src/sass/components/_tabs.scss */
.tab-content {
  padding: 40px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
}

/* line 31, src/sass/components/_tabs.scss */
.tab-title {
  border: solid 3px #4f7288;
  border-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 32px;
}

/* line 32, src/sass/components/_tabs.scss */
.tab-title:first-child {
  border-right: 0;
}

/* line 35, src/sass/components/_tabs.scss */
.tab-title button {
  padding: 24px;
}

/* line 46, src/sass/components/_tabs.scss */
.tab-pane p {
  margin-bottom: 24px;
}

/* line 50, src/sass/components/_tabs.scss */
.tab-pane ul > li {
  margin-bottom: 16px;
  list-style: disc;
}

/* line 54, src/sass/components/_tabs.scss */
.tab-pane ul > li:first-child {
  margin-top: 16px;
}

/* line 59, src/sass/components/_tabs.scss */
.tab-pane ul li::marker {
  color: #f7c061;
  width: 8px;
  height: 8px;
}

@media only screen and (max-width: 575px) {
  /* line 67, src/sass/components/_tabs.scss */
  .tab-title {
    width: 50%;
  }
  /* line 69, src/sass/components/_tabs.scss */
  .tab-title button {
    padding: 15px 10px;
  }
  /* line 75, src/sass/components/_tabs.scss */
  .tab-content {
    padding: 32px 24px;
  }
}

@media (min-width: 300px) and (max-width: 374.9px) {
  /* line 85, src/sass/components/_tabs.scss */
  .tabs .nav-link {
    font-size: 18px;
    line-height: 24px;
    padding: 15px 10px;
  }
}

/* line 1, src/sass/components/_line.scss */
.hr-section {
  padding: 40px 0;
}

/* line 3, src/sass/components/_line.scss */
.hr-section hr {
  border: 2px solid;
  margin: 0;
}

/* line 6, src/sass/components/_line.scss */
.hr-section hr.yellow {
  border-color: #f7c061;
}

@media only screen and (max-width: 768.9px) {
  /* line 12, src/sass/components/_line.scss */
  .hr-section {
    padding: 20px 0 30px 0;
  }
}

/* line 3, src/sass/components/_card-section.scss */
.card-static .sectionHeading {
  margin-bottom: 24px;
}

/* line 5, src/sass/components/_card-section.scss */
.card-static .sectionHeading h2 {
  margin-bottom: 16px;
}

@media only screen and (max-width: 1024px) {
  /* line 9, src/sass/components/_card-section.scss */
  .card-static .tab-device-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 15, src/sass/components/_card-section.scss */
.card-content {
  padding: 40px 70px 40px 40px;
  -webkit-box-shadow: 0px 2px 12px -2px #3C3C3C1F;
          box-shadow: 0px 2px 12px -2px #3C3C3C1F;
  border-bottom: 3px solid #4f7288;
  margin-right: 30px;
}

/* line 20, src/sass/components/_card-section.scss */
.card-content ul {
  margin-top: 16px;
  padding-left: 8px;
  margin-left: 12px;
}

/* line 25, src/sass/components/_card-section.scss */
.card-content ul li {
  position: relative;
  margin-bottom: 16px;
  text-indent: -12px;
  padding-left: 8px;
}

/* line 34, src/sass/components/_card-section.scss */
.card-content ul li:before {
  content: "";
  background-color: #f7c061;
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50px;
  margin-right: 0;
  position: relative;
  left: -4px;
  top: 50%;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

/* line 50, src/sass/components/_card-section.scss */
.card-image {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 89%;
}

@media (min-width: 1023.9px) and (max-width: 1079.9px) {
  /* line 61, src/sass/components/_card-section.scss */
  .card-image {
    left: 85%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 71, src/sass/components/_card-section.scss */
  .card-static .sm-col-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  /* line 76, src/sass/components/_card-section.scss */
  .card-content {
    padding: 40px 24px 24px;
    margin: -25px 12px 0;
  }
  /* line 80, src/sass/components/_card-section.scss */
  .card-image {
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* line 83, src/sass/components/_card-section.scss */
  .card-image img {
    width: 100%;
  }
}

/** ========= HEADER ========= */
/* line 2, src/sass/layout/_header.scss */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  z-index: 25;
}

/* line 7, src/sass/layout/_header.scss */
.header-custom {
  width: 100%;
}

/* line 10, src/sass/layout/_header.scss */
.header-tp, .header-sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 15, src/sass/layout/_header.scss */
.header-bt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 20, src/sass/layout/_header.scss */
.header-sticky {
  display: none;
  -webkit-transition: .3s all ease-in;
  transition: .3s all ease-in;
  background: #01778B;
  -webkit-box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 195;
}

/* line 31, src/sass/layout/_header.scss */
.header-logo-section {
  padding: 24px 24px 24px 87px;
  background-color: #4f7288;
}

/* line 35, src/sass/layout/_header.scss */
.header-nav-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/* line 39, src/sass/layout/_header.scss */
.header-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 43, src/sass/layout/_header.scss */
.header-logo:focus-visible {
  outline: 3px solid #f7c061;
  text-decoration: none;
}

/* line 48, src/sass/layout/_header.scss */
.header .container {
  max-width: 100%;
  -webkit-transition: max-width .3s ease;
  transition: max-width .3s ease;
  padding: 0;
}

/* line 54, src/sass/layout/_header.scss */
.stay-informed-sm {
  display: none !important;
}

@media (min-width: 1601px) {
  /* line 60, src/sass/layout/_header.scss */
  .header .container {
    max-width: 1300px;
  }
  /* line 63, src/sass/layout/_header.scss */
  .header-bt {
    background: #4f7288;
    background: -webkit-gradient(linear, left top, right top, color-stop(25%, #4f7288), color-stop(25%, white));
    background: linear-gradient(90deg, #4f7288 25%, white 25%);
  }
  /* line 67, src/sass/layout/_header.scss */
  .header-logo-section {
    padding: 24px;
  }
  /* line 71, src/sass/layout/_header.scss */
  .header-nav-section {
    width: 70%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  /* line 75, src/sass/layout/_header.scss */
  .header .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 2000px) {
  /* line 83, src/sass/layout/_header.scss */
  .header .container {
    max-width: 1300px;
  }
}

@media (min-width: 2500px) {
  /* line 90, src/sass/layout/_header.scss */
  .header-bt {
    background: #4f7288;
    background: -webkit-gradient(linear, left top, right top, color-stop(35%, #4f7288), color-stop(35%, white));
    background: linear-gradient(90deg, #4f7288 35%, white 35%);
  }
}

@media (min-width: 3200px) {
  /* line 98, src/sass/layout/_header.scss */
  .header-bt {
    background: #4f7288;
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, #4f7288), color-stop(35%, white));
    background: linear-gradient(90deg, #4f7288 40%, white 35%);
  }
}

@media screen and (max-width: 1100px) and (min-width: 1025px) {
  /* line 106, src/sass/layout/_header.scss */
  .header-logo {
    padding: 0;
  }
  /* line 108, src/sass/layout/_header.scss */
  .header-logo-section {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 1240px) and (min-width: 1024px) {
  /* line 131, src/sass/layout/_header.scss */
  .header-logo img {
    width: 150px;
  }
  /* line 135, src/sass/layout/_header.scss */
  .header ul {
    padding-left: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 148, src/sass/layout/_header.scss */
  .header {
    position: relative;
    z-index: 250;
  }
  /* line 151, src/sass/layout/_header.scss */
  .header-logo {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-transform: none;
            transform: none;
  }
  /* line 156, src/sass/layout/_header.scss */
  .header-logo-section {
    padding: 0;
    width: auto;
  }
  /* line 161, src/sass/layout/_header.scss */
  .header-tp {
    display: none;
  }
  /* line 164, src/sass/layout/_header.scss */
  .header-bt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /* line 168, src/sass/layout/_header.scss */
  .header-nav-section {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  /* line 177, src/sass/layout/_header.scss */
  body.menu-is-blue .navigation .navigation-toggle .line,
  body.menu-is-blue .navigation .navigation-toggle .line::before,
  body.menu-is-blue .navigation .navigation-toggle .line::after,
  body.menu-is-primary .navigation .navigation-toggle .line,
  body.menu-is-primary .navigation .navigation-toggle .line::before,
  body.menu-is-primary .navigation .navigation-toggle .line::after {
    background-color: #ffffff;
  }
  /* line 184, src/sass/layout/_header.scss */
  body.menu-is-blue .navigation-stickyList > .dropdown > a, body.menu-is-blue .navigation-stickyList > .dropdown > a.active:not(.is-not-active-laptop),
  body.menu-is-primary .navigation-stickyList > .dropdown > a,
  body.menu-is-primary .navigation-stickyList > .dropdown > a.active:not(.is-not-active-laptop) {
    color: #ffffff;
  }
  /* line 189, src/sass/layout/_header.scss */
  .menu-opened {
    overflow: hidden;
  }
  /* line 191, src/sass/layout/_header.scss */
  .menu-opened .header-bt {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 27px;
    background-color: #ebf1f5;
  }
}

@media only screen and (max-width: 768.9px) {
  /* line 201, src/sass/layout/_header.scss */
  .header .stay-informed-sm {
    display: block !important;
    text-align: center;
    padding-top: 0;
    background-color: #FCFCFD;
  }
  /* line 206, src/sass/layout/_header.scss */
  .header .stay-informed-sm a {
    margin: 0 auto;
  }
  /* line 212, src/sass/layout/_header.scss */
  .menu-opened .stay-informed-sm {
    background-color: #ebf1f5;
  }
}

/** ========= NAVIGATION ========= */
/* line 3, src/sass/layout/_navigation.scss */
.navigation, .navigation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

/* line 10, src/sass/layout/_navigation.scss */
.navigation-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 12, src/sass/layout/_navigation.scss */
.navigation-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 14, src/sass/layout/_navigation.scss */
.navigation-list > li:not(:last-child) {
  margin-right: 20px;
}

/* line 18, src/sass/layout/_navigation.scss */
.navigation-list > li.navigation-btn > a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  padding: 4px;
  line-height: normal;
  letter-spacing: normal;
}

/* line 26, src/sass/layout/_navigation.scss */
.navigation-list > li.navigation-btn > a:hover, .navigation-list > li.navigation-btn > a.active {
  color: #d93912;
}

/* line 33, src/sass/layout/_navigation.scss */
.navigation-list > li:first-child > a:focus-visible {
  outline: 3px solid #f7c061;
  border-radius: 5px;
  padding: 5px 0;
}

/* line 49, src/sass/layout/_navigation.scss */
.navigation-list > li > a > .nav-br {
  display: block;
}

/* line 52, src/sass/layout/_navigation.scss */
.navigation-list > li > a.pointer-none {
  pointer-events: none;
}

/* line 55, src/sass/layout/_navigation.scss */
.navigation-list > li > a.active {
  color: #4f7288;
  font-weight: 700;
}

/* line 60, src/sass/layout/_navigation.scss */
.navigation-list > li:hover {
  cursor: pointer;
}

/* line 62, src/sass/layout/_navigation.scss */
.navigation-list > li:hover > a {
  color: #4f7288;
}

/* line 67, src/sass/layout/_navigation.scss */
.navigation-list > li:active > a {
  color: #4f7288;
}

/* line 73, src/sass/layout/_navigation.scss */
.navigation-toggle {
  display: none;
}

/* line 75, src/sass/layout/_navigation.scss */
.navigation-toggle > span {
  display: block;
}

/* line 78, src/sass/layout/_navigation.scss */
.navigation-toggle .line {
  position: relative;
  margin: 0.5rem 0;
}

/* line 81, src/sass/layout/_navigation.scss */
.navigation-toggle .line, .navigation-toggle .line::after, .navigation-toggle .line::before {
  width: 2.13rem;
  height: 0.25rem;
  background: #4f7288;
}

/* line 88, src/sass/layout/_navigation.scss */
.navigation-toggle .line::after, .navigation-toggle .line::before {
  content: "";
  position: absolute;
}

/* line 93, src/sass/layout/_navigation.scss */
.navigation-toggle .line::before {
  top: -0.6rem;
}

/* line 96, src/sass/layout/_navigation.scss */
.navigation-toggle .line::after {
  bottom: -0.6rem;
  width: 100%;
}

/* line 101, src/sass/layout/_navigation.scss */
.navigation-toggle .text {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  color: #4f7288;
}

/* line 108, src/sass/layout/_navigation.scss */
.navigation-toggle.active {
  margin-top: 0;
}

/* line 110, src/sass/layout/_navigation.scss */
.navigation-toggle.active .line {
  background: transparent;
}

/* line 112, src/sass/layout/_navigation.scss */
.navigation-toggle.active .line::after, .navigation-toggle.active .line::before {
  top: 0;
}

/* line 116, src/sass/layout/_navigation.scss */
.navigation-toggle.active .line::after {
  width: 100%;
  -webkit-transform: rotate(43deg);
          transform: rotate(43deg);
}

/* line 120, src/sass/layout/_navigation.scss */
.navigation-toggle.active .line::before {
  -webkit-transform: rotate(-43deg);
          transform: rotate(-43deg);
}

/* line 127, src/sass/layout/_navigation.scss */
.dropdown {
  position: relative;
  z-index: 10;
}

/* line 130, src/sass/layout/_navigation.scss */
.dropdown > a {
  text-decoration: none;
}

/* line 132, src/sass/layout/_navigation.scss */
.dropdown > a > i {
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  font-size: 8px;
  padding-left: 4px;
  vertical-align: middle;
}

/* line 144, src/sass/layout/_navigation.scss */
.dropdown-list {
  position: absolute;
  left: 0;
  top: 2em;
  z-index: 200;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 29.7rem;
  background-color: #ebf1f5;
  display: none;
  padding: 16px;
}

/* line 154, src/sass/layout/_navigation.scss */
.dropdown-list > li {
  margin-bottom: 16px;
}

/* line 156, src/sass/layout/_navigation.scss */
.dropdown-list > li > a {
  display: block;
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  text-align: left;
  color: #4f7288;
  text-decoration: underline;
}

/* line 164, src/sass/layout/_navigation.scss */
.dropdown-list > li > a:hover, .dropdown-list > li > a:focus {
  color: #4f7288;
  font-weight: normal;
}

/* line 168, src/sass/layout/_navigation.scss */
.dropdown-list > li > a:active, .dropdown-list > li > a.active {
  color: #4f7288;
  font-weight: 700;
  text-decoration: none !important;
}

/* line 174, src/sass/layout/_navigation.scss */
.dropdown-list > li > a:focus-visible {
  outline: 3px solid #f7c061;
  border-radius: 5px;
  padding: 5px 0;
}

/* line 184, src/sass/layout/_navigation.scss */
.dropdown.active .dropdown-list {
  display: block;
}

/* line 191, src/sass/layout/_navigation.scss */
.dropdown.active > a > i::before {
  content: "\e901";
  color: #4f7288;
}

/* line 202, src/sass/layout/_navigation.scss */
html.is-touch .dropdown.active .dropdown-list {
  display: block;
}

@media screen and (max-width: 1400px) and (min-width: 1025px) {
  /* line 217, src/sass/layout/_navigation.scss */
  .navigation-list > li:not(:last-child) {
    margin-right: 12px;
  }
  /* line 220, src/sass/layout/_navigation.scss */
  .navigation-list > li a {
    font-size: 13px;
  }
  /* line 224, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-btn > a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 254, src/sass/layout/_navigation.scss */
  .navigation-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    z-index: 600;
    left: 0;
    background: #ffffff;
    width: 100%;
    top: 100%;
    display: none;
    border-bottom: 8px solid #f7c061;
  }
  /* line 267, src/sass/layout/_navigation.scss */
  .navigation-list.active {
    display: block;
  }
  /* line 273, src/sass/layout/_navigation.scss */
  .navigation-list > li {
    display: block;
  }
  /* line 275, src/sass/layout/_navigation.scss */
  .navigation-list > li > a {
    padding: 1rem;
    line-height: unset;
    margin: 0;
    width: 100%;
    border: none;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  /* line 286, src/sass/layout/_navigation.scss */
  .navigation-list > li > a:hover, .navigation-list > li > a:focus, .navigation-list > li > a:active {
    color: #d6fbff;
    border-bottom: none !important;
  }
  /* line 293, src/sass/layout/_navigation.scss */
  .navigation-list > li:last-child {
    border-radius: 0;
    height: inherit;
    background: transparent;
  }
  /* line 298, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-sm {
    display: block;
  }
  /* line 300, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-sm:not(.nav-btn) {
    background: #4f7288;
    padding: 0 0.5rem;
  }
  /* line 304, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-sm > a {
    color: #ffffff;
    display: block;
    text-decoration: none;
  }
  /* line 311, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-sm.nav-btn > a {
    border: none !important;
  }
  /* line 316, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-sm:last-child {
    padding-bottom: 4rem;
  }
  /* line 322, src/sass/layout/_navigation.scss */
  .navigation-toggle {
    display: block;
    padding-right: 20px;
    margin-top: 13px;
  }
  /* line 328, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-btn {
    background-image: none;
    padding-top: 24px;
  }
  /* line 332, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-btn > a {
    padding: 4px;
    font-size: 16px;
    border: 2px solid #ffffff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  /* line 338, src/sass/layout/_navigation.scss */
  .navigation-list > li.navigation-btn > a.active {
    color: #d6fbff;
  }
  /* line 341, src/sass/layout/_navigation.scss */
  .navigation-list > li > a.active {
    color: #4f7288;
    font-weight: 700;
  }
  /* line 349, src/sass/layout/_navigation.scss */
  .dropdown-list {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: unset;
    width: 100%;
  }
  /* line 358, src/sass/layout/_navigation.scss */
  .dropdown-list > li:not(:last-child) > a {
    border: none;
  }
  /* line 362, src/sass/layout/_navigation.scss */
  .dropdown-list > li > a {
    text-align: left;
    font-weight: 500;
  }
  /* line 371, src/sass/layout/_navigation.scss */
  .menu-opened .header {
    color: #ffffff;
  }
  /* line 373, src/sass/layout/_navigation.scss */
  .menu-opened .header-logo {
    display: none !important;
  }
  /* line 378, src/sass/layout/_navigation.scss */
  .menu-opened .line::before, .menu-opened .line::after {
    background: #ffffff;
    background: #4f7288;
  }
  /* line 384, src/sass/layout/_navigation.scss */
  .navigation-stickyList {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* line 388, src/sass/layout/_navigation.scss */
  .navigation-stickyList > li:not(:last-child) {
    padding: 5px;
    margin-right: 1rem;
  }
  /* line 392, src/sass/layout/_navigation.scss */
  .navigation-stickyList > li > a {
    font-size: 11px;
    font-weight: bold;
  }
  /* line 396, src/sass/layout/_navigation.scss */
  .navigation-stickyList > li > a > span.show-sm {
    display: inline-block !important;
  }
  /* line 405, src/sass/layout/_navigation.scss */
  .navigation-stickyList .dropdown {
    position: unset !important;
  }
  /* line 408, src/sass/layout/_navigation.scss */
  .navigation-stickyList .dropdown-list {
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* line 414, src/sass/layout/_navigation.scss */
  .navigation-toggle .line.bg-white, .navigation-toggle .line.bg-white::after, .navigation-toggle .line.bg-white::before {
    background-color: #ffffff;
  }
  /* line 417, src/sass/layout/_navigation.scss */
  .navigation-list {
    background: #ebf1f5;
    top: 47px;
    z-index: 1000;
    color: #4f7288;
    height: calc(100vh - 64px);
    padding-left: 32px;
    overflow: auto;
    border-bottom: 8px solid #f7c061;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  /* line 429, src/sass/layout/_navigation.scss */
  .navigation-list > li > a {
    font-size: 16px;
    font-weight: 500;
  }
  /* line 433, src/sass/layout/_navigation.scss */
  .navigation-list > li > a, .header-tp-list-mobile > li {
    color: #4f7288;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 1rem 0;
  }
  /* line 438, src/sass/layout/_navigation.scss */
  .header-tp-list-mobile {
    margin-top: 5rem;
  }
  /* line 441, src/sass/layout/_navigation.scss */
  .navigation-list > li > a > span {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  /* line 445, src/sass/layout/_navigation.scss */
  .navigation-list .dropdown-list {
    background: none;
    border: none;
    padding: 0 16px;
  }
  /* line 450, src/sass/layout/_navigation.scss */
  .navigation-list .dropdown-list > li > a {
    color: #4f7288;
    font-size: 16px;
    text-decoration: underline;
  }
  /* line 455, src/sass/layout/_navigation.scss */
  .navigation-list .dropdown-list > li > a.active {
    color: #4f7288;
    font-weight: 700;
    text-decoration: none;
  }
  /* line 460, src/sass/layout/_navigation.scss */
  .navigation-list > li > a:hover, .navigation-list > li > a:focus, .navigation-list > li > a:active {
    font-weight: bold;
    color: #4f7288;
  }
  /* line 466, src/sass/layout/_navigation.scss */
  .navigation-toggle.active {
    position: relative;
    z-index: 1001;
  }
  /* line 469, src/sass/layout/_navigation.scss */
  .navigation-toggle.active .text {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    position: absolute;
    bottom: -1.5rem;
  }
  /* line 476, src/sass/layout/_navigation.scss */
  .navigation-stickyList > li .dropdown-list {
    padding: 1rem 0.5rem;
  }
  /* line 479, src/sass/layout/_navigation.scss */
  .navigation-stickyList > li .dropdown-list > li > a {
    padding: 0;
    font-weight: 500;
  }
  /* line 491, src/sass/layout/_navigation.scss */
  .dropdown.active > a > i::before {
    content: "\e901";
    color: #4f7288;
  }
}

/* line 35, src/sass/layout/_grid.scss */
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 1280px) {
  /* line 35, src/sass/layout/_grid.scss */
  .container {
    max-width: 1080px;
  }
}

@media only screen and (max-width: 768px) {
  /* line 35, src/sass/layout/_grid.scss */
  .container {
    max-width: 732px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* line 59, src/sass/layout/_grid.scss */
.row {
  margin-right: -10px;
  margin-left: -10px;
}

/* line 62, src/sass/layout/_grid.scss */
.row > * {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 768px) {
  /* line 59, src/sass/layout/_grid.scss */
  .row {
    margin-right: -8px;
    margin-left: -8px;
  }
}

/* line 72, src/sass/layout/_grid.scss */
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
  padding-right: 12px;
  padding-left: 12px;
}

@media only screen and (max-width: 768px) {
  /* line 72, src/sass/layout/_grid.scss */
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/** ========= WRAPPER ========= */
/* line 2, src/sass/layout/_wrapper.scss */
.main-content {
  margin-top: 65px;
}

/* line 6, src/sass/layout/_wrapper.scss */
.content {
  margin-top: 65px;
  margin-left: 280px;
  margin-right: 280px;
}

/* line 11, src/sass/layout/_wrapper.scss */
.content-full {
  margin-right: 0;
  margin-left: 0;
}

/* line 22, src/sass/layout/_wrapper.scss */
.sidebar {
  position: fixed;
  left: 0;
  top: 65px;
  bottom: 0;
  background: #ffffff;
  overflow: auto;
  width: 280px;
  -webkit-box-shadow: 0px 0px 10px rgba(120, 130, 140, 0.13);
          box-shadow: 0px 0px 10px rgba(120, 130, 140, 0.13);
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

/* line 32, src/sass/layout/_wrapper.scss */
.sidebar > .side-nav {
  display: none;
}

/* line 35, src/sass/layout/_wrapper.scss */
.sidebar.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* line 46, src/sass/layout/_wrapper.scss */
.sidebar-rt {
  right: 0;
  left: unset;
}

/* line 1, src/sass/layout/_section.scss */
section, .section {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  /* line 6, src/sass/layout/_section.scss */
  section, .section {
    padding: 40px 0;
  }
}

/** ========= FOOTER ========= */
/* line 3, src/sass/layout/_footer.scss */
.footer {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 14px;
  padding: 40px 0px;
}

/* line 8, src/sass/layout/_footer.scss */
.footer-logo {
  max-width: 200px;
}

/* line 11, src/sass/layout/_footer.scss */
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 21px 0;
}

/* line 17, src/sass/layout/_footer.scss */
.footer-menu li a {
  text-decoration: underline;
  color: white;
}

/* line 23, src/sass/layout/_footer.scss */
.footer-p-mb {
  margin-bottom: 21px !important;
}

/* line 26, src/sass/layout/_footer.scss */
.footer-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 31, src/sass/layout/_footer.scss */
.footer-social-icons-text {
  margin-bottom: 0;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 700;
}

/* line 38, src/sass/layout/_footer.scss */
.footer a:focus-visible {
  outline: 3px solid #f7c061;
  border-radius: 5px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  /* line 46, src/sass/layout/_footer.scss */
  .footer > .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767.9px) {
  /* line 54, src/sass/layout/_footer.scss */
  .footer {
    text-align: center;
  }
  /* line 56, src/sass/layout/_footer.scss */
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* line 59, src/sass/layout/_footer.scss */
  .footer-logo {
    max-width: unset;
  }
  /* line 62, src/sass/layout/_footer.scss */
  .footer-social-icons {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 0 10px;
    margin-bottom: 21px;
    gap: 16px;
  }
}
