/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2023 AroNus
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --violet-blue-crayola: rgb(155, 108, 221);
  --dark-cornflower-blue_a7: hsla(214, 88%, 27%, 0.07);
  --white: hsla(0, 0%, 100%, 1);
  --white_a3: hsla(0, 0%, 100%, 0.03);
  --white_a8: hsla(0, 0%, 100%, 0.08);
  --white_a12: hsla(0, 0%, 100%, 0.12);
  --white_a70: hsla(0, 0%, 100%, 0.7);
  --cultured: hsla(220, 20%, 97%, 1);
  --lavender-web: hsla(233, 52%, 94%, 1);
  --cadet-blue-crayola: hsla(220, 12%, 70%, 1);
  --cadet-blue-crayola_a20: hsla(222, 23%, 71%, 0.2);
  --charcoal: rgb(62, 52, 81);
  --raisin-black: hsla(216, 14%, 14%, 1);
  --light-gray: hsla(0, 0%, 79%, 1);
  --blue-crayola: hsla(219, 72%, 56%, 1);
  --black-coral: hsla(220, 12%, 43%, 1);

  /**
   * typography
   */

  --ff-manrope: 'Manrope', sans-serif;

  --fs-1: calc(2.7rem + 1.38vw);
  --fs-2: calc(2.6rem + .66vw);
  --fs-3: 2.2rem;
  --fs-4: 1.9rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;

  --fw-700: 700;

  /** 
   * spacing
   */

  --section-padding: 90px;

  /**
   * box shadow
   */

  --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
  --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
  --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-pill: 100px;
  --radius-10: 21px;
  --radius-8: 19px;
  --radius-6: 17px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 0.3s ease-in-out;

}


::selection {
  background-color: #C5A5EC;
}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-manrope);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--black-coral);
  font-size: 1.6rem;
  line-height: 1.7;
}

body.nav-active {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  font-size: 2rem;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus-visible) {
  transform: translateY(-3px);
}

.section {
  padding-block: var(--section-padding);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--charcoal);
  font-weight: var(--fw-700);
  line-height: 1.3;
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-6);
}

.btn {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 2px solid var(--white);
  max-width: max-content;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
  will-change: transform;
}

.btn:is(:hover, :focus-visible) {
  transform: translateY(-4px);
}

.btn-primary,
.btn-outline:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--charcoal);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  /* background-color: var(--light-gray); */
}

/* .home-img-holder {
  background: rgba(255, 255, 255, 0.216);
  box-shadow: 0 8px 32px 0 rgba(90, 31, 135, 0.37);
  backdrop-filter: blur( 5px );
  -webkit-backdrop-filter: blur( 5px );
  border-radius: 12px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
} */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-7);
  text-transform: uppercase;
  color: var(--violet-blue-crayola);
  font-weight: var(--fw-700);
  margin-block-end: 16px;
}

.grid-list {
  display: grid;
  gap: 25px;
}

.w-100 {
  width: 100%;
}


/* Preloader */
/* #loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999;
}

.loader {
  position: relative;
  display: flex;
  gap: 0.3em;
}

.loader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4em;
  filter: blur(45px);
  background-color: #e07ef3;
  background-image: radial-gradient(at 52% 57%, hsla(11, 83%, 72%, 1) 0px, transparent 50%),
    radial-gradient(at 37% 57%, hsla(175, 78%, 66%, 1) 0px, transparent 50%);
}

.loader__circle {
  --size__loader: 1em;
  width: var(--size__loader);
  height: var(--size__loader);
  border-radius: 50%;
  animation: loader__circle__jumping 2s infinite;
  background-color: #b372f9;
}

.loader__circle:nth-child(2n) {
  animation-delay: 300ms;
  background-color: #c07af9;
}

.loader__circle:nth-child(3n) {
  animation-delay: 600ms;
}

@keyframes loader__circle__jumping {

  0%,
  100% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-15px) scale(0.5);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(5px) scale(0.9);
  }
} */



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;

  top: 0;
  right: 0;
  width: 100%;
  padding-block: 20px;
  /* box-shadow: var(--shadow-1); */
  z-index: 4;
  border-radius: 0;
  background: unset;
}

.header.active {
  top: 10px;
  left: 10px;
  right: 10px;
  width: unset;
  /* background-color: var(--white); */
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(137, 44, 229, 0.141);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  position: fixed;
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header.active .logo-light,
.header .logo-dark {
  display: none;
}

.header .logo-light,
.header.active .logo-dark {
  display: block;
}

.nav-open-btn {
  font-size: 3.5rem;
  color: var(--white);
}

.header.active .nav-open-btn {
  color: var(--charcoal);
}

.navbar {
  position: fixed;
  top: 0;
  left: -300px;

  background: rgba(255, 255, 255, 0.47);
  box-shadow: rgba(40, 12, 46, 0.15) 0px 48px 100px 0px;
  backdrop-filter: blur(18.5px);
  -webkit-backdrop-filter: blur(18.5px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  /* background-color: var(--raisin-black); */
  /* color: var(--white); */
  max-width: 300px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  padding-block-end: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  visibility: hidden;
  transition: var(--transition-3);
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-close-btn {
  background-color: #ecaef848;
  color: #6223a2;
  font-size: 2rem;
  padding: 6px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 50px;
}

.nav-close-btn:is(:hover, :focus-visible) {
  background-color: var(--white_a12);
}

.navbar-list {
  margin-block-end: auto;
}

.navbar-link {
  position: relative;
  font-weight: var(--fw-700);
  padding-block: 6px;
  /* background: -webkit-linear-gradient(74.20deg, #df76f4, #490c85); */
  background: #43066e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}

.navbar-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  border-radius: 4rem;
  background: linear-gradient(130deg, #412DB3, #BD70F4);
}

.navbar-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-link {
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background-color: var(--raisin-black); */
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-1);

  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;

}

.overlay.active {
  pointer-events: all;
  opacity: 0.8;
}




/* sub menu navbar */

.navbar-list .li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  /* padding: 0 14px; */
}

li:hover .htmlcss-arrow {
  transform: rotate(180deg);
}

.navbar-list li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #5d0e95;
  transition: var(--transition-3);
}

.navbar-list li .sub-menu {
  position: absolute;
  top: 40px;
  left: -30px;
  padding-top: 1.3rem;
  line-height: 40px;
  display: none;
  z-index: 2;
  width: 20rem;

  background: rgba( 255, 255, 255, 0.85 );
  box-shadow: 0 8px 32px 0 rgba(137, 44, 229, 0.141);
  backdrop-filter: blur( 11.5px );
  -webkit-backdrop-filter: blur( 11.5px );
  border-radius: 12px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.navbar-list li:hover .htmlCss-sub-menu {
  display: block;
}

.navbar-list li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.147);
}

/* .navbar-list li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
} */

.navbar-list li .sub-menu .more-sub-menu {
  position: absolute;
  top: 6rem;
  left: 102%;
  border-radius: 12px;
  z-index: 1;
  display: none;
  
}

.navbar-list li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

@media (max-width: 992px) {
  .navbar-list li .sub-menu {
    background-color: var(--white);
    left: 4rem;
  }

  .navbar-list li .sub-menu .more-sub-menu {
    position: absolute;
    top: 12rem;
    left: 30%;
    border-radius: 12px;
    z-index: 1;
    display: none;
    
  }
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 70px);
  text-align: center;
}

.hero .container {
  display: grid;
  gap: 70px;
}

.hero-title {
  color: var(--white);
}

.hero-text {
  font-size: var(--fs-5);
  color: var(--white);
  margin-block: 24px 36px;
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-slider,
.hero-card {
  position: relative;
}

/* .hero-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--charcoal);
  font-size: 2rem;
  padding: 25px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  animation: pulse 2s ease infinite;
}

.hero-card .play-btn:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--white_a70);
  }

  75% {
    box-shadow: 0 0 0 20px transparent;
  }
} */

.hero .slider-inner {
  border-radius: var(--radius-10);
  overflow: hidden;
}

.hero .slider-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: var(--transition-2);
}

.hero .slider-item {
  min-width: 100%;
  width: 100%;
  border-radius: var(--radius-10);
  overflow: hidden;
}

/* .hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white_a70);
  color: var(--charcoal);
  font-size: 2rem;
  padding: 12px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.hero .slider-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
}

.hero .slider-btn.prev {
  left: 20px;
}

.hero .slider-btn.next {
  right: 20px;
} */


/* popup */

.popup,
.service-popup {
  position: fixed;
  top: -150%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;

  background: rgba(230, 208, 252, 0.419);
  border: 1px solid rgba(197, 125, 231, 0.641);
  box-shadow: inset 0px 0px 20px 5px rgba(253, 252, 254, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  width: 450px;
  padding: 20px 30px;
  border-radius: 12px;
  z-index: 1000;
  transition: top 0ms ease-in-out 300ms,
    opacity 300ms ease-in-out 0ms,
    transform 300ms ease-in-out 0ms;
}

.popup.active,
.service-popup.active {
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: top 0ms ease-in-out 0ms,
    opacity 300ms ease-in-out 0ms,
    transform 300ms ease-in-out 0ms;
}

.popup .close-btn,
.service-popup .service-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  font-size: 25px;
  text-align: center;
  line-height: 25px;
  color: #6223a2;
  border: 1px solid rgba(197, 125, 231, 0.641);
  background: rgba(253, 249, 255, 0.43);
  border-radius: 50%;
  cursor: pointer;
}

.popup .popup-button-container {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.popup .popup-button-container:last-child {
  margin-top: 1.8rem;
}

.popup .popup-button-container .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #470f6f;
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 2px solid var(--white);
  width: 100%;
  padding: 12px 28px;
  border-radius: var(--radius-6);
  transition: var(--transition-1);
  will-change: transform;

  transform: perspective(1px) translateZ(0);
}

.popup .popup-button-container .button:is(:hover, :focus) {
  color: var(--white);
}

.popup .popup-button-container .button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
  border-radius: var(--radius-6);

  clip-path: circle(0.1% at 50% 50%);
  /* background: linear-gradient(130deg, #412DB3, #BD70F4); */
  transition: 0.6s;
  opacity: 1;
}

.popup .popup-button-container .button:is(:hover, :focus):before {
  clip-path: circle(100% at 50% 50%);
}


.popup .popup-button-container .button .icon {
  color: var(--white);
  font-size: 2rem;
  padding: 9px;
  border-radius: 50%;
}

.popup .popup-button-container .whatsapp {
  background-color: #25D366;
}

.popup .popup-button-container .whatsapp-btn::before {
  background-color: #25D366;
}

.popup .popup-button-container .instagram {
  background: linear-gradient(30deg, #DF5F4D, #BD30A4);
}

.popup .popup-button-container .instagram-btn::before {
  background: linear-gradient(30deg, #DF5F4D, #BD30A4);
}

.popup .popup-button-container .email {
  background-color: #BB001B;
}

.popup .popup-button-container .email-btn::before {
  background-color: #BB001B;
}

.popup .popup-button-container .call {
  background-color: #4285F4;
}

.popup .popup-button-container .call-btn::before {
  background-color: #4285F4;
}

@media (max-width: 500px) {
  .popup {
    width: 340px;
  }

  .popup .popup-button-container {
    flex-direction: column;
    gap: 10px;
  }

  .popup .popup-button-container:last-child {
    margin-top: 1.2rem;
  }
}




/* service form popup */

.service-popup {
  width: 550px;
  height: 660px;
  overflow-y: scroll;
  box-shadow: rgba(102, 65, 134, 0.25) 0px 50px 100px -20px, rgba(131, 84, 138, 0.3) 0px 30px 60px -30px;

  border: 1px solid rgba(255, 255, 255, 0.238);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* width */
.service-popup::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.service-popup::-webkit-scrollbar-track {
  background: #e8c7ff;
  border-radius: inherit;
}

/* Handle */
.service-popup::-webkit-scrollbar-thumb {
  background: linear-gradient(130deg, #BD70F4, #412DB3);
  transition: all 0.4s ease;
  border-radius: inherit;
}

/* Handle on hover */
.service-popup::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(130deg, #412DB3, #BD70F4);
}

.service-popup .heading {
  font-size: var(--fs-3);
  color: var(--white);
  font-weight: var(--fw-700);
  text-align: center;
}

.service-popup .form {
  margin-top: 30px;
}

.form .input-box {
  width: 100%;
  margin-top: 20px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #61218f;
  transition: background-color 5000s ease-in-out 0s;
  /* box-shadow: inset 0 0 20px 20px #23232329; */
}

.input-box label {
  font-size: var(--fs-5);
  font-weight: 400;
  text-align: left;
  color: #470f6f;
}

.form .input-box input::placeholder,
.form input[type=date]:invalid::-webkit-datetime-edit,
.form option {
  color: #fdfafff3;
  font-weight: 300;
}

.form select {
  cursor: pointer;
}

.form :where(.input-box input, .select-box, textarea),
.form option:not(:first-of-type) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: var(--fs-10);
  color: #5d0e95;
  margin-top: 8px;
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 15px 15px;
}

.form textarea {
  resize: none;
  height: 18rem;
  font-family: inherit;
  background: inherit;
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
  display: flex;
  column-gap: 15px;
}

.address :where(input, .select-box) {
  margin-top: 15px;
}

.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  font-size: var(--fs-10);
  background: inherit;
}

.form .submit-button {
  position: relative;
  margin-top: 30px;
  color: var(--black-coral);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 2px solid var(--white);
  background-color: var(--white);
  width: 100%;
  padding: 12px 28px;
  border-radius: 6px;
  transition: var(--transition-1);
  will-change: transform;
  transition: all 0.2s ease;
  letter-spacing: 1px;

  transform: perspective(1px) translateZ(0);
}

.form .submit-button:is(:hover, :focus) {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 0 10px rgba(250, 250, 250, 0.1)
}

.form .submit-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
  border-radius: 6px;

  clip-path: circle(0.1% at 50% 50%);
  background: linear-gradient(130deg, #412DB3, #BD70F4);
  transition: 0.6s;
  opacity: 1;
}

.form .submit-button:is(:hover, :focus):before {
  clip-path: circle(100% at 50% 50%);
}


/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }

  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}

@media (max-width: 575px) {
  .service-popup {
    width: 450px;
    margin-inline: auto;
  }
}

@media (max-width: 485px) {
  .service-popup {
    width: 350px;
  }
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  text-align: center;
}

.service .section-title {
  margin-block-end: 50px;
}

.service-card {
  padding: 40px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-6);
  transition: all 0.4s ease;
}

.service-card:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: rgba(155, 149, 165, 0.2) 0px 8px 24px;
}

.service-card:is(:hover, :focus-visible) .card-icon {
  transform: translateY(-3px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.service-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--violet-blue-crayola);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 2.5rem;
  border-radius: var(--radius-circle);
  margin-inline: auto;

  transition: all 0.4s ease;
}

.service-card .card-icon ion-icon {
  --ionicon-stroke-width: 50px;
}

.service-card .card-title {
  margin-block: 16px 10px;
}

.service-card .btn-text {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-block-start: 10px;
  color: var(--violet-blue-crayola);
  font-weight: var(--fw-700);
  /* transition: var(--transition-1); */
  transition: all 0.4s ease;
}

.service-card .btn-text:is(:hover, :focus-visible) {
  opacity: 0.9;
  gap: 12px;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 50px;
}

.about .section-title {
  margin-block-end: 35px;
}

.accordion-card .card-title {
  padding-block-end: 20px;
}

.accordion-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-btn ion-icon {
  font-size: 1.5rem;
  color: var(--blue-crayola);
  transition: var(--transition-1);
}

.accordion-card.expanded .accordion-btn ion-icon {
  transform: rotate(0.5turn);
}

.accordion-btn .span {
  transition: var(--transition-1);
}

.accordion-btn:is(:hover, :focus-visible) .span,
.accordion-card.expanded .accordion-btn .span {
  color: var(--violet-blue-crayola);
}

.accordion-content {
  padding-inline-start: 24px;
  max-height: 0;
  overflow: hidden;
}

.accordion-card.expanded .accordion-content {
  max-height: max-content;
  padding-block-end: 20px;
}




.about-content .about-btn {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 7px;

  background-color: #9B6CDD;
  color: #fff;
}

.about-content .about-btn .icon {
  font-size: 3rem;
}





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.feature .container {
  display: grid;
  gap: 50px;
}

.feature .section-text {
  margin-block: 25px 30px;
}

.feature-list {
  display: grid;
  gap: 15px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card .card-icon {
  background-color: var(--lavender-web);
  font-size: 1.4rem;
  padding: 4px;
  border-radius: var(--radius-circle);
}

.feature-card .card-icon ion-icon {
  --ionicon-stroke-width: 40px;
}





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats {
  background-image: linear-gradient(to bottom, var(--white) 50%, var(--cultured) 50%);
}

.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 36px 24px;
  padding: 45px 30px;
  border-radius: var(--radius-8);
}

.stats-card .card-text>* {
  color: var(--white);
}





/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project {
  background-color: var(--cultured);
}

.project :is(.section-subtitle, .section-title) {
  text-align: center;
}

.project .section-title {
  margin-block-end: 50px;
}

.project-card {
  background-color: var(--white);
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  height: 100%;
  transition: all 0.4s ease;
}

.project-card:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  box-shadow: rgba(115, 81, 145, 0.2) 0px 7px 29px 0px;
}

.project-card .card-banner img {
  transition: all 0.5s ease;
}

.project-card:is(:hover, :focus-visible) .card-banner img {
  transform: scale(1.1);
}

.project-card .card-content {
  padding: 30px;
}

.project-card .card-title {
  transition: var(--transition-1);
}

.project-card .card-title:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

.project-card .card-text {
  margin-block: 16px 20px;
}

.project-card .card-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--cadet-blue-crayola);
  font-size: var(--fs-8);
}



/* Team section */

.team-card {
  /* height: 40rem; */
  height: auto;
}

.team-image:hover img {
  filter: grayscale(1);
}

@media (max-width: 766px) {
  .team .grid-list {
    grid-template-columns: repeat(1, 1fr);
  }
}




/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  background-color: var(--charcoal);
}

.cta .container {
  padding-block: 100px 60px;
  border-block-end: 1px solid var(--cadet-blue-crayola_a20);
}

.cta .section-title {
  color: var(--white);
  margin-block-end: 30px;
}

.cta .btn {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  border: none;
}

.cta .discord-btn {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta .discord-btn .icon {
  font-size: 3rem;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--charcoal);
  padding-block: 60px 100px;
  color: var(--light-gray);
}

.footer-brand .footer-text {
  margin-block: 20px;
}

.footer .social-list {
  color: var(--white);
}

.footer-list-title {
  color: var(--white);
  margin-block-end: 16px;
}

.footer-link {
  padding-block: 4px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

.input-wrapper {
  position: relative;
  margin-block-start: 25px;
}

.input-field {
  background-color: var(--white_a3);
  color: var(--light-gray);
  font-size: var(--fs-7);
  padding: 12px 16px;
  border: 1px solid var(--dark-cornflower-blue_a7);
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-3);
  outline: none;
}

.input-field::placeholder {
  color: inherit;
}

.submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 var(--radius-6) var(--radius-6) 0;
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  padding-inline: 24px;
  font-weight: var(--fw-700);
}





/* ---------- Price Section ------------ */

.wrapper {
  max-width: 1090px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wrapper .table {
  background: var(--white);
  width: calc(33% - 20px);
  padding: 30px 30px;
  position: relative;
  box-shadow: var(--shadow-3);
  border-radius: var(--radius-10);
  transition: var(--transition-3);
}

.wrapper .table:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: translateY(-2px);
}

.wrapper .table:nth-child(2) {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(147, 92, 186, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(121, 11, 164, 0);
  }
}

.table .price-section {
  display: flex;
  justify-content: center;
}

.table .price-area {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  padding: 2px;
}

.price-area .inner-area {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  line-height: 117px;
  text-align: center;
  color: #fff;
  position: relative;
}

.price-area .inner-area .text {
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  top: -12px;
  left: 12px;
}

.price-area .inner-area .price {
  font-size: 45px;
  font-weight: 500;
  margin-left: 16px;
}

.table .package-name {
  width: 100%;
  height: 2px;
  margin: 35px 0;
  position: relative;
}

.table .package-name::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  font-weight: 500;
  background: #fff;
  padding: 0 15px;
  transform: translate(-50%, -50%);
}

.table .features li {
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.features li .list-name {
  font-size: 17px;
  font-weight: 400;
}

.features li .icon {
  font-size: 15px;
}

.features li .icon.check {
  color: #2db94d;
}

.features li .icon.cross {
  color: #cd3241;
}

.table .btn-div {
  width: 100%;
  display: flex;
  margin-top: 35px;
  justify-content: center;
}

.table .btn-div button {
  width: 80%;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table .btn-div button:hover {
  border-radius: 5px;
}

.basic .features li::selection {
  background: #ffd861;
}

.basic ::selection,
.basic .price-area,
.basic .inner-area {
  background: #ffd861;
}

.basic .btn-div button {
  border: 2px solid #ffd861;
  background: #fff;
  color: #ffd861;
}

.basic .btn-div button:hover {
  background: #ffd861;
  color: #fff;
}

.premium ::selection,
.premium .price-area,
.premium .inner-area,
.premium .btn-div button {
  background: #a26bfa;
}

.premium .btn-div button:hover {
  background: #833af8;
}

.ultimate ::selection,
.ultimate .price-area,
.ultimate .inner-area {
  background: #43ef8b;
}

.ultimate .btn-div button {
  border: 2px solid #43ef8b;
  color: #43ef8b;
  background: #fff;
}

.ultimate .btn-div button:hover {
  background: #43ef8b;
  color: #fff;
}

.basic .package-name {
  background: #ffecb3;
}

.premium .package-name {
  background: #d0b3ff;
}

.ultimate .package-name {
  background: #baf8d4;
}

.basic .package-name::before {
  content: "Basic";
}

.premium .package-name::before {
  content: "Premium";
  font-size: 24px;
}

.ultimate .package-name::before {
  content: "Ultimate";
  font-size: 24px;
}

@media (max-width: 1020px) {
  .wrapper .table {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media (max-width: 698px) {
  .wrapper .table {
    width: 100%;
  }
}

::selection {
  color: #fff;
}

.table .ribbon {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10px;
  left: -10px;
  overflow: hidden;
}

.table .ribbon::before,
.table .ribbon::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  border: 7px solid #4606ac;
  border-top-color: transparent;
  border-left-color: transparent;
}

.table .ribbon::before {
  top: 0px;
  right: 15px;
}

.table .ribbon::after {
  bottom: 15px;
  left: 0px;
}

.table .ribbon span {
  position: absolute;
  top: 30px;
  right: 0;
  transform: rotate(-45deg);
  width: 200px;
  background: #a26bfa;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 17px;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}



/* SEO SERVICE PAGE */

.seo-service-card-content .btn {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  max-width: none;
  width: 100%;
  margin-top: 2.9rem;
  border-radius: var(--radius-8);
  text-align: center;
}

.seo-service-page-container .all-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  margin-top: 4.9rem;

  background-color: var(--violet-blue-crayola);
  color: var(--white);
  /* border-radius: var(--radius-8); */
  text-align: center;
}

.seo-service-page-container .all-btn:is(:hover, :focus) {
  letter-spacing: 1px;
}

/* filter services */

.filter-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4.4rem;
}

#filter-buttons button {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  border-radius: var(--radius-6);
  text-align: center;
}

#filter-buttons button.active {
  background: #743cc2;
  outline: 1px solid #743cc2;
  outline-offset: 1px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#filterable-cards .project-card.hide {
  display: none;
}


@media (max-width: 992px) {
  .filter-container {
    display: none;
  }
}

@media (min-width: 992px) {
  .seo-service-page-container .select-menu {
    display: none;
  }
}






/* ----------------- Client and Portfolio section */



.client-card .card-content {
  position: relative;
  padding: 22px;
}

.ceo-profile {
  position: absolute;
  top: -39px;
  right: 12px;
  z-index: 999;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  outline: 1px solid #9B6CDD;
  outline-offset: 2px;
  box-shadow: rgba(82, 11, 96, 0.1) 0px 10px 50px;
  transition: all 0.3s ease;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #b372f9;
  }

  75% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.client-card:is(:hover, :focus) .ceo-profile {
  transform: translateY(-2px);
}

.client-card .card-content .btn {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  max-width: none;
  width: 100%;
  margin-top: 2.9rem;
  border-radius: var(--radius-6);
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.rating {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 1px 10px;
  font-size: 1.2rem;
  z-index: 999;
  background-color: #9B6CDD;

  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: rgba(175, 144, 198, 0.2) 0px 7px 29px 0px;
}

.rating .icon {
  font-size: inherit;
}

.client-card .card-content .btn:hover {
  gap: 2rem;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * PROJECTS
   */

  /* .project-card .card-content {
    padding: 40px;
  } */

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .team .grid-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .seo-service-page-container .grid-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * HEADER
   */

  .header .btn {
    display: block;
    margin-inline-start: auto;
    padding: 8px 20px;
  }

  .header.active .btn {
    background-color: var(--violet-blue-crayola);
    border-color: var(--violet-blue-crayola);
    color: var(--white);
  }



  /**
   * HERO
   */

  .hero-content {
    max-width: 85%;
    margin-inline: auto;
  }

  .hero-text {
    --fs-5: 2rem;
  }



  /**
   * SERVICE
   */

  .service .section-title {
    max-width: 30ch;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }



  /**
   * FEATURE
   */

  .feature .container {
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
  }

  .feature-banner {
    order: 1;
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .overlay {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    display: block;
    margin-inline: auto 24px;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-link {
    color: var(--white);
    transition: var(--transition-1);
  }

  .navbar-link:is(:hover, :focus-visible) {
    opacity: 0.7;
  }

  .header.active .navbar-link {
    color: var(--charcoal);
  }

  .header.active .navbar-link:is(:hover, :focus-visible) {
    opacity: 1;
    color: var(--violet-blue-crayola);
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 50px);
    text-align: left;
  }

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .hero-content {
    max-width: unset;
    margin-inline: 0;
  }

  .btn-wrapper {
    justify-content: flex-start;
  }



  /**
   * STATS
   */

  .stats-card {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * PROJECT
   */

  .project .section-title {
    max-width: 32ch;
    margin-inline: auto;
  }



  /**
   * CTA
   */

  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta .btn {
    min-width: max-content;
  }

  .cta .section-title {
    max-width: 30ch;
    margin-block-end: 0;
  }



  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /* custom cursor */
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #883ee1;
  }

  .cursor-outline {
    width: 45px;
    height: 45px;
    border: 1.5px solid #ac7de6;
  }

  .cursor-dot,
  .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1000;
    pointer-events: none;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }



  /**
   * HERO
   */

  .hero-text {
    padding-inline-end: 100px;
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * STATS
   */

  .stats .container {
    max-width: 70%;
  }

  .stats-card {
    padding: 60px;
  }



  /**
   * PROJECT
   */

  .project .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * Team
   */

  .team .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * FOOTER
   */

  address.footer-text {
    padding-inline-end: 100px;
    margin-block-end: 16px;
  }

}





/**
 * responsive for large than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1320px;
  }



  /**
   * FEATURE
   */

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

}