html{
  scroll-behavior: smooth;
  overflow-X: hidden;
}

body {
  overflow-x: hidden;
  /* opacity: 0; */
  animation: fadeIn 1s ease-in forwards;
  position: relative;
}

.logo-body-animation {
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.logo-body-animation-img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 80px;
  height: 80px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.logo-body-animation-img-wrapper img {
  animation: logo-loader 1s ease-in-out;
}
video{
height: 100%;
width: 100%;

}

@keyframes logo-loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* @keyframes fadeIn {
  to {
    opacity: 1;
  }
} */

/* Loader overlay */
.loader-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loader-overlay.active {
  display: flex;
}


/* .loader {
 position: absolute;
 top: calc(50% - 1.25em);
 left: calc(50% - 1.25em);
} */

/* Logo animation */
.logo-animate img {
  opacity: 0;
  transform: scale(0.9);
  animation: logoFadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes logoFadeIn {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


a:hover {
  cursor: pointer;
}

/* navbar */
header {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0;
  background-color: rgb(247, 214, 97) ;
}

 /* rgb(230, 195, 70) */
nav {
  position: relative;
  display: flex;
  column-gap: 60px;
  align-items: center;
}

nav a {
  font-family:poppins;
  font-weight: 500;
  font-size: 18px;
  color: rgb(14, 12, 12);
}

.drop-down-items {
  min-width: 300px;
  padding: 20px 20px 0 20px;
}

.drop-down-items a {
  font-weight: 500;
  font-family: spectral;
  font-size: 18px;
  display: block;
  padding-bottom: 20px;
}

.drop-down-items1 a {
  font-weight: 500;
  font-family: spectral;
  font-size: 18px;
}

.drop-down-list {
  display: none;
  position: absolute; /* Optional: for dropdown positioning */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  background-color: #fffdf5;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 10PX;
}

.drop-down-wrapper:hover .drop-down-list, .drop-down-items:hover .drop-down-list {
  display: block;
  margin-top: 1%;
}

.drop-down-hover {
  cursor: default;
  padding: 20% 0;
}

.drop-down-items a:hover, .drop-down-items1 a:hover {
  color: #eca406;
}

#header-item-4 {
  display: none;
}

.header-item-4-1 {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

  @keyframes fade-down {
    from {
      transform: translateY(-550%);
    }
    to {
      transform: translateY(0);
    }
  }

  .underline {
    position: absolute;
    top: 125%;
    width: 90%;
    height: 2px;
    background-color: rgb(206, 206, 206);
    animation: fade-left 1.3s ease-in-out 1 1s;
  }

  @keyframes fade-left {
    from {
      transform: translateX(350%);
    }
    to {
      transform: translateX(0);
    }
  }

@media (min-width: 250px) {
  
  header {
    position: relative;
    width: 90%;
    justify-content: space-between;
    padding: 2% 5%;
  }

  #header-item-2, #header-item-3 {
    display: none;
  }

  #header-item-4 {
    display: block;
  }

  #header-item-5 nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .header-item-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 1s ease, opacity 1s ease;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: -2px 2px 2px rgb(182, 182, 182);
    padding: 20px;
    z-index: 100;
    width: 70%;
  }

  .header-item-5-1 {
    /* border-bottom: 1px solid rgb(206, 206, 206); */
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 40px;
    row-gap: 10px;
    position: relative;
  }

  .header-item-5-1 h2 {
    text-align: center;
    animation: fade-down 1.3s ease-in-out 1 1.3s;
  }
  
  .header-item-5-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    position: relative;
  }

  .header-item-5-2 a {
    border-bottom: 1px solid rgb(206, 206, 206);
    padding: 25px 0;
    width: 80%;
  }

  .drop-down-wrapper1 a {
    border-bottom: none;
  }

  .drop-down-wrapper1 .first-a {
    margin-top: -15px;
  }

  .header-item-5-2 a:hover {
    color: rgb(251,202,23);
  }
  
  #header-item-5.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  #close-btn {
    position: absolute;
    display: flex;
    top: 50%;
    right: 105%;
    background-color:rgb(251,202,23);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(90, 90, 90);
  }

  .inner-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 490%;
    right: 10%;
    background-color: white;
    border: none;
    color: rgb(251,202,23);
    font-size: 18px;
    z-index: 1000;
  }

  .drop-down-items1 a {
    padding: 0;
    font-size: 12.8px;
  }

  .drop-down-wrapper1 {
    z-index: 1000;
    display: none;
    background-color: #e2e2e23a;
    padding: 10px 20px 20px 0;
    border-radius: 20px;
    margin-top: 30px;
    width: 100%;
  }

  #drop-down-wrapper1.active1 {
    display: block;
  }

  .drop-down-hover1 {
    cursor: default;
    position: relative;
  }

  .drop-down-items1 {
    margin: 5px 0 0 20px;
    display: flex;
    flex-direction: column;
    position: absolute;
    transform: translateY(-200%);
    align-items: center;
    justify-content: center;
    height: 100%;
    row-gap: 20px;
  }

  #drop-down-items1.active {
    transform: translateY(0);
    position: relative;
    padding: 0;
  }
  .support{
    height: 16px;
    width: 16px;
  }

  /* .search-icon-bar {
    width: 30px;
    height: 40px;
    display: flex;
    column-gap: 30px;
    padding: 5px 10px;
    border-radius: 50%;
    position: relative;
  }

  .mobile-view-search {
    width: 0px;
    outline: none;
    border: none;
  }

  .search-icon-bar:focus-within {
    transition: width 1s ease;
    width: 150px;
    border-radius: 20px;
    background-color: #fffdf5;
  }

  .search-icon-bar:focus-within .search-icon {
    left: 0;
    margin-left: 10%;
  }

  .search-icon-bar:focus-within .mobile-view-search {
    width: 100px;
    height: 30px;
    position: absolute;
    top: 20%;
    right: 15%;
  } */

  #header-item-2 nav a {
    font-size: 16px;
  }

  .logo {
    left: 0;
  }

  nav {
    column-gap: 30px;
  }

  .header-item-5-1 h2 {
    font-size: 18px;
  }

  .inner-close-btn {
    top: 380%;
  }
}

@media (min-width: 340px) {
  .inner-close-btn {
    top: 490%;
  }
}

@media (min-width: 478px) {
  .drop-down-items1 a {
    font-size: 16px;
  }

  .drop-down-wrapper1 {
    width: 90%;
  }
}

@media (min-width: 768px) {
  #header-item-2 nav a {
    font-size: 16px;
  }

  header {
    padding: 2% 5%;
  }

  .header-item-5 {
    width: 60%;
  }

  .drop-down-wrapper1 {
    width: 70%;
  }

  .header-item-5-1 h2 {
    font-size: 20px;
  }

  .inner-close-btn {
    top: 465%;
    right: 8%;
  }
  
}

@media (min-width: 992px) {

  header {
    position: relative;
    width: 90%;
    justify-content: space-between;
  }

  #header-item-2, #header-item-3 {
    display: block;
  }

  #header-item-4 {
    display: none;
  }

  #header-item-5 {
    display: none;
  }

  #header-item-2 nav a {
    font-size: 18px;
  }

  header {
    padding: 15px 5% 15px 5%;
  }

  .logo {
    left: 10%;
  }

  .header-item-5-1 h2 {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  nav {
    column-gap: 60px;
  }

  .header-item-5-1 h2 {
    font-size: 38px;
  }
}

/* navbar end */

/* .navbar {
  overflow: hidden;
  background-color: rgb(251,202,23);
  width: 100%;
}
.navbar a {
  float: left;
  font-size: 16px;
  color: rgb(14, 12, 12);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: Arial;
  font-weight: 600;
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(20, 20, 20);
  padding: 14px 16px;
  background-color: inherit;
  font-family:AriaL ;
  font-weight: 600;
  margin: 0
}
.navbar a:hover, .dropdown:hover .dropbtn {
color: white;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fffdf5;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10PX;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 500;
  font-family: spectral;
  font-size: 18px;
} */
.dropdown-content a:hover {

  color: #eca406;
  border-radius:20px;

}
.dropdown:hover .dropdown-content {
  display: block;
}
/* NAVEND */
a{
  text-decoration: none;
  color: black;
}
a:hover{
  color: azure;
}
/* .navbar */
    /* background-color: rgb(251,202,23);
    height: 100px;
    width: 100%;
    
}
.navbar.responsive a {
  float: none;
  display: block;
  /* text-align: left; */


 li{
    list-style: none;
    display: inline;
    margin: 15px;
} 
.outfit-uniquifier {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
@font-face {
    font-family: 'Gugi';
    font-style: normal;
    font-weight: 400;
    src: local('Gugi'), url('https://fonts.cdnfonts.com/s/15710/Gugi-Regular.woff') format('woff');
  }
  @font-face {
    font-family: 'Han Nari';
    font-style: normal;
    font-weight: 400;
    src: local('Han Nari'), url('https://fonts.cdnfonts.com/s/112248/Han Nari.woff') format('woff');
}
  .nav{
    display: flex;
    justify-items: center;
    justify-content:space-evenly;
    width: 100%;
  }
  *{
    padding: 0;
    margin: 0;
  }
  .img1{
    width: 100%;
    height: 100%;
    /* float: left; */

  }
  #top{ 
    margin-top: 35px;
  }
  .search{
    width: 100%;
    height: 35%;
    border-color: rgb(251,201,19);
    border-style:groove;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    outline: none;
   }
   #ak{
    margin-top: 810px;
    background-size: fit-content; 
  }

  .a1{
  display:flex;
  justify-content:center;
  gap: 50px;
  margin-top: 50px;
  }
  .a2{
  display:flex;
  justify-content:center;
  gap: 50px;
  margin-top: 50px;
  }

.slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

}

#slider{
  position: relative;
  left: 0;
  top: 5;
  animation: animate 20s  infinite;
  animation-duration: 10s;
}

@media (max-width: 500px) {
  #top {
    display: none;
  } 
}


@media(min-width: 250px) {

  #slider {
    width: 100vw;
    height: 200px;
    margin-bottom: 25px;
  }

  @keyframes animate{
    0%,100%{
      background-image: url(/assets/web3.png);
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    25%{
      background-image:url(/assets/web2.jpg);
    }
    50%{
      background-image:url(/assets/web1.jpg);
    }
  }
}

@media(min-width: 468px) {
  #slider {
    width: 100vw;
    height: 300px;
    margin-bottom: 25px;
  }

    .off {
    margin-top: 25px;
  }
}

@media(min-width: 768px) {
  #slider {
    width: 100vw;
    height: 350px;
    margin-bottom: 50px;
  }
}

@media(min-width: 992px) {
  #slider {
    width: 100vw;
    height: 60vh;
    top: 0;
    margin-bottom: 50px;
  }

  .off {
    margin-top: 0;
  }
}

@media(min-width: 1400px) {
  #slider {
    width: 100vw;
    height: 80vh;
    top: 0;
    margin-bottom: 50px;
  }
}

.create{
  font-family: "poppins", ;
  font-weight: 400;
  font-style: normal;
  font-size: 38px;
  color: gray;
  text-align: center;
}

#greet h1 {
  font-size: 30px;
  /* margin-top: 25px; */
  font-family: Cookie, cursive;
  font-weight: 400;
  font-style: normal;
  color: rgb(155, 126, 22);
}

@media (min-width: 250px) {
  .create {
    font-size: 20px;
    margin-bottom: 25px;
  }

  #greet h1 {
    font-size: 20px;
  }

  #greet h4 {
    font-size: 20px;
  }
}

@media (min-width: 500px) {
  #greet h4 {
    font-size: 35px;
  }

  #greet h1 {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .create {
    font-size: 35px;
  }

  #greet h4 {
    font-size: 30px;
    margin-top: 25px;
  }

  #greet h1 {
    font-size: 25px;
  }
}

@media (min-width: 1292px) {

   #greet h4 {
    font-size: 38px;
   }

  #greet h1 {
    font-size: 30px;
  }
}

.ck{
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-top: 30px;

}
#box:hover{
  transform: scale(1.1);
  transition: 0.5s;
}

/* footer */

/* .foot{

  background-color: rgb(251,201,19);
  height: 40vh;
  display: flex;
  justify-content: center;
  gap: 150px;
}
.footer{
  height: 6vh;
  background-color: black;

}
#add{
  margin-top: 50px;
}

.up{
position: sticky;
left: 5%;
top: 10%;
 
} */
/* #kk{
  background-image: url(/assets/bg.png);
  background-repeat: no-repeat;
  background-size:cover;
} */

.footer-float p{
  background-color: black;
}

.md{
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}
/* .approch {
  background-color:rgb(251,201,19) ;
      height: 80px;
      width: 36%;
      border-radius:20px;
      border: 5px solid ;
      border-color: rgb(214, 172, 17);
} */

.approach-box, .approach, .choose-rvk-box, .choose-rvk {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach , .choose-rvk {
  margin-bottom: 50px;
}

.approach h2, .choose-rvk h2 {
  font-family: spectral;
  font-size: 38px;
  margin-top: 75px;
  color: rgb(204, 147, 24);
}

.approach h2 {
  margin-top: 50px;
}

.approach-box p {
  font-size:25px;
  color:rgb(117, 113, 103); 
  text-align: center; 
  width: 85%;
  font-family:Poppins;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 478px) {
  .approach-box p {
    font-size: 16px;
  }

  .approach h2, .choose-rvk h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .approach-box p {
    font-size: 18px;
  }

  .approach h2, .choose-rvk h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .approach-box p {
    font-size: 20px;
  }

  .approach h2, .choose-rvk h2 {
    font-size: 30px;
  }
}

/* why choose RVK */

.choose-rvk h2 {
  font-family: spectral;
  margin-top: 50px;
  color: rgb(20, 20, 19);
}

.choose-rvk-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15%;
  row-gap: 30px;
}



/* contact */

 .mk{
  display: flex;
  justify-content: space-evenly;
  margin-top: 90px;
 }
 #form{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/contact.png) ;
  background-repeat: no-repeat;
  background-size: 100% 100%; 
  background-position: center; 
 }
 /* form{
  background: transparent;
  border: 0.1px solid white;
  height: 520px;
  width: 500px;
 margin-right: 250px;
  display:block;
  padding:30px;
  border-radius: 10px;
  opacity:0.9;
  background-color: rgb(219,217,221);
  
 } */
 #input{
  background: fixed;
  border: 1px solid white;
  outline-color: aliceblue;
  outline-width: 5px;
  color:rgb(134, 133, 133);
  border-radius: 10px;
  display: flex;
  padding: 9px;
  height: 30px;
  width: 450px;
  font-family: Poppins, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 15px;
 
 }
 
 .btn{
  background-color: #000000;
  height: 50px;
  width: 200px;
  border-radius: 10px;
  color:rgb(214, 172, 17) ;
  border: 2px solid rgb(214, 172, 17);
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-style: normal;
 }

 .footer-float-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 2%;
  right: 5%;
  row-gap: 10px;
}

 .wp{
  height: 60px;
  z-index: 5 !important;
  transition: 0.5s;
 }

 .wp:hover{
  transform: scale(1.2);
 }

 .uparrow{
  height: 40px;
  z-index: 5 !important;
  bottom: 5%;
  right: 5.4%;
 }

 @media (min-width: 250px) {
  .footer-float-items {
    bottom: 2%;
    right: 5%;
  }
 }

   @media (min-width: 500px) {
  .footer-float-items {
    bottom: 3%;
    right: 2%;
  }
 }

  @media (min-width: 992px) {
  .footer-float-items {
    bottom: 3%;
    right: 2%;
  }
 }

 /* .wp{
  height: 60px;
  position: fixed;
  z-index: 5 !important;
 }
 
 */
 /* .uparrow{
  position: fixed;
  bottom: 0;
  top: 91.5%;
  margin: 35px;
  right: 0;
  z-index: 5 !important;
 } */

 /* @media (min-width: 250px) {
  .wp {
    bottom: 10%;
    right: 30%;
  }

  .uparrow {
    bottom: 5%;
    right: 31%;
  }
 }

 @media (min-width: 500px) {
  .wp {
    bottom: 10%;
    right: 10%;
  }

  .uparrow {
    bottom: 5%;
    right: 11%;
  }
 }

 @media (min-width: 992px) {
  .wp {
    bottom: 10%;
    right: 5%;
  }

  .uparrow {
    bottom: 5%;
    right: 5.5%;
  }
 } */


 .macondo-regular {
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}

.container {
  padding: 2px 16px;
}
#socialimg{
  height: 35px;
  width: 35px;
}
#socialimg:hover{
  transform: scale(1.2);
  transition: 1s;
}

#greet {
  padding: 5% 10% 40px 10%;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

section h2 {
  font-size: 5em;
}

section span {
  position: absolute;
  bottom: -30px;
  background: transparent;
  border-radius: 50%;
  animation: animate 4s linear infinite;
  margin-top: 20px;
}

section span::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 20%;
  transform: scale(0.20) translate(-70%, -70%);
  background: radial-gradient(#f3bf30, transparent);
}

@keyframes animation {
  0% {
      transform: translateY(1%);
      opacity: 1;
  }

  99% {
      opacity: 1;
  }

  100% {
      transform: translateY(-1200%);
      opacity:0;
  }
}
.our{
  font-family: outfit,sans-serif;
}

/* #orange {
  margin-top: 60px;
  overflow: auto;
  background: linear-gradient(315deg, rgb(228, 197, 25) 3%, rgb(218, 163, 163) 38%, rgb(194, 165, 87) 68%, rgb(238, 103, 49) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  height:55vh;
  width: 150vh;
  border-radius: 20px;
  align-items: center;
} */

.ek{
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 100px;
}
.ex{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.expert{
  margin-top: 80px;
}
.map{
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 50px;

}
.card2{
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 35rem;
  padding-top: 30px;
  height: 25.5rem;
  border-radius: 20px;
  background-color:rgb(245,240,229);
}
/* ui/ux */

.ui{
  display: flex;
  justify-content: center;
 
  margin-top: 50px;
}
.ux{
  display: flex;
  justify-content: space-evenly;
  /* gap: 10px; */
  margin-top: 50px;
}
.smm{
  margin-top: 20px;
}
.pc{
  display: flex;
  justify-content:center;
  gap: 100px;
  margin-top: 50px; 
}
.web{
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}
.weby{
  display: flex;
  justify-content: center;
  gap: 100px;
  
}
.webimg{
  display: flex;
  justify-self:center;
  gap: 30px;
  margin-top: 50px;
}
.over:hover{
 transform: scale(1.2);

}
.gra{

    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 10px;
}
#design{

justify-content: center;
margin-left: 23%;
margin-top: 30px;

}
#desin{
  justify-content: center;
margin-left: 15%;
margin-top: 30px;
}
#seo{
  justify-content: center;
margin-left: 19.5%;
margin-top: 70px;

}
.webd{
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}
.off{
  text-align: center;
}
.webs{
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-top: 100px;
}
.vdo{
  margin-top: 40px;
  /* margin-left: 150px; */
}


/* search */

.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
 }
 
 /* .input {
  width: 100%;
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #f3f3f4;
  color: #0d0c22;
  transition: .3s ease;
 }
 
 .input::placeholder {
  color: #9e9ea7;
 }
 
 .input:focus, .input:hover {
  outline: none;
  border-color: rgba(234,76,137,0.4);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);
 }
 
 .icon {
  position: absolute;
  left: 1rem;
  fill: #9e9ea7;
  width: 1rem;
  height: 1rem;
 }
 
 .search-icon {
  stroke: black;
  stroke-width: 0.8;
  width:20px; 
  height: 30px; 
  position:absolute; 
  top: 20%; 
  right: 0;
 } */
 
 /* From Uiverse.io by gagan-gv */ 
 .group .btn {
 position: relative;
 display: flex;
 overflow: hidden;
 cursor: pointer;
 width: 150px;
 height: 50px;
 background-color: #eeeeed;
 border-radius: 80px;
 border: none;
 padding: 0 80px;
 transition: all .2s ease;
 justify-content: center;
 align-items: center;
}

.group .btn:hover {
 transform: scale(1.1);
}

.group .btn span {
 position: absolute;
 z-index: 99;
 width: 150px;
 height: 50px;
 border-radius: 80px;
 font-family: poppins;
 font-weight: 600;
 font-size: 15px;
 text-align: center;
 line-height: 50px;
 letter-spacing: 2px;
 color: #30302f;
 background-color: #ffffff;
 padding: 0 10px;
 transition: all 1.1s ease;
}

.group .btn .container {
 display: flex;
 width: 150px;
 border-radius: 80px;
 line-height: 50px;
}

.group .btn svg {
 padding: 0 5px;
 opacity: 0;
}

.group  .btn .container svg:nth-of-type(1) {
 transition-delay: 0.65s;
}

/* .btn .container svg:nth-of-type(2) {
 transition-delay: 0.8s;
}

.container svg:nth-of-type(3) {
 transition-delay: 0.5s;
} */

.group .btn:hover span {
 opacity: 0;
}

.group .btn:hover svg {
 opacity: 1;
}
 