@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&family=SUSE:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Permanent+Marker&family=SUSE:wght@100..800&display=swap");
.bg-gradient-custom {
  background: linear-gradient(90deg, #c0c0c0, #403f3f);
}
/* Custom styles */
.bg-primary {
  background-color: #000;
}

.gradient-text {
  background: linear-gradient(90deg, #c0c0c0, #403f3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hover\:text-secondary:hover {
  color: #ffffff;
}
.text-slate-300 {
  color: #e2e8f0;
}
.hover\:text-white:hover {
  color: #ffffff;
}
.bg-mycolor {
  background-color: #2d3748;
}
.permanent-marker-regular {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  /* line-height: 70px !important; */
}
.suse {
  font-family: "SUSE", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.outlined-text {
  color: transparent; /* Make the fill color transparent */
  -webkit-text-stroke: 2px black; /* Outline the text with black color */
  text-stroke: 2px black; /* For non-WebKit browsers */
  font-weight: bold; /* Optional: make the outline thicker */
}
.outlined-text1 {
  color: transparent !important; /* Make the fill color transparent */
  -webkit-text-stroke: 2px #ffffff; /* Outline the text with black color */
  text-stroke: 2px #ffffff; /* For non-WebKit browsers */
  font-weight: bold; /* Optional: make the outline thicker */
}
.stepbox1 {
  background: linear-gradient(
    11deg,
    hsl(0deg 0.36% 4.91% / 0%) -13%,
    #0000002b 53.5%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px; /* Set this to the desired width of your container */
  height: 300px; /* Set this to the desired height of your container */
}

.wave-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1; /* Position behind the image */
  animation: wave 4s infinite ease-in-out;
  opacity: 0;
}

.circle1 {
  width: 200px;
  height: 200px;
  background-color: rgba(231, 129, 49, 0.302);
  animation-delay: 0s;
}

.circle2 {
  width: 250px;
  height: 250px;
  background-color: rgb(231, 129, 49, 0.3);
  animation-delay: 1s;
}

.circle3 {
  width: 300px;
  height: 300px;
  background-color: rgb(231, 129, 49, 0.3);
  animation-delay: 2s;
}

@keyframes wave {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.image {
  position: relative;
  z-index: 1; /* Position image above the wave circles */
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.heading-text {
  /* position: absolute;
    top: 0px;
    left: 50%; */

  font-size: 180px;
  /* font-style: normal;
    font-weight: 700;
    line-height: 75%; */
  opacity: 0.5;
}
.stepbox {
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0) -13%,
    #ede4e42b 53.5%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepbox:hover {
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Lighten the background on hover */
  transform: scale(1.05); /* Slightly increase the size */
  transition: all 0.3s ease-in-out; /* Smooth transition */
}
.wrapper {
  height: 100vh;
  background: #333;
}

#main-div {
  position: fixed;
  right: 20px;
  bottom: 55px;
  z-index: 999;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  font-size: 20px;
  color: #478321;
  cursor: pointer;
  /* background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5); */
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#main-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(90deg, #419035, #adf732);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#main-button.open ~ button {
  visibility: visible;
  right: 70px;
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}

#main-button ~ .telegram-color {
  background: linear-gradient(0deg, #017ab1, #01abe6);
}

#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00b100, #09db09);
}

#main-button ~ .messenger-color {
  background: linear-gradient(0deg, #0078ff, #00c6ff);
}

#main-button.open ~ a {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
  }
}

.open {
  animation-iteration-count: 1;
}
.owl-carousel .owl-stage-outer {
  z-index: -1 !important;
}



