:root {
  --bodyFont: "Poppins", sans-serif;
  --titleFont: "Tomorrow", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  /* Color styles */
  --primaryColor: #28d0e8;
  --primaryColor2: #a7ecf6;
  --primaryColor3: #82e4f2;
  --primaryColor4: #4dd8ec;
  --primaryColor5: #1c92a2;
  --primaryColor5: #187f8e;
  --secondaryColor: #fddc8b;
  --secondaryColor2: #22302b;
  --titleColor: #ffffff;
  --textColor: #ffffff;
  --bodyColor: #0a0b19;
  --bodyColor2: #ffffff0a;
  --blackColor: #090908;
  --whiteColor: #ffffff;
  --menuColor: #ffffff;
  --borderColor: #e6e6e6;
  --borderColor2: #ffffff14;
  --btnTextColor: #ffffff;
  --btnTextHoverColor: #28d0e8;
  --btnBgColor: #28d0e8;
  --btnBgHoverColor: #187f8e;
  --linkColor: #ffffff;
  --linkHoverColor: #28d0e8;
  --globalColor: #666666;
  --formBg: #107658;
  --gray77: #777777;
  --gray99: #999999;
  --lightColor: #969696;
  --neutralColor0: #ffffff;
  --neutralColor10: #fafafa;
  --neutralColor20: #f5f5f6;
  --neutralColor30: #ebebed;
  --neutralColor40: #dfdfe1;
  --neutralColor50: #c2c2c6;
  --neutralColor60: #b3b3b8;
  --neutralColor70: #a7a7ac;
  --neutralColor80: #98999e;
  --neutralColor90: #898a91;
  --neutralColor100: #7b7b83;
  --neutralColor200: #6c6d75;
  --neutralColor300: #5d5e67;
  --neutralColor400: #51525c;
  --neutralColor500: #42434e;
  --neutralColor600: #363742;
  --neutralColor700: #252632;
  --neutralColor800: #161725;
  --neutralColor900: #0a0b19;
  --neutralColor1000: #0d0d0d;
  --shadow4: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  --shadow6: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  --gradient-p1: linear-gradient(
    90deg,
    rgba(255, 222, 159, 0.47) 0%,
    rgba(255, 222, 159, 0.12) 51.11%,
    rgba(255, 222, 159, 0) 100%
  );
  --box-shadow-p1: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.infnox-hover-active .image-area img {
  max-width: -webkit-fill-available;
}
.infnox-hover-active .single-item {
  position: relative;
}
.infnox-hover-active .single-item::before, .infnox-hover-active .single-item::after {
  content: "";
  position: absolute;
  background-color: rgb(230, 229, 229);
  right: 0;
  z-index: 0;
  -webkit-clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 0% 100%, 70% 50%, 0% 0%);
          clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 0% 100%, 70% 50%, 0% 0%);
  height: 480px;
  width: 320px;
  transition: all 0.5s ease-in-out;
}
.infnox-hover-active .single-item::after {
  transform: translateX(-50%);
  background-color: rgb(249, 93, 0);
  opacity: 0;
}
.infnox-hover-active .single-item img {
  opacity: 1;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}
.infnox-hover-active .single-item:hover::after,
.infnox-hover-active .single-item:hover img, .infnox-hover-active .single-item.active::after,
.infnox-hover-active .single-item.active img {
  opacity: 1;
  transform: translateX(0%);
}
.infnox-hover-active .single-item:hover img, .infnox-hover-active .single-item.active img {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.infnox-hover-active .single-item:hover h5, .infnox-hover-active .single-item.active h5 {
  color: var(--primaryColor2);
}

.cus-z1 {
  z-index: 1;
}

.position-relative {
  position: relative !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.d-center {
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=welcome.css.map */