@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
@keyframes balloons {
  0% {
    top: 100%;
    transform: scale(1);
  }
  100% {
    top: -100%;
    transform: scale(1.5);
  }
}
@keyframes arrow-bounce {
  0% {
    transform: translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-20px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.85;
  }
}
@media screen and (min-width: 576px) {
  .fs-sm-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
}

.link {
  text-decoration: none !important;
}
.link:hover {
  text-decoration: revert !important;
}

.fs-xl {
  font-size: 4.5rem;
}

.fs-smaller {
  font-size: smaller !important;
}

.fs-7 {
  font-size: 0.8rem;
}

.w-300 {
  width: 300px;
}

.mw-300 {
  max-width: 300px;
}

.mw-600 {
  max-width: 600px;
}

.mw-800 {
  max-width: 800px;
}

@media screen and (min-width: 768px) {
  .mw-md-600 {
    max-width: 600px;
  }
}

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

.text-brand-dark {
  color: #4a97d5;
}

.text-brand-secondary {
  color: #8fa0a3;
}

.text-brand-danger {
  color: #ef6d7b;
}

.text-brand-darker {
  color: #0a2e49;
}

.bg-brand-darker {
  background-color: #0a2e49;
}

.btn-brand-dark {
  color: #f8f9fa !important;
  background-color: #4a97d5 !important;
  border-color: #4a97d5 !important;
}
.btn-brand-dark:hover {
  background-color: #2e83c8 !important;
  border-color: #2e83c8 !important;
}

.btn-brand-medium-light {
  color: #212529 !important;
  background-color: #acd2f1 !important;
  border-color: #acd2f1 !important;
}
.btn-brand-medium-light:hover {
  background-color: #8ac0eb !important;
  border-color: #8ac0eb !important;
}

.btn-outline-brand-medium {
  color: #72adde !important;
  border-color: #72adde !important;
}
.btn-outline-brand-medium:hover {
  color: #f8f9fa !important;
  background-color: #72adde !important;
}

.btn-outline-brand-dark {
  color: #4a97d5 !important;
  border-color: #4a97d5 !important;
}
.btn-outline-brand-dark:hover {
  color: #f8f9fa !important;
  background-color: #4a97d5 !important;
}

.px-auto, .row > .px-auto {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .px-auto, .row > .px-auto {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .px-auto, .row > .px-auto {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .px-auto, .row > .px-auto {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.ps-auto, .row > .ps-auto {
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .ps-auto, .row > .ps-auto {
    padding-left: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .ps-auto, .row > .ps-auto {
    padding-left: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .ps-auto, .row > .ps-auto {
    padding-left: 8rem;
  }
}

.pe-auto, .row > .pe-auto {
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .pe-auto, .row > .pe-auto {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .pe-auto, .row > .pe-auto {
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .pe-auto, .row > .pe-auto {
    padding-right: 8rem;
  }
}

/* For Firefox */
/* Set the width of the scrollbar */
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: #0a2e49 #fff;
  }
}
/* For webkit browsers (Chrome, Safari) */
/* Set the width of the scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Set the background of the scrollbar track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Set the color of the scrollbar thumb */
::-webkit-scrollbar-thumb {
  border-radius: 16px;
  background: #0a2e49;
}

body.site-main {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
  color: #212529;
  overflow-x: hidden;
  min-width: 300px;
}
body.site-main #cookie_consent_container {
  z-index: 99998;
  content: "";
  background-color: rgba(74, 151, 213, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.site-main #cookie_consent_container > #cookie_consent_modal {
  position: fixed;
  z-index: 99999;
  width: 80%;
  min-width: 280px;
  max-width: 350px;
  min-height: 100px;
  max-height: 80%;
  background-color: #f8f9fa;
  color: #4a97d5;
  overflow-y: auto;
}
body.site-main #cookie_consent_container #cookie_consent_settings_form {
  width: 80%;
}
body.site-main .list-group-item.active {
  background-color: #4a97d5;
  border-color: #4a97d5;
}
body.site-main #main_navbar_container {
  transition: 0.25s;
}
@media screen and (max-width: 991px) {
  body.site-main #main_navbar_container {
    background: #f8f9fa;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
}
body.site-main #main_navbar_container:not(.scroll-state-is-top) {
  background: #f8f9fa;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
body.site-main:not(.scroll-state-is-top) #intro_container_footer > a {
  opacity: 0;
  pointer-events: none;
}
body.site-main #intro_container {
  position: relative;
  min-height: 720px;
  padding-top: 3.5rem;
  background-image: url("/resources/img/bg.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
}
body.site-main #intro_container > * {
  z-index: 2;
  position: relative;
}
body.site-main #intro_container #intro_container_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
body.site-main #intro_container #intro_container_footer > a {
  transition: 0.25s;
}
body.site-main #intro_container::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 15vw;
  min-width: 200px;
  height: 100vh;
  display: block;
  left: 25%;
  top: 100%;
  background-image: url("/resources/img/balloons.webp");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  animation: balloons 25s linear;
}
@media screen and (max-width: 767px) {
  body.site-main #intro_container::after {
    display: none;
  }
}
body.site-main #intro_container::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  width: 30vw;
  min-width: 330px;
  height: 100%;
  background-image: url("/resources/img/kids.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}
body.site-main .btn-effect {
  transition: box-shadow 0.3s, opacity 0.3s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
  opacity: 0.85;
}
body.site-main .btn-effect:hover {
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25) !important;
  opacity: 1;
}
body.site-main .video-player {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
body.site-main .contact-list-icons {
  min-width: 32px;
}
body.site-main .puzzle-bg {
  position: relative;
  background: linear-gradient(90deg, #0a2e49 20%, rgba(10, 46, 73, 0.65) 100%);
  overflow: hidden;
}
body.site-main .puzzle-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("/resources/img/puzzle_texture.webp");
  background-position: -17px 22px;
  z-index: -1;
}
body.site-main .puzzle-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0a2e49;
  z-index: -1;
  min-width: 800px;
}
body.site-main #blue_heart_img {
  opacity: 0.65;
}
body.site-main .yt-iframe {
  aspect-ratio: 16/9;
  max-width: 100%;
}
@media screen and (max-width: 575px) {
  body.site-main .yt-iframe {
    aspect-ratio: 4/3;
  }
}
body.site-main .btn-indicator-2p {
  position: relative;
}
body.site-main .btn-indicator-2p::after {
  content: "";
  position: absolute;
  right: -100px;
  width: 100px;
  height: 100%;
  background-image: url("/resources/img/2p_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

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