/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:

.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.

.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels

The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.

*/
.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-12 {
  margin-top: 12px !important;
}

.p-t-12 {
  padding-top: 12px !important;
}

.m-b-12 {
  margin-bottom: 12px !important;
}

.p-b-12 {
  padding-bottom: 12px !important;
}

.m-l-12 {
  margin-left: 12px !important;
}

.p-l-12 {
  padding-left: 12px !important;
}

.m-r-12 {
  margin-right: 12px !important;
}

.p-r-12 {
  padding-right: 12px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-16 {
  margin-top: 16px !important;
}

.p-t-16 {
  padding-top: 16px !important;
}

.m-b-16 {
  margin-bottom: 16px !important;
}

.p-b-16 {
  padding-bottom: 16px !important;
}

.m-l-16 {
  margin-left: 16px !important;
}

.p-l-16 {
  padding-left: 16px !important;
}

.m-r-16 {
  margin-right: 16px !important;
}

.p-r-16 {
  padding-right: 16px !important;
}

.m-t-18 {
  margin-top: 18px !important;
}

.p-t-18 {
  padding-top: 18px !important;
}

.m-b-18 {
  margin-bottom: 18px !important;
}

.p-b-18 {
  padding-bottom: 18px !important;
}

.m-l-18 {
  margin-left: 18px !important;
}

.p-l-18 {
  padding-left: 18px !important;
}

.m-r-18 {
  margin-right: 18px !important;
}

.p-r-18 {
  padding-right: 18px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-24 {
  margin-top: 24px !important;
}

.p-t-24 {
  padding-top: 24px !important;
}

.m-b-24 {
  margin-bottom: 24px !important;
}

.p-b-24 {
  padding-bottom: 24px !important;
}

.m-l-24 {
  margin-left: 24px !important;
}

.p-l-24 {
  padding-left: 24px !important;
}

.m-r-24 {
  margin-right: 24px !important;
}

.p-r-24 {
  padding-right: 24px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-32 {
  margin-top: 32px !important;
}

.p-t-32 {
  padding-top: 32px !important;
}

.m-b-32 {
  margin-bottom: 32px !important;
}

.p-b-32 {
  padding-bottom: 32px !important;
}

.m-l-32 {
  margin-left: 32px !important;
}

.p-l-32 {
  padding-left: 32px !important;
}

.m-r-32 {
  margin-right: 32px !important;
}

.p-r-32 {
  padding-right: 32px !important;
}

.m-t-34 {
  margin-top: 34px !important;
}

.p-t-34 {
  padding-top: 34px !important;
}

.m-b-34 {
  margin-bottom: 34px !important;
}

.p-b-34 {
  padding-bottom: 34px !important;
}

.m-l-34 {
  margin-left: 34px !important;
}

.p-l-34 {
  padding-left: 34px !important;
}

.m-r-34 {
  margin-right: 34px !important;
}

.p-r-34 {
  padding-right: 34px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-36 {
  margin-top: 36px !important;
}

.p-t-36 {
  padding-top: 36px !important;
}

.m-b-36 {
  margin-bottom: 36px !important;
}

.p-b-36 {
  padding-bottom: 36px !important;
}

.m-l-36 {
  margin-left: 36px !important;
}

.p-l-36 {
  padding-left: 36px !important;
}

.m-r-36 {
  margin-right: 36px !important;
}

.p-r-36 {
  padding-right: 36px !important;
}

.m-t-38 {
  margin-top: 38px !important;
}

.p-t-38 {
  padding-top: 38px !important;
}

.m-b-38 {
  margin-bottom: 38px !important;
}

.p-b-38 {
  padding-bottom: 38px !important;
}

.m-l-38 {
  margin-left: 38px !important;
}

.p-l-38 {
  padding-left: 38px !important;
}

.m-r-38 {
  margin-right: 38px !important;
}

.p-r-38 {
  padding-right: 38px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-48 {
  margin-top: 48px !important;
}

.p-t-48 {
  padding-top: 48px !important;
}

.m-b-48 {
  margin-bottom: 48px !important;
}

.p-b-48 {
  padding-bottom: 48px !important;
}

.m-l-48 {
  margin-left: 48px !important;
}

.p-l-48 {
  padding-left: 48px !important;
}

.m-r-48 {
  margin-right: 48px !important;
}

.p-r-48 {
  padding-right: 48px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-56 {
  margin-top: 56px !important;
}

.p-t-56 {
  padding-top: 56px !important;
}

.m-b-56 {
  margin-bottom: 56px !important;
}

.p-b-56 {
  padding-bottom: 56px !important;
}

.m-l-56 {
  margin-left: 56px !important;
}

.p-l-56 {
  padding-left: 56px !important;
}

.m-r-56 {
  margin-right: 56px !important;
}

.p-r-56 {
  padding-right: 56px !important;
}

.m-t-58 {
  margin-top: 58px !important;
}

.p-t-58 {
  padding-top: 58px !important;
}

.m-b-58 {
  margin-bottom: 58px !important;
}

.p-b-58 {
  padding-bottom: 58px !important;
}

.m-l-58 {
  margin-left: 58px !important;
}

.p-l-58 {
  padding-left: 58px !important;
}

.m-r-58 {
  margin-right: 58px !important;
}

.p-r-58 {
  padding-right: 58px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.m-t-64 {
  margin-top: 64px !important;
}

.p-t-64 {
  padding-top: 64px !important;
}

.m-b-64 {
  margin-bottom: 64px !important;
}

.p-b-64 {
  padding-bottom: 64px !important;
}

.m-l-64 {
  margin-left: 64px !important;
}

.p-l-64 {
  padding-left: 64px !important;
}

.m-r-64 {
  margin-right: 64px !important;
}

.p-r-64 {
  padding-right: 64px !important;
}

.m-t-68 {
  margin-top: 68px !important;
}

.p-t-68 {
  padding-top: 68px !important;
}

.m-b-68 {
  margin-bottom: 68px !important;
}

.p-b-68 {
  padding-bottom: 68px !important;
}

.m-l-68 {
  margin-left: 68px !important;
}

.p-l-68 {
  padding-left: 68px !important;
}

.m-r-68 {
  margin-right: 68px !important;
}

.p-r-68 {
  padding-right: 68px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-80 {
  margin-top: 80px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

.m-b-80 {
  margin-bottom: 80px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.m-l-80 {
  margin-left: 80px !important;
}

.p-l-80 {
  padding-left: 80px !important;
}

.m-r-80 {
  margin-right: 80px !important;
}

.p-r-80 {
  padding-right: 80px !important;
}

.m-t-85 {
  margin-top: 85px !important;
}

.p-t-85 {
  padding-top: 85px !important;
}

.m-b-85 {
  margin-bottom: 85px !important;
}

.p-b-85 {
  padding-bottom: 85px !important;
}

.m-l-85 {
  margin-left: 85px !important;
}

.p-l-85 {
  padding-left: 85px !important;
}

.m-r-85 {
  margin-right: 85px !important;
}

.p-r-85 {
  padding-right: 85px !important;
}

.m-t-88 {
  margin-top: 88px !important;
}

.p-t-88 {
  padding-top: 88px !important;
}

.m-b-88 {
  margin-bottom: 88px !important;
}

.p-b-88 {
  padding-bottom: 88px !important;
}

.m-l-88 {
  margin-left: 88px !important;
}

.p-l-88 {
  padding-left: 88px !important;
}

.m-r-88 {
  margin-right: 88px !important;
}

.p-r-88 {
  padding-right: 88px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

.m-t-95 {
  margin-top: 95px !important;
}

.p-t-95 {
  padding-top: 95px !important;
}

.m-b-95 {
  margin-bottom: 95px !important;
}

.p-b-95 {
  padding-bottom: 95px !important;
}

.m-l-95 {
  margin-left: 95px !important;
}

.p-l-95 {
  padding-left: 95px !important;
}

.m-r-95 {
  margin-right: 95px !important;
}

.p-r-95 {
  padding-right: 95px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.m-t-140 {
  margin-top: 140px !important;
}

.p-t-140 {
  padding-top: 140px !important;
}

.m-b-140 {
  margin-bottom: 140px !important;
}

.p-b-140 {
  padding-bottom: 140px !important;
}

.m-l-140 {
  margin-left: 140px !important;
}

.p-l-140 {
  padding-left: 140px !important;
}

.m-r-140 {
  margin-right: 140px !important;
}

.p-r-140 {
  padding-right: 140px !important;
}

.m-t-150 {
  margin-top: 150px !important;
}

.p-t-150 {
  padding-top: 150px !important;
}

.m-b-150 {
  margin-bottom: 150px !important;
}

.p-b-150 {
  padding-bottom: 150px !important;
}

.m-l-150 {
  margin-left: 150px !important;
}

.p-l-150 {
  padding-left: 150px !important;
}

.m-r-150 {
  margin-right: 150px !important;
}

.p-r-150 {
  padding-right: 150px !important;
}

.m-t-175 {
  margin-top: 175px !important;
}

.p-t-175 {
  padding-top: 175px !important;
}

.m-b-175 {
  margin-bottom: 175px !important;
}

.p-b-175 {
  padding-bottom: 175px !important;
}

.m-l-175 {
  margin-left: 175px !important;
}

.p-l-175 {
  padding-left: 175px !important;
}

.m-r-175 {
  margin-right: 175px !important;
}

.p-r-175 {
  padding-right: 175px !important;
}

.m-t-200 {
  margin-top: 200px !important;
}

.p-t-200 {
  padding-top: 200px !important;
}

.m-b-200 {
  margin-bottom: 200px !important;
}

.p-b-200 {
  padding-bottom: 200px !important;
}

.m-l-200 {
  margin-left: 200px !important;
}

.p-l-200 {
  padding-left: 200px !important;
}

.m-r-200 {
  margin-right: 200px !important;
}

.p-r-200 {
  padding-right: 200px !important;
}

/*
  RUN GULP to generate the classes. Now you can use these helpers to customize spacing on HTML elements.
*/
@font-face {
  font-family: Source Sans Pro;
  src: url("../fonts/SourceSansPro-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Plus Jakarta Sans;
  src: url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: Source Sans Pro;
  color: #000000;
  max-width: 100vw;
  overflow-x: clip;
  line-height: 1.3;
}

a {
  text-decoration: none !important;
}

.navbar-container {
  position: fixed;
  width: 100%;
  z-index: 10000000000;
  top: 0;
  left: 0;
}
.navbar-container .d-flex {
  justify-content: space-around;
  width: 100%;
}
.navbar-container .menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  transition: all 0.8s ease-out;
  transform: translateY(-100%);
  background-color: #6A3F6E;
  padding-top: 6rem;
  padding-bottom: 2rem;
  z-index: 1000;
}
.navbar-container .menu-container.active {
  transform: translateY(0);
}
.navbar-container .menu-container .menu-list {
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 0.5rem;
  padding-left: 1rem;
  position: relative;
  text-decoration: none;
}
.navbar-container .menu-container .menu-list span {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../image/core/active.svg);
  opacity: 0;
  height: 100%;
  width: 0.7rem;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  transition: all 0.3s ease-out;
}
.navbar-container .menu-container .menu-list.active {
  color: #E4C04B;
}
.navbar-container .menu-container .menu-list.active span {
  opacity: 1;
}
.navbar-container .menu-container .menu-list:hover span {
  opacity: 1;
}
.navbar-container .page-title-container {
  left: 50%;
  padding: 5rem 1.5rem 1.1rem 1.5rem;
  top: 0;
  height: 8.4rem;
  transform: translate(-50%, -100%);
  font-size: 2.1rem;
  transition: all 1.3s ease-out;
}
.navbar-container .page-title-container.on-animate {
  transform: translate(-50%, 0%);
}
.navbar-container .page-title-container.on-animate-1 {
  transform: translate(-50%, -50%) !important;
}
.navbar-container .page-title-container .page-title {
  transition: all 1.5s ease-out;
  opacity: 0;
}
.navbar-container .page-title-container .page-title.on-animate {
  opacity: 1;
}
.navbar-container nav {
  position: relative;
  z-index: 10000;
  min-height: 4.2rem;
}
.navbar-container nav .logo-image {
  width: 10rem;
  object-fit: contain;
}

section {
  max-width: 100vw;
  overflow-x: clip;
}
section.overflow-unset {
  overflow-x: clip;
  max-width: unset;
}

@media (min-width: 768px) {
  .container.wide {
    max-width: calc(100vw - 25px);
  }
}
@media (max-width: 767.99px) {
  .container.wide {
    max-width: calc(100vw - 15px);
  }
  footer .text-end {
    display: none;
  }
}
@media (min-width: 1200px) {
  .container.wide {
    max-width: calc(100vw - 150px);
  }
}
@media (max-width: 1500px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 11px;
  }
}
@media (min-width: 1801px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 2200px) {
  html {
    font-size: 18px;
  }
}
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  opacity: 1;
  transition: all 0.6s ease-out;
}
.loader.inactive {
  opacity: 0;
  z-index: -100;
}

.anchor {
  cursor: pointer;
  fill: #A5256E !important;
  color: #00437B !important;
}
.anchor:hover {
  fill: #00437B !important;
  color: #A5256E !important;
}
.anchor a {
  cursor: pointer;
  fill: #A5256E !important;
}
.anchor a:hover {
  fill: #00437B !important;
}

.bg-red {
  background-color: #CD163F;
}

.bg-grey {
  background-color: #C2C2C2;
}

.bg-purple {
  background-color: #6A3F6E;
}

.bg-cerulean {
  background-color: #00437B;
}

.bg-blue {
  background-color: #E0EDF3;
}

.bg-cadet {
  background-color: #92A2B9;
}

.bg-sky {
  background-color: #97C3D7;
}

.text-red {
  color: #CD163F;
}

.text-white {
  color: #FFFFFF;
}

.text-purple {
  color: #6A3F6E;
}

.text-black {
  color: #000000;
}

.text-yellow {
  color: #CCC2AD;
}

.text-cerulean {
  color: #00437B;
}

.text-pink {
  color: #A5256E;
}

.zero-opacity {
  opacity: 0 !important;
}

.one-opacity {
  opacity: 1 !important;
}

.pt-25 {
  padding-top: 2.5rem;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pt-42 {
  padding-top: 4.2rem;
}

.pt-45 {
  padding-top: 4.5rem;
}

.pt-55 {
  padding-top: 5.5rem;
}

.pb-45 {
  padding-bottom: 4.5rem;
}

.ml-75 {
  margin-left: 7.5rem;
}

.mb-75 {
  margin-bottom: 7.5rem;
}

.mt-25 {
  margin-top: 2.5rem;
}

.mt-82 {
  margin-top: 8.2rem;
}

.mobile-hide {
  display: block;
}

.mobile-show {
  display: none;
}

.tablet-hide {
  display: block;
}

.tablet-show {
  display: none;
}

.intro-text {
  font-size: 1.2rem;
  padding: 4.5rem 0;
}
.intro-text .large {
  font-size: 1.4rem;
}
.intro-text span {
  font-weight: 600;
  font-size: 1.4rem;
}

.wip {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
}

@media (max-width: 991.99px) {
  .tablet-hide {
    display: none;
  }
  .tablet-show {
    display: block;
  }
}
@media (max-width: 767.99px) {
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .navbar-container .page-title-container {
    font-size: 1.8rem;
    left: unset;
    right: -10%;
  }
}
section .home-section-1 {
  position: relative;
  height: 100%;
}
section .home-section-1 .banner-container {
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: 0;
}
section .home-section-1 .banner-container .image-container {
  height: 100%;
  overflow: clip;
}
section .home-section-1 .banner-container .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition: all 1.8s ease-out;
}
section .home-section-1 .banner-container.active .image-container img {
  opacity: 1;
  transform: scale(1);
}
section .home-section-1 .text-container {
  position: relative;
}
section .home-section-1 .text-container .content-container {
  padding-right: 1rem;
}
section .home-section-1 .text-container .content-container h3 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(20%);
  transition: all 1.3s ease-out;
}
section .home-section-1 .text-container .content-container P {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(6rem);
  transition: all 1.8s ease-out;
}
section .home-section-1.on-animate .text-container .content-container h3 {
  opacity: 1;
  transform: translateX(0);
}
section .home-section-1.on-animate .text-container .content-container p {
  opacity: 1;
  transform: translateY(0);
}
section .home-section-2 {
  position: relative;
}
section .home-section-2 .anchor-point {
  position: absolute;
  height: 4.15rem;
  top: -4.15rem;
  width: 100%;
}
section .home-section-2 .menu-section {
  position: sticky;
  top: 4.15rem;
  z-index: 5;
}
section .home-section-2 .menu-section .link-container {
  background-color: #BCCADE;
  overflow-x: auto;
}
section .home-section-2 .menu-section .link-container .link {
  padding: 1.2rem 1.7rem;
  color: #ffffff;
  font-size: 1.3rem;
  background-color: transparent;
  transition: all 0.5s ease-out;
  text-wrap: nowrap;
  cursor: pointer;
}
section .home-section-2 .menu-section .link-container .link:hover {
  background-color: #A5A4A4;
}
section .home-section-2 .menu-section .link-container .link.active {
  background-color: #CD163F;
}
section .home-section-2 .link-container {
  position: relative;
}
section .home-section-2 .link-container .blinds {
  background-color: #ffffff;
  opacity: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  z-index: 1;
}
section .home-section-2 .link-container .blinds.hide {
  opacity: 0;
  z-index: -1;
}
section .home-section-2 .link-container .overview-row {
  margin-top: 1rem;
}
section .home-section-2 .link-container .overview-row .overview-container .column-container {
  align-items: end;
  font-size: 2.8rem;
  font-weight: bolder;
  line-height: 1;
  overflow: hidden;
  border-bottom: 4px solid #CD163F;
}
section .home-section-2 .link-container .overview-row .overview-container .column-container .image-container {
  text-align: end;
  transform: translateY(40%);
  opacity: 0;
  transition: all 0.8s ease-out;
}
section .home-section-2 .link-container .overview-row .overview-container .column-container .image-container img {
  height: 7rem;
}
section .home-section-2 .link-container .overview-row .overview-container .text-container {
  width: 100%;
  margin-top: 1rem;
  transform: translateX(-30%);
  opacity: 0;
  transition: all 0.8s ease-out;
}
section .home-section-2 .link-container .overview-row .overview-container.on-animate .image-container {
  transform: translateX(0);
  opacity: 1;
}
section .home-section-2 .link-container .overview-row .overview-container.on-animate .text-container {
  transform: translateX(0);
  opacity: 1;
}
section .home-section-2 .link-container .approach-container {
  margin-top: 2rem;
}
section .home-section-2 .link-container .approach-container .image-container {
  opacity: 0;
  transition: all 0.6s ease-out;
}
section .home-section-2 .link-container .approach-container .image-container img {
  width: 15rem;
  object-fit: cover;
}
section .home-section-2 .link-container .approach-container .text-container {
  padding-left: 2rem;
  opacity: 0;
  transform: translateX(10%);
  transition: all 0.8s ease-out;
}
section .home-section-2 .link-container .approach-container .text-container span {
  font-size: 1.2rem;
  font-weight: 800;
}
section .home-section-2 .link-container .approach-container.on-animate .image-container {
  opacity: 1;
}
section .home-section-2 .link-container .approach-container.on-animate .text-container {
  opacity: 1;
  transform: translateX(0);
}
section .home-section-2 .background-container .quote {
  color: rgba(0, 0, 0, 0.6);
}
section .home-section-2 .background-container .section-container {
  padding-top: 2.5rem;
}
section .home-section-2 .background-container .section-container p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
section .home-section-2 .background-container .section-container .title h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #E9234D;
}
section .home-section-2 .methodology-container .quote {
  color: #555;
}
section .home-section-2 .methodology-container .section-container {
  padding-top: 2.5rem;
}
section .home-section-2 .methodology-container .section-container p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
section .home-section-2 .methodology-container .section-container .title h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #E9234D;
}
section .home-section-2 .journey-container {
  position: relative;
  overflow: clip;
}
section .home-section-2 .journey-container .bg-container {
  position: absolute;
  width: 100%;
  z-index: -1;
}
section .home-section-2 .journey-container .bg-container img {
  opacity: 0.1;
  width: 100%;
}
section .home-section-2 .journey-container .bg-container .text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container {
  position: relative;
  height: 100%;
  width: 100%;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content {
  position: fixed;
  right: 4rem;
  bottom: 10%;
  opacity: 0;
  transform: translateX(15%);
  transition: all 1s ease-out;
  z-index: -100;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content.on-animate {
  opacity: 1;
  transform: translateX(0);
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle.bg-1 {
  background-color: #685B8B;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle.bg-2 {
  background-color: #F09A5A;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle.bg-3 {
  background-color: #00437B;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle.bg-4 {
  background-color: #CD163F;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content .name {
  padding-left: 0.8rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content p {
  font-size: 1.2rem;
}
section .home-section-2 .journey-container .bg-container .text-container .content-container .content h2 {
  font-weight: 600;
}
section .home-section-2 .journey-container .svg-container {
  padding-bottom: 2%;
  width: 100%;
  padding-bottom: 2%;
}
section .home-section-2 .journey-container .adkar-container .adkar-header {
  background-color: #685B8B;
  font-size: 1.4rem;
  padding: 1rem 0;
}
section .home-section-2 .journey-container .adkar-container .content-container {
  padding-top: 2.2rem;
  font-size: 1.1rem;
  padding-bottom: 2rem;
}
section .home-section-2 .achievement-container .fsn-container {
  padding-top: 4rem;
  font-size: 1.2rem;
}
section .home-section-2 .achievement-container .fsn-container .title h2 {
  margin-bottom: 1.8rem;
  font-size: 2rem;
  font-weight: 600;
  color: #E9234D;
}
section .home-section-2 .achievement-container .fsn-container .staff-container .image-container {
  text-align: center;
}
section .home-section-2 .achievement-container .fsn-container .staff-container .image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section .home-section-2 .achievement-container .fsn-container .staff-wrapper {
  position: relative;
}
section .home-section-2 .achievement-container .fsn-container .staff-wrapper .staff-container {
  position: sticky;
  top: 8.8rem;
  height: 75vh;
}
section .home-section-2 .achievement-container .fsn-container .staff-wrapper .staff-container .image-container {
  height: 100%;
  opacity: 0;
  transform: translateY(10rem);
  transition: all 0.8s ease-out;
  text-align: center;
}
section .home-section-2 .achievement-container .fsn-container .staff-wrapper .staff-container .image-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
section .home-section-2 .achievement-container .fsn-container .staff-wrapper .staff-container .image-container.on-animate {
  opacity: 1;
  transform: translateY(0);
}
section .home-section-2 .achievement-container .fsn-container .nepal-image-container {
  margin: 2rem 0;
  height: 70vh;
  transition: all 0.8s ease-out;
  opacity: 0;
  transform: scale(0.9);
}
section .home-section-2 .achievement-container .fsn-container .nepal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section .home-section-2 .achievement-container .fsn-container .nepal-image-container.on-animate {
  opacity: 1;
  transform: scale(1);
}
section .home-section-2 .achievement-container .fsn-container .chart-container {
  opacity: 0;
  transform: translateY(10rem);
  transition: all 0.8s ease-out;
}
section .home-section-2 .achievement-container .fsn-container .chart-container img {
  width: 100%;
  object-fit: contain;
}
section .home-section-2 .achievement-container .fsn-container .chart-container.on-animate {
  opacity: 1;
  transform: translateY(0);
}
section .home-section-2 .theme-container .findings-wrapper-1 p, section .home-section-2 .theme-container .findings-wrapper-2 p {
  font-size: 1.4rem;
}
section .home-section-2 .theme-container h3 {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #CD163F;
  padding-right: 10rem;
  min-height: 5rem;
}
section .home-section-2 .theme-container .findings-1, section .home-section-2 .theme-container .findings-2 {
  height: 25rem;
  opacity: 0;
  transition: all 0.5s ease-out;
}
section .home-section-2 .theme-container .findings-1.on-animate, section .home-section-2 .theme-container .findings-2.on-animate {
  opacity: 1;
}
section .home-section-2 .journey2-container .journey2-content-container {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
section .home-section-2 .journey2-container .journey2-content-container .content {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}
section .home-section-2 .journey2-container .journey2-content-container .content-container {
  height: 100%;
  min-height: 45vh;
  position: relative;
}
section .home-section-2 .journey2-container .journey2-content-container .content-container .title h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #E9234D;
}
section .home-section-2 .journey2-container .journey2-content-container .content-container .legend {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 9rem;
}
section .home-section-2 .journey2-container .journey2-content-container .ball-content {
  position: absolute;
  width: 45%;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: #EEEEEE;
  padding: 2rem;
  opacity: 0;
  transform: translateX(10%);
  transition: all 0.8s ease-out;
}
section .home-section-2 .journey2-container .journey2-content-container .ball-content.start-0 {
  transform: translateX(-10%);
}
section .home-section-2 .journey2-container .journey2-content-container .ball-content.show {
  opacity: 1;
  transform: translateX(0);
}
section .home-section-2 .journey2-container .journey2-content-container .svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section .home-section-2 .journey2-container .journey2-content-container .svg-container .clickable-ball {
  cursor: pointer;
  transition: all 0.3s ease-out;
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
}
section .home-section-2 .journey2-container .journey2-content-container .svg-container .clickable-ball:hover {
  transform: scale(1.005);
  opacity: 0.8;
}
section .home-section-2 .journey2-container .journey2-content-container .svg-container .clickable-ball.clicked {
  opacity: 0.8;
  transform: scale(1.005);
}

.tooltip-content {
  display: none;
}
.tooltip-content.show {
  display: block;
}
.tooltip-content:hover {
  display: block;
}

.my-tooltip {
  cursor: pointer !important;
}

.underline {
  text-decoration: underline !important;
}

@media (max-width: 991.9px) {
  section .home-section-1 .banner-container {
    position: absolute;
    width: 100%;
    height: 70vh;
  }
  section .home-section-1 .text-container {
    margin-top: 70vh;
  }
  section .home-section-2 .journey-container .bg-container .text-container .content-container .content .name {
    font-size: 0.8rem;
  }
  section .home-section-2 .theme-container .findings-1, section .home-section-2 .theme-container .findings-2 {
    padding-left: 2rem;
  }
  .mt-82 {
    margin-top: 3.2rem;
  }
  .pt-45 {
    padding-top: 2.5rem;
  }
  .pb-45 {
    padding-bottom: 2.5rem;
  }
  .journey2-1, .journey2-2 {
    margin-top: 2.5rem;
  }
  section .home-section-2 .journey2-container .journey2-content-container .content-container .legend {
    position: unset;
  }
  section .home-section-2 .journey2-container .journey2-content-container .content-container {
    min-height: unset;
  }
}
@media (max-width: 767.99px) {
  section .home-section-1 .banner-container {
    height: 50vh;
  }
  section .home-section-1 .text-container {
    margin-top: 50vh;
  }
  section .home-section-2 .journey-container .bg-container .text-container .content-container .content .circle {
    width: 1rem;
    height: 1rem;
  }
  section .home-section-2 .journey-container .bg-container .text-container .content-container .content .name {
    padding-left: 0.5rem;
    font-size: 0.5rem;
  }
  section .home-section-2 .theme-container .findings-1, section .home-section-2 .theme-container .findings-2 {
    padding-left: 0;
  }
  section .home-section-2 .journey-container .bg-container .text-container .content-container .content {
    right: 1rem;
    top: 10%;
  }
}

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