@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-inck: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body,
h1, h2, h3, h4, h5, h6,
p, span, a, li, div, input, button, textarea, select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.container {
  width: 100%;
  max-width: 1245px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.site-header {
  padding: 12px 0;
  position: relative;
}
@media (max-width: 1200px) {
  .site-header {
    padding: 20px 0;
  }
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-branding img {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 1200px) {
  .site-header .site-branding img {
    height: 26px;
  }
}
@media (max-width: 1200px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header .main-navigation ul li {
  margin: 0;
  position: static;
  padding: 15px 0;
}
.site-header .main-navigation ul li.has-mega-menu:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #F1F2F2;
  z-index: 1000;
}
.site-header .main-navigation ul li.has-mega-menu:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-header .main-navigation ul li .mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: calc(100% - 40px);
  max-width: 1245px;
  background: #fff;
  padding: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 20px 20px;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card {
  background: #fff;
  border: 1px solid #F1F2F2;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card:hover {
  background: #F9FAFC;
  border-color: #F1F2F2;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-card-header .mega-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-desc {
  font-size: 14px;
  color: #2E2F33;
  margin-bottom: 32px;
  flex-grow: 1;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-desc p {
  margin: 0;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #247AFD;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/wp-content/uploads/chevron-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: brightness(0) saturate(100%) invert(39%) sepia(32%) saturate(5329%) hue-rotate(205deg) brightness(100%) contrast(99%);
  transition: transform 0.3s ease;
}
.site-header .main-navigation ul li .mega-menu-wrapper .mega-product-card .mega-btn:hover {
  gap: 12px;
}
.site-header .main-navigation ul li .sub-menu {
  display: none !important;
}
.site-header .main-navigation ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-header .main-navigation ul li a:hover {
  color: #C14498;
}
.site-header .main-navigation ul li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .main-navigation ul li.menu-item-has-children > a::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/wp-content/uploads/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.site-header .main-navigation ul li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .header-right .language-switcher {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 0;
}
.site-header .header-right .language-switcher .current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.site-header .header-right .language-switcher .current-lang .icon-down {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}
.site-header .header-right .language-switcher:hover .current-lang {
  color: #C14498;
}
.site-header .header-right .language-switcher:hover .current-lang .icon-down {
  transform: rotate(180deg);
}
.site-header .header-right .language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-header .header-right .language-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 70px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
.site-header .header-right .language-switcher .lang-dropdown li {
  margin: 0;
  padding: 0;
}
.site-header .header-right .language-switcher .lang-dropdown li a {
  display: block;
  padding: 6px 15px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.site-header .header-right .language-switcher .lang-dropdown li a:hover {
  background: #f5f5f5;
  color: #C14498;
}
.site-header .header-right .header-cta .btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.site-header .header-right .header-cta .btn-outline {
  border: 1px solid #C14498;
  color: #C14498;
}
.site-header .header-right .header-cta .btn-outline:hover {
  background-color: #C14498;
  color: #fff;
}
@media (max-width: 1200px) {
  .site-header .header-right .header-cta {
    display: none;
  }
}
.site-header .header-right .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}
.site-header .header-right .mobile-menu-toggle img {
  width: 36px;
  height: 36px;
  display: block;
}
.site-header .header-right .mobile-menu-toggle img.icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .site-header .header-right .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1200px) {
  .site-header .header-right .language-switcher {
    display: none;
  }
}
.site-header .mobile-menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
  border-top: 1px solid #F1F2F2;
}
.site-header .mobile-menu-overlay .mobile-menu-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.site-header .mobile-menu-overlay .mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li {
  margin-bottom: 32px;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li.menu-item-has-children.active > a::after {
  transform: rotate(180deg);
}
.site-header .mobile-menu-overlay .mobile-navigation ul li.menu-item-has-children.active .sub-menu {
  display: block;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li.menu-item-has-children > a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/uploads/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li .sub-menu {
  display: none;
  list-style: none;
  padding: 32px 0 0 15px;
  margin: 0;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li .sub-menu li {
  margin-bottom: 24px;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li .sub-menu li:last-child {
  margin-bottom: 0;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li .sub-menu li a {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 0;
}
.site-header .mobile-menu-overlay .mobile-navigation ul li .sub-menu li a::after {
  display: none !important;
}
.site-header .mobile-menu-overlay .mobile-menu-footer .mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #AAABAF;
}
.site-header .mobile-menu-overlay .mobile-menu-footer .mobile-lang-switcher .active {
  color: #000;
}
.site-header .mobile-menu-overlay .mobile-menu-footer .mobile-lang-switcher .divider {
  width: 1px;
  height: 14px;
  background: #F1F2F2;
}
.site-header.mobile-menu-open .mobile-menu-toggle .icon-hamburger {
  display: none !important;
}
.site-header.mobile-menu-open .mobile-menu-toggle .icon-close {
  display: block !important;
}
.site-header.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.site-footer {
  padding: 0px 0 60px;
}
@media (max-width: 1023px) {
  .site-footer {
    padding: 0px 0 24px;
  }
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  border-top: 1px solid #E3E3E4;
  margin-bottom: 100px;
  padding-top: 100px;
}
@media (max-width: 1023px) {
  .site-footer .footer-top {
    margin-bottom: 80px;
    padding-top: 80px;
  }
}
.site-footer .footer-brand {
  max-width: 350px;
}
.site-footer .footer-brand .footer-logo {
  margin-bottom: 36px;
}
.site-footer .footer-brand .footer-logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 1023px) {
  .site-footer .footer-brand .footer-logo {
    margin-bottom: 24px;
  }
  .site-footer .footer-brand .footer-logo img {
    height: 36px;
  }
}
.site-footer .footer-brand .footer-desc {
  font-size: 18px;
  font-weight: 400;
  color: #3B3D42;
  line-height: 1.6;
}
.site-footer .footer-navigation {
  display: flex;
  gap: 56px;
}
.site-footer .footer-menu-col .footer-menu-title {
  font-size: 18px;
  font-weight: 600;
  color: #3B3D42;
  margin-bottom: 24px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .footer-menu-col .footer-menu-title .footer-accordion-icon {
  display: none;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.site-footer .footer-menu-col .footer-menu-title .footer-accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #3B3D42;
  mask-image: url("/wp-content/uploads/chevron-down.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("/wp-content/uploads/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
@media (max-width: 1023px) {
  .site-footer .footer-menu-col .footer-menu-title {
    margin-bottom: 0;
    padding: 24px 0 0 0;
    cursor: pointer;
    border-bottom: none;
  }
  .site-footer .footer-menu-col .footer-menu-title .footer-accordion-icon {
    display: flex;
  }
}
.site-footer .footer-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .site-footer .footer-menu-col ul {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 16px;
  }
}
.site-footer .footer-menu-col ul li {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .site-footer .footer-menu-col ul li:first-child {
    padding-top: 20px;
  }
}
.site-footer .footer-menu-col ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #3B3D42;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-menu-col ul li a:hover {
  color: #C14498;
}
.site-footer .footer-menu-col.active .footer-menu-title .footer-accordion-icon {
  transform: rotate(180deg);
}
@media (max-width: 1023px) {
  .site-footer .footer-menu-col.active ul {
    max-height: 500px;
  }
}
@media (max-width: 1023px) {
  .site-footer .footer-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .site-footer .footer-brand {
    max-width: 100%;
    text-align: left;
  }
  .site-footer .footer-navigation {
    flex-direction: column;
    gap: 0;
    border-top: none;
  }
  .site-footer .footer-bottom {
    padding-top: 60px;
  }
}
.site-footer .footer-bottom {
  padding-top: 100px;
  border-top: 1px solid #E3E3E4;
  text-align: center;
}
@media (max-width: 1023px) {
  .site-footer .footer-bottom {
    padding-top: 80px;
  }
}
.site-footer .footer-bottom .copyright {
  font-size: 14px;
  font-weight: 400;
  color: #4F5159;
}

.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/uploads/square-pattern.svg");
  background-repeat: repeat;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 45% 40%, rgba(193, 68, 152, 0.25) 0%, transparent 50%), radial-gradient(circle at 65% 55%, rgba(176, 219, 187, 0.2) 0%, transparent 50%), radial-gradient(circle at 75% 40%, rgba(219, 224, 31, 0.15) 0%, transparent 50%), radial-gradient(circle at 35% 60%, rgba(193, 68, 152, 0.1) 0%, transparent 50%);
  filter: blur(120px);
  z-index: -2;
}
@media (max-width: 1023px) {
  .hero::after {
    background: radial-gradient(circle at 50% 40%, rgba(193, 68, 152, 0.25) 0%, transparent 60%), radial-gradient(circle at 80% 60%, rgba(219, 224, 31, 0.2) 0%, transparent 60%), radial-gradient(circle at 20% 70%, rgba(193, 68, 152, 0.15) 0%, transparent 60%);
  }
}
@media (max-width: 1023px) {
  .hero {
    padding: 60px 0 60px;
  }
}
.hero .hero-content {
  max-width: 850px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 56px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 span {
  color: #C14498;
}
@media (max-width: 1023px) {
  .hero h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
.hero p {
  font-size: 20px;
  font-weight: 400;
  color: #4F5159;
  margin-bottom: 36px;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .hero p {
    font-size: 18px;
    margin-bottom: 36px;
  }
}
.hero .btn-primary {
  display: inline-block;
  padding: 10px 16px;
  background-color: #C14498;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  margin-bottom: 56px;
}
.hero .btn-primary:hover {
  opacity: 0.9;
}
@media (max-width: 1023px) {
  .hero .btn-primary {
    margin-bottom: 60px;
  }
}
.hero .hero-brands {
  overflow: hidden;
}
.hero .hero-brands .brands-slider-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  margin-bottom: 36px;
}
@media (max-width: 1023px) {
  .hero .hero-brands .brands-slider-wrapper {
    margin-bottom: 20px;
  }
}
.hero .hero-brands .brands-slider {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.hero .hero-brands .brands-slider .brand-item {
  flex-shrink: 0;
  width: 195px;
  height: 120px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 56px;
  border-radius: 8px;
}
.hero .hero-brands .brands-slider .brand-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.hero .hero-brands .brands-slider .brand-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 1023px) {
  .hero .hero-brands .brands-slider .brand-item {
    width: 155px;
    height: 95px;
    padding: 12px 10px;
  }
}
.hero .hero-brands .brands-description {
  font-size: 20px;
  color: #90949A;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1023px) {
  .hero .hero-brands .brands-description {
    font-size: 18px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.what-is-section {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .what-is-section {
    padding: 60px 0;
  }
}
.what-is-section .section-header {
  max-width: 800px;
  margin: 0 auto 56px;
}
@media (max-width: 1023px) {
  .what-is-section .section-header {
    margin-bottom: 50px;
  }
}
.what-is-section .section-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .what-is-section .section-header h2 {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.what-is-section .section-header p {
  font-size: 18px;
  font-weight: 400;
  color: #4F5159;
}
@media (max-width: 1023px) {
  .what-is-section .section-header p {
    font-size: 16px;
  }
}
.what-is-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
}
@media (max-width: 1023px) {
  .what-is-section .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 50px;
  }
}
.what-is-section .what-is-card {
  padding: 0 80px;
  border-left: 1px solid #F8E7EB;
}
@media (max-width: 1023px) {
  .what-is-section .what-is-card {
    padding: 20px 0;
    border-left: none;
    border-bottom: 1px solid #F8E7EB;
    text-align: left;
  }
  .what-is-section .what-is-card:first-child {
    padding-top: 0;
  }
  .what-is-section .what-is-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.what-is-section .what-is-card:first-child {
  padding-left: 0;
  border-left: none;
}
.what-is-section .what-is-card:last-child {
  padding-right: 0;
}
.what-is-section .what-is-card .card-icon {
  width: 24px;
  height: 24px;
  background-color: #F1CCD5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.what-is-section .what-is-card .card-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #D71868;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.what-is-section .what-is-card p {
  font-size: 16px;
  font-weight: 400;
  color: #393B3D;
  line-height: 1.5;
}

.our-products-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.our-products-section::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 170%;
  background: radial-gradient(50% 50% at 50% 0%, #FFE2F6 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  z-index: -1;
  filter: blur(60px);
}
@media (max-width: 1023px) {
  .our-products-section {
    padding: 60px 0;
  }
}
.our-products-section .section-header {
  max-width: 800px;
  margin: 0 auto 56px;
}
@media (max-width: 1023px) {
  .our-products-section .section-header {
    margin-bottom: 50px;
  }
}
.our-products-section .section-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .our-products-section .section-header h2 {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.our-products-section .section-header p {
  font-size: 18px;
  font-weight: 400;
  color: #4F5159;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .our-products-section .section-header p {
    font-size: 16px;
  }
}
.our-products-section .products-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.our-products-section .product-card {
  background: #fff;
  border: 1px solid #E7ECFF;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.our-products-section .product-card:nth-child(even) .product-info {
  order: 2;
}
.our-products-section .product-card:nth-child(even) .product-image {
  order: 1;
  justify-content: flex-start;
}
@media (max-width: 1023px) {
  .our-products-section .product-card {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left;
    gap: 10px;
  }
  .our-products-section .product-card:nth-child(even) .product-info {
    order: 1;
  }
  .our-products-section .product-card:nth-child(even) .product-image {
    order: 2;
    justify-content: center;
  }
}
.our-products-section .product-card .product-info {
  padding: 44px;
}
@media (max-width: 1023px) {
  .our-products-section .product-card .product-info {
    padding: 0;
    max-width: 100%;
    text-align: left;
  }
}
.our-products-section .product-card .product-info .product-logo {
  margin-bottom: 48px;
}
.our-products-section .product-card .product-info .product-logo img {
  height: 34px;
  width: auto;
}
@media (max-width: 1023px) {
  .our-products-section .product-card .product-info .product-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}
.our-products-section .product-card .product-info h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2E2F33;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .our-products-section .product-card .product-info h3 {
    font-size: 18px;
  }
}
.our-products-section .product-card .product-info .product-desc {
  font-size: 14px;
  font-weight: 400;
  color: #393B3D;
  margin-bottom: 48px;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .our-products-section .product-card .product-info .product-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.our-products-section .product-card .product-info .product-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.our-products-section .product-card .product-info .product-desc ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.our-products-section .product-card .product-info .product-desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.52783 9.13905L7.75005 11.9168L12.4723 6.0835' stroke='%2388A9FE' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.our-products-section .product-card .product-info .product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C14498;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.our-products-section .product-card .product-info .product-btn:hover {
  gap: 12px;
}
.our-products-section .product-card .product-info .product-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/uploads/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  transition: transform 0.3s ease;
}
.our-products-section .product-card .product-info .product-btn svg {
  display: none;
}
.our-products-section .product-card .product-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.our-products-section .product-card .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 1023px) {
  .our-products-section .product-card .product-image {
    justify-content: center;
    margin-top: 20px;
  }
}

.why-visiblewise-section {
  padding: 100px 0;
}
@media (max-width: 1023px) {
  .why-visiblewise-section {
    padding: 60px 0;
  }
}
.why-visiblewise-section .why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: flex-start;
  }
}
.why-visiblewise-section .why-content {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: fit-content;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-content {
    position: relative;
    top: 0;
  }
}
.why-visiblewise-section .why-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-content h2 {
    font-size: 32px;
  }
}
.why-visiblewise-section .why-content p {
  font-size: 18px;
  font-weight: 400;
  color: #4F5159;
  line-height: 1.6;
  max-width: 510px;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-content p {
    font-size: 16px;
    max-width: 100%;
  }
}
.why-visiblewise-section .why-cards-container {
  width: 100%;
}
.why-visiblewise-section .why-cards-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-cards-desktop {
    display: none;
  }
}
.why-visiblewise-section .why-cards-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .why-visiblewise-section .why-cards-mobile {
    display: block;
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px 40px;
  }
  .why-visiblewise-section .why-cards-mobile .swiper-pagination {
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .why-visiblewise-section .why-cards-mobile .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFD4F1;
    opacity: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin: 0 !important;
  }
  .why-visiblewise-section .why-cards-mobile .swiper-pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 6px;
    background: #BC2F8E;
  }
}
.why-visiblewise-section .why-card {
  background: #FFF3FB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-visiblewise-section .why-card.swiper-slide {
  height: auto;
}
.why-visiblewise-section .why-card .card-icon {
  width: 80px;
  height: 80px;
  background: #FFF;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.why-visiblewise-section .why-card .card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.why-visiblewise-section .why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}
.why-visiblewise-section .why-card p {
  font-size: 16px;
  font-weight: 400;
  color: #4F5159;
  line-height: 1.5;
  margin: 0;
}

.faq-section {
  padding: 100px 0;
}
@media (max-width: 1023px) {
  .faq-section {
    padding: 60px 0;
  }
}
.faq-section .faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .faq-section .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.faq-section .faq-content {
  position: sticky;
  top: 120px;
}
@media (max-width: 1023px) {
  .faq-section .faq-content {
    position: relative;
    top: 0;
  }
}
.faq-section .faq-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .faq-section .faq-content h2 {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.faq-section .faq-content p {
  font-size: 18px;
  font-weight: 400;
  color: #4F5159;
  line-height: 1.6;
  max-width: 440px;
}
@media (max-width: 1023px) {
  .faq-section .faq-content p {
    max-width: 100%;
  }
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023px) {
  .faq-section .faq-accordion {
    gap: 18px;
  }
}
.faq-section .faq-item {
  background: #fff;
  border: 1px solid #F1F2F2;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question {
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}
.faq-section .faq-item .faq-question h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2E2F33;
  margin: 0;
  padding-top: 4px;
}
.faq-section .faq-item .faq-question .faq-icon {
  width: 32px;
  height: 32px;
  background: #FBF2F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-section .faq-item .faq-question .faq-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: transparent;
  background-image: url("/wp-content/uploads/chevron-down-pink.svg");
  background-repeat: no-repeat;
  background-size: contain;
  mask-image: none;
  -webkit-mask-image: none;
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
}
.faq-section .faq-item .faq-answer .faq-answer-content {
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #2E2F33;
  line-height: 1.6;
}
.faq-section .faq-item .faq-answer .faq-answer-content p {
  margin-bottom: 16px;
}
.faq-section .faq-item .faq-answer .faq-answer-content p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 1000px;
}

.blog-section {
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .blog-section {
    padding: 60px 0;
  }
}
.blog-section .section-header {
  max-width: 800px;
  margin: 0 auto 56px;
}
@media (max-width: 1023px) {
  .blog-section .section-header {
    margin-bottom: 50px;
  }
}
.blog-section .section-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .blog-section .section-header h2 {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.blog-section .section-header p {
  font-size: 18px;
  font-weight: 400;
  color: #4F5159;
}
.blog-section .blog-cards-container {
  width: 100%;
}
.blog-section .blog-cards-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
@media (max-width: 1023px) {
  .blog-section .blog-cards-desktop {
    display: none;
  }
}
.blog-section .blog-cards-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .blog-section .blog-cards-mobile {
    display: block;
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px 40px;
    text-align: left;
  }
  .blog-section .blog-cards-mobile .swiper-pagination {
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .blog-section .blog-cards-mobile .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFD4F1;
    opacity: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin: 0 !important;
  }
  .blog-section .blog-cards-mobile .swiper-pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 6px;
    background: #BC2F8E;
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #F1F2F2;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.blog-card.swiper-slide {
  height: auto;
}
.blog-card .blog-image {
  height: 240px;
  overflow: hidden;
  display: block;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-card .blog-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 1023px) {
  .blog-card .blog-info {
    padding: 20px;
  }
}
.blog-card .blog-info h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 50px;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 1023px) {
  .blog-card .blog-info h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.blog-card .blog-info .read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.blog-card .blog-info .read-more .icon-circle {
  width: 40px;
  height: 40px;
  background: #F1F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog-card .blog-info .read-more .icon-circle::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #000;
  mask-image: url("/wp-content/uploads/chevron-right.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("/wp-content/uploads/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.blog-card .blog-info:hover .read-more .icon-circle {
  background: #BC2F8E;
}
.blog-card .blog-info:hover .read-more .icon-circle::before {
  background-color: #fff;
}

.blog-listing-header {
  text-align: center;
  position: relative;
  padding: 80px 0;
  background-color: #FBFCFF;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .blog-listing-header {
    padding: 60px 0;
  }
}
.blog-listing-header .header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/uploads/square-pattern.svg");
  background-repeat: repeat;
  background-position: center;
  opacity: 0.75;
  z-index: 3;
  pointer-events: none;
}
.blog-listing-header .header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 45% 40%, rgba(193, 68, 152, 0.25) 0%, transparent 50%), radial-gradient(circle at 65% 55%, rgba(176, 219, 187, 0.2) 0%, transparent 50%), radial-gradient(circle at 75% 40%, rgba(219, 224, 31, 0.15) 0%, transparent 50%), radial-gradient(circle at 35% 60%, rgba(193, 68, 152, 0.1) 0%, transparent 50%);
  filter: blur(120px);
  z-index: 2;
  pointer-events: none;
}
.blog-listing-header .header-gradient::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 40%;
  width: 330px;
  height: 330px;
  background: #C14498;
  filter: blur(150px);
  opacity: 0.25;
  transform: rotate(-30deg);
  z-index: 3;
  display: block;
}
.blog-listing-header .header-gradient::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 230px;
  height: 230px;
  background: #DBE01F;
  filter: blur(120px);
  opacity: 0.2;
  transform: rotate(-30deg);
  z-index: 3;
  display: block;
}
.blog-listing-header .container {
  position: relative;
  z-index: 4;
}
.blog-listing-header .page-title {
  font-size: 56px;
  font-weight: 600;
  color: #C14498;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 1023px) {
  .blog-listing-header .page-title {
    font-size: 40px;
  }
}
.blog-listing-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.blog-listing-header .breadcrumb a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.blog-listing-header .breadcrumb .breadcrumb-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.blog-listing-header .breadcrumb .separator {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.blog-listing-header .breadcrumb .current-item {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.blog-listing-content {
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-listing-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #FFE2F6 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
  z-index: -1;
  filter: blur(80px);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .blog-listing-content {
    padding-bottom: 60px;
  }
}
.blog-listing-content .blog-listing-description {
  padding: 56px 0 50px 0;
}
@media (max-width: 1023px) {
  .blog-listing-content .blog-listing-description {
    padding: 56px 0 32px 0;
  }
}
.blog-listing-content .blog-listing-description p, .blog-listing-content .blog-listing-description .archive-description {
  font-size: 18px;
  color: #4F5159;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.blog-listing-content .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 1023px) {
  .blog-listing-content .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .blog-listing-content .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-listing-content .pagination-wrapper {
  margin-top: 60px;
}
.blog-listing-content .pagination-wrapper .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  width: auto;
  height: auto;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers:hover, .blog-listing-content .pagination-wrapper .nav-links .page-numbers.current {
  background: transparent;
  color: #000;
  font-weight: 600;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.dots {
  color: #000;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev, .blog-listing-content .pagination-wrapper .nav-links .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  opacity: 1;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev::before, .blog-listing-content .pagination-wrapper .nav-links .page-numbers.next::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #000;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev, .blog-listing-content .pagination-wrapper .nav-links .page-numbers.next {
  font-size: 0;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev {
  margin-right: 0px;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev::before {
  mask-image: url("/wp-content/uploads/chevron-right.svg");
  -webkit-mask-image: url("/wp-content/uploads/chevron-right.svg");
  transform: rotate(180deg);
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.prev.disabled {
  opacity: 0.3;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.next {
  margin-left: 0px;
}
.blog-listing-content .pagination-wrapper .nav-links .page-numbers.next::before {
  mask-image: url("/wp-content/uploads/chevron-right.svg");
  -webkit-mask-image: url("/wp-content/uploads/chevron-right.svg");
}

.blog-single-post {
  padding: 60px 0 100px 0;
  position: relative;
  overflow: hidden;
}
.blog-single-post::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #FFE2F6 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
  z-index: -1;
  filter: blur(80px);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .blog-single-post {
    padding: 40px 0 80px 0;
  }
}
.blog-single-post .container {
  max-width: 1035px;
}
@media (max-width: 1023px) {
  .blog-single-post .container {
    max-width: 100%;
  }
}
.blog-single-post .entry-title {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .blog-single-post .entry-title {
    font-size: 28px;
    font-weight: 500;
  }
}
.blog-single-post .blog-contents-accordion {
  border: 1px solid #F2F1F1;
  padding: 14px 16px;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-single-post .blog-contents-accordion.active .chevron-icon {
  transform: rotate(180deg);
}
.blog-single-post .blog-contents-accordion.active .contents-list {
  display: block;
}
.blog-single-post .blog-contents-accordion .contents-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-single-post .blog-contents-accordion .contents-header span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 1023px) {
  .blog-single-post .blog-contents-accordion .contents-header span {
    font-size: 16px;
  }
}
.blog-single-post .blog-contents-accordion .contents-header .chevron-icon {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}
.blog-single-post .blog-contents-accordion .contents-list {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
}
.blog-single-post .blog-contents-accordion .contents-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 0px;
}
.blog-single-post .blog-contents-accordion .contents-list ul li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.blog-single-post .blog-contents-accordion .contents-list ul li:last-child {
  margin-bottom: 0;
}
.blog-single-post .blog-contents-accordion .contents-list ul li a {
  text-decoration: none;
  color: #4F5159;
  font-size: 16px;
  transition: color 0.2s ease;
}
.blog-single-post .blog-contents-accordion .contents-list ul li a:hover {
  color: #C14498;
}
.blog-single-post .blog-contents-accordion .contents-list ul li.toc-h3 {
  padding-left: 20px;
}
.blog-single-post .blog-contents-accordion .contents-list ul li.toc-h4 {
  padding-left: 40px;
}
.blog-single-post .blog-contents-accordion.active .chevron-icon {
  transform: rotate(180deg);
}
.blog-single-post .blog-contents-accordion.active .contents-list {
  max-height: 1000px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #F2F1F1;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(1) {
  transition-delay: 0.05s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(2) {
  transition-delay: 0.1s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(3) {
  transition-delay: 0.15s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(4) {
  transition-delay: 0.2s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(5) {
  transition-delay: 0.25s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(6) {
  transition-delay: 0.3s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(7) {
  transition-delay: 0.35s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(8) {
  transition-delay: 0.4s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(9) {
  transition-delay: 0.45s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(10) {
  transition-delay: 0.5s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(11) {
  transition-delay: 0.55s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(12) {
  transition-delay: 0.6s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(13) {
  transition-delay: 0.65s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(14) {
  transition-delay: 0.7s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(15) {
  transition-delay: 0.75s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(16) {
  transition-delay: 0.8s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(17) {
  transition-delay: 0.85s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(18) {
  transition-delay: 0.9s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(19) {
  transition-delay: 0.95s;
}
.blog-single-post .blog-contents-accordion.active .contents-list li:nth-child(20) {
  transition-delay: 1s;
}
.blog-single-post .blog-single-featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
}
.blog-single-post .blog-single-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .blog-single-post .blog-single-featured-image {
    border-radius: 16px;
    margin-bottom: 24px;
  }
}
.blog-single-post .blog-single-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4F5159;
  font-weight: 400;
}
.blog-single-post .blog-single-content p, .blog-single-post .blog-single-content ul, .blog-single-post .blog-single-content ol, .blog-single-post .blog-single-content li, .blog-single-post .blog-single-content strong, .blog-single-post .blog-single-content span {
  font-size: 16px;
  color: #4F5159;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .blog-single-post .blog-single-content p, .blog-single-post .blog-single-content ul, .blog-single-post .blog-single-content ol, .blog-single-post .blog-single-content li, .blog-single-post .blog-single-content strong, .blog-single-post .blog-single-content span {
    font-size: 14px;
  }
}
.blog-single-post .blog-single-content strong {
  font-weight: 600;
}
.blog-single-post .blog-single-content h2, .blog-single-post .blog-single-content h3, .blog-single-post .blog-single-content h4, .blog-single-post .blog-single-content h5, .blog-single-post .blog-single-content h6 {
  color: #000;
  font-weight: 500;
  margin: 0px 0 16px;
  line-height: 1.3;
}
.blog-single-post .blog-single-content h2 {
  font-size: 28px;
}
.blog-single-post .blog-single-content h3 {
  font-size: 24px;
}
.blog-single-post .blog-single-content h4 {
  font-size: 22px;
}
.blog-single-post .blog-single-content h5 {
  font-size: 20px;
}
.blog-single-post .blog-single-content h6 {
  font-size: 18px;
}
@media (max-width: 1023px) {
  .blog-single-post .blog-single-content h2 {
    font-size: 26px;
  }
  .blog-single-post .blog-single-content h3 {
    font-size: 24px;
  }
  .blog-single-post .blog-single-content h4 {
    font-size: 22px;
  }
  .blog-single-post .blog-single-content h5 {
    font-size: 20px;
  }
  .blog-single-post .blog-single-content h6 {
    font-size: 18px;
  }
}
.blog-single-post .blog-single-content p {
  margin-bottom: 16px;
}
.blog-single-post .blog-single-content p:last-child {
  margin-bottom: 0;
}
.blog-single-post .blog-single-content ul, .blog-single-post .blog-single-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.blog-single-post .blog-single-content ul li, .blog-single-post .blog-single-content ol li {
  margin-bottom: 10px;
}
.blog-single-post .blog-single-breadcrumb {
  background-color: rgba(219, 224, 31, 0.1);
  padding: 28px 0;
  width: 100%;
}
.blog-single-post .blog-single-breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-single-post .blog-single-breadcrumb .breadcrumb::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .blog-single-post .blog-single-breadcrumb .breadcrumb {
    justify-content: center;
  }
}
.blog-single-post .blog-single-breadcrumb .breadcrumb a, .blog-single-post .blog-single-breadcrumb .breadcrumb span {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  flex-shrink: 0;
}
.blog-single-post .blog-single-breadcrumb .breadcrumb .breadcrumb-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.blog-single-post .blog-single-breadcrumb .breadcrumb .separator {
  color: #000;
  flex-shrink: 0;
}
.blog-single-post .blog-single-breadcrumb .breadcrumb .current-item {
  font-weight: 400;
  color: #000;
  flex-shrink: 0;
}
.blog-single-post .related-posts-section {
  padding: 100px 0;
  text-align: center;
  width: 100%;
}
.blog-single-post .related-posts-section .container {
  max-width: 1240px;
}
@media (max-width: 1023px) {
  .blog-single-post .related-posts-section {
    padding: 80px 0;
  }
}
.blog-single-post .related-posts-section .section-header {
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  .blog-single-post .related-posts-section .section-header {
    margin-bottom: 50px;
  }
}
.blog-single-post .related-posts-section .section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1023px) {
  .blog-single-post .related-posts-section .section-header h2 {
    font-size: 32px;
  }
}
.blog-single-post .related-posts-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: left;
}
@media (max-width: 1023px) {
  .blog-single-post .related-posts-section .blog-grid {
    display: none;
  }
}
.blog-single-post .related-posts-section .related-posts-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .blog-single-post .related-posts-section .related-posts-mobile {
    display: block;
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px 40px;
    text-align: left;
  }
  .blog-single-post .related-posts-section .related-posts-mobile .swiper-pagination {
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .blog-single-post .related-posts-section .related-posts-mobile .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFD4F1;
    opacity: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin: 0 !important;
  }
  .blog-single-post .related-posts-section .related-posts-mobile .swiper-pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 6px;
    background: #BC2F8E;
  }
}

.site-bottom-gradient-area {
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #FFFFFF 50%, #FFF2FB 100%);
  position: relative;
  z-index: 1;
}

.home .site-footer {
  background-color: #FFF2FB;
  position: relative;
  z-index: 1;
}

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