@font-face {
  font-family: "gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gilroy-medium.woff2") format("woff2"), url("../fonts/gilroy-medium.woff") format("woff");
}
@font-face {
  font-family: "gilroy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gilroy-extrabold.woff2") format("woff2"), url("../fonts/gilroy-extrabold.woff") format("woff");
}
@font-face {
  font-family: "arial-rounded-mt";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/arial-rounded-mt-bold.woff2") format("woff2"), url("../fonts/arial-rounded-mt-bold.woff") format("woff");
}
:root {
  --font-family-icon: "Font Awesome 5 Pro";
  --font-family-base: "gilroy", sans-serif;
  --font-family-head: "arial-rounded-mt", sans-serif;
  --font-size-1: 80px;
  --font-size-2: 60px;
  --font-size-3: 44px;
  --font-size-4: 40px;
  --font-size-5: 34px;
  --font-size-6: 30px;
  --font-size-7: 24px;
  --font-size-8: 22px;
  --font-size-9: 20px;
  --font-size-10: 18px;
  --font-size-11: 16px;
  --font-size-12: 14px;
  --logo-height: 42px;
  --article-gap: 30px;
}
@media (max-width: 1239.98px) {
  :root {
    --font-size-1: 44px;
    --font-size-2: 40px;
    --font-size-3: 30px;
    --font-size-4: 30px;
    --font-size-5: 30px;
    --font-size-6: 26px;
    --font-size-7: 22px;
    --font-size-8: 20px;
    --font-size-9: 18px;
    --font-size-10: 16px;
    --font-size-11: 14px;
    --font-size-12: 12px;
    --logo-height: 30px;
    --article-gap: 25px;
  }
}

html {
  font-size: 100%;
}

body {
  position: relative;
  min-width: 375px;
  overflow-x: hidden;
}

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

figure {
  margin-bottom: 0;
}
figure img {
  border-radius: var(--bs-border-radius-sm);
}
figure figcaption {
  font-size: var(--font-size-12);
  margin-top: 1em;
}

blockquote {
  margin-bottom: 0;
}

.section {
  position: relative;
}

.logo img {
  width: auto;
  height: var(--logo-height);
  -o-object-fit: contain;
     object-fit: contain;
}

.ratio img {
  -o-object-fit: cover;
     object-fit: cover;
}

.family-base {
  font-family: var(--font-family-base) !important;
}

.family-head {
  font-family: var(--font-family-head) !important;
}

.fs-num {
  font-size: 70px;
  line-height: 0.8;
}
@media (max-width: 1239.98px) {
  .fs-num {
    font-size: 60px;
  }
}

.icon-175 {
  height: 175px;
}
@media (max-width: 1239.98px) {
  .icon-175 {
    height: 145px;
  }
}
.icon-150 {
  height: 150px;
}
@media (max-width: 1239.98px) {
  .icon-150 {
    height: 120px;
  }
}
.icon-135 {
  height: 135px;
}
@media (max-width: 1239.98px) {
  .icon-135 {
    height: 100px;
  }
}
.icon-130 {
  height: 130px;
}
@media (max-width: 1239.98px) {
  .icon-130 {
    height: 100px;
  }
}
.icon-76 {
  height: 76px;
}
@media (max-width: 1239.98px) {
  .icon-76 {
    height: 46px;
  }
}
.icon-56 {
  height: 56px;
}
@media (max-width: 1239.98px) {
  .icon-56 {
    height: 32px;
  }
}
.icon img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 1240px) {
  .two-lines-lg {
    min-height: 2.6em;
  }
}

.tags a {
  text-decoration: none;
}

.theme-accent {
  --bs-primary: #55b958;
  --bs-primary-rgb: 85, 185, 88;
  --bs-link-color: #55b958;
  --bs-link-hover-color: #77c779;
}

.button {
  display: inline-block;
  color: var(--bs-white);
  font-size: var(--font-size-10);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 1em 2.5em;
  border-radius: 2em;
  border: 2px solid var(--bs-primary);
  background-color: var(--bs-primary);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.button:hover {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  filter: brightness(1.1);
}
.button.is-accent {
  border-color: var(--bs-accent);
  background-color: var(--bs-accent);
}
.button.is-accent:hover {
  background-color: var(--bs-accent);
}
.button.is-white {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-color: var(--bs-white);
}
.button.is-white:hover {
  background-color: var(--bs-white);
}
.button.is-small {
  font-size: var(--font-size-11);
}

.hamburger {
  position: relative;
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  color: var(--bs-primary);
  line-height: 1;
  padding: 0;
  border: none;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.hamburger::after, .hamburger::before, .hamburger > span {
  position: absolute;
  display: block;
  color: inherit;
  left: 0;
  width: 100%;
  height: 0.125rem;
  border-radius: 0.25rem;
  background: currentColor;
  transition: inherit;
}
.hamburger::after, .hamburger::before {
  content: "";
}
.hamburger::after {
  top: 0.125rem;
}
.hamburger::before {
  top: 0.625rem;
}
.hamburger > span {
  top: 1.125rem;
  left: 0.625rem;
  width: 0.75rem;
}
.hamburger.is-active {
  color: #ababab;
}
.hamburger.is-active::after {
  top: 50%;
  transform: translateY(-50%) rotateZ(-45deg);
}
.hamburger.is-active::before {
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
}
.hamburger.is-active > span {
  width: 0;
  left: 0;
}

.navbar {
  display: none;
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0 0.75rem;
  margin-top: 1.25rem;
}
.navbar.is-active {
  display: block;
}
@media (min-width: 1240px) {
  .navbar {
    display: flex;
    justify-content: center;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
  }
}
.navbar .menu,
.navbar .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .menu a,
.navbar .sub-menu a {
  color: inherit;
  text-decoration: none;
}
.navbar .menu a:hover,
.navbar .sub-menu a:hover {
  color: var(--bs-primary);
}
@media (min-width: 1240px) {
  .navbar .menu {
    display: flex;
  }
}
.navbar .menu > .menu-item {
  margin-bottom: 1.25rem;
}
@media (min-width: 1240px) {
  .navbar .menu > .menu-item {
    margin-bottom: 0;
    margin-right: 3.5rem;
  }
}
.navbar .menu > .menu-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1240px) {
  .navbar .menu > .menu-item:last-child {
    margin-right: 0;
  }
}
.navbar .menu > .menu-item-has-children {
  position: relative;
  padding-right: 1em;
}
.navbar .menu > .menu-item-has-children::after {
  content: "\f107";
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-family-icon);
  transition: all 0.2s ease-in-out;
}
.navbar .menu > .menu-item-has-children .sub-menu {
  margin-right: -1em;
}
.navbar .menu > .menu-item-has-children:hover::after {
  transform: rotate(180deg);
}
.navbar .menu > .menu-item-has-children:hover .sub-menu {
  display: block;
}
@media (min-width: 1240px) {
  .navbar .menu > .menu-item-has-children:hover .sub-menu {
    visibility: visible;
  }
}
.navbar .menu > .menu-item-has-children > a {
  text-decoration: none !important;
}
.navbar .sub-menu {
  display: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 1240px) {
  .navbar .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 13.375rem;
    color: var(--bs-black);
    text-align: left;
    border-right: none;
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 0.5rem;
    background-color: var(--bs-white);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
    visibility: hidden;
  }
}
.navbar .sub-menu > .menu-item {
  margin-bottom: 1.25rem;
}
@media (min-width: 1240px) {
  .navbar .sub-menu > .menu-item {
    margin-bottom: 0.5rem;
  }
}
.navbar .sub-menu > .menu-item:last-child {
  margin-bottom: 0;
}

.menu-list {
  font-size: var(--font-size-11);
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.menu-list li {
  margin-bottom: 13px;
}
.menu-list li:last-child {
  margin-bottom: 0;
}
.menu-list li a {
  color: inherit;
  text-decoration: none;
}
.menu-list li a:hover {
  color: var(--bs-primary);
}

.social {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(44, 123, 240, 0.1);
}

.index-sign, .index-plane {
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 1240px) {
  .index-sign, .index-plane {
    font-size: 30px;
  }
}
.index-sign {
  width: 127px;
  height: 112px;
  color: var(--bs-white);
  padding: 30px 15px;
  background: url(../img/design/index-sign.png) center/contain no-repeat;
}
@media (min-width: 1240px) {
  .index-sign {
    width: 229px;
    height: 203px;
    padding: 60px 30px;
  }
}
.index-plane {
  width: 312px;
  height: 92px;
  color: var(--bs-black);
  padding: 26px 25px 36px 200px;
  background: url(../img/design/index-plane.png) center/contain no-repeat;
}
@media (min-width: 1240px) {
  .index-plane {
    width: 484px;
    height: 144px;
    padding: 45px 28px 54px 296px;
  }
}
.index-plane-alt {
  padding: 30px 200px 32px 32px;
  background-image: url(../img/design/index-plane-alt.png);
}
@media (min-width: 1240px) {
  .index-plane-alt {
    padding: 49px 296px 50px 28px;
  }
}

.shape {
  height: 100px;
  text-align: center;
  padding-top: 20px;
  background: url(../img/shape.svg) no-repeat;
  background-position: calc(50% + 5px);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.1));
}
@media (min-width: 1240px) {
  .shape {
    height: 120px;
  }
}
.shape img {
  width: auto;
  height: 40px;
  max-width: 100%;
}
@media (min-width: 1240px) {
  .shape img {
    height: 50px;
  }
}

.drop-shadow {
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.1));
}

.mask-member {
  position: relative;
}
.mask-member::before {
  content: "";
  display: block;
  padding-top: 80%;
}
.mask-member > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url(../img/masks/member.png);
          mask-image: url(../img/masks/member.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.form-check,
.form-select,
.form-control,
.form-multiselect,
.form-control-icon {
  position: relative;
  font-size: var(--font-size-11);
  text-align: left;
}

.form-control-icon .form-select,
.form-control-icon .form-control {
  padding-left: 3.5em;
}
.form-control-icon::before {
  position: absolute;
  top: 1em;
  left: 1.25em;
  color: #a4aabe;
  font-family: var(--font-family-icon);
  font-weight: bolder;
  text-align: center;
  width: 1.5em;
  z-index: 1;
}
.form-control-icon.is-user::before {
  content: "\f007";
}
.form-control-icon.is-info::before {
  content: "\f05a";
}
.form-control-icon.is-phone::before {
  content: "\f879";
}
.form-control-icon.is-email::before {
  content: "\f0e0";
}
.form-control-icon.is-group::before {
  content: "\f0c0";
}
.form-control-icon.is-message::before {
  content: "\f4ad";
}

.multiselect-native-select {
  position: relative;
}
.multiselect-native-select select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  top: 100%;
  left: 50%;
}
.multiselect-native-select .multiselect {
  display: flex;
  align-items: center;
}
.multiselect-native-select .multiselect.show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--bs-white);
}
.multiselect-native-select .multiselect-selected-text {
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.multiselect-native-select .multiselect-container {
  width: 100%;
  font-size: var(--font-size-11);
  padding: 1.25em 1.5em;
}
.multiselect-native-select .multiselect-container.show {
  top: -2px !important;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}
.multiselect-native-select .multiselect-option {
  display: block;
  width: 100%;
  padding: 0;
  clear: both;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  background: none;
}
.multiselect-native-select .multiselect-option:not(:last-child) {
  margin-bottom: 0.25em;
}

.post-wrapper {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.post-content {
  font-size: var(--font-size-10);
}
.post-content.is-compact {
  --article-gap: 25px;
  font-size: var(--font-size-11);
}
.post-content ul, .post-content ol {
  padding-left: 1.5em;
}
.post-content ul li + li {
  margin-top: var(--article-gap);
}
.post-content img,
.post-content iframe {
  border-radius: var(--bs-border-radius-sm);
}
.post-content > * {
  max-width: 100%;
  margin-top: var(--article-gap);
  margin-bottom: var(--article-gap);
}
.post-content > :first-child {
  margin-top: 0;
}
.post-content > :last-child {
  margin-bottom: 0;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pagination .page-numbers {
  position: relative;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: var(--bs-border-radius-sm);
  background-color: var(--bs-white);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}

.scroller-container {
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 1240px) {
  .scroller-container {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.scroller-container > div {
  flex: 0 0 auto;
  width: calc(100vw - 1.5rem - 30px);
  max-width: 756px;
}
.scroller-container > div:first-child {
  align-self: center;
  max-width: 512px;
}
@media (max-width: 1239.98px) {
  .scroller-container > div:first-child {
    display: none;
  }
}
.scroller-container > div:nth-child(5n+2) {
  --bs-primary: #ff914d;
  --bs-primary-rgb: 255, 145, 77;
}
.scroller-container > div:nth-child(5n+3) {
  --bs-primary: #00c2cb;
  --bs-primary-rgb: 0, 194, 203;
}
.scroller-container > div:nth-child(5n+4) {
  --bs-primary: #f5ce30;
  --bs-primary-rgb: 245, 206, 48;
}
.scroller-container > div:nth-child(5n+5) {
  --bs-primary: #55b958;
  --bs-primary-rgb: 85, 185, 88;
}

.swiper[data-swiper=quotes] {
  overflow: visible;
}
.swiper-slide {
  display: flex;
  height: auto;
  transition: opacity 0.15s linear;
  opacity: 0.6;
}
.swiper-slide-visible {
  opacity: 1;
}
.swiper-button-prev, .swiper-button-next {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  margin-top: -1.875rem;
  background: var(--bs-white);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767.98px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1.25rem;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}
.swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}
.swiper-button-next {
  right: 0;
  transform: translateX(50%);
}
.swiper-button-disabled {
  visibility: hidden;
}

.modal {
  --bs-modal-margin: 20px;
  --bs-modal-padding: 20px;
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 10px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
@media (min-width: 1240px) {
  .modal {
    --bs-modal-padding: 40px;
  }
}
.modal-backdrop {
  --bs-backdrop-opacity: 0.3;
}
.modal-content {
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}
.modal-form {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.modal-icon {
  display: flex;
  justify-content: center;
  font-size: 75px;
  line-height: 1;
}
@media (min-width: 1240px) {
  .modal-icon {
    font-size: 96px;
  }
}
.modal .btn-close {
  display: none;
  position: absolute;
  left: 100%;
  bottom: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .modal .btn-close {
    display: block;
  }
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  z-index: 100;
}
.page-header.is-active, .page-header.has-navigation {
  background: var(--bs-white);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}
.page-header:not(.is-active) .button.is-white {
  border-color: transparent;
}
@media (min-width: 1240px) {
  .page-header {
    padding: 20px 0;
  }
  .page-header > .container {
    max-width: 1340px;
  }
}
.page-header .button {
  padding-left: 1.875em;
  padding-right: 1.875em;
}

.page-content {
  --padding-top: 90px;
  --padding-bottom: 80px;
  position: relative;
  min-height: 100vh;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  overflow: hidden;
}
@media (min-width: 1240px) {
  .page-content {
    --padding-top: 180px;
    --padding-bottom: 80px;
  }
}
.page-content-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 1355px;
  height: 490px;
  max-width: 90vw;
  transform: translateX(12%);
}
@media (min-width: 1240px) {
  .page-content-background {
    height: 870px;
    max-width: 100vw;
    transform: none;
  }
}
.page-content.is-home {
  position: relative;
  background: url(../img/design/home-hero.png) no-repeat;
  background-position: top right -50px;
  background-size: auto 480px;
}
@media (min-width: 768px) {
  .page-content.is-home {
    background-size: auto 640px;
  }
}
@media (min-width: 1240px) {
  .page-content.is-home {
    background-position: top right;
    background-size: auto;
  }
}
.page-content.has-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 1450px;
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1450' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1561.27 1203.84C1520.46 1432.65 1316.26 1488.51 1184.4 1424.21C994.435 1331.56 939.907 1286.92 840.483 1176.21C773.487 1101.61 742.725 1056.99 647.634 1017.91C513.661 962.853 418.114 952.699 275.176 1007.29C167.695 1048.34 8.78794 985.907 -33.9139 897.459C-107.931 744.148 -84.8186 403.437 -70.1102 361.465C-28.9178 243.918 -131.295 -71.7993 -0.199261 -99.3194C99.4216 98.4213 256.09 210.27 476.067 310.774C638.645 385.053 774.026 312.952 937.55 395.214C1218.93 536.764 1447.09 631.326 1517.03 494.488C1604.82 594.749 1619.88 1036.57 1561.27 1203.84Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") no-repeat;
  background-position: -90px 0px;
  background-size: 1440px 1450px;
}
@media (min-width: 1240px) {
  .page-content.has-background::before {
    background-size: 100% 1450px;
    background-position: 0px 0px;
  }
}

.page-footer {
  position: relative;
  padding: 20px 0;
}
@media (min-width: 1240px) {
  .page-footer > .container {
    max-width: 1340px;
  }
}
.page-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 784px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 375 784' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-1152.26 1287.97C-1113.94 1510.41 -909.851 1562.52 -776.928 1498.38C-585.432 1405.97 -530.259 1361.87 -429.327 1252.89C-361.316 1179.45 -329.969 1135.64 -234.193 1096.49C-99.2541 1041.33 -3.34913 1030.36 139.336 1081.92C246.625 1120.69 406.645 1058.07 450.458 971.424C526.4 821.232 507.089 489.577 492.819 448.855C452.853 334.809 559.069 26.0812 427.951 0.756768C325.835 194.522 167.5 305.259 -54.1764 405.661C-218.011 479.865 -352.92 411.158 -517.793 493.15C-801.494 634.234 -1031.31 728.941 -1099.88 596.427C-1189.02 695.095 -1209.13 1125.69 -1152.26 1287.97Z' fill='%23F3F8FF'/%3E%3C/svg%3E") no-repeat;
}
@media (min-width: 1240px) {
  .page-footer::before {
    height: 959px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 959' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-106.261 1287.97C-67.9447 1510.41 136.149 1562.52 269.072 1498.38C460.568 1405.97 515.741 1361.87 616.673 1252.89C684.684 1179.45 716.031 1135.64 811.807 1096.49C946.746 1041.33 1042.65 1030.36 1185.34 1081.92C1292.63 1120.69 1452.64 1058.07 1496.46 971.424C1572.4 821.232 1553.09 489.577 1538.82 448.855C1498.85 334.809 1605.07 26.0812 1473.95 0.756768C1371.84 194.522 1213.5 305.259 991.824 405.661C827.989 479.865 693.08 411.158 528.207 493.15C244.506 634.234 14.689 728.941 -53.8772 596.427C-143.025 695.095 -163.132 1125.69 -106.261 1287.97Z' fill='%23F3F8FF'/%3E%3C/svg%3E%0A") no-repeat;
  }
}

.page-content.is-home .section-2 {
  position: relative;
}
.page-content.is-home .section-2::before {
  content: "";
  position: absolute;
  top: 82%;
  left: 0%;
  width: 1440px;
  height: 1218px;
  transform: translate(-45px, -50%);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1218' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1550.17 1062.38C1531.46 1222.79 1347.55 1245.86 1220.48 1188.89C1037.41 1106.83 983.369 1070.36 882.398 982.871C814.361 923.917 782.262 889.425 691.228 853.571C562.971 803.056 473.913 787.87 346.465 815.103C250.632 835.581 98.7437 777.722 51.9885 710.868C-29.0538 594.988 -35.9489 353.007 -25.8471 324.18C2.44406 243.448 -118.241 8.96022 0.516037 0.123637C108.88 149.931 262.797 242.98 474.225 333.154C630.485 399.798 749.504 359.404 907.299 431.841C1178.82 556.486 1397.32 643.086 1450.55 550.926C1539.91 629.973 1590.43 947.499 1550.17 1062.38Z' fill='%23F3F8FF'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 576px) {
  .page-content.is-home .section-2::before {
    top: 72%;
    left: 50%;
    width: 100vw;
    transform: translate(-50%, -50%);
  }
}

.page-content.is-home .section-3 > .row:nth-of-type(1) {
  position: relative;
  z-index: 1;
}
.page-content.is-home .section-3 > .row:nth-of-type(1)::after, .page-content.is-home .section-3 > .row:nth-of-type(1)::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: center/cover no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(1)::after {
    top: calc(100% + 34px);
    right: 34px;
    width: 225px;
    height: 69px;
    background-image: url(../img/design/cloud.svg);
  }
}
.page-content.is-home .section-3 > .row:nth-of-type(1)::before {
  top: calc(100% + 15px);
  right: -8px;
  width: 225px;
  height: 119px;
  background-image: url(../img/design/clouds-and-sun.svg);
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(1)::before {
    top: -25px;
    left: -45px;
    right: auto;
    width: 466px;
    height: 242px;
  }
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div {
  position: relative;
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+1)::before {
  top: -112px;
  left: -245px;
  width: 425px;
  height: 323px;
  background-image: url("data:image/svg+xml,%3Csvg width='535' height='407' viewBox='0 0 535 407' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M373.236 26.1903C263.751 -61.8288 1.47615 87.6608 0.75293 259.25C0.304158 365.729 4.07484 300.981 113.56 389C179.564 442.064 213.318 357.316 319.682 328.392C390.738 309.07 468.937 331.99 503.957 288.43C592.139 178.742 469.286 149.032 373.236 26.1903Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+1)::before {
    top: -95px;
    left: -295px;
    width: 535px;
    height: 407px;
  }
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+2)::before {
  top: -60px;
  left: 100px;
  width: 375px;
  height: 235px;
  background-image: url("data:image/svg+xml,%3Csvg width='706' height='442' viewBox='0 0 706 442' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M162.886 12.8771C252.465 -22.6903 313.68 28.3031 405.741 56.84C513.746 90.3194 622.268 77.3048 667.306 181.024C703.786 265.034 744.753 272.361 631.741 412.84C563.61 497.53 431.49 365.411 295.926 363.048C205.362 361.47 115.647 413.34 63.3471 371.266C-68.3475 265.321 27.8804 66.4803 162.886 12.8771Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+2)::before {
    top: -80px;
    left: 135px;
    width: 706px;
    height: 442px;
  }
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+3)::before {
  top: -95px;
  left: -205px;
  width: 392px;
  height: 282px;
  background-image: url("data:image/svg+xml,%3Csvg width='644' height='462' viewBox='0 0 644 462' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.13613 351.061C-49.7997 180.328 223.915 -62.646 420.625 15.5515C542.692 64.0763 580.864 75.3983 638.8 246.131C673.727 349.06 499.224 414.186 375.029 426.62C312.996 432.83 280.563 382.431 216.999 404C56.9432 458.313 111.19 521.863 8.13613 351.061Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+3)::before {
    top: -90px;
    left: -325px;
    width: 644px;
    height: 462px;
  }
}
.page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+4)::before {
  width: 346px;
  height: 220px;
  top: -65px;
  left: 160px;
  background-image: url("data:image/svg+xml,%3Csvg width='611' height='388' viewBox='0 0 611 388' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.49204 165.817C-18.8013 -0.578631 145.686 -39.3799 342.396 38.8176C464.463 87.3424 548.231 36.1644 606.167 206.897C641.095 309.826 466.591 374.952 342.396 387.386C280.363 393.596 268.055 341.248 204.492 362.818C44.436 417.131 16.4787 275.116 2.49204 165.817Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-home .section-3 > .row:nth-of-type(2) > div:nth-child(4n+4)::before {
    top: -75px;
    left: 190px;
    width: 611px;
    height: 388px;
  }
}

.page-content.is-home .section-5 {
  position: relative;
  color: var(--bs-white);
}
.page-content.is-home .section-5::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  top: -220px;
  bottom: 40px;
  background: url("data:image/svg+xml, %3Csvg viewBox='0 0 375 1302' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M580.98 814.64C590.31 1112.69 626.269 1026.5 562.312 1132.26C501.318 1233.11 436.469 1262.86 309.076 1290.18C164.656 1321.15 118.61 1280.15 -2.59705 1244.71C-166.883 1196.69 -318.152 1287.14 -454.668 1230.04C-606.088 1166.71 -668.896 1093.57 -718.006 1000.32C-803.128 838.7 -812.755 663.759 -808.846 606.371C-797.899 445.651 -914.389 83.8112 -817.32 0.552593C-704.296 207.457 -574.084 282.981 -384.864 324.517C-245.018 355.215 -160.699 229.275 -18.6832 269.482C225.686 338.666 417.044 403.85 446.896 208.493C533.21 299.395 596.558 585.936 580.98 814.64Z' fill='%232C7BF0'/%3E%3C/svg%3E") no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-home .section-5::before {
    top: -245px;
    bottom: 30px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1727' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1690.97 1080.54C1703.35 1476.14 1751.08 1361.75 1666.19 1502.12C1585.23 1635.98 1499.16 1675.47 1330.07 1711.73C1138.38 1752.83 1077.26 1698.41 916.385 1651.38C698.328 1587.64 497.547 1707.7 316.349 1631.91C115.369 1547.84 32.0027 1450.77 -33.1802 1327C-146.164 1112.48 -158.942 880.278 -153.753 804.106C-139.223 590.781 -293.841 110.51 -165 1.36325e-09C-14.983 274.625 157.848 374.868 409 430C594.618 470.746 706.536 303.584 895.034 356.951C1219.39 448.78 1473.38 535.299 1513 276C1627.56 396.655 1711.65 776.982 1690.97 1080.54Z' fill='%232C7BF0'/%3E%3C/svg%3E") no-repeat;
  }
}
@media (min-width: 1240px) {
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div {
    position: relative;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div::before {
    position: absolute;
    transform: translateY(-50%);
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div::after {
    position: absolute;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:nth-child(odd)::after {
    content: url(../img/design/steps-2.png);
    left: -10.5rem;
    top: -10.5rem;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:nth-child(even)::after {
    content: url(../img/design/steps-1.png);
    right: -8.125rem;
    top: -12.5rem;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:first-child::after {
    display: none;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:nth-child(3n+1)::before {
    content: url(../img/design/tress.png);
    right: 165%;
    top: 70%;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:nth-child(3n+2)::before {
    content: url(../img/design/mountain.png);
    left: 156%;
    top: 46%;
  }
  .page-content.is-home .section-5 > .row:nth-of-type(2) > div:nth-child(3n+3)::before {
    content: url(../img/design/compass.png);
    right: 123%;
    top: 45%;
  }
}
.page-content.is-home .section-5 > .row:nth-of-type(3) {
  --bs-primary: var(--bs-accent);
}

.page-content.is-home .section-7 {
  position: relative;
}
.page-content.is-home .section-7::before {
  content: "";
  position: absolute;
  top: 82%;
  left: 0%;
  width: 1440px;
  height: 1524px;
  transform: translate(-45px, -50%);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1524' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1561.91 1287.97C1523.59 1510.41 1319.5 1562.52 1186.58 1498.38C995.08 1405.97 939.907 1361.87 838.975 1252.89C770.964 1179.45 739.618 1135.64 643.841 1096.49C508.903 1041.33 412.998 1030.36 270.313 1081.92C163.023 1120.69 3.0038 1058.07 -40.8091 971.424C-116.752 821.232 -97.4409 489.577 -83.1706 448.855C-43.205 334.809 -149.42 26.0812 -18.3022 0.756769C83.813 194.522 242.148 305.259 463.825 405.661C627.659 479.865 762.568 411.158 927.442 493.15C1211.14 634.234 1440.96 728.941 1509.53 596.427C1598.67 695.095 1618.78 1125.69 1561.91 1287.97Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 576px) {
  .page-content.is-home .section-7::before {
    top: 82%;
    left: 50%;
    width: 100vw;
    transform: translate(-50%, -50%);
  }
}

.page-content.is-meet .section-2 {
  position: relative;
}
.page-content.is-meet .section-2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -170px;
  width: 1440px;
  height: 1218px;
  margin-left: -45px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1550' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1560.75 1303.84C1519.95 1532.65 1315.74 1588.51 1183.89 1524.21C993.923 1431.56 939.395 1386.92 839.971 1276.21C772.976 1201.61 742.214 1156.99 647.123 1117.91C513.149 1062.85 417.603 1052.7 274.664 1107.29C167.183 1148.34 8.27622 1085.91 -34.4257 997.459C-108.442 844.148 -85.3303 503.437 -70.6219 461.465C-29.4295 343.918 -131.806 28.2007 -0.71098 0.680611C98.9099 198.421 255.578 310.27 475.555 410.774C638.134 485.053 773.514 412.952 937.039 495.214C1218.42 636.764 1446.58 731.326 1516.52 594.488C1604.31 694.749 1619.37 1136.57 1560.75 1303.84Z' fill='%23F3F8FF'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-meet .section-2::before {
    top: -560px;
    width: 100vw;
    height: 1550px;
    margin-left: 0;
  }
}

.page-content.is-meet .section-3 > .row:nth-of-type(2) > div:first-child {
  position: relative;
}
.page-content.is-meet .section-3 > .row:nth-of-type(2) > div:first-child::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  top: -30px;
  left: 70px;
  width: 500px;
  height: 342px;
  background-image: url("data:image/svg+xml,%3Csvg width='699' height='477' viewBox='0 0 699 477' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.19297 295.306C-16.2271 99.0151 337.238 -88.3148 525.947 45.5538C643.048 128.625 680.663 150.511 698.083 346.801C708.585 465.139 506.433 489.221 371.322 470.339C303.836 460.908 282.413 399.003 209.334 405.489C25.3183 421.819 66.5118 503.327 1.19297 295.306Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-meet .section-3 > .row:nth-of-type(2) > div:first-child::before {
    top: -10px;
    left: 146px;
    width: 699px;
    height: 477px;
  }
}
.page-content.is-meet .section-3 > .row:nth-of-type(2) > div:first-child img {
  position: relative;
}

.page-content.is-meet .section-5 {
  position: relative;
}
.page-content.is-meet .section-5::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -385px;
  width: 1440px;
  height: 1524px;
  margin-left: -135px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1524' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100.261 1287.97C-61.9447 1510.41 142.149 1562.52 275.072 1498.38C466.568 1405.97 521.741 1361.87 622.673 1252.89C690.684 1179.45 722.031 1135.64 817.807 1096.49C952.746 1041.33 1048.65 1030.36 1191.34 1081.92C1298.63 1120.69 1458.64 1058.07 1502.46 971.424C1578.4 821.232 1559.09 489.577 1544.82 448.855C1504.85 334.809 1611.07 26.0812 1479.95 0.756768C1377.84 194.522 1219.5 305.259 997.824 405.661C833.989 479.865 699.08 411.158 534.207 493.15C250.506 634.234 20.689 728.941 -47.8772 596.427C-137.025 695.095 -157.132 1125.69 -100.261 1287.97Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-meet .section-5::before {
    top: -355px;
    width: 100vw;
    margin-left: 0;
  }
}

.page-content.is-for-business .section-2 {
  position: relative;
}
.page-content.is-for-business .section-2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -170px;
  width: 1440px;
  height: 1218px;
  margin-left: -45px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1550' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1560.75 1303.84C1519.95 1532.65 1315.74 1588.51 1183.89 1524.21C993.923 1431.56 939.395 1386.92 839.971 1276.21C772.976 1201.61 742.214 1156.99 647.123 1117.91C513.149 1062.85 417.603 1052.7 274.664 1107.29C167.183 1148.34 8.27622 1085.91 -34.4257 997.459C-108.442 844.148 -85.3303 503.437 -70.6219 461.465C-29.4295 343.918 -131.806 28.2007 -0.71098 0.680611C98.9099 198.421 255.578 310.27 475.555 410.774C638.134 485.053 773.514 412.952 937.039 495.214C1218.42 636.764 1446.58 731.326 1516.52 594.488C1604.31 694.749 1619.37 1136.57 1560.75 1303.84Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-for-business .section-2::before {
    top: -308px;
    width: 100vw;
    height: 1550px;
    margin-left: 0;
  }
}

.page-content.is-for-business .section-4 .row:nth-of-type(2) > div:first-child,
.page-content.is-for-business .section-4 .row:nth-of-type(3) > div:first-child {
  position: relative;
}
.page-content.is-for-business .section-4 .row:nth-of-type(2) > div:first-child::before,
.page-content.is-for-business .section-4 .row:nth-of-type(3) > div:first-child::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
}
.page-content.is-for-business .section-4 .row:nth-of-type(2) > div:first-child::before {
  top: -55px;
  right: 160px;
  width: 415px;
  height: 299px;
  background-image: url("data:image/svg+xml,%3Csvg width='697' height='501' viewBox='0 0 697 501' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M679.49 428.068C765.857 250.941 502.593 -50.2604 278.522 7.39356C139.477 43.1702 96.5263 50.181 10.1593 227.308C-41.9086 334.093 138.316 428.776 271.26 459.388C337.664 474.678 377.71 460.798 445.726 456.659C537.527 451.074 623 575 679.49 428.068Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-for-business .section-4 .row:nth-of-type(2) > div:first-child::before {
    top: -110px;
    right: 255px;
    width: 697px;
    height: 501px;
  }
}
.page-content.is-for-business .section-4 .row:nth-of-type(3) > div:first-child::before {
  top: -90px;
  left: 140px;
  width: 460px;
  height: 330px;
  background-image: url("data:image/svg+xml,%3Csvg width='674' height='484' viewBox='0 0 674 484' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M673.544 202.435C639.534 8.3303 249.613 -81.0661 102.013 97.1077C10.4205 207.672 -20.2428 238.553 13.7678 432.658C34.2716 549.677 152.39 437.229 278 384C340.741 357.413 428.776 375.426 501.041 362.764C683.007 330.881 664.329 420.275 673.544 202.435Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-for-business .section-4 .row:nth-of-type(3) > div:first-child::before {
    top: -135px;
    left: 135px;
    width: 674px;
    height: 484px;
  }
}

.page-content.is-for-business .section-5 {
  position: relative;
  color: var(--bs-white);
}
.page-content.is-for-business .section-5::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  top: -220px;
  bottom: 20px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1629' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-191.133 1078.55C-176.609 1441.1 -231.91 1340.68 -137.835 1461.64C-48.1187 1577 40.2863 1605.69 211.147 1624.29C404.846 1645.37 462.02 1590.39 619.051 1533.59C831.892 1456.6 1040 1549.05 1215.32 1464.22C1409.77 1370.13 1486.21 1274.26 1542.72 1155.56C1640.68 949.824 1637.64 736.549 1627.31 667.392C1598.35 473.712 1720.32 90.8094 1584.5 0.904025C1453.74 264.741 1287.83 301.953 1041.45 373.918C859.351 427.105 740.806 306.517 556.699 371.484C239.903 483.273 -6.49857 598.631 -63.5645 365.098C-169.471 485.196 -232.335 802.947 -191.133 1078.55Z' fill='%2355B958'/%3E%3C/svg%3E%0A") no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-for-business .section-5::before {
    width: 100vw;
    top: -280px;
    bottom: 80px;
  }
}
@media (min-width: 1240px) {
  .page-content.is-for-business .section-5 > .row:nth-of-type(2) {
    position: relative;
  }
  .page-content.is-for-business .section-5 > .row:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 78px;
    left: 132px;
    width: 634px;
    height: 437px;
    background: url("data:image/svg+xml,%3Csvg width='634' height='437' viewBox='0 0 634 437' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M396 8.00006C396 8.00006 569.867 -21.9999 606 69.0001C633 137 645.295 229.353 606 286C529 397 150.225 192.612 43.9997 313C-16.0005 381 6.99931 436 6.99931 436' stroke='black' stroke-width='5' stroke-dasharray='17 17'/%3E%3C/svg%3E%0A") center/cover no-repeat;
    pointer-events: none;
    z-index: -1;
  }
  .page-content.is-for-business .section-5 > .row:nth-of-type(2) > div:nth-child(3n+2) {
    --bs-gutter-y: -12px;
  }
  .page-content.is-for-business .section-5 > .row:nth-of-type(2) > div:nth-child(3n+3) {
    --bs-gutter-y: 24px;
  }
}

.page-content.is-for-schools .section-2 {
  position: relative;
}
.page-content.is-for-schools .section-2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -170px;
  width: 1440px;
  height: 1218px;
  margin-left: -45px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1550' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1560.75 1303.84C1519.95 1532.65 1315.74 1588.51 1183.89 1524.21C993.923 1431.56 939.395 1386.92 839.971 1276.21C772.976 1201.61 742.214 1156.99 647.123 1117.91C513.149 1062.85 417.603 1052.7 274.664 1107.29C167.183 1148.34 8.27622 1085.91 -34.4257 997.459C-108.442 844.148 -85.3303 503.437 -70.6219 461.465C-29.4295 343.918 -131.806 28.2007 -0.71098 0.680611C98.9099 198.421 255.578 310.27 475.555 410.774C638.134 485.053 773.514 412.952 937.039 495.214C1218.42 636.764 1446.58 731.326 1516.52 594.488C1604.31 694.749 1619.37 1136.57 1560.75 1303.84Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-2::before {
    top: -308px;
    width: 100vw;
    height: 1550px;
    margin-left: 0;
  }
}

.page-content.is-for-schools .section-4 .row:nth-of-type(1) > div:first-child,
.page-content.is-for-schools .section-4 .row:nth-of-type(2) > div:first-child,
.page-content.is-for-schools .section-4 .row:nth-of-type(3) > div:first-child {
  position: relative;
}
.page-content.is-for-schools .section-4 .row:nth-of-type(1) > div:first-child::before,
.page-content.is-for-schools .section-4 .row:nth-of-type(2) > div:first-child::before,
.page-content.is-for-schools .section-4 .row:nth-of-type(3) > div:first-child::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
}
.page-content.is-for-schools .section-4 .row:nth-of-type(1) > div:first-child::before {
  top: 38px;
  left: 126px;
  width: 402px;
  height: 270px;
  background-image: url("data:image/svg+xml,%3Csvg width='685' height='460' viewBox='0 0 685 460' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M680.582 233.776C660.678 429.83 278.231 547.153 118.149 380.104C18.8111 276.443 -14.0024 247.857 5.90123 51.803C17.9005 -66.3917 167.871 51.4628 296.998 95.481C361.495 117.467 441.318 46.9742 496.949 86.3236C572.036 139.434 709.972 79.1279 680.582 233.776Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-4 .row:nth-of-type(1) > div:first-child::before {
    top: 20px;
    left: 155px;
    width: 685px;
    height: 460px;
  }
}
.page-content.is-for-schools .section-4 .row:nth-of-type(2) > div:first-child::before {
  top: -70px;
  right: 95px;
  width: 337px;
  height: 245px;
  background-image: url("data:image/svg+xml,%3Csvg width='687' height='498' viewBox='0 0 687 498' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M682.724 264.332C666.638 460.736 286.546 585.476 123.244 421.573C21.9089 319.864 -11.4544 291.922 4.63173 95.5174C14.3295 -22.8883 217.64 -12.3749 347.599 29.1232C412.511 49.8508 439.872 82.2196 496.259 120.479C572.364 172.119 709.101 109.141 682.724 264.332Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-4 .row:nth-of-type(2) > div:first-child::before {
    top: -100px;
    right: 135px;
    width: 687px;
    height: 498px;
  }
}
.page-content.is-for-schools .section-4 .row:nth-of-type(3) > div:first-child::before {
  top: -55px;
  left: 160px;
  width: 370px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg width='641' height='484' viewBox='0 0 641 484' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M619.388 39.7181C711.702 170.815 487.779 483.087 275.738 483.105C144.157 483.116 103.789 486.539 11.4752 355.442C-44.1777 276.409 116.733 157.012 238.112 102.143C298.739 74.736 346.549 113.457 410 102.143C495.64 86.8714 556.886 -72.3305 619.388 39.7181Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-4 .row:nth-of-type(3) > div:first-child::before {
    top: -155px;
    left: 205px;
    width: 641px;
    height: 484px;
  }
}

.page-content.is-for-schools .section-5 {
  position: relative;
  color: var(--bs-white);
}
.page-content.is-for-schools .section-5::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  top: -250px;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1629' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-191.133 1078.55C-176.609 1441.1 -231.91 1340.68 -137.835 1461.64C-48.1187 1577 40.2863 1605.69 211.147 1624.29C404.846 1645.37 462.02 1590.39 619.051 1533.59C831.892 1456.6 1040 1549.05 1215.32 1464.22C1409.77 1370.13 1486.21 1274.26 1542.72 1155.56C1640.68 949.824 1637.64 736.549 1627.31 667.392C1598.35 473.712 1720.32 90.8094 1584.5 0.904025C1453.74 264.741 1287.83 301.953 1041.45 373.918C859.351 427.105 740.806 306.517 556.699 371.484C239.903 483.273 -6.49857 598.631 -63.5645 365.098C-169.471 485.196 -232.335 802.947 -191.133 1078.55Z' fill='%232C7BF0'/%3E%3C/svg%3E%0A") no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-5::before {
    width: 100vw;
    top: -295px;
    bottom: 60px;
  }
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-5 > .row:nth-of-type(1) {
    position: relative;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(1)::before {
    content: "";
    position: absolute;
    pointer-events: none;
    background: center/cover no-repeat;
    right: 120px;
    bottom: -85px;
    width: 167px;
    height: 165px;
    background-image: url("data:image/svg+xml,%3Csvg width='167' height='165' viewBox='0 0 167 165' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.2823 118.668C82.7119 126.273 105.327 116.291 113.129 99.2719C121.501 81.0088 113.133 56.6602 96.4265 49.7801C49.9364 30.6352 20.4671 99.1143 65.2823 118.668Z' fill='%23FCDB25'/%3E%3Cpath d='M135.345 145.196C134.712 145.196 134.083 144.948 133.61 144.455L115.839 125.833C114.924 124.878 114.961 123.356 115.916 122.44C116.877 121.528 118.392 121.562 119.306 122.521L137.077 141.139C137.992 142.098 137.958 143.617 137 144.532C136.535 144.975 135.942 145.196 135.345 145.196Z' fill='%23FCDB25'/%3E%3Cpath d='M42.6296 48.7073C42.0835 48.7073 41.5308 48.5195 41.0785 48.1373L20.8685 30.9504C19.8601 30.0921 19.7362 28.5766 20.5938 27.5674C21.4514 26.5616 22.9655 26.4375 23.9739 27.2925L44.1839 44.4793C45.1922 45.341 45.3162 46.8531 44.4586 47.8623C43.9863 48.4223 43.3096 48.7073 42.6296 48.7073Z' fill='%23FCDB25'/%3E%3Cpath d='M24.2235 142.36C23.5066 142.36 22.8031 142.041 22.3308 141.434C21.5167 140.388 21.7043 138.879 22.7462 138.065L39.3583 125.122C40.4035 124.311 41.9076 124.495 42.7217 125.542C43.5357 126.588 43.3481 128.096 42.3029 128.911L25.6941 141.853C25.2552 142.192 24.736 142.36 24.2235 142.36Z' fill='%23FCDB25'/%3E%3Cpath d='M79.5866 36.0132C78.2634 36.0132 77.1914 34.9369 77.1914 33.6125V2.40064C77.1914 1.07626 78.2634 0 79.5866 0C80.9098 0 81.9851 1.07626 81.9851 2.40064V33.6125C81.9851 34.9369 80.9098 36.0132 79.5866 36.0132Z' fill='%23FCDB25'/%3E%3Cpath d='M120.891 47.604C120.047 47.604 119.226 47.1581 118.787 46.3634C118.147 45.2033 118.569 43.7448 119.728 43.1044C127.356 38.8899 134.046 33.9142 141.375 28.3183C142.427 27.5169 143.931 27.7148 144.735 28.7709C145.539 29.8237 145.335 31.3292 144.283 32.1339C136.796 37.8472 129.959 42.9335 122.046 47.3056C121.678 47.5101 121.279 47.604 120.891 47.604Z' fill='%23FCDB25'/%3E%3Cpath d='M79.5866 164.297C78.2634 164.297 77.1914 163.221 77.1914 161.897V137.709C77.1914 136.385 78.2634 135.309 79.5866 135.309C80.9098 135.309 81.9851 136.385 81.9851 137.709V161.897C81.9851 163.221 80.9098 164.297 79.5866 164.297Z' fill='%23FCDB25'/%3E%3Cpath d='M29.6233 91.4597C29.6233 91.4597 29.6233 91.4597 29.6199 91.4597L0.0468465 91.4061L0 89.0088L0.00667366 86.6081L29.63 86.6618C30.9532 86.6651 32.0251 87.7414 32.0218 89.0658C32.0184 90.3902 30.9465 91.4597 29.6233 91.4597Z' fill='%23FCDB25'/%3E%3Cpath d='M162.893 87.2585C157.925 87.2585 152.927 87.0406 148.08 86.8294C142.763 86.598 137.266 86.3566 131.883 86.4103C130.486 86.4237 129.474 85.3575 129.461 84.0331C129.451 82.7087 130.513 81.6257 131.836 81.6123C137.363 81.5654 142.911 81.8001 148.291 82.0348C153.637 82.2695 159.168 82.5142 164.575 82.4505C164.585 82.4505 164.595 82.4505 164.602 82.4505C165.915 82.4505 166.983 83.51 167 84.8244C167.014 86.1488 165.952 87.2351 164.628 87.2485C164.052 87.2552 163.473 87.2585 162.893 87.2585Z' fill='%23FCDB25'/%3E%3C/svg%3E%0A");
  }
}
@media (min-width: 1240px) {
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(2), .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(3) {
    position: relative;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(2)::before, .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(3)::before {
    content: "";
    position: absolute;
    pointer-events: none;
    background: center/cover no-repeat;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(2)::before {
    bottom: calc(100% + 20px);
    right: 67px;
    width: 181px;
    height: 56px;
    background-image: url("data:image/svg+xml,%3Csvg width='181' height='56' viewBox='0 0 181 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M180.998 55.0919C143.652 54.9698 106.309 54.8477 68.9692 54.5607C45.9924 54.3837 22.9791 54.0723 0 53.5289C0.43678 36.2712 10.0414 19.9019 28.9788 29.6435C33.9261 17.246 41.0573 4.97053 54.7586 1.01712C70.116 -3.41865 80.4926 7.42197 88.9445 18.6808C106.724 6.74424 130.49 7.7425 132.229 32.9497C140.513 23.4951 151.137 17.4444 163.902 22.0359C177.182 26.8044 181.108 41.9647 180.998 55.0919Z' fill='%23B5E0F9'/%3E%3Cpath d='M169.52 50.0212C168.642 50.0212 167.812 49.487 167.483 48.6139C164.866 41.7542 160.025 37.6023 153.852 36.9276C146.797 36.1614 139.51 40.066 134.865 47.1333C134.483 47.7133 133.846 48.0796 133.15 48.1132C132.446 48.159 131.784 47.8507 131.348 47.3103C130.594 46.3823 129.841 45.4237 129.085 44.462C124.558 38.7014 119.876 32.7453 113.08 30.6602C102.012 27.2685 94.6881 35.1081 90.4942 42.2915C90.1129 42.9448 89.4145 43.3569 88.655 43.3722C87.868 43.3722 87.1818 43.0058 86.773 42.3678C81.9416 34.8212 74.9873 26.0809 63.9732 25.4795C52.7609 24.8384 47.3073 33.6214 43.0462 43.1707C42.5552 44.2727 41.2649 44.7612 40.1638 44.2758C39.0627 43.7843 38.5717 42.4899 39.0597 41.3909C43.4488 31.5516 50.2506 20.3538 64.2111 21.117C75.7681 21.749 83.2593 29.5428 88.5696 37.1841C95.4354 27.2502 104.494 23.4586 114.359 26.4809C122.463 28.972 127.804 35.7645 132.516 41.7603C132.665 41.9496 132.815 42.1419 132.964 42.3311C138.522 35.4195 146.495 31.7348 154.324 32.5835C162.096 33.4321 168.38 38.7105 171.561 47.06C171.988 48.1865 171.424 49.4473 170.298 49.8778C170.042 49.9754 169.78 50.0212 169.52 50.0212Z' fill='white'/%3E%3C/svg%3E%0A");
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(3)::before {
    bottom: calc(100% + 65px);
    left: 34px;
    width: 177px;
    height: 54px;
    background-image: url("data:image/svg+xml,%3Csvg width='177' height='54' viewBox='0 0 177 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M177 50.5309C119.896 51.5626 49.3358 52.8204 0.525394 53.3765C-1.12461 45.3124 1.27493 34.4979 5.44302 29.556C16.548 15.3726 54.0119 12.4824 64.0221 32.4908C67.8376 15.3518 76.2537 0.350643 95.9132 0.00572205C115.982 -0.342175 123.716 15.1942 126.964 32.4908C134.365 19.5206 145.148 14.0108 160.108 17.79C176.242 21.8696 176.964 36.4158 177 50.5309Z' fill='%23B5E0F9'/%3E%3Cpath d='M126.665 48.4465C125.984 48.4465 125.338 48.1165 124.937 47.5575C123.292 45.259 121.715 42.6631 120.044 39.9186C115.131 31.8397 109.561 22.6815 101.312 20.3859C84.8952 15.8246 77.3181 36.8054 75.3874 43.347C75.0552 44.474 73.8719 45.1192 72.7469 44.7862C71.6203 44.4532 70.978 43.2697 71.3102 42.1428C73.5175 34.6586 82.3032 10.6895 102.45 16.2855C112.319 19.03 118.353 28.9525 123.676 37.7064C124.6 39.2258 125.496 40.6947 126.38 42.0803C131.099 33.3711 137.644 28.2032 145.873 26.7016C159.416 24.2336 165.329 34.7299 168.594 43.1389C168.807 43.469 168.932 43.8644 168.933 44.2866C168.933 44.3461 168.933 44.4056 168.93 44.4621L168.933 44.7565H168.912C168.734 46.7011 167.409 46.9271 166.816 46.9301C166.813 46.9301 166.811 46.9301 166.809 46.9301C166.467 46.9301 164.918 46.82 164.704 44.8694C160.344 33.5584 154.937 29.3747 146.634 30.8882C138.75 32.3274 132.853 37.6558 128.607 47.1858C128.297 47.8816 127.637 48.3603 126.879 48.4346C126.808 48.4406 126.736 48.4465 126.665 48.4465Z' fill='white'/%3E%3C/svg%3E%0A");
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(odd) .index-plane {
    margin-left: -275px;
    margin-bottom: -25px;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(even) .index-plane {
    margin-bottom: -10px;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(3n+2) {
    --bs-gutter-y: -50px;
  }
  .page-content.is-for-schools .section-5 > .row:nth-of-type(2) > div:nth-child(3n+3) {
    --bs-gutter-y: -10px;
  }
}
.page-content.is-for-schools .section-5 > .row:nth-of-type(3) {
  --bs-primary: var(--bs-accent);
}

@media (min-width: 1240px) {
  .page-content.is-about .section-1 > .row:nth-of-type(1) {
    position: relative;
  }
  .page-content.is-about .section-1 > .row:nth-of-type(1)::after, .page-content.is-about .section-1 > .row:nth-of-type(1)::before {
    content: "";
    position: absolute;
    width: 177px;
    height: 54px;
    pointer-events: none;
    background: center/cover no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='177' height='54' viewBox='0 0 177 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M177 50.5309C119.896 51.5626 49.3358 52.8204 0.525394 53.3765C-1.12461 45.3124 1.27493 34.4979 5.44302 29.556C16.548 15.3726 54.0119 12.4824 64.0221 32.4908C67.8376 15.3518 76.2537 0.350643 95.9132 0.00572205C115.982 -0.342175 123.716 15.1942 126.964 32.4908C134.365 19.5206 145.148 14.0108 160.108 17.79C176.242 21.8696 176.964 36.4158 177 50.5309Z' fill='white'/%3E%3Cpath d='M126.665 48.4463C125.984 48.4463 125.338 48.1162 124.937 47.5572C123.292 45.2587 121.715 42.6629 120.044 39.9184C115.131 31.8395 109.561 22.6812 101.312 20.3857C84.8952 15.8244 77.3181 36.8052 75.3874 43.3468C75.0552 44.4737 73.8719 45.119 72.7469 44.786C71.6203 44.4529 70.978 43.2695 71.3102 42.1425C73.5175 34.6583 82.3032 10.6892 102.45 16.2853C112.319 19.0298 118.353 28.9522 123.676 37.7061C124.6 39.2256 125.496 40.6945 126.38 42.0801C131.099 33.3708 137.644 28.2029 145.873 26.7013C159.416 24.2334 165.329 34.7297 168.594 43.1387C168.807 43.4687 168.932 43.8642 168.933 44.2864C168.933 44.3459 168.933 44.4054 168.93 44.4618L168.933 44.7562H168.912C168.734 46.7009 167.409 46.9268 166.816 46.9298C166.813 46.9298 166.811 46.9298 166.809 46.9298C166.467 46.9298 164.918 46.8198 164.704 44.8692C160.344 33.5581 154.937 29.3745 146.634 30.888C138.75 32.3271 132.853 37.6556 128.607 47.1855C128.297 47.8813 127.637 48.36 126.879 48.4344C126.808 48.4403 126.736 48.4463 126.665 48.4463Z' fill='%23EBEBEB'/%3E%3C/svg%3E%0A");
  }
  .page-content.is-about .section-1 > .row:nth-of-type(1)::after {
    top: -90px;
    right: 504px;
  }
  .page-content.is-about .section-1 > .row:nth-of-type(1)::before {
    top: -2px;
    right: -102px;
  }
}

.page-content.is-about .section-2 {
  position: relative;
}
.page-content.is-about .section-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1440px;
  height: 672px;
  background: url(../img/design/waves.svg) center no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1240px) {
  .page-content.is-about .section-2::before {
    width: 100vw;
    height: 1106px;
  }
}

.page-content.is-about .section-3 .row:nth-of-type(1) > div:first-child,
.page-content.is-about .section-3 .row:nth-of-type(2) > div:first-child,
.page-content.is-about .section-3 .row:nth-of-type(3) > div:first-child {
  position: relative;
}
.page-content.is-about .section-3 .row:nth-of-type(1) > div:first-child::before,
.page-content.is-about .section-3 .row:nth-of-type(2) > div:first-child::before,
.page-content.is-about .section-3 .row:nth-of-type(3) > div:first-child::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
}
.page-content.is-about .section-3 .row:nth-of-type(1) > div:first-child::before {
  top: -45px;
  right: 75px;
  width: 531px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg width='705' height='451' viewBox='0 0 705 451' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.77775 85.7996C-47.1754 275.332 264.847 525.676 475.328 429.606C605.94 369.991 646.995 355.554 700.948 166.022C733.475 51.759 550.568 105.853 414.315 99.0391C346.259 95.6357 298.135 0.635057 231.9 16.6416C142.503 38.2458 36.6146 -68.7632 6.77775 85.7996Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-about .section-3 .row:nth-of-type(1) > div:first-child::before {
    top: -104px;
    right: 152px;
    width: 705px;
    height: 451px;
  }
}
.page-content.is-about .section-3 .row:nth-of-type(2) > div:first-child::before {
  top: -50px;
  left: 55px;
  width: 456px;
  height: 323px;
  background-image: url("data:image/svg+xml,%3Csvg width='630' height='447' viewBox='0 0 630 447' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.669474 235.009C3.91494 54.7435 343.694 -81.2947 502.346 58.8449C600.797 145.807 632.887 169.377 629.642 349.642C627.685 458.318 441.439 460.563 320.361 430.244C259.885 415.101 246.416 356.7 179.304 355.492C10.3112 352.449 39.8579 430.605 0.669474 235.009Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-about .section-3 .row:nth-of-type(2) > div:first-child::before {
    top: -32px;
    left: 138px;
    width: 630px;
    height: 447px;
  }
}
.page-content.is-about .section-3 .row:nth-of-type(3) > div:first-child::before {
  top: -25px;
  right: 115px;
  width: 398px;
  height: 283px;
  background-image: url("data:image/svg+xml,%3Csvg width='630' height='447' viewBox='0 0 630 447' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.669474 235.009C3.91494 54.7436 343.694 -81.2947 502.346 58.8449C600.797 145.807 632.887 169.377 629.642 349.642C627.685 458.318 441.439 460.563 320.361 430.244C259.885 415.101 246.416 356.7 179.304 355.492C10.3112 352.449 39.8579 430.605 0.669474 235.009Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-about .section-3 .row:nth-of-type(3) > div:first-child::before {
    top: -65px;
    right: 195px;
    width: 630px;
    height: 447px;
  }
}

.page-content.is-about .section-4 {
  position: relative;
}
.page-content.is-about .section-4::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -385px;
  width: 1440px;
  height: 1524px;
  margin-left: -135px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1524' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100.261 1287.97C-61.9447 1510.41 142.149 1562.52 275.072 1498.38C466.568 1405.97 521.741 1361.87 622.673 1252.89C690.684 1179.45 722.031 1135.64 817.807 1096.49C952.746 1041.33 1048.65 1030.36 1191.34 1081.92C1298.63 1120.69 1458.64 1058.07 1502.46 971.424C1578.4 821.232 1559.09 489.577 1544.82 448.855C1504.85 334.809 1611.07 26.0812 1479.95 0.756768C1377.84 194.522 1219.5 305.259 997.824 405.661C833.989 479.865 699.08 411.158 534.207 493.15C250.506 634.234 20.689 728.941 -47.8772 596.427C-137.025 695.095 -157.132 1125.69 -100.261 1287.97Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-about .section-4::before {
    top: -385px;
    width: 100vw;
    margin-left: 0;
  }
}

.page-content.is-blog .section-2,
.page-content.is-news .section-2 {
  position: relative;
}
.page-content.is-blog .section-2::before,
.page-content.is-news .section-2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -170px;
  width: 1440px;
  height: 1218px;
  margin-left: -45px;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 1550' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1560.75 1303.84C1519.95 1532.65 1315.74 1588.51 1183.89 1524.21C993.923 1431.56 939.395 1386.92 839.971 1276.21C772.976 1201.61 742.214 1156.99 647.123 1117.91C513.149 1062.85 417.603 1052.7 274.664 1107.29C167.183 1148.34 8.27622 1085.91 -34.4257 997.459C-108.442 844.148 -85.3303 503.437 -70.6219 461.465C-29.4295 343.918 -131.806 28.2007 -0.71098 0.680611C98.9099 198.421 255.578 310.27 475.555 410.774C638.134 485.053 773.514 412.952 937.039 495.214C1218.42 636.764 1446.58 731.326 1516.52 594.488C1604.31 694.749 1619.37 1136.57 1560.75 1303.84Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A") center no-repeat;
}
@media (min-width: 1240px) {
  .page-content.is-blog .section-2::before,
  .page-content.is-news .section-2::before {
    top: -275px;
    width: 100vw;
    height: 1550px;
    margin-left: 0;
  }
}

@media (min-width: 1240px) {
  .page-content.is-news .section-1 > .row:nth-of-type(1) {
    position: relative;
  }
  .page-content.is-news .section-1 > .row:nth-of-type(1)::before {
    content: "";
    position: absolute;
    top: -72px;
    right: -440px;
    width: 1043px;
    height: 604px;
    pointer-events: none;
    z-index: -1;
    background: center/cover no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='1043' height='604' viewBox='0 0 1043 604' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1038.56 322.674C1021.44 102.249 508.53 -115.263 296.495 70.0267C164.918 185.007 -15.2863 204.467 1.83002 424.893C12.1489 557.78 438.055 636.922 605.219 589.338C688.715 565.57 724.328 529.014 797.217 485.624C895.595 427.06 1069.59 496.742 1038.56 322.674Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
  }
}

@media (min-width: 1240px) {
  .page-content.is-news .section-2::before {
    top: -310px;
  }
}

@media (min-width: 1240px) {
  .page-content.is-contact .section-1 > .row:nth-of-type(1) > div:nth-child(1) > .row:nth-of-type(1) > div:nth-child(1) {
    position: relative;
  }
  .page-content.is-contact .section-1 > .row:nth-of-type(1) > div:nth-child(1) > .row:nth-of-type(1) > div:nth-child(1)::before {
    content: "";
    position: absolute;
    top: -55px;
    right: 155px;
    width: 740px;
    height: 489px;
    pointer-events: none;
    z-index: -1;
    background: center/cover no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='740' height='489' viewBox='0 0 740 489' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M736.238 265.963C722.364 87.2925 356.602 -92.898 207.552 55.5205C115.061 147.62 -12.6938 161.972 1.18022 340.643C9.54441 448.357 312.466 515.793 430.745 478.559C489.823 459.961 514.815 430.632 566.211 396.057C635.58 349.392 759.622 407.194 736.238 265.963Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
  }
}

.page-content.is-resources .section-2 > .row:nth-of-type(1) > div:first-child {
  position: relative;
}
.page-content.is-resources .section-2 > .row:nth-of-type(1) > div:first-child::before {
  content: "";
  position: absolute;
  background: center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
  top: -20px;
  left: 55px;
  width: 443px;
  height: 302px;
  background-image: url("data:image/svg+xml,%3Csvg width='699' height='477' viewBox='0 0 699 477' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.19297 295.306C-16.2271 99.0151 337.238 -88.3148 525.947 45.5538C643.048 128.625 680.663 150.511 698.083 346.801C708.585 465.139 506.433 489.221 371.322 470.339C303.836 460.908 282.413 399.003 209.334 405.489C25.3183 421.819 66.5118 503.327 1.19297 295.306Z' fill='%23EEF8EE'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1240px) {
  .page-content.is-resources .section-2 > .row:nth-of-type(1) > div:first-child::before {
    top: -10px;
    left: 146px;
    width: 699px;
    height: 477px;
  }
}