@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Square+Peg&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');




* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
}
.validate-has-error {
    font-size: 14px;
    color: #dc6054;
}

.dm_sans{
    font-family: "DM Sans", sans-serif;

}

.urbanist {
  font-family: "Urbanist", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}


.montserrat {
  font-family: "Montserrat", sans-serif;
}

.squareg {
  font-family: "Square Peg", cursive;
}


.style_script{
  font-family: "Style Script", cursive;
}



.strengths_section {
  border-radius: 30px 30px 0px 0px;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-animate {
  animation: fadeDown 0.8s ease-out forwards;
}



@keyframes menuFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item {
  opacity: 0;
  animation: menuFadeUp 0.6s ease forwards;
}

/* Delay each item slightly */
.menu-item:nth-child(1) {
  animation-delay: 0.3s;
}

.menu-item:nth-child(2) {
  animation-delay: 0.45s;
}

.menu-item:nth-child(3) {
  animation-delay: 0.6s;
}

.group:hover .z-10 {
  color: white;
}



#progress-line {
  height: 0;
  transition: height 0.45s cubic-bezier(.2, .9, .2, 1);
  transform-origin: top;
  z-index: 5;
}

.step {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(.2, .9, .2, 1);
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.step .rounded-full {
  position: relative;
  z-index: 20;
}



.main_section_bg {
  background-image: url(../images/section_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}