body {
  margin: 0;
  overflow-x: hidden;
  background-color: #fff;
}
body a {
  color: inherit;
}
body h2 {
  margin: 0;
}
body ul {
  margin: 0;
}
body p {
  margin: 0;
}
body li {
  list-style: none;
}
body h1 {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

#page_header {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
}

#bg_container {
  position: absolute;
  top: 50%;
  width: calc(100vw + 300px);
  height: calc(100vw + 300px);
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: 50%;
  pointer-events: none;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 230, 77, 0)), to(#FBE64D));
  background: linear-gradient(180deg, rgba(251, 230, 77, 0) 0%, #FBE64D 100%);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-radius: 100%;
  margin: 0 auto;
}

#white_bg {
  position: fixed;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 200px;
  height: 200px;
  border-radius: 100%;
  z-index: -1;
  -webkit-transition: all 0.4s ease, opacity 0.7s ease;
  transition: all 0.4s ease, opacity 0.7s ease;
  background: #fefbe5;
  opacity: 0;
}

#white_bg.expand {
  -webkit-transform: translate(-50%, -50%) scale(12);
          transform: translate(-50%, -50%) scale(12);
  background: #fefbe5;
}

#white_bg.opacity {
  opacity: 1;
}

#bg_container.await {
  position: absolute;
  top: calc(100% + 40px);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  right: 0;
  margin: 0 auto;
}

.cta_container {
  border: 1.5px solid #27303D;
  border-radius: 56px;
  padding: 13px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cta_container:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #27303D;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0%);
          transform: translate(-50%, -50%) scale(0%);
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cta_container:hover .cta {
  color: #fff;
}

.cta_container:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(2000%);
          transform: translate(-50%, -50%) scale(2000%);
  opacity: 1;
}

.cta {
  color: #27303D;
  text-transform: uppercase;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.page_menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 16px;
  width: 1232px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page_menu ul li {
  height: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #27303D;
  text-transform: uppercase;
  cursor: pointer;
}

#page_header .text_container {
  width: 910px;
  position: relative;
}
#page_header .text_container h1 {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 96px;
  line-height: 110%;
  text-align: center;
  color: #27303D;
}
#page_header .text_container .line {
  display: block;
  overflow: hidden;
  padding-bottom: 10px;
}

.word_anim {
  display: inline-block;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.6s var(--delay) cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.6s var(--delay) cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.6s var(--delay) cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.6s var(--delay) cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.6s var(--delay) cubic-bezier(0.33, 1, 0.68, 1);
}

.word_anim.anim {
  -webkit-transform: translateY(125%);
          transform: translateY(125%);
}

.logo_container {
  position: absolute;
  right: -40px;
  top: 50px;
  -webkit-transform: translate(50%, -50%) rotate(-50deg);
          transform: translate(50%, -50%) rotate(-50deg);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  overflow: hidden;
}

.grad_bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(118deg, rgb(253, 244, 184) 0%, rgba(0, 212, 255, 0) 12%);
}

.grad_bg.visible {
  opacity: 1;
}

.logo {
  -webkit-transform: rotate(-170deg);
          transform: rotate(-170deg);
  position: relative;
  z-index: 0;
  opacity: 0;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.logo_container.anim .logo {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 2s cubic-bezier(0.19, 1, 0.2, 1);
  transition: opacity 0.7s ease, -webkit-transform 2s cubic-bezier(0.19, 1, 0.2, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.2, 1), opacity 0.7s ease;
  transition: transform 2s cubic-bezier(0.19, 1, 0.2, 1), opacity 0.7s ease, -webkit-transform 2s cubic-bezier(0.19, 1, 0.2, 1);
  opacity: 1;
}

.empty_height {
  height: 200px;
  display: block;
  width: 100%;
  float: left;
  background-color: #fefbe5;
}

.internal_link_transition .internal_content {
  position: absolute;
  bottom: 56px;
  left: 72px;
}
.internal_link_transition .internal_subtitle {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-bottom: 10px;
}
.internal_link_transition .internal_title {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  color: #FFFFFF;
  display: block;
  width: 590px;
  margin-bottom: 20px;
}
.internal_link_transition .internal_cta {
  display: block;
}
.internal_link_transition .internal_cta a {
  width: 136px;
  height: 136px;
  border-radius: 100%;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.in_anim {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.in_anim.iin_anim {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.img_text_section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.img_text_section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img_text_section .logo_container_inline {
  top: -80px;
  left: -80px;
  position: absolute;
}
.img_text_section .col_text {
  width: 50%;
  max-width: 500px;
}
.img_text_section .col_text .text_container {
  width: 100%;
}
.img_text_section .col_text .cta_container {
  margin-top: 25px;
}
.img_text_section .col_text .title {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #27303D;
  display: block;
  margin-bottom: 10px;
}
.img_text_section .col_text .text {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #27303D;
}
.img_text_section .col_img {
  width: 50%;
}
.img_text_section .col_img .img_container {
  position: relative;
  height: 500px;
}
.img_text_section .col_img .img_container .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.img_text_section .fit_content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.img_text_section.reverse .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.img_text_section.reverse .logo_container_inline {
  left: unset;
  right: -80px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.watermark_logo {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #D9E496;
}
.watermark_logo .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.watermark_logo .wm_logo {
  width: 100%;
  text-align: center;
}
.watermark_logo .logo_text {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  color: #27303D;
  margin-bottom: 50px;
  margin-top: 40px;
}
.watermark_logo .logo_text p {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.watermark_logo .cta_wrap {
  width: 100%;
}
.watermark_logo .fit_content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
}

.scroll_arrow {
  padding-top: 200px;
  counter-reset: scroll_no;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 230, 77, 0)), color-stop(118.55%, #FBE64D));
  background: linear-gradient(180deg, rgba(251, 230, 77, 0) 0%, #FBE64D 118.55%);
}
.scroll_arrow .scroll_head_text {
  margin-bottom: 80px;
}
.scroll_arrow .scroll_head_text .subtitle {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #27303D;
  text-transform: uppercase;
}
.scroll_arrow .scroll_head_text .title {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  color: #27303D;
  width: 600px;
  display: block;
  margin-top: 20px;
}
.scroll_arrow .scroll_container {
  width: 1010px;
  margin: 0 auto;
}
.scroll_arrow .scroll_section {
  width: 640px;
  position: relative;
}
.scroll_arrow .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.scroll_arrow .line_container {
  position: absolute;
  height: 100%;
  left: 80px;
  width: 2px;
  top: 25px;
}
.scroll_arrow .line_container .circle {
  position: absolute;
  left: -7px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #27303D;
}
.scroll_arrow .line_container .circle.empty {
  border: 2px solid #27303D;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  background-color: transparent;
}
.scroll_arrow .line_container .line {
  position: absolute;
  width: 2px;
  height: 200px;
  background-color: #27303D;
  opacity: 0.3;
}
.scroll_arrow .line_container .scroll_line {
  position: absolute;
  top: 0px;
  height: 0px;
  left: 0px;
  width: 2px;
  background-color: #27303D;
}
.scroll_arrow .line_container .scroll_line:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #27303D;
  border-radius: 100%;
  display: block;
  position: absolute;
  bottom: -16px;
  left: -7px;
}
.scroll_arrow .single_scroll_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.scroll_arrow .single_scroll_area .scroll_text {
  max-width: 500px;
  width: 100%;
}
.scroll_arrow .single_scroll_area .scroll_no {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: #27303D;
}
.scroll_arrow .single_scroll_area .scroll_no:before {
  content: counter(scroll_no) ". ";
  counter-increment: scroll_no;
}
.scroll_arrow .single_scroll_area .scroll_title {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  color: #27303D;
  display: block;
  margin-bottom: 15px;
}
.scroll_arrow .single_scroll_area .scroll_title span {
  line-height: 1;
}
.scroll_arrow .single_scroll_area .scroll_subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #27303D;
  margin-bottom: 30px;
}
.scroll_arrow .single_scroll_area .scroll_table {
  width: 100%;
}
.scroll_arrow .single_scroll_area .scroll_table span {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}
.scroll_arrow .single_scroll_area .scroll_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #27303D;
  padding: 7px 0px;
}
.scroll_arrow .single_scroll_area .scroll_table .tr:last-of-type {
  border-bottom: 0px;
}

.single_scroll_area.fade {
  opacity: 0.3;
}

.section_img_text {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section_img_text .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.section_img_text .col {
  width: calc(50% - 12px);
}
.section_img_text .img_container {
  border-radius: 40px;
  overflow: hidden;
}
.section_img_text .img_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_img_text .text_container {
  margin-top: 50px;
}
.section_img_text .text_container p {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #27303D;
}
.section_img_text .text_container span {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #27303D;
  display: block;
  width: 430px;
  margin-top: 30px;
}

.section_stars {
  padding-top: 100px;
  padding-bottom: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 230, 77, 0)), color-stop(118.55%, #FBE64D));
  background: linear-gradient(180deg, rgba(251, 230, 77, 0) 0%, #FBE64D 118.55%);
}
.section_stars .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section_stars .text_container {
  display: block;
  width: 100%;
  max-width: 814px;
  text-align: center;
}
.section_stars .text_container span {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #27303D;
  margin-bottom: 10px;
  display: block;
}
.section_stars .text_container h2 {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  color: #27303D;
  display: block;
  margin-bottom: 20px;
}
.section_stars .text_container p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #27303D;
}
.section_stars .stars_box {
  display: block;
  width: 100%;
  max-width: 814px;
  background: #FEFBE5;
  border-radius: 40px;
  padding: 72px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}
.section_stars .stars_box .inner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_stars .stars_box .text {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #27303D;
  width: 100%;
  max-width: 284px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_stars .stars_box .numbers span {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-size: 96px;
  line-height: 120%;
  color: #27303D;
}