:root {
  --white: #FFFFFF;
  --black: #000000;
  --ghost: rgba(255, 255, 255, 0);
  --shark-50: #F5F5F6;
  --shark-75: #EEEEEF;
  --shark-100: #E6E6E7;
  --shark-150: #DADADB;
  --shark-200: #CFD0D2;
  --shark-300: #ADAEB3;
  --shark-400: #84858C;
  --shark-450: #75767D;
  --shark-500: #696A71;
  --shark-600: #5A5B60;
  --shark-700: #4D4D51;
  --shark-800: #434347;
  --shark-900: #3B3B3E;
  --shark-950: #232325;
  --red-violet-50: #FFE5F2;
  --red-violet-100: #FBB8D3;
  --red-violet-200: #F48AB9;
  --red-violet-300: #EE5DA2;
  --red-violet-400: #E9318D;
  --red-violet-500: #CF187A;
  --red-violet-600: #A21164;
  --red-violet-700: #750A40;
  --red-violet-800: #470323;
  --red-violet-900: #1D000B;
  --keppel-500: #20B9AE;
  --yellow-200: #FEF9C2;
  --yellow-400: #FDE047;
  --yellow-500: #FACC15;
  --red-400: #FF6467;
  --green-400: #05DF72;
  --white-alpha-20: rgba(255, 255, 255, 0.2);
  --white-alpha-60: rgba(255, 255, 255, 0.6);
  --white-alpha-80: rgba(255, 255, 255, 0.8);
  --shark-alpha-5: rgba(35, 35, 37, 0.05);
  --shark-alpha-10: rgba(35, 35, 37, 0.1);
  --shark-alpha-20: rgba(35, 35, 37, 0.2);
  --shark-alpha-40: rgba(35, 35, 37, 0.4);
  --shark-alpha-60: rgba(35, 35, 37, 0.6);
  --shark-alpha-80: rgba(35, 35, 37, 0.8);
  --xs-shadow: 0px 1px 2px 0px rgba(35, 35, 37, 0.06);
  --sm-shadow: 0px 2px 4px 0px rgba(35, 35, 37, 0.08);
  --md-shadow: 0px 4px 8px 0px rgba(35, 35, 37, 0.1);
  --lg-shadow: 0px 8px 16px 0px rgba(35, 35, 37, 0.12);
  --xl-shadow: 0px 12px 24px 0px rgba(35, 35, 37, 0.14);
  --2xl-shadow: 0px 20px 40px 0px rgba(35, 35, 37, 0.16);
}

.site-footer {
  padding: 32px 0;
  margin-top: 48px;
}
.site-footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 575px) {
  .site-footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.site-footer__copyright {
  font-size: 16px;
  line-height: 1.5;
  color: var(--shark-300);
  flex: 0 0 260px;
}
@media (max-width: 575px) {
  .site-footer__copyright {
    order: 3;
    flex: 0 0 100%;
  }
}
.site-footer__nav {
  display: flex;
}
@media (max-width: 575px) {
  .site-footer__nav {
    order: 1;
    flex: 0 0 100%;
  }
}
.site-footer__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .site-footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.site-footer__nav-list li a {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--shark-950);
  transition: color 0.3s ease;
}
.site-footer__nav-list li a:hover {
  color: var(--red-violet-500);
}
.site-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 260px;
}
@media (max-width: 575px) {
  .site-footer__social {
    order: 2;
    flex: 0 0 100%;
  }
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--shark-alpha-10);
  transition: background-color 0.3s ease;
}
.site-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--shark);
  transition: fill 0.3s ease;
}
.site-footer__social-link svg path {
  fill: var(--shark);
}
.site-footer__social-link:hover {
  background-color: var(--shark-alpha-10);
}
.site-footer__social-link:hover svg {
  fill: var(--red-violet-500);
}
.site-footer__social-link:hover svg path {
  fill: var(--red-violet-500);
}

html {
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

body {
  position: relative;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 0 0 !important;
  overflow-x: hidden !important;
  height: 100%;
}
body.overflow-hidden {
  overflow: hidden;
  height: 100%;
}

* {
  outline: none !important;
}

a,
a svg,
button,
input,
svg,
svg path,
svg rect,
svg circle,
a::before,
a::after,
img,
.fixed-menu,
.sub-menu {
  transition: all 300ms ease-in-out;
}

button,
a:hover {
  cursor: pointer;
  text-decoration: none !important;
}

a {
  text-decoration: none !important;
}

button,
a:focus {
  text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1240px !important;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container {
    padding: 0 16px !important;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 16px !important;
  }
}

.heading-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.heading-box__title {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 !important;
}
.heading-box__title--h1 {
  font-size: 80px;
  line-height: 84px;
}
@media (max-width: 991px) {
  .heading-box__title--h1 {
    font-size: 46px;
    line-height: 50px;
  }
}
.heading-box__title--h2 {
  font-size: 64px;
  line-height: 68px;
}
@media (max-width: 991px) {
  .heading-box__title--h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
.heading-box__title--h3 {
  font-size: 52px;
  line-height: 56px;
}
@media (max-width: 991px) {
  .heading-box__title--h3 {
    font-size: 36px;
    line-height: 40px;
  }
}
.heading-box__title--h4 {
  font-size: 42px;
  line-height: 46px;
}
@media (max-width: 991px) {
  .heading-box__title--h4 {
    font-size: 32px;
    line-height: 36px;
  }
}

.subheading {
  margin: 0 0 !important;
  font-weight: 500;
  color: var(--black);
}
.subheading--h1 {
  font-size: 26px;
  line-height: 36px;
}
@media (max-width: 991px) {
  .subheading--h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.subheading--h2 {
  font-size: 22px;
  line-height: 26px;
}
@media (max-width: 991px) {
  .subheading--h2 {
    font-size: 18px;
    line-height: 22px;
  }
}

.button-wrapper {
  display: flex;
}
.button-wrapper .button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0px 28px;
  border-radius: 12px;
  height: 64px;
  transition: all 0.3s ease-in-out;
}
.button-wrapper .button--primary {
  background-color: var(--red-violet-500);
  color: var(--white);
}
.button-wrapper .button--primary:hover {
  background-color: var(--red-violet-600);
}
.button-wrapper .button--secondary {
  background-color: var(--shark-950);
  color: var(--white);
}
.button-wrapper .button--secondary:hover {
  background-color: var(--shark-700);
}

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 128px;
  padding-top: 108px;
}
@media (max-width: 991px) {
  .page-wrapper {
    gap: 64px;
  }
}
@media (max-width: 575px) {
  .page-wrapper {
    gap: 48px;
  }
}
.page-wrapper .decor-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-wrapper .decor-box svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-wrapper > * {
  position: relative;
  z-index: 10;
}

.main-section {
  position: relative;
  padding-top: 92px;
  height: 720px;
  overflow: hidden;
}
.main-section__wrapper {
  display: flex;
}
.main-section .heading-box .heading-box__title strong {
  color: var(--keppel-500);
  font-weight: 700;
}
.main-section__excerpt {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 460px;
  width: 100%;
}
.main-section__excerpt-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--shark-450);
}
.main-section__image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.main-section__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.about-us__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.about-us__excerpt {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 630px;
  width: 100%;
}
.about-us__excerpt-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  color: var(--shark-950);
}
.about-us__excerpt-text strong {
  color: var(--keppel-500);
  font-weight: 500;
}
.about-us__excerpt-text p {
  margin: 0 0;
}
.about-us__image {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.about-us__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.how-we-work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 991px) {
  .how-we-work__wrapper {
    gap: 16px;
  }
}
.how-we-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 575px) {
  .how-we-work__list {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.how-we-work__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--shark-50);
  padding: 52px 32px;
}
@media (max-width: 991px) {
  .how-we-work__item {
    gap: 32px;
    padding: 32px 16px;
  }
}
.how-we-work__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--shark-950);
  color: var(--white);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}
.how-we-work__item-image {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .how-we-work__item-image {
    max-width: 200px;
  }
}
.how-we-work__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.how-we-work__item-excerpt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-we-work__item-excerpt-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--shark-500);
}

.latest-posts__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 991px) {
  .latest-posts__wrapper {
    gap: 16px;
  }
}
.latest-posts__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .latest-posts__list {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .latest-posts__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.latest-posts__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .latest-posts__item {
    gap: 16px;
  }
}
.latest-posts__item:hover .latest-posts__item-image-img {
  transform: scale(1.1);
}
.latest-posts__item:hover .latest-posts__item-title {
  color: var(--red-violet-500);
}
.latest-posts__item-image {
  position: relative;
  width: 100%;
  height: 225px;
  border-radius: 24px;
  overflow: hidden;
}
.latest-posts__item-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease-in-out;
}
.latest-posts__item-excerpt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.latest-posts__item-title {
  transition: color 0.3s ease-in-out;
}
.latest-posts__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.latest-posts__item-tags-tag {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  background-color: var(--shark-300);
}

.cta-section__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  padding: 48px 80px;
  background: linear-gradient(97deg, #E5459B 0%, #CF187A 100%);
}
@media (max-width: 991px) {
  .cta-section__wrapper {
    padding: 32px 32px;
  }
}
@media (max-width: 575px) {
  .cta-section__wrapper {
    padding: 24px 24px;
  }
}
.cta-section__excerpt {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 500px;
  width: 100%;
}
.cta-section__image {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin-right: 40px;
}
@media (max-width: 575px) {
  .cta-section__image {
    margin-right: 0;
  }
}
.cta-section__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.cta-section .heading-box .heading-box__title {
  color: var(--white);
}
.cta-section .button-wrapper__item {
  position: relative;
}
.cta-section .button-wrapper__item-icon {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(24px) translateY(-24px);
}
@media (max-width: 575px) {
  .cta-section .button-wrapper__item-icon {
    transform: rotate(-30deg) translateX(16px) translateY(-16px);
  }
}
.cta-section .button-wrapper__item-icon #svg-animation .svg-elem-1 {
  fill: transparent;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.cta-section .button-wrapper__item-icon #svg-animation.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
}
.cta-section .button-wrapper__item-icon #svg-animation .svg-elem-2 {
  fill: transparent;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.cta-section .button-wrapper__item-icon #svg-animation.active .svg-elem-2 {
  fill: rgb(255, 255, 255);
}