  .home-bg-div{
    background-color: #F9F5F0;;
  }
  .home-main{
    /* min-height: 600px; */
    height: auto;
    width: 100%;
    /* background-color: red; */
    min-height: 1150px;
    /* background: linear-gradient(123.95deg, #0F0125 13.46%, #1B1945 70.12%); */
    background-image: url('/images/V22_images/Image.svg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 72px;
    padding-top: 40px;
  }
  .home-container{
    width: 100%;
    max-width: 800px;
    /* min-height: 980px; */
    height: auto;
    /* height: 700px;  */
    /* background-color: green; */
    margin-top: -380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
  }
  .home-container-main-heading{
    font-size: 70px;
    font-weight: 900;
    line-height: 92.88px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    animation:
        slideUp 0.75s .5s cubic-bezier(0.17,.88,.32,1.27) both,
        fadeIns .25s .5s ease-in both;
    text-align: center;
    height: 93px;
  }
  .home-container-image{
      height: 531px;
      object-fit: contain;
      display: none;
      position: absolute;
      top: -34px;

  }

  .home-container-2{
    width: 100%;
    max-width: 500px;
    height: 136px;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .home-container-2 h5{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #E0E0E0;
    margin: 0;
  }
  .home-container-2 button{
    font-size: 16px;
    font-weight: 600;
    line-height: 20.64px;
    letter-spacing: -0.03em;
    width: 178px;
    padding: 10px 20px;
    border-radius: 51px;
    background: linear-gradient(164.29deg, #3D38AF -18.82%, #7873EC 153.71%);
    border: none;
    color: #FFFFFF;
    margin-top: 15px;

  }
  .phone-view-div{
    display: none;
  }

  .fade-in-text {
  opacity: 0; /* Initially invisible */
  animation: fadeIn 2s ease-in  forwards; /* Apply fade-in animation */
  }

@keyframes fadeIn {
  from {
    opacity: 0; /* Start fully transparent */
  }
  to {
    opacity: 1; /* End fully visible */
  }
}


:root{
	--headingSize: 80px;
	--background-color: black;
}


span{
  display: inline-block;
  overflow: hidden;
  animation: .6s swift-up ease-in-out forwards;
  height: 100%;
  animation-delay: 1s; /* Added delay of 3s */

}

i{
  font-style: normal;
  position: relative;
  top: var(--headingSize);
  animation: .8s swift-up ease-in-out forwards;
  animation-delay: 1s; /* Added delay of 3s */
  height: 100%;
}

@keyframes swift-up {
  to {
    top: 0;
  }
}

@media screen and (max-width: 1000px){
	.container{
		width: auto;
		margin: 0 10%;
	}

	:root{
		--headingSize: 70px;
	}
}
.hotel-side-div{
  position: absolute;
  top: 307px;
  right: -162px;
  display: none;
  animation: imagescrollup 1s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

.hotel-side-div img{
  height: 71px;
}
@keyframes imagescrollup {
  0%{
    top: 207px;
  }
  100%{
    top:190px;
  }

}
.hotel-side-div-right{
  position: absolute;
  top: 193px;
  left: -169px;
  display: none;
  animation: imagescrollupright 1s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}
.hotel-side-div-right img{
  height: 71px;
}
@keyframes imagescrollupright {
  0%{
    top: 93px;
  }
  100%{
    top:76px;
  }

}
.smooth-tansition {

 display: flex;
 /* transition: opacity 0.5s ease, visibility 0.5s ease;  */
 transition: all 0.4s ease;

}

.image-style{
  animation: image-style-1 .5s;
  /* animation-delay: 1s; */
}
@keyframes image-style-1 {
  0%{
    opacity: 0;
  }
  100%{
  opacity: 1;
  transition: all 0.4s ease;
  }

}
.text-animation{
  animation: text-animation-1 .3s ease-in 2.2s 1 normal forwards ;
}
@keyframes text-animation-1 {
  0%{
    /* opacity: 0; */
    transform: translateY(0px)
  }
  100%{
   /* opacity: 1;  */
   transform: translateY(-125px)

  }
}
.text-animation-2{
  animation: text-animation-2 .3s ease-in 2.2s 1 normal forwards ;
}
@keyframes text-animation-2 {
  0%{
    /* opacity: 0; */
    transform: translateY(0px)
  }
  100%{
   /* opacity: 1;  */

   transform: translateY(380px)

  }
}

.text-slide-up {
  position: relative;
  display: inline-block;
  /* overflow: hidden; */
  height: 93px; /* Match the height of the heading */
  /* z-index: 1000; */
}

.text-slide-up span {
  display: inline-block;
  transform: translateY(0);
  animation: slide-up 0.3s ease-in 2.2s 1 forwards;
  font-size: 70px;
  font-weight: 900;
  line-height: 92.88px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-125px);
  }
}

.status-div{
  position: absolute;
  top: 924px;
  width: 100%;
  height: 140px;
  /* background-color: red; */
}
.status-div-phone-view{
  display: none;
  margin-top: 20px;
}
.status-main{
  max-width: 1180px;
  width: 100%;
  background: #09081191;
  height: 100%;
  margin: 0 auto;
  /* padding-left: 20px;
  padding-right: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 31px;
}

.status-container{
width: 100%;
 /* background-color: #3D38AF;  */
 padding :18px 50px;
 display: grid;
 grid-template-columns: 1fr 1fr 1fr;
}
/* .status-left-div, .status-center-div, .status-right-div{
  background-color: red;
} */
.status-left-div-h1, .status-center-div-h1, .status-right-div-h1{
  font-size: 46px;
  font-weight: 700;
  line-height: 61.92px;
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
  color: white;

}
.status-left-div h5, .status-center-div h5, .status-right-div h5{
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.8px;
  letter-spacing: -0.03em;
  color: white;
}
.status-center-div, .status-right-div {
  border-left: 2px solid #FFFFFF;
  padding-left:40px ;
}
.section-2-div{
  width: 100%;
  height: auto;
  /* background-color: red; */
}

.top-content-main-2{
  background-color: #F9F5F0;
  width: 100%;
  height: 31px;
  border-top-right-radius:50px ;
  border-top-left-radius:50px ;
  margin-top: -21px;
}
.section-border{
  border-radius: 50px 50px 0px 0px;
}
.content-main-home{
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  height: auto;
  padding-top: 50px;
  max-width: 1180px;
  width: 100%;
  /* margin-left: 20px;
  margin-right: 20px; */
  padding: 3px 0;
  /* border: 1px solid #1D1950 ; */
  border-radius: 32px;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;

}
.content-home{
  /* background-color: rgb(135, 63, 63); */
  width: 100%;
  /* height: 1345px;  */
  margin: 48px 56px 50px 56px ;
}
.guest-experience-div{
  /* background-color: yellow; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.guest-experience-div div{
  /* background-color: pink !important; */
  width: 625px;
  display: flex;
  justify-content: center;
  /* height: 246px; */
  flex-direction: column;
  align-items: center;

}
.guest-experience-div div div{
  width: 276px;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #534FC8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;


}
.guest-experience-div div div h4{
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.9px;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #534FC7 0%, #6274FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.guest-experience-div-div-h1{
  margin: 0px;
  font-size: 48px;
  font-weight: 700;
  line-height: 59.6px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 13px;


}
.guest-experience-div div h3{
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  margin: 0px;
  color: #5B5B5B;
}
.analytics-and-report-div{
  /* background-color: blue; */
  background: linear-gradient(90deg, #BBE0ED -15.82%, #B3F4FF 182.46%);
  width: 100%;
  /* height: 512px; */
  border-radius: 28.69px;
  display: flex;
}
.analytics-and-report-div-div{
  width: 100%;
  /* background-color: orange; */
  margin: 32px 32px 23px 32px ;

}
.analytics-and-report-heading-div{
  /* background-color: green !important; */
  margin: 0px;
  width: 392px;
}
.analytics-and-report-heading-div h3{
  margin: 0%;
  font-size: 24px;
  font-weight: 500;
  line-height: 23.67px;
  letter-spacing: -0.2150000035762787px;
  text-align: left;
  color: #001F1F;

}
.analytics-and-report-heading-div h6{
  margin: 0%;
  font-family: Inter;
  font-size: 15.35px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #6A7878;
  margin-top: 8px;
}
.analytics-and-report-image-div{
  width: 100%;
  /* background-color: salmon; */
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.analytics-and-report-image-1, .analytics-and-report-image-2 {
  width: 100%;
  height: 100%;
}
.analytics-and-report-image-1 img ,.analytics-and-report-image-2 img{
  height:340px;
  object-fit: contain;
  max-width: none;
}
.Food-Beverages-Ordering-container{
  /* background-color: green; */
  width: 100%;
  height: auto;
}
.Food-Beverages-Ordering-container-div-1{
  display: grid;
  grid-template-columns:665px 438px ;
  /* grid-template-columns:3fr 2fr ; */
  column-gap:20px ;
}
.Food-Beverages-Ordering-div , .Restaurant-Booking-div{
  /* background-color: yellow; */
  background: linear-gradient(90deg, #E9F59E -15.82%, #BEFFDD 123.16%);
  border-radius: 28.69px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04) inset;
  backdrop-filter: blur(0px)
}
.Food-Beverages-Ordering-main{
  margin: 28px 25px 0px 32px ;
  /* background-color: red; */
}
.Food-Beverages-Ordering-image-div{
  display: grid;
  grid-template-columns: 282px 330px;
  column-gap:10px;
  margin-top:15px ;
}
.Food-Beverages-Ordering-image-div img{
  width: 100%;
  object-fit: contain;
}
.Food-Beverages-Ordering-inner-image{
  margin-top: 32px;
}
.Food-Beverages-Ordering-inner-image1{
  width: 100%;
  height: 140px;
  margin-top: 12px;
}
.Food-Beverages-Ordering-inner-image2{
  width: 100%;
  height: 150px;
  margin-top: 10px;
  }
.Restaurant-Booking-container{
  width: 100%;
  display: flex;
  justify-content: center;
  /* background-color: #534FC7; */
  margin-top: 15px;
}
.Restaurant-Booking-container img{
  height: 358px;
  object-fit: contain;
}
.Food-Beverages-Ordering-container-div-2{
  margin-top: 15px;
  display: grid;
  grid-template-columns:778px 342px;
  column-gap:8px ;
}
.all-service{
  background: linear-gradient(90deg, #E9F59E -15.82%, #BEFFDD 123.16%);
  box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04) inset;
  backdrop-filter: blur(0px);
  border-radius: 28.69px;
}
.all-service-main{
  margin: 28px 32px ;
  /* background-color: red; */
}
.all-service-div{
  /* background-color: green !important; */
  margin: 0px;
}
.all-service-div h3{
  margin: 0%;
  font-size: 24px;
  font-weight: 500;
  line-height: 23.67px;
  letter-spacing: -0.2150000035762787px;
  text-align: left;
  color: #001F1F;

}
.all-service-div h6{
  margin: 0%;
  font-family: Inter;
  font-size: 15.35px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #6A7878;
  margin-top: 8px;
}
.all-service-image-div{
  margin-top: 15px;

}
.all-service-image-div img{
  height: 372px;
  object-fit: contain;
}
.comments-all-service{
  background: radial-gradient(122.39% 173.44% at 100% -4950%, #008C63 0%, #63EBCB 30%, #003D3D 100%);
  box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04) inset;
  backdrop-filter: blur(0px);
  border-radius: 28.69px;
}
.comments-all-service-container{
  margin: 40px 34px ;
  /* width: 100%; */
  /* background-color: #534FC8; */
}
.comments-all-service-container h6{
  margin: 0px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 1);

}
.commented-person-div{
  /* background-color: yellow; */
  height: 80px;
  margin: 40px 34px ;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  column-gap: 5px;
  margin-top: 80px;
}
.commented-person-div img{
  height: 100%;
  object-fit: contain;
  margin-top: 5px;
}
.commented-person-div div h4{
  font-family: Inter;
  font-size: 13.52px;
  font-weight: 600;
  line-height: 14.34px;
  margin: 0;
  background: rgba(205, 250, 206, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.commented-person-div div h5{
  font-family: Inter;
  font-size: 12.01px;
  font-weight: 400;
  line-height: 15.06px;
  margin: 0;
  background: rgba(205, 250, 206, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


}
.staff-application-image-div{
  width: 100%;
  /* background-color: salmon; */
  margin-top: 18px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 20px;
}
.staff-application-image-1, .staff-application-image-2 {
  width: 100%;
  height: 100%;
}
.staff-application-image-1 img {
  object-fit: contain;
  width: 700px;
  max-width: none;
}
.staff-application-image-2 img{
  width: 300.83px;
  object-fit: contain;
  margin-top: 29px;
}
.staff-div-div{
  width: 100%;
  margin: 32px 32px 0px 32px ;
  display: grid;
  grid-template-columns: 700px 315.83px;
  column-gap: 15px;
}
.staff-application-div{
  /* background-color: blue; */
  background: linear-gradient(90deg, #BBE0ED -15.82%, #B3F4FF 182.46%);
  width: 100%;
  height: 489px;
  border-radius: 28.69px;
  display: flex;
}
.al-section{
  width: 100%;
  /* height:854px ; */
  background: linear-gradient(180deg, #000000 0%, #332989 100%);
  display: flex;
  justify-content: center;
  margin: 0px;
  padding: 0px;

}
.al-section-div{
  width: 100%;
  max-width: 1180px;
  height: auto;
  /* background-color: #008C63; */
  display: flex;
  justify-content: center;
  margin:30px 0px 0px 0px;
  flex-direction: column;
  align-items: center;
}
.ai-section-container{
  width: 102px !important;
}
.ai-section-heading{
  background: linear-gradient(90deg, #FFFFFF 0%, #A4AFFF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

}
.color-white{
  color: white !important;
}
.ai-video-div{
  width: 873px;
  height: 490px;
  /* background-color: #534FC7; */
  margin: 0px;
  padding: 0px;
  border-radius: 24px 24px 0 0;
}
.ai-video-div video{
  /* width: 100%; */
  height: 100%;
  border-radius: 24px 24px 0 0;
}
.coustomer-response-div{
  width: 100%;
  background-color: #F9F5F0;
  padding-top: 40px;
  display: flex;
  justify-content: end;

}
.coustomer-response-main{
 /* background-color: #df6a10; */
 margin: 15px 0px 15px 15px;
 /* max-width: 1180px; */
 width: 100%;
 padding: 0px 40px;
 /* padding-left: 20px; */
}
.coustomer-response-main-h1{
  font-size: 40px;
  font-weight: 700;
  line-height: 64.8px;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: left;
}
.auto-scroll-customer-div{
  width: 100%;
  margin-top: 10px;
  /* background-color: #5B5B5B; */
  display: flex;
  overflow: hidden;
  white-space: nowrap;

}
.auto-scroll-customer-container{
  width: 380px;
  background-color: white;
  border-radius: 24px;
  padding:18px 24px 26px 18px;
  margin-right: 24px;
}

.auto-scroll-customer-message{
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  text-align: left;
  margin: 0px;
  margin-bottom: 15px;
  text-wrap: wrap;
  /* background-color: #008C63; */
  height: 156px;
  /* line-clamp */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  }
  .auto-scroll-customer-container img{
    width: 100% !important;
    object-fit: contain;
    height: auto !important;

  }
  .auto-scroll-customer-div-scroll{
    display: flex;
    animation: none;
    /* column-gap: 10px; */
    align-items: center;
  }
  .faq-section{
    background-color: #F9F5F0;
    width: 100%;
    margin-bottom: 63px;
  }
  .faq-div{
    max-width: 1180px;
    width: 100%;
    /* background-color: green; */
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .faq-div div{
    /* background-color: orange; */
    margin: 0 auto;
    width: 90%;
  }

  .faq-container {
    width: 670px;
    margin: 10px auto 50px auto;
    padding: 20px;
    /* background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #222;
  }

  .faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
  }

  .faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-question {
    background: #ffffff;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    width: 100% !important;
  }

  .faq-question:hover {
    color: black;

  }

  .faq-question img {
    transition: transform 0.3s ease; /* Smooth rotation transition */
  }

  .faq-question img.rotated {
    transform: rotate(45deg); /* Rotate the image */
  }


  .faq-answer {
    padding: 15px;
    background: #fff;
    display: none;
    border-top: 1px solid #ddd;
    width: 100% !important;
  }
  .join-div{
    width: 100%;
    background-image: url('/images/V22_images/Bg_image.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
  }
  .join-container{
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .policy-div{
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 92px;
  }
  .policy-div h6{
    margin: 0px;
    text-align: center;
    color: #8b8a8a;
    line-height: 22px;
    font-weight: 400;
    font-size: 12px;
  }
  .join-container-div{
    /* background-color: green; */
    margin-top:40px ;
    width: 500px;
  }
  .join-container-div-h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 64.8px;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0px;

  }
  .join-container-div h5{
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: 0.02em;
    text-align: center;

  }
  .job-inputfield-div{
    /* background-color: orange; */
    margin-top: 20px;
    display: flex;
    column-gap: 10px;

  }
  .job-inputField-main-div{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
  }
  .job-inputfield-div-input{
    height: 50px;
    width: 436px;
    background-color: white;
    border: 1px solid #C1C1C1;
    font-size: 16px;
    padding: 0px 10px 0px 10px;
    border-radius: 8px;
  }
  .job-inputfield-div-input:focus  {
    border-color: blue;
    outline: none;
  }
  .job-inputfield-div-input::placeholder{
    color:#797979 ;

  }
  .job-inputfield-div button{
    height: 50px;
    background-color: #000000;
    color:#FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.02em;
    text-align: center;
    border-radius: 8px;
    padding: 11px 20px;
    border: none;
  }
  @media only screen and (max-width: 1244px) {

}

/* hover for button */
#book-free-demo-hover {
    position: relative;
    /* padding: 10px 20px; */
    color: #fff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Before Effect */
#book-free-demo-hover::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50%;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* After Effect */
#book-free-demo-hover::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -100%;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effects */
#book-free-demo-hover:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

#book-free-demo-hover:hover::before {
    left: 120%;
    opacity: 0.5;
}

#book-free-demo-hover:hover::after {
    left: 200%;
    opacity: 0.6;
}



/* igyugyuyuyug */
/* hover for button */
#book-free-demo-hover-booster-1 {
    position: relative;
    /* padding: 10px 20px; */
    color: #fff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Before Effect */
#book-free-demo-hover-booster-1::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50%;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* After Effect */
#book-free-demo-hover-booster-1::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -100%;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effects */
#book-free-demo-hover-booster-1:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

#book-free-demo-hover-booster-1:hover::before {
    left: 120%;
    opacity: 0.5;
}

#book-free-demo-hover-booster-1:hover::after {
    left: 200%;
    opacity: 0.6;
}

/* igyugyuyuyug */
/* hover for button */
#book-free-demo-hover-booster-2 {
    position: relative;
    /* padding: 10px 20px; */
    color: #fff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Before Effect */
#book-free-demo-hover-booster-2::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50%;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* After Effect */
#book-free-demo-hover-booster-2::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -100%;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effects */
#book-free-demo-hover-booster-2:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

#book-free-demo-hover-booster-2:hover::before {
    left: 120%;
    opacity: 0.5;
}

#book-free-demo-hover-booster-2:hover::after {
    left: 200%;
    opacity: 0.6;
}


/* igyugyuyuyug */
/* hover for button */
#book-free-demo-hover-booster-4 {
    position: relative;
    /* padding: 10px 20px; */
    color: #fff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Before Effect */
#book-free-demo-hover-booster-4::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50%;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* After Effect */
#book-free-demo-hover-booster-4::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -100%;
    background: #fff;
    opacity: 0;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effects */
#book-free-demo-hover-booster-4:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

#book-free-demo-hover-booster-4:hover::before {
    left: 120%;
    opacity: 0.5;
}

#book-free-demo-hover-booster-4:hover::after {
    left: 200%;
    opacity: 0.6;
}




