body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  iframe {
position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;

  }


.float {
  position: fixed;
        z-index: 999 !important;
        width: 65px;
        height: 65px;
        background: radial-gradient(
            173.85% 93.22% at -20.31% 121.15%,
            #000301 11.52%,
            rgb(72, 6, 143) 100%
          ),
          radial-gradient(
            147.17% 80.33% at 133.69% 47.39%,
            #240093 11.52%,
            rgb(2 127 165 / 34%) 100%
          ),
          radial-gradient(
            161.91% 88.38% at -28.22% 50%,
            #000000 11.52%,
            rgb(127 0 0 / 24%) 100%
          );
        border-radius: 50%;
        left: 25px;
        bottom: 50px;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
}

.float img {
  object-fit: cover;
        width: 100%;
        height: 100%;
        object-fit: cover;
  
}

.whatsapp{
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999999;
    border-radius: 50%;
    bottom: 55px;
    right: 28px;
  
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.whatsapp img{
    max-width: 100%;
}

@media (max-width: 1024px) {
    .float{
   left: 10px;
          bottom: 10px;
    }
    .whatsapp{
        bottom: 15px ;
        right: 10px;
    }
}

@media (max-width: 992px) {
    .float{
             left: 10px;
          bottom: 80px;
    }
    .whatsapp{
        bottom: 85px ;
        right: 10px;
    }
  
}




.input {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

input,
 select,
textarea {
  width: calc(95% - 10px);
  height: 45px;
  border-radius: 12px;
  outline: none;
  border: none;
  padding-left: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--dark-2);
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.4s;
  font-size: 16px !important;
}

 input:focus,
 select:focus,
 textarea:focus {
  border-color: var(--button) !important;
}

 textarea {
  height: 180px;
  padding-top: 10px;
}

label {
  width: 100%;
  margin-left: 50px;
  text-align: left;
  text-transform: capitalize;
  color: var(--white);
  cursor: pointer;
}

option {
  background: var(--dark-2);
  color: var(--white);
}

select {
  width: calc(97% - 13px);
}

 button {
  padding: 12px 18px;
  border-radius: 15px;
  background: var(--button);

  border: none;
  display: inline-block;
  overflow: hidden !important;
  cursor: pointer;
  z-index: 1;
  color: var(--white);
  position: relative;
  text-transform: capitalize !important;
}

 button::before {
  position: absolute;
  content: "";
  background: var(--primary);
  width: 250px;
  height: 100px;
  z-index: -1;
  border-radius: 50%;
}

 button:hover {
  color: white;
}

button:before {
  top: 100%;
  left: 100%;
  transition: 0.5s all;
}

button:hover::before {
  top: -30px;
  left: -30px;
}




  
      