* {
  font-family: "Poppins";
  font-style: normal;
  margin: 0;
  padding: 0;
}



.main-section {
  background-image: url(../assets/svg/background.svg);
  min-height: 88vh;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.assest {
  position: relative;
  height: 100%;
  min-height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;

  .large-ring {
    position: absolute;
    right: -4vw;
    top: 6vh;
    width: 50vw;
    animation: large-ring 1s ease-out;
  }

  .right-arrow {
    position: absolute;
    right: 45vw;
    top: 44vh;
    width: 12vw;
    animation: rightarrow 1s ease-out;
  }

  .mouse {
    position: absolute;
    left: 5vw;
    top: 75vh;
    width: 1.5vw;
  }
}

.content {
  display: flex;


  .overview {
    height: calc(100vh - 7rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .heading,
    span {
      font-family: Poppins;
      font-size: 3vw;
      font-weight: 600;
      line-height: 7vh;
      width: 37vw;

      span {
        color: #3197a8;

      }
    }

    .paragraph {
      width: 37vw;
      font-family: Poppins;
      font-size: 1vw;
      font-weight: 400;
      line-height: 4vh;
    }
  }

  .arr-button {
    position: relative;
    width: 37vw;

    .left-arrow {
      position: absolute;
      left: -3vw;
      top: 2vh;
      width: 3vw;
      animation: leftarrow 1s ease-out;
    }

    .btn {
      color: white !important;
      background: #3197a8 !important;
      font-family: poppins !important;
      font-weight: 500 !important;
      font-size: 1vw !important;
      animation: zoomInAnimation 2s forwards;
      transform-origin: center;

      .fa-solid {
        padding: 10px;
      }
    }
  }

  .lang-icon {
    position: relative;
    margin-top: 3vh;
    display: flex;
    margin-left: 1vh;

    .icon-pack {
      margin-top: 1.1vh;
    }

    a {
      display: inline-block;
    }

    img {
      margin-top: -2vh;
      width: 6vh;
      position: absolute;
    }

    .js {
      left: 0.3vw;
    }

    .flutter {
      left: 2.7vw;
    }

    .react {
      left: 5.1vw;
    }

    .angular {
      left: 7.4vw;
    }

    .icon-text {
      margin-left: 12vw;

      p {
        line-height: 3vh;
        font-size: 1vw;
        margin-top: 1rem;
      }

    }
  }
}

.image-float-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.image-float {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.one,
.two,
.three,
.four {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  animation: zoomInAnimation 1s forwards;
  transform-origin: center;
}

.one {
  height: 22vh;
  width: 22vh;
  right: 55%;
  top: 25%;
  animation: zoomInAnimation 1s forwards;
}

.two {
  height: 26vh;
  width: 26vh;
  right: 10%;
  top: 5%;
  animation: zoomInAnimation 2s forwards;
}

.three {
  height: 26vh;
  width: 26vh;
  right: 60%;
  top: 65%;
  animation: zoomInAnimation 2s forwards;
}

.four {
  height: 20vh;
  width: 20vh;
  right: 25%;
  top: 55%;
  animation: zoomInAnimation 2s forwards;
}

.downup-one,
.downup-three {
  animation: down 1.5s infinite alternate;
}

.updown-two,
.updown-four {
  animation: up 1.5s infinite alternate;
}

/* animation */
.slide {
  animation: slide-in 2s forwards;
}

/* Keyframes */
@keyframes large-ring {
  0% {
    clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes rightarrow {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes leftarrow {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slide-in {
  from {
    margin-left: -100%;
  }

  to {
    margin-left: 0%;
  }
}

@keyframes zoomInAnimation {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes up {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile */
@media (min-width: 320px) and (max-width: 668px) {

  .main-section {
    min-height: 70vh;
  }

  .assest {
    display: none;

    .large-ring {
      right: -8vw;
      top: 70vh;
      width: 100vw;
    }

    .right-arrow {
      right: 31vw;
      top: 59vh;
      width: 17vw;
      transform: rotate(16deg);
    }

    .mouse {
      width: 3vw;
      top: 65vh;
      left: 9vw;
    }
  }

  .content {
    display: flex;
    flex-direction: column;

    .overview {
      padding: 7vw;
      height: unset;
      width: 100%;

      .heading,
      span {
        font-size: 5vw;
        line-height: 5vh;
        width: 85vw;
        text-align: left;
      }

      .paragraph {
        width: 85vw;
        font-family: Poppins;
        font-size: 4vw;
        font-weight: 400;
        line-height: 4vh;
        padding: unset;

      }
    }

    .arr-button {
      .left-arrow {
        left: -31vw;
        top: 3vh;
        width: 32px;
      }

      .btn {
        font-size: 3vw !important;
        margin-left: -22vw;
      }
    }

    .lang-icon {
      position: relative;
      margin-top: 3vh;
      display: flex;
      margin-left: -10vw;
      flex-direction: column;

      .icon-pack {
        margin-top: 2vh;
        align-items: center;
        display: flex;

        img {
          width: 5vh;
          margin-top: -2vh;
          position: relative;
        }

        .flutter {
          left: -2.3vw;
        }

        .react {
          left: -5.3vw;
        }

        .angular {
          left: -8.3vw;
        }
      }
    }

    .icon-text {
      margin-left: 0vw !important;

      p {
        line-height: 3vh !important;
        font-size: 3vw !important;
        margin-top: 1vh !important;
      }
    }
  }


  .circle {
    display: none;
    width: 100%;
    height: 60vh;
  }

  .image-float {
    .one {
      height: 15vh;
      width: 15vh;
      right: 60%;
      top: 15vh;
    }

    .two {
      height: 20vh;
      width: 20vh;
      right: 8%;
      top: 2vh;
    }

    .three {
      height: 20vh;
      width: 20vh;
      right: 51%;
      top: 35%;
    }

    .four {
      height: 19vh;
      width: 19vh;
      right: 9%;
      top: 27%;
    }
  }
}


@media (min-width: 668px) and (max-width: 1024px) {
  .assest {
    .large-ring {
      right: -5vw !important;
      top: 7vh !important;
      width: 60vw !important;
    }
  }

  .main-section {
    min-height: 85vh;
  }

  .overview {
    justify-content: unset !important;
    padding: 3vw;

    .heading,
    span {
      line-height: 5vh !important;
      width: 40vw !important;
    }

    .paragraph {
      font-size: 2vw !important;
      width: 40vw !important;
    }
  }

  .content {
    display: flex;
    height: 10vh;

    .left-arrow {
      left: -5vw !important;
      width: 3 vw !important;
    }

    .lang-icon {
      flex-direction: column;
      margin-top: 2vh;
      margin-left: -1vw;

      .icon-pack {
        margin-top: 1vh;
        width: 34vw;
        margin-left: unset;

        img {
          width: 6vh;
          margin-top: -2vh;
          position: relative;
        }

        .flutter {
          left: -1.4vw;

        }

        .react {
          left: -3vw;
        }

        .angular {
          left: -4.6vw;
        }

      }

      .icon-text {
        margin-left: 0vw !important;

        p {
          font-size: 1.5vw;
        }
      }
    }

    .image-float {
      .one {
        height: 18vh;
        width: 18vh;
        right: 60%;
      }

      .two {
        height: 20vh;
        width: 20vh;
        right: 5%;
        top: 4%;
      }

      .three {
        height: 22vh;
        width: 22vh;
        right: 60%;
        top: 46%;
      }

      .four {
        height: 20vh;
        width: 20vh;
        right: 5%;
        top: 34%;
      }
    }
  }
}

label {
  align-items: flex-start;
  display: flex;

  span {
    color: red;
  }
}

.form-label {
  margin-bottom: unset;
}