@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300;0,600;0,700;0,800;1,300;1,600;1,700;1,800&display=swap");
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  overscroll-behavior: none;
}
header {
  position: fixed;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
header .logo-container {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  width: 250px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
header .logo-container img {
  width: 96px;
  height: 96px;
  transition: all 0.5s;
}
header .logo-container._small {
  background-color: transparent;
  width: 36px;
  height: 36px;
  top: 25px;
  left: 25px;
}
header .logo-container._small img {
  width: 36px;
  height: 36px;
}
header .text-center {
  position: relative;
  margin-top: 30px;
}
header .text-center .first {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #184da7;
}
header .text-center .second {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #184da7;
}
header .menu-container {
  position: absolute;
  top: 21px;
  right: 24px;
}
header .menu-container .menu-button {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #184da7;
  background-color: white;
  border-radius: 30px;
  padding: 14px 25px;
  cursor: pointer;
}

.journey {
  position: fixed;
  z-index: 1;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 655px;
  width: 83px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.journey._show {
  pointer-events: initial;
  opacity: 1;
}
.journey .first-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0%;
  left: 0%;
}
.journey .second-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 19%;
  left: 75%;
}
.journey .third-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 38%;
  left: 47%;
}
.journey .fourth-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 58%;
  left: 0%;
}
.journey .fifth-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 77%;
  left: 28%;
}
.journey .sixth-point {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 97%;
  left: 48%;
}

.menu-desktop {
  background-color: #263c61;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 5;
  top: -100vh;
  transition: all 0.3s;
}
.menu-desktop._show {
  top: 0;
}
.menu-desktop .header-menu {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.menu-desktop .header-menu .logo-menu {
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url("./assets/logo-white.svg");
  background-repeat: no-repeat;
  top: 20px;
  left: 20px;
}
.menu-desktop .header-menu .text-center {
  position: relative;
  margin-top: 30px;
}
.menu-desktop .header-menu .text-center .first {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: white;
}
.menu-desktop .header-menu .text-center .second {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: white;
}
.menu-desktop .header-menu .close-button {
  position: absolute;
  top: 21px;
  right: 24px;
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #184da7;
  background-color: white;
  border-radius: 30px;
  padding: 14px 25px;
  max-width: 88px;
  cursor: pointer;
}
.menu-desktop .menu-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-desktop .menu-content a {
  text-decoration: none;
}
.menu-desktop .menu-content .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 10px 0;
}
.menu-desktop .menu-content .menu-item .icon {
  width: 62px;
  height: 62px;
  transition: all 0.3s;
  background-repeat: no-repeat;
}
.menu-desktop .menu-content .menu-item .icon.icon-first {
  background-image: url("./assets/rule-orange.svg");
}
.menu-desktop .menu-content .menu-item .icon.icon-second {
  background-image: url("./assets/circles-blue.svg");
}
.menu-desktop .menu-content .menu-item .icon.icon-third {
  background-image: url("./assets/shoes-green.svg");
}
.menu-desktop .menu-content .menu-item .icon.icon-fourth {
  background-image: url("./assets/wall-lightblue.svg");
}
.menu-desktop .menu-content .menu-item .icon.icon-fifth {
  background-image: url("./assets/semi-circle-yellow.svg");
}
.menu-desktop .menu-content .menu-item .line {
  width: 115px;
  height: 1px;
  margin: 0 45px;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.menu-desktop .menu-content .menu-item .line.line-first {
  background-image: url("./assets/path-orange.svg");
}
.menu-desktop .menu-content .menu-item .line.line-second {
  background-image: url("./assets/path-blue.svg");
}
.menu-desktop .menu-content .menu-item .line.line-third {
  background-image: url("./assets/path-green.svg");
}
.menu-desktop .menu-content .menu-item .line.line-fourth {
  background-image: url("./assets/path-lightblue.svg");
}
.menu-desktop .menu-content .menu-item .line.line-fifth {
  background-image: url("./assets/path-yellow.svg");
}
.menu-desktop .menu-content .menu-item .text-menu {
  transition: color 0.3s;
}
.menu-desktop .menu-content .menu-item .text-menu .title {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 24px;
  line-height: 23px;
  padding-right: 40px;
}
.menu-desktop .menu-content .menu-item .text-menu .subtitle {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 24px;
  line-height: 23px;
}
.menu-desktop .menu-content .menu-item .text-menu.first {
  color: #ff643a;
}
.menu-desktop .menu-content .menu-item .text-menu.second {
  color: #14a8cc;
}
.menu-desktop .menu-content .menu-item .text-menu.third {
  color: #21bf8c;
}
.menu-desktop .menu-content .menu-item .text-menu.fourth {
  color: #77ceed;
}
.menu-desktop .menu-content .menu-item .text-menu.fifth {
  color: #ffb84d;
}
.menu-desktop.first .menu-content .menu-item .line, .menu-desktop.second .menu-content .menu-item .line, .menu-desktop.third .menu-content .menu-item .line, .menu-desktop.fourth .menu-content .menu-item .line, .menu-desktop.fifth .menu-content .menu-item .line, .menu-desktop.sixth .menu-content .menu-item .line {
  background-image: url("./assets/path-white.svg");
}
.menu-desktop.first .menu-content .menu-item .text-menu, .menu-desktop.second .menu-content .menu-item .text-menu, .menu-desktop.third .menu-content .menu-item .text-menu, .menu-desktop.fourth .menu-content .menu-item .text-menu, .menu-desktop.fifth .menu-content .menu-item .text-menu, .menu-desktop.sixth .menu-content .menu-item .text-menu {
  color: white;
}
.menu-desktop.first {
  background-color: #ff643a;
}
.menu-desktop.first .menu-content .menu-item .icon-first {
  background-image: url("./assets/rule-hover.svg");
}
.menu-desktop.first .menu-content .menu-item .icon-second {
  background-image: url("./assets/circles-white.svg");
}
.menu-desktop.first .menu-content .menu-item .icon-third {
  background-image: url("./assets/shoes-white.svg");
}
.menu-desktop.first .menu-content .menu-item .icon-fourth {
  background-image: url("./assets/wall-white.svg");
}
.menu-desktop.first .menu-content .menu-item .icon-fifth {
  background-image: url("./assets/semi-circle-white.svg");
}
.menu-desktop.first .menu-content .menu-item .line-first {
  background-image: url("./assets/path-hover.svg");
}
.menu-desktop.first .menu-content .menu-item .text-menu.first {
  color: #263c61;
}
.menu-desktop.second {
  background-color: #14a8cc;
}
.menu-desktop.second .menu-content .menu-item .icon-first {
  background-image: url("./assets/rule-white.svg");
}
.menu-desktop.second .menu-content .menu-item .icon-second {
  background-image: url("./assets/circles-hover.svg");
}
.menu-desktop.second .menu-content .menu-item .icon-third {
  background-image: url("./assets/shoes-white.svg");
}
.menu-desktop.second .menu-content .menu-item .icon-fourth {
  background-image: url("./assets/wall-white.svg");
}
.menu-desktop.second .menu-content .menu-item .icon-fifth {
  background-image: url("./assets/semi-circle-white.svg");
}
.menu-desktop.second .menu-content .menu-item .line-second {
  background-image: url("./assets/path-hover.svg");
}
.menu-desktop.second .menu-content .menu-item .text-menu.second {
  color: #263c61;
}
.menu-desktop.third {
  background-color: #21bf8c;
}
.menu-desktop.third .menu-content .menu-item .icon-first {
  background-image: url("./assets/rule-white.svg");
}
.menu-desktop.third .menu-content .menu-item .icon-second {
  background-image: url("./assets/circles-white.svg");
}
.menu-desktop.third .menu-content .menu-item .icon-third {
  background-image: url("./assets/shoes-hover.svg");
}
.menu-desktop.third .menu-content .menu-item .icon-fourth {
  background-image: url("./assets/wall-white.svg");
}
.menu-desktop.third .menu-content .menu-item .icon-fifth {
  background-image: url("./assets/semi-circle-white.svg");
}
.menu-desktop.third .menu-content .menu-item .line-third {
  background-image: url("./assets/path-hover.svg");
}
.menu-desktop.third .menu-content .menu-item .text-menu.third {
  color: #263c61;
}
.menu-desktop.fourth {
  background-color: #77ceed;
}
.menu-desktop.fourth .menu-content .menu-item .icon-first {
  background-image: url("./assets/rule-white.svg");
}
.menu-desktop.fourth .menu-content .menu-item .icon-second {
  background-image: url("./assets/circles-white.svg");
}
.menu-desktop.fourth .menu-content .menu-item .icon-third {
  background-image: url("./assets/shoes-white.svg");
}
.menu-desktop.fourth .menu-content .menu-item .icon-fourth {
  background-image: url("./assets/wall-hover.svg");
}
.menu-desktop.fourth .menu-content .menu-item .icon-fifth {
  background-image: url("./assets/semi-circle-white.svg");
}
.menu-desktop.fourth .menu-content .menu-item .line-fourth {
  background-image: url("./assets/path-hover.svg");
}
.menu-desktop.fourth .menu-content .menu-item .text-menu.fourth {
  color: #263c61;
}
.menu-desktop.fifth {
  background-color: #ffb84d;
}
.menu-desktop.fifth .menu-content .menu-item .icon-first {
  background-image: url("./assets/rule-white.svg");
}
.menu-desktop.fifth .menu-content .menu-item .icon-second {
  background-image: url("./assets/circles-white.svg");
}
.menu-desktop.fifth .menu-content .menu-item .icon-third {
  background-image: url("./assets/shoes-white.svg");
}
.menu-desktop.fifth .menu-content .menu-item .icon-fourth {
  background-image: url("./assets/wall-white.svg");
}
.menu-desktop.fifth .menu-content .menu-item .icon-fifth {
  background-image: url("./assets/semi-circle-hover.svg");
}
.menu-desktop.fifth .menu-content .menu-item .line-fifth {
  background-image: url("./assets/path-hover.svg");
}
.menu-desktop.fifth .menu-content .menu-item .text-menu.fifth {
  color: #263c61;
}

.more-sidebar {
  background-color: white;
  width: 100%;
  max-width: 560px;
  height: 100vh;
  position: fixed;
  z-index: 6;
  top: 0;
  right: -570px;
  transition: right 0.5s;
}
.more-sidebar._show {
  right: 0;
}
.more-sidebar .close-container {
  height: 70px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.more-sidebar .close-container .close-button {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  background-color: #ebf1f4;
  border-radius: 30px;
  padding: 14px 25px;
  max-width: 88px;
  color: #263c61;
  cursor: pointer;
}
.more-sidebar .first-swiper {
  width: 100%;
  height: calc(100% - 70px);
  padding: 5vh 70px 0;
}
.more-sidebar .first-swiper .swiper-pagination-bullets {
  bottom: 50px;
}
.more-sidebar .first-swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #263c61;
}
.more-sidebar .first-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.more-sidebar .first-swiper .swiper-slide .image-container {
  margin-top: 20px;
}
.more-sidebar .first-swiper .swiper-slide .content {
  width: 310px;
  margin: 0 auto;
}
.more-sidebar .first-swiper .swiper-slide .content .title {
  color: #ff643a;
  font-family: "Libre Franklin", "sans serif";
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 30px;
}
.more-sidebar .first-swiper .swiper-slide .content .description p {
  color: #263c61;
  font-family: "Libre Franklin", "sans serif";
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
}
.more-sidebar .first-swiper .swiper-next,
.more-sidebar .first-swiper .swiper-prev {
  position: absolute;
  top: calc(100px + 5vh);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-sidebar .first-swiper .swiper-prev {
  left: 10px;
  right: auto;
}
.more-sidebar .first-swiper .swiper-next {
  right: 10px;
  left: auto;
}

.background-img {
  width: 100%;
  height: 100vh;
  position: absolute;
}
.background-img img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.section .content {
  width: 100%;
}
.section .content .intro-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 520px;
}
.section .content .intro-box .top {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 600;
  font-size: 132px;
  line-height: 138px;
  color: #184da7;
  display: block;
  padding-left: 72px;
  letter-spacing: -0.77;
}
.section .content .intro-box .middle {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 600;
  font-size: 132px;
  line-height: 138px;
  color: #184da7;
  display: block;
  padding-left: 150px;
  letter-spacing: -0.77;
}
.section .content .intro-box .bottom {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 132px;
  line-height: 138px;
  color: #184da7;
  display: block;
  letter-spacing: -0.77;
}
.section .content .intro-box .text-center {
  position: relative;
  margin-top: 45px;
  text-align: center;
}
.section .content .intro-box .text-center .first {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  color: #184da7;
}
.section .content .intro-box .text-center .second {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #184da7;
}
.section .content .bottom-element {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .content .bottom-element .text-center {
  position: relative;
  margin-bottom: 45px;
}
.section .content .bottom-element .text-center .first {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  color: #184da7;
}
.section .content .bottom-element .text-center .second {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #184da7;
}
.section .content .background-text-container {
  position: relative;
  top: 120px;
  opacity: 0.4;
}
.section .content .background-text-container .top {
  color: #d4eeff;
  font-family: "Libre Franklin", "sans serif";
  font-size: 410px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 497px;
}
.section .content .background-text-container .top.second {
  position: relative;
  left: 115px;
}
.section .content .background-text-container .top.third {
  position: relative;
  left: -20px;
}
.section .content .background-text-container .top.third {
  position: relative;
  left: -20px;
}
.section .content .background-text-container .top.fourth {
  position: relative;
  left: 115px;
}
.section .content .background-text-container .top.fifth {
  position: relative;
  left: 115px;
}
.section .content .background-text-container .top.sixth {
  position: relative;
  left: -20px;
}
.section .content .background-text-container .bottom {
  color: #d4eeff;
  font-family: "Libre Franklin", "sans serif";
  font-size: 410px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 497px;
}
.section .content .background-text-container .bottom.second {
  position: relative;
  left: -30%;
}
.section .content .background-text-container .bottom.third {
  position: relative;
  left: 70px;
}
.section .content .background-text-container .bottom.fourth {
  position: relative;
  left: -300px;
}
.section .content .background-text-container .bottom.fifth {
  position: relative;
  left: -300px;
}
.section .content .background-text-container .bottom.sixth {
  position: relative;
  left: 70px;
}
.section .content .color-box {
  position: absolute;
  height: 480px;
  width: 535px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 110px;
}
.section .content .color-box.second {
  background-color: #ff643a;
  bottom: 0;
  left: 0;
}
.section .content .color-box.third {
  background-color: #14a8cc;
  top: 50%;
  margin-top: -240px;
  left: 250px;
}
.section .content .color-box.fourth {
  background-color: #21bf8c;
  bottom: 0;
  right: 140px;
}
.section .content .color-box.fifth {
  background-color: #77ceed;
  bottom: 0;
  left: 0;
}
.section .content .color-box.sixth {
  background-color: #ffb84d;
  top: 50%;
  margin-top: -240px;
  left: 250px;
}
.section .content .color-box .title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.section .content .color-box .title-container .title {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 800;
  font-size: 18px;
  color: white;
  line-height: 21px;
}
.section .content .color-box .title-container .subtitle {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 300;
  font-size: 18px;
  color: white;
  line-height: 21px;
  margin: 0 20px;
}
.section .content .color-box .title-container .icon-title {
  width: 28px;
  height: 28px;
}
.section .content .color-box .title-container .icon-title img {
  width: 28px;
  height: 28px;
}
.section .content .color-box .desciption p {
  color: #ffffff;
  font-family: "Libre Franklin", "sans serif";
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 30px;
  margin: 18px 0 38px 0;
}
.section .content .color-box .button {
  font-family: "Libre Franklin", "sans serif";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  background-color: white;
  border-radius: 30px;
  padding: 14px 25px;
  max-width: 140px;
  cursor: pointer;
}
.section .content .color-box .button.second {
  color: #ff643a;
}
.section .content .color-box .button.third {
  color: #14a8cc;
}
.section .content .color-box .button.fourth {
  color: #21bf8c;
}
.section .content .color-box .button.fifth {
  color: #77ceed;
}
.section .content .color-box .button.sixth {
  color: #ffb84d;
}

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