/* stylelint-disable scss/dollar-variable-pattern */
/* color */
/* #2D9842 */
/* #F6FAF2 */
/* #3E8860 */
/* container size */
/* screen size */
/* z-index */
.u-btn {
  position: relative;
  padding: 1.5em 3em;
}
.u-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
}
.u-btn span {
  position: relative;
  line-height: 1;
  white-space: nowrap;
}
.u-btn--hollow::before {
  border-color: currentcolor;
}
.u-btn--solid::before {
  background-color: currentcolor;
}
.u-btn--solid span {
  color: #fff;
}
.u-btn--border::before {
  border: 3px solid #fff;
}
.u-btn--pink {
  color: #ee0970;
}
.u-btn--pink-light {
  color: #F98BAA;
}
.u-btn--white {
  color: #fff;
}
.u-btn--white span {
  color: #000;
}
.u-btn--round {
  border-radius: 999px;
}
.u-btn--round::before {
  border-radius: 999px;
}

a.u-btn::before,
button.u-btn::before {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
a.u-btn:hover::before,
button.u-btn:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.u-container {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}
.u-container--xxs {
  max-width: 712px;
}
.u-container--md {
  max-width: 1004px;
}
.u-container--lg {
  max-width: 1200px;
}

.u-media-holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.u-media-holder > img,
.u-media-holder > video,
.u-media-holder > iframe,
.u-media-holder .u-media-holder__body {
  position: absolute;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.u-media-holder--contain > img,
.u-media-holder--contain > video {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.u-media-holder--cover > img,
.u-media-holder--cover > video {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.u-static,
.u-static p {
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 1.3125;
}
.u-static h2 {
  margin-bottom: 0.2125em;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.3214285714;
}
@media screen and (width <= 992.2px) {
  .u-static h2 {
    font-size: 22px;
  }
}
.u-static h3 {
  margin-bottom: 0.525em;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (width <= 992.2px) {
  .u-static h3 {
    font-size: 22px;
  }
}

.u-btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-landing-hero {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 108px);
  overflow: hidden;
  aspect-ratio: 1440/810;
}
@media screen and (width <= 992.2px) {
  .u-landing-hero {
    padding: 16px 20px;
    aspect-ratio: 375/508;
  }
}
.u-landing-hero__body {
  position: absolute;
  inset: 40px 4.4444444444%;
}
@media screen and (width <= 992.2px) {
  .u-landing-hero__body {
    inset: 20px;
  }
}
.u-landing-hero__img {
  position: absolute;
  inset: 0;
}
.u-landing-hero__layer {
  position: absolute;
  width: 38.75%;
  z-index: 2;
}
@media screen and (width <= 992.2px) {
  .u-landing-hero__layer {
    width: 61.0666666667%;
  }
}
.u-landing-hero__layer--1 {
  top: -40px;
  right: -9.7916666667%;
}
@media screen and (width <= 992.2px) {
  .u-landing-hero__layer--1 {
    top: -20px;
    right: -15.292%;
  }
}
.u-landing-hero__layer--2 {
  bottom: -40px;
  left: -9.7916666667%;
}
@media screen and (width <= 992.2px) {
  .u-landing-hero__layer--2 {
    bottom: -20px;
    left: -15.292%;
  }
}
.u-landing-hero__layer img {
  width: 100%;
}
.u-landing-hero .u-btn-row {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.u-landing-desc {
  margin: 46px 0;
}
.u-landing-desc__tag-row .u-btn {
  font-size: 12px;
}
.u-landing-desc__body {
  margin: 30px 0 46px;
}

.u-landing-data {
  position: relative;
}
@media screen and (width >= 992px) {
  .u-landing-data {
    margin: 90px 0;
  }
}
.u-landing-data__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px 124px;
  z-index: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 992.2px) {
  .u-landing-data__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.u-landing-data__br {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media screen and (width <= 992.2px) {
  .u-landing-data__br {
    display: none;
  }
}
.u-landing-data__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width <= 992.2px) {
  .u-landing-data__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    gap: 6px;
  }
}
.u-landing-data__item-label {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3636363636;
}
@media screen and (width <= 992.2px) {
  .u-landing-data__item-label {
    font-size: 18px;
  }
}
.u-landing-data__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-landing-data__item-body small {
  font-size: 14px;
  font-weight: 500;
}
.u-landing-data__item-body strong {
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  color: #ee0970;
}
@media screen and (width <= 992.2px) {
  .u-landing-data__item-body strong {
    font-size: 60px;
  }
}
@media screen and (width >= 992px) {
  .u-landing-data__img {
    position: absolute;
    top: -64px;
    right: -6.8055555556%;
    width: 40.2777777778%;
  }
}
@media screen and (width <= 992.2px) {
  .u-landing-data__img {
    translate: 16% 0;
  }
}
.u-landing-data__img img {
  width: 100%;
}

.u-two-banner {
  position: relative;
  padding: 6.9444444444% 0;
  color: #fff;
  background-color: #0055b8;
  overflow: hidden;
}
@media screen and (width <= 992.2px) {
  .u-two-banner {
    padding: 60px 0;
  }
}
.u-two-banner__backdrop {
  position: absolute;
  inset: 0 0 0 auto;
}
@media screen and (width <= 992.2px) {
  .u-two-banner__backdrop {
    right: -130%;
  }
}
.u-two-banner__backdrop img {
  display: block;
  margin-left: auto;
  height: 100%;
}
.u-two-banner__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 992.2px) {
  .u-two-banner__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
@media screen and (width >= 992px) {
  .u-two-banner__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 416px;
            flex: 0 0 416px;
  }
}
.u-two-banner__item-title {
  margin-bottom: 24px;
}
@media screen and (width <= 992.2px) {
  .u-two-banner__item-title {
    margin-bottom: 10px;
  }
}
.u-two-banner__item-title span {
  font-size: 60px;
  font-weight: 700;
  line-height: 0.95;
}
@media screen and (width <= 992.2px) {
  .u-two-banner__item-title span {
    font-size: 26px;
  }
}
.u-two-banner__item-desc {
  line-height: 1.3125;
}

.u-grid-list {
  margin: 58px 0 80px;
}
.u-grid-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 20px;
}
.u-grid-list__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  aspect-ratio: 294/290;
}
@media screen and (width <= 992.2px) {
  .u-grid-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.u-grid-list__item::before, .u-grid-list__item::after {
  content: "";
  position: absolute;
  border-color: #e2e2e2 !important;
  z-index: 2;
  pointer-events: none;
}
.u-grid-list__item::before {
  inset: -1px 0 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media screen and (width <= 992.2px) {
  .u-grid-list__item::before {
    right: -20px;
    left: -20px;
  }
}
@media screen and (width >= 992px) {
  .u-grid-list__item:not(:nth-child(4n+1))::after {
    inset: 42px auto;
    left: -1px;
    border-left: 1px solid;
  }
}
@media screen and (width <= 992.2px) {
  .u-grid-list__item:nth-child(even)::after {
    inset: 42px auto;
    left: -1px;
    border-left: 1px solid;
  }
}
.u-grid-list__item-body {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  gap: 40px;
  text-align: center;
  text-decoration: none;
  color: #2e2b27;
  background-color: #fff;
  -webkit-transition: 0.2s ease, color linear 0.1s, background-color linear 0.1s;
  transition: 0.2s ease, color linear 0.1s, background-color linear 0.1s;
  inset: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width <= 992.2px) {
  .u-grid-list__item-body {
    padding: 0 20px 22px;
    gap: 10px;
  }
}
.u-grid-list__item:hover .u-grid-list__item-body {
  translate: 0 -20px;
  -webkit-box-shadow: 0 0 12px rgba(68, 68, 68, 0.2666666667);
          box-shadow: 0 0 12px rgba(68, 68, 68, 0.2666666667);
  z-index: 3;
}
.u-grid-list__item-img {
  padding-bottom: 52%;
  width: 100%;
  max-height: 100px;
  aspect-ratio: 1;
}
.u-grid-list__item-img .icon {
  z-index: 1;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.u-grid-list__item-label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (width <= 992.2px) {
  .u-grid-list__item-label {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
@media screen and (width <= 992.2px) {
  .u-grid-list .u-static {
    text-align: center;
  }
}

.u-two-grid {
  position: relative;
  margin: 80px 0 0;
  padding: 0 0 80px;
}
.u-two-grid::before {
  content: "";
  position: absolute;
  inset: 60px 0 0;
  background-color: #ee0970;
}
.u-two-grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (width <= 992.2px) {
  .u-two-grid__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.u-two-grid__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 8px);
          flex: 0 0 calc(50% - 8px);
  aspect-ratio: 332/222;
}
@media screen and (width <= 992.2px) {
  .u-two-grid__item {
    aspect-ratio: 332/222;
  }
}
.u-two-grid__item-img {
  position: absolute;
  inset: 0;
}
.u-two-grid__item-title {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.25em 1.375em 3.25em;
  width: 276px;
  gap: 0.875em;
  color: #0011ce;
  background-color: #fff;
  -webkit-transition: 0.2s linear, -webkit-clip-path 0.3s ease;
  transition: 0.2s linear, -webkit-clip-path 0.3s ease;
  transition: 0.2s linear, clip-path 0.3s ease;
  transition: 0.2s linear, clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
  inset: auto -8px 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-clip-path: polygon(0 16px, 100% 16px, 100% 100%, 0 100%);
          clip-path: polygon(0 16px, 100% 16px, 100% 100%, 0 100%);
}
@media screen and (width <= 992.2px) {
  .u-two-grid__item-title {
    right: -4px;
    padding: 28px 16px 20px;
  }
}
.u-two-grid__item-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  background-color: currentcolor;
}
.u-two-grid__item-title span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3333333333;
  color: #000;
}
@media screen and (width <= 992.2px) {
  .u-two-grid__item-title span {
    font-size: 15px;
  }
}
.u-two-grid__item:hover .u-two-grid__item-title {
  color: #fff;
  background-color: #0055b8;
  -webkit-clip-path: polygon(0 16px, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 16px, 100% 0, 100% 100%, 0 100%);
}
.u-two-grid__item:hover .u-two-grid__item-title span {
  color: currentcolor;
}
.u-two-grid .u-container {
  position: relative;
  z-index: 1;
}

.u-gallery-slide {
  padding: 64px 0 50px;
  overflow: hidden;
}
@media screen and (width <= 992.2px) {
  .u-gallery-slide {
    padding: 32px 0 16px;
  }
}
.u-gallery-slide__swiper {
  margin-top: 32px;
}
.u-gallery-slide__swiper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-gallery-slide__item {
  width: auto;
  height: 348px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (width <= 992.2px) {
  .u-gallery-slide__item {
    height: 226px;
  }
}
.u-gallery-slide__item--odd {
  height: 424px;
}
@media screen and (width <= 992.2px) {
  .u-gallery-slide__item--odd {
    height: 186px;
  }
}
.u-gallery-slide__item img {
  position: static;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}
.u-gallery-slide__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 26px;
  padding: 4px;
  gap: 20px;
}
.u-gallery-slide__btn {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  aspect-ratio: 1;
}
.u-gallery-slide__btn::before {
  content: "";
  position: absolute;
  background-color: #ee0970;
  border-radius: 999px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  inset: 0;
}
.u-gallery-slide__btn:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.u-gallery-slide__btn img {
  position: relative;
  width: 0.75em;
  line-height: 1;
}
.u-gallery-slide__btn--prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.u-gallery-slide__btn--next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.u-gallery-slide .u-static {
  text-align: center;
}

.u-marquee {
  overflow: hidden;
}
.u-marquee span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.2em;
  gap: 0.5em;
  font-size: 126px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px currentColor;
}
@media screen and (width <= 992.2px) {
  .u-marquee span {
    font-size: 66px;
  }
}
.u-marquee span img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.75em;
          flex: 0 0 0.75em;
  width: 0.75em;
}

.u-dots-bg {
  background-repeat: repeat;
  background-size: 22px 22px;
  background-image: url("../images/dot-repeat-bg.svg");
}