@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body{
  /* position: absolute; */
  height: 100%;
}
.nav {
  background-color: #283072;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12vh;
}
.nav img {
  width: 80px;
}
.link a{
  color: white;
  font-weight: 600;
  font-size: 20px;
}
.link span{
  color: white;
  font-size: 20px;
}
.main {
  background-image: url("../home_img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* position: absolute; */
  display: flex;
  text-align: center;
  justify-content: center;
  height:88vh;
  /* width: 100%; */
}
.sub-main{
  display: flex;
  gap:50px;
  margin-top:150px;
}
a{
  text-decoration: none;
  color: black;
}
.round {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  justify-content: center;
  
  /* position: absolute; */
}
.round img {
  width: 300px;
  
  z-index: 3;
}
.round p{
  font-size: 28px;
  font-weight: 700;
  z-index: 2;
  display: none;
}
.circle {
  position: absolute;
  margin: auto;
  /* margin-top: 35px; */
  width: 50px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: all 0.5s;
  /* display: none; */
}
.round:hover img{
  display: none;
}
.round:hover p {
  display: block;
}
.round:hover .circle{
  width: 300px;
  height: 300px;
}

.div-1{
  animation: bounce 2s infinite;
}

/* .div-2 img {
  width: 350px;
  height: 350px;
} */



@keyframes bounce {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 50px;
  }
  100% {
    margin-top: 0px;
  }
}
.div-2{
  animation: bounce-2 3s infinite;
}
@keyframes bounce-2 {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 50px;
  }
  100% {
    margin-top: 0px;
  }
}
.div-3 {
  animation: bounce-3 2s infinite;
}
@keyframes bounce-3 {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 50px;
  }
  100% {
    margin-top: 0px;
  }
}

.div-4 {
  animation: bounce-4 3s infinite;
}

@keyframes bounce-4 {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 50px;
  }
  100% {
    margin-top: 0px;
  }
}




