@import url("https://fonts.googleapis.com/css2?family=Epilogue: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");

* {
  font-family: "Epilogue", sans-serif;
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

[x-cloak] {
  display: none !important;
}

#main {
  position: relative;
  overflow: hidden;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.benefit-list {
  list-style-image: url(../public/images/ticklist.png);
}

@keyframes show-transition {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes show-text {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes press {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

/*====================
 Mobile Responsive Menu
 ===================== */

header {
  padding-block: 1.2rem;
  display: flex;
  justify-content: space-between;
}

.hambergur div {
  width: 1.6rem;
  height: 2px;
  border: 1px solid #fff;
  margin-bottom: 5px;
  border-radius: 5px;
}

.hambergur div:nth-child(2) {
  width: 1.3rem;
  background: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  padding: 1rem;
}

@media (min-width: 720px) {
  .container {
    padding: 0.5rem 2rem;
  }
}

.fullscreen {
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  position: fixed;
  background: white;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  bottom: 0%;
  right: 0%;
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  z-index: 99;
}

.fullscreen ul li {
  padding: 0.5rem 1rem;
}

.fullscreen .close {
  position: absolute;
  cursor: pointer;
  top: 3.3rem;
  right: 2.355rem;
  width: 2rem;
  right: 4%;
  height: 2rem;
  transform: rotate(45deg);
}

.fullscreen .close div {
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.fullscreen .close div:before,
.fullscreen .close div:after {
  content: "";
  width: 2rem;
  height: 2px;
  border: 1px solid #012455;
  position: absolute;
  border-radius: 5px;
}

.fullscreen .close div:after {
  transform: rotate(90deg);
  background: #012455;
}

.fullscreen.active {
  -webkit-clip-path: circle(140% at 96.5% 4%);
  clip-path: circle(140% at 96.5% 4%);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

.fullscreen.active ul>li {
  -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
  animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}

.fullscreen.active .right-menu-desktop div {
  -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
  animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}

.fullscreen.reverse_anim {
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

@-webkit-keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(2deg);
  }

  100% {
    opacity: 1;
  }
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(2deg);
  }

  100% {
    opacity: 1;
  }
}

.logo a {
  color: #fff;
  font-size: 1.2rem;
}

/*====================
  Mobile Responsive Menu
  ===================== */

#cursor {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  /* mix-blend-mode: difference; */
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 36px;
    height: 36px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    border: solid 1px rgb(222, 222, 222);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  #cursor.arrow .cursor__circle {
    width: 128px;
    height: 128px;
    background-color: #33cc99;
    border-color: #33cc99;
  }

  #cursor.arrow::after {
    content: "Read More";
    color: white;
    position: absolute;
    text-align: center;
    font-size: 14px;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-image: url("https://svgshare.com/i/MzQ.svg");
    background-repeat: no-repeat;
    background-position: center;
  }

  #cursor.phone .cursor__circle,
  #cursor.pin .cursor__circle {
    width: 80px;
    height: 80px;
    background-color: #03152a;
    border-color: #03152a;
  }

  #cursor.phone::after {
    content: "";
    color: white;
    position: absolute;
    text-align: center;
    font-size: 14px;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-image: url("../public/images/phone-img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  #cursor.pin::after {
    content: "";
    color: white;
    position: absolute;
    text-align: center;
    font-size: 14px;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-image: url("../public/images/pin-img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  #cursor.subtle .cursor__circle {
    opacity: 0.16;
  }

  #cursor.overlay .cursor__circle {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 222, 193, 0.08);
    border-color: transparent;
  }
}

.onScroll {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s 0.3s;
}

.aos-animate .onScroll {
  clip-path: inset(0);
}

.spin-text {
  font-size: 90px;
  font-weight: 700;
  text-shadow: 2px 2px 0 #012455, -2px 2px 0 #012455, 2px -2px 0 #012455,
    -2px -2px 0 #012455;
}

/* .text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
} */
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* .text p span {
  position: absolute;
  left: 50%;
  font-size: 1.1em;
  transform-origin: 0 121px;
} */

/* Marquee Css */

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.animate-marquee2 {
  animation: marquee2 25s linear infinite;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee2 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/* Marquee Css */

/* .card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -32px;
  background: #33cc99;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: all 0.8s ease-out;
}

.card:hover:before {
  transform: scale(35);
} */

.center-hover::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
}

.center-hover::before {
  clip-path: circle(0.5% at 50% 50%);
  background: #33cc99;
  transition: 0.8s;
  opacity: 0;
}

.center-hover:hover::before {
  clip-path: circle(100% at 50% 50%);
  opacity: 1;
}

.center-hover-social::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
}

.center-hover-social::before {
  clip-path: circle(0.5% at 50% 50%);
  background: white;
  transition: 0.8s;
  opacity: 0;
}

.center-hover-social:hover::before {
  clip-path: circle(100% at 50% 50%);
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .parent-hover:hover .bubble-nodes {
    display: block;
  }
}

.bubble-nodes {
  position: relative;
  display: none;
  animation: moveForward 2.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.parent-hover .bubble-nodes :nth-child(2) {
  position: absolute;
  bottom: 27px;
  right: -73px;
  background-color: #33cc99;
  width: 64px;
  height: 56px;
  border-radius: 12px;
  /* display: none; */
}

.parent-hover .bubble-nodes :nth-child(3) {
  position: absolute;
  bottom: -64px;
  right: 0px;
  background-color: #33cc99;
  width: 50px;
  height: 35px;
  border-radius: 12px;
  animation: moveForward 2.5s cubic-bezier(0.3, 0, 0.3, 1) forwards;
  /* display: none; */
}

.parent-hover .bubble-nodes :nth-child(4) {
  position: absolute;
  bottom: -40px;
  right: -73px;
  background-color: #33cc99;
  width: 58px;
  height: 47px;
  border-radius: 12px;
  /* display: none; */
}

@keyframes moveForward {
  0% {
    bottom: 0;
    right: 10%;
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    bottom: -25px;
    right: -2px;
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    bottom: -25px;
    right: -2px;
    opacity: 1;
    transform: scale(1);
  }
}

.animatedImage {
  animation: animateImage 0.6s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

@keyframes animateImage {
  from {
    transform: scale(0);
    opacity: 0.2;
    filter: blur(12px);
  }

  to {
    scale: (1);
    transform: scale(1);
    filter: none;
  }
}

.transparent-text {
  font-weight: 600;
  text-shadow: 1px 1px 0 #ffffff, -1px 1px 0 #ffffff, 1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff;
}

.tobottom {
  background: linear-gradient(180deg, rgba(65, 85, 114, 0.15) 0%, rgba(27, 27, 30, 0.1) 100%);
}

.animate-marquee-vertically {
  animation: marqueeVertically 25s linear infinite;
}

.animate-marquee2-vertically {
  animation: marqueeVertically2 25s linear infinite;
}

@keyframes marqueeVertically {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes marqueeVertically2 {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}



.animate-marquee-vertically2 {
  animation: marqueeVerticallyreverse 25s linear infinite;
}

.animate-marquee2-vertically2 {
  animation: marqueeVerticallyreverse2 25s linear infinite;
}

@keyframes marqueeVerticallyreverse {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes marqueeVerticallyreverse2 {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #012455;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}




.button-magnetic .button {
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  background: #5271FF;
  width: 97px;
  height: 97px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #5271FF;
  box-shadow: 0px 32px 54px 0px rgba(37, 138, 255, 0.22);
}

.button-magnetic .btn_issues_Hover {
  width: max-content;
  height: max-content;
  cursor: pointer;
  color: #fff;
  border-radius: 0;
  background: transparent !important;
  display: block;
  border: none;
  box-shadow: none;
}

/* .btn_fill_bg{
  display: inline-grid;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 10px;
  width: 150px;
  margin: 15px 5px ;
  text-decoration: none;
  text-align: center;
  color: #000;
  overflow: hidden;
  position: relative;
} */

/* Style for the button text (span) */
.btn_fill_bg span {
  position: relative;
  z-index: 2;
}

/* Style for the background fill effect */
.background-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e74c3c;
  /* Change to your desired background color */
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.2s ease;
  z-index: 1;
  bottom: 0;
  left: 0;
}

.mf-cursor {
  color: #5271FF;
}

/* .-color-primary {
  color: #5271FF; } */


.card {
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}

/* Define the keyframe animation */
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
    /* Rotate 0 degrees at the start */
  }

  100% {
    transform: rotate(360deg);
    /* Rotate 360 degrees (one full turn) at the end */
  }
}

/* Apply the animation to your div */
.rotating-div {
  animation: rotateAnimation 12s linear infinite;
  /* Apply the animation with a duration of 4 seconds and repeat infinitely */
}

.navigation ul {
  position: relative;
}

.navigation ul::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: white;
  width: 5px;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}

.navigation li {
  padding-left: 1rem;
  position: relative;
}

.navigation li a {
  color: #dadada69;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 32px;
  transition: all 0.5 ease-in-out;
}

.navigation li.active a::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  width: 5px;
  height: 100%;
  background-color: #c0bcbc;
  border-radius: 10px;
  z-index: 1;
}

.navigation li a:hover {
  color: white;
}

.navigation li.active a {
  color: white;
}

.glass_effect {
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.79);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12.5px);
}

.box-item {
  -webkit-backface-visibility: hidden;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 40px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}
