:root {
  --body-bg-color: #eef3ea;        
  --body-text-color: #3e4440;      
  --heading-color: #2f3531;        
  --header-bg-color: #a7bd9b;      
  --footer-bg-color: #9fb298;      
  --header-text-color: #1d3023;
  --footer-text-color: #ffffff;
  --link-color: #5f7f6a;           
  --nav-link-color: #2f3531;       
--font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
  linear-gradient(rgba(221, 212, 212, 0), rgba(233, 224, 224, 0.13)),
    url("/images/beauty-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 800;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) ;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
  .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  border-top: 1px solid var(--link-color);
}
.footer a {
  text-decoration: none;
  color: var(--footer-text-color) !important;
}
.footer-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  position: relative;
  color: var(--footer-text-color) !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  padding-left: 6px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: color-mix(in srgb, var(--footer-bg-color) 80%, white 20%);
  color: var(--footer-text-color);
}
.newsletter-form input::placeholder {
  color: var(--footer-text-color);
}
.newsletter-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  background: var(--link-color);
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: color-mix(in srgb, var(--link-color) 80%, white 20%);
}
.footer-divider {
  margin: 1.5rem 0;
  border-color: var(--link-color);
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 17px;
}
.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--footer-text-color);
  background-color: color-mix(in srgb, var(--footer-bg-color), white 20%);
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.social-icons span:hover {
  background: linear-gradient(
    135deg,
    var(--link-color),
    var(--footer-text-color)
  );
  transform: translateY(-2px);
} 
 .navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--header-bg-color) !important;
  font-weight: 800;
}
.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.246);
}
.hero-section.with-bg {
  background-image: url('/images/');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(214, 233, 203));
  opacity: 0.6;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  padding: 0 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--link-color) !important;
  transform: translateY(-1px);
}
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--link-color);
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
:root{
  --sage-0:#eef3ea;
  --sage-1:#dbe6d6;
  --sage-2:#bfcdb8;
  --sage-3:#9fb09a;
  --ink:#2a2f2a;
  --ink-soft:rgba(42,47,42,.72);
  --card-top: rgba(255,255,255,.16);
  --card-bottom: rgba(255,255,255,.08);
  --stroke-light: rgba(255,255,255,.25);
  --stroke-dark: rgba(42,47,42,.10);
  --shadow: 0 22px 60px rgba(34,44,36,.18);
  --shadow-soft: 0 14px 30px rgba(34,44,36,.14);
}
.section-two{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 30px) 0;
  color: var(--ink);
}
.section-two::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
  mix-blend-mode:multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size:260px 260px;
  animation: grainMove 10s steps(10) infinite;
}
.section-two::before{
  content:"";
  position:absolute;
  width:560px;
  height:560px;
  left:-180px;
  top:-220px;
  border-radius:46% 54% 57% 43% / 50% 36% 64% 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(167,190,162,.55), transparent 60%);
  opacity:.85;
  animation: blobFloat 12s ease-in-out infinite;
}
.section-two .container{
  position:relative;
}
.section-two .container::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-90px;
  top:20px;
  border-radius:52% 48% 42% 58% / 55% 62% 38% 45%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255,255,255,.40), transparent 58%),
    radial-gradient(circle at 70% 75%, rgba(192,210,188,.65), transparent 62%);
  opacity:.70;
  pointer-events:none;
  animation: blobFloat2 14s ease-in-out infinite;
}
.section-two .card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border-radius:22px;
  background: linear-gradient(
    180deg,
    var(--card-top),
    var(--card-bottom)
  );
  border:1px solid var(--stroke-light);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.section-two .card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:21px;
  border:1px solid var(--stroke-dark);
  opacity:.35;
  pointer-events:none;
}
.section-two .card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 220px at 30% 10%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(600px 260px at 80% 70%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.04));
  z-index:0;
}
.section-two .card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.35);
}
.section-two .card img{
  width:100%;
  height:auto;
  display:block;
  filter:saturate(1.02) contrast(1.02);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  z-index:1;
  position:relative;
}
.section-two .card:hover img{
  transform: scale(1.07);
}
.section-two .card-body{
  position:relative;
  z-index:1;
  padding:18px 18px 20px;
}
.section-two .card-title{
  margin:0 0 10px;
  font-weight:800;
  color:rgba(42,47,42,.86);
}
.section-two .card-title a{
  color:inherit;
  text-decoration:none;
}
.section-two .card-text{
  margin:0;
  color:rgba(42,47,42,.78);
  line-height:1.6;
}
@keyframes blobFloat{
  0%{transform:translate(0,0) rotate(0) scale(1)}
  50%{transform:translate(18px,22px) rotate(6deg) scale(1.03)}
  100%{transform:translate(0,0) rotate(0) scale(1)}
}
@keyframes blobFloat2{
  0%{transform:translate(0,0);opacity:.7}
  50%{transform:translate(-14px,18px);opacity:.85}
  100%{transform:translate(0,0);opacity:.7}
}
@keyframes grainMove{
  0%{transform:translate(0,0)}
  50%{transform:translate(-4%,3%)}
  100%{transform:translate(0,0)}
}
@media (prefers-reduced-motion: reduce){
  .section-two::before,
  .section-two::after,
  .section-two .container::before{
    animation:none!important;
  }
}
.styled-section{
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 25px);
  margin: clamp(18px, 2.2vw, 28px) auto;
  border-radius: 26px;
  background:
    radial-gradient(900px 240px at 20% 10%, rgba(255,255,255,.26), transparent 62%),
    radial-gradient(700px 260px at 80% 85%, rgba(255,255,255,.14), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 20px 60px rgba(34,44,36,.16);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transform: translateZ(0);
}
.styled-section::before{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: 25px;
  pointer-events:none;
  border: 1px solid rgba(42,47,42,.10);
  opacity: .35;
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(320px 260px at 22% 35%, rgba(167,189,155,.32), transparent 65%),
    radial-gradient(280px 220px at 75% 30%, rgba(255,255,255,.28), transparent 62%),
    radial-gradient(240px 200px at 70% 78%, rgba(191,205,184,.34), transparent 64%),
    linear-gradient(120deg, transparent 10%, rgba(255,255,255,.12) 45%, transparent 70%);
  filter: blur(0.2px);
  opacity: .9;
  animation:
    fashionFloat 14s ease-in-out infinite,
    fashionShimmer 5.6s ease-in-out infinite;
  mix-blend-mode: soft-light;
}
.styled-section h2{
  margin: 0 0 12px;
  letter-spacing: .2px;
  font-weight: 800;
  color: rgba(42,47,42,.86);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.styled-section p{
  margin: 0 0 14px;
  color: rgba(42,47,42,.78);
  line-height: 1.75;
}
.styled-section p + p{
  position: relative;
  padding-top: 14px;
}
.styled-section p + p::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  width: min(220px, 55%);
  height: 1px;
  background: linear-gradient(90deg, rgba(42,47,42,.18), rgba(255,255,255,.18), transparent);
  opacity: .55;
}
@keyframes fashionFloat{
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(22px,16px) rotate(7deg) scale(1.03); }
  100% { transform: translate(0,0) rotate(0deg) scale(1); }
}
@keyframes fashionShimmer{
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  50%  { background-position: 10% 8%, 90% 18%, 75% 85%, 120% 0%; }
  100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
}
@media (prefers-reduced-motion: reduce){
  .styled-section::after{
    animation: none !important;
  }
}
.sidebar-linking{
  position: relative;
  padding: 26px 24px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 20% 10%, rgba(255,255,255,.26), transparent 60%),
    radial-gradient(360px 220px at 80% 85%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 50px rgba(34,44,36,.16);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}
.sidebar-linking::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:21px;
  border:1px solid rgba(42,47,42,.10);
  opacity:.35;
  pointer-events:none;
}
.sidebar-linking::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(240px 200px at 25% 30%, rgba(167,189,155,.35), transparent 65%),
    radial-gradient(220px 180px at 75% 70%, rgba(255,255,255,.28), transparent 62%),
    linear-gradient(120deg, transparent 10%, rgba(255,255,255,.12) 45%, transparent 70%);
  mix-blend-mode: soft-light;
  animation: sidebarFloat 14s ease-in-out infinite;
}
.sidebar-linking h3{
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: .3px;
  color: rgba(42,47,42,.86);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.sidebar-linking .page-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-linking .page-list li{
  margin-bottom: 10px;
}
.sidebar-linking .page-list a{
  display: inline-block;
  position: relative;
  padding: 2px 6px;
  color: rgba(42,47,42,.78);
  text-decoration: none;
  font-weight: 500;
  border-radius: 999px;
  transition: color .25s ease, transform .25s ease, background .25s ease;
}
.sidebar-linking .page-list a::after{
  content:"";
  position:absolute;
  left: 14px;
  bottom: 2px;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(159,176,154,.0),
    rgba(42,47,42,.35),
    rgba(159,176,154,.0)
  );
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .25s ease, transform .25s ease;
}
.sidebar-linking .page-list a:hover{
  color: rgba(42,47,42,.92);
  background: rgba(255,255,255,.28);
  transform: translateX(6px);
}
.sidebar-linking .page-list a:hover::after{
  opacity: .9;
  transform: scaleX(1);
}
@keyframes sidebarFloat{
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(18px,14px) rotate(6deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce){
  .sidebar-linking::after{
    animation: none !important;
  }
}
.enhancement-section{
  position: relative;
  overflow: hidden;
  padding: clamp(12px, 2vw, 22px) 0;
  background:
    radial-gradient(1200px 420px at 18% 0%, rgba(255,255,255,.18), transparent 62%),
    radial-gradient(900px 520px at 85% 15%, rgba(214,230,214,.22), transparent 55%),
    linear-gradient(180deg, rgba(219,230,214,.85), rgba(191,205,184,.75));
}
.enhancement-section::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.16;
  mix-blend-mode:multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size:260px 260px;
  animation: enhGrain 10s steps(10) infinite;
}
.enhancement-section::before{
  content:"";
  position:absolute;
  width: 640px; height: 640px;
  left:-220px; top:-280px;
  border-radius: 46% 54% 57% 43% / 50% 36% 64% 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.42), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(167,189,155,.50), transparent 62%);
  opacity:.85;
  animation: enhBlob 14s ease-in-out infinite;
}
.enhancement-section .container{
  position: relative;
  z-index: 1;
}
.enhancement-section .container::before{
  content:"";
  position:absolute;
  width: 280px; height: 280px;
  right: -110px; top: 30px;
  border-radius: 52% 48% 42% 58% / 55% 62% 38% 45%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255,255,255,.35), transparent 58%),
    radial-gradient(circle at 70% 75%, rgba(191,205,184,.55), transparent 62%);
  opacity:.70;
  pointer-events:none;
  animation: enhBlob2 16s ease-in-out infinite;
}
.enhancement-section h2{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(42,47,42,.88);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.enhancement-section > .container > p{
  color: rgba(42,47,42,.78);
  line-height: 1.75;
}
.enhancement-section .box-one{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px 20px 20px;
  background:
    radial-gradient(700px 240px at 20% 10%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 50px rgba(34,44,36,.14);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  isolation: isolate;
}
.enhancement-section .box-one::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: 21px;
  border: 1px solid rgba(42,47,42,.10);
  opacity: .32;
  pointer-events:none;
  z-index: 0;
}
.enhancement-section .box-one::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(240px 200px at 25% 30%, rgba(167,189,155,.34), transparent 65%),
    radial-gradient(260px 220px at 78% 72%, rgba(255,255,255,.22), transparent 62%),
    linear-gradient(120deg, transparent 10%, rgba(255,255,255,.12) 45%, transparent 70%);
  mix-blend-mode: soft-light;
  opacity: .95;
  animation: enhShimmer 5.8s ease-in-out infinite, enhFloat 13s ease-in-out infinite;
  z-index: 0;
}
.enhancement-section .box-one:hover{
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 26px 70px rgba(34,44,36,.18);
  border-color: rgba(255,255,255,.36);
}
.enhancement-section .box-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 12px 24px rgba(34,44,36,.10);
  position: relative;
  z-index: 1;
}
.enhancement-section .box-icon i{
  font-size: 24px;
  color: rgba(42,47,42,.82);
}
.enhancement-section .box-one h3{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .15px;
  color: rgba(42,47,42,.88);
  position: relative;
  z-index: 1;
}
.enhancement-section .box-one p{
  margin: 0;
  color: rgba(42,47,42,.78);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
@keyframes enhBlob{
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(22px,26px) rotate(6deg) scale(1.03); }
  100% { transform: translate(0,0) rotate(0deg) scale(1); }
}
@keyframes enhBlob2{
  0%   { transform: translate(0,0) rotate(0deg); opacity:.68; }
  50%  { transform: translate(-16px,18px) rotate(-7deg); opacity:.82; }
  100% { transform: translate(0,0) rotate(0deg); opacity:.68; }
}
@keyframes enhFloat{
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(18px,12px) rotate(6deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
@keyframes enhShimmer{
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%; }
  50%  { background-position: 12% 10%, 90% 85%, 120% 0%; }
  100% { background-position: 0% 0%, 0% 0%, 0% 0%; }
}
@keyframes enhGrain{
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-3%, -2%); }
  20%  { transform: translate(-5%, 2%); }
  30%  { transform: translate(3%, -4%); }
  40%  { transform: translate(-2%, 5%); }
  50%  { transform: translate(-4%, 1%); }
  60%  { transform: translate(6%, -2%); }
  70%  { transform: translate(-2%, -6%); }
  80%  { transform: translate(-6%, 2%); }
  90%  { transform: translate(4%, 5%); }
  100% { transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce){
  .enhancement-section::before,
  .enhancement-section::after,
  .enhancement-section .container::before,
  .enhancement-section .box-one::after{
    animation: none !important;
  }
  .enhancement-section .box-one{
    transition: none !important;
  }
}
.styled-list{
  list-style: none;
  padding: 0;
  margin: 22px 0;
  position: relative;
}
.styled-list li{
  position: relative;
  padding: 16px 18px 16px 54px;
  margin-bottom: 14px;
  border-radius: 18px;
  background:
    radial-gradient(420px 160px at 20% 20%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 14px 36px rgba(34,44,36,.14);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  color: rgba(42,47,42,.82);
  line-height: 1.65;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.styled-list li::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:17px;
  border:1px solid rgba(42,47,42,.10);
  opacity:.30;
  pointer-events:none;
}
.styled-list li::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  width:22px;
  height:22px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 60%),
    linear-gradient(180deg, rgba(167,189,155,.95), rgba(159,176,154,.85));
  box-shadow: 0 6px 14px rgba(34,44,36,.18);
  transform: translateY(-50%);
}
.styled-list li:hover{
  transform: translateX(6px);
  box-shadow: 0 20px 48px rgba(34,44,36,.18);
  border-color: rgba(255,255,255,.38);
}
.styled-list li:hover::before{
  animation: listPulse 1.8s ease-in-out infinite;
}
@keyframes listPulse{
  0%{ box-shadow: 0 0 0 0 rgba(167,189,155,.55); }
  70%{ box-shadow: 0 0 0 10px rgba(167,189,155,0); }
  100%{ box-shadow: 0 0 0 0 rgba(167,189,155,0); }
}
@media (prefers-reduced-motion: reduce){
  .styled-list li,
  .styled-list li:hover{
    transition: none !important;
  }
  .styled-list li:hover::before{
    animation: none !important;
  }
}
.newsletter{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px 16px;
  margin: 18px 0;
  background:
    radial-gradient(700px 220px at 18% 10%, rgba(255,255,255,.22), transparent 62%),
    radial-gradient(540px 220px at 85% 90%, rgba(255,255,255,.12), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 18px 45px rgba(34,44,36,.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.newsletter__title{
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(42,47,42,.88);
}
.newsletter__text{
  margin: 0 0 14px;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(42,47,42,.75);
}
.newsletter__label{
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  letter-spacing: .3px;
  color: rgba(42,47,42,.7);
}
.newsletter__input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(42,47,42,.18);
  background: rgba(255,255,255,.45);
  font-size: .9rem;
  color: rgba(42,47,42,.65);
  outline: none;
}
.newsletter__input:disabled{
  opacity: .75;
  cursor: not-allowed;
}
.newsletter__btn{
  width: 100%;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(42,47,42,.25);
  background: linear-gradient(
    180deg,
    rgba(167,189,155,.55),
    rgba(137,160,130,.55)
  );
  font-weight: 600;
  letter-spacing: .3px;
  color: rgba(42,47,42,.85);
}
.newsletter__btn:disabled{
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(.2);
}
.newsletter__note{
  display: block;
  margin-top: 10px;
  font-size: .72rem;
  color: rgba(42,47,42,.55);
}
.contact-container {
  margin: 40px auto;
  border-radius: 8px;
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-container .form {
  width: 440px;
  height: 510px;
  background: #E6E6E6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.contact-container h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--hero-gradient1) !important;
  border-bottom: 3px solid var(--hero-gradient2);
}
.contact-container input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container input:focus {
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--hero-gradient1);
}
.contact-container button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--hero-gradient1);
  background: 0;
  color: var(--hero-gradient1);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-container button:hover {
  background: var(--hero-gradient2);
  color: #fff;
}
.contact-container .mail-container {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  background: var(--hero-gradient1);
  color: #fff;
  width: 320px;
  padding: 16px 4px 16px 0;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 10px 10px 40px -14px #000;
}
.contact-container .mail-container p:before {
  content: none;
}
.contact-container span {
  margin: 0 5px 0 15px;
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  