.form-fit {
  height: 95%;
  padding: 25px;
  width: 60%;
  position: relative;
  margin: auto;
  background-color: var(--bgop-6);
  border-radius: 15px;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .form-fit {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .form-fit {
    width: 80%;
  }
}


.bubble {
  position: fixed;
  width: 365px;
  height: 364px;
  border-radius: 50%;
  box-shadow: inset 0 0 25px var(--bg-7);
  animation: animate_4010 8s ease-in-out infinite;
}

.bubble:nth-child(2) {
  position: fixed;
  zoom: 0.45;
  left: 45%;
  top: 25%;
  animation-delay: -4s;
}

.bubble:nth-child(3) {
  position: fixed;
  zoom: 0.45;
  left: 30%;
  top: 50%;
  animation-delay: -6s;
}

.bubble:nth-child(4) {
  position: fixed;
  zoom: 0.35;
  left: 65%;
  top: 62%;
  animation-delay: -3s;
}

.bubble:nth-child(5) {
  position: fixed;
  zoom: 0.5;
  left: 39%;
  top: 25vh;
  animation-delay: -5s;
}

@keyframes animate_4010 {

  0%,
  100% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(20px);
  }
}

.bubble::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 45px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sc-3);
  z-index: -1;
  filter: blur(2px);
}

.bubble::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 80px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sc-4);
  z-index: -1;
  filter: blur(2px);
}

.bubble span {
  position: absolute;
  border-radius: 50%;
}

.bubble span:nth-child(1) {
  inset: 10px;
  border-left: 15px solid var(--mc-3);
  filter: blur(8px);
}

.bubble span:nth-child(2) {
  inset: 10px;
  border-right: 15px solid var(--mc-5);
  filter: blur(8px);
}

.bubble span:nth-child(3) {
  inset: 10px;
  border-top: 15px solid var(--sc-3);
  filter: blur(8px);
}

.bubble span:nth-child(4) {
  inset: 30px;
  border-left: 15px solid var(--mc-6);
  filter: blur(12px);
}

.bubble span:nth-child(5) {
  inset: 10px;
  border-bottom: 10px solid var(--sc-4);
  filter: blur(8px);
  transform: rotate(330deg);
}

.hideForm {
  display: none;
}

.showForm {
  display: block;
}

.form-card {
  position: relative;
  display: block;
  height: 300px;
  background-color: var(--bg-7);
  border-radius: 30px;
  padding: 20px;
  border: 1px solid var(--mc-4);
}

.webDevCardForm {
  z-index: 0;
  position: absolute;
  background-image: url('/site/images/site-content/content.png');
  background-size: contain;
  width: 100%;
  left: -15%;
  top: 43%;
  height: 25vh;
  opacity: .2;
  background-position: center;
  background-repeat: no-repeat;
}

.appAndAutoForm {
  z-index: 0;
  position: absolute;
  background-image: url('/site/images/site-content/automation\ on\ pc.png');
  background-size: contain;
  width: 100%;
  left: -15%;
  top: 23%;
  height: 25vh;
  opacity: .2;
  background-position: center;
  background-repeat: no-repeat;
}

.hostingSerForm {
  z-index: 0;
  position: absolute;
  background-image: url('/site/images/site-content/the\ cloud.png');
  background-size: contain;
  width: 100%;
  left: -15%;
  top: 23%;
  height: 35vh;
  opacity: .2;
  background-position: center;
  background-repeat: no-repeat;
}

.form-card-top {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 0 22px 22px 0;
  padding: 25px;
  background-color: var(--sc-3);

}