@keyframes animation1 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); 
  }
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); 
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); 
  } 
}
/*===========================
04.ABOUT css 
===========================*/
.ndulndul {
  -webkit-animation: animation1 6s linear infinite;
  -moz-animation: animation1 6s linear infinite;
  -o-animation: animation1 6s linear infinite;
  animation: animation1 6s linear infinite; 
}
.about-area {
  background-color: #F3FDFF; 
}

.about-image {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-left: 50px;
  padding-top: 10px;
}
.about-image .about-shape {
  background: -webkit-linear-gradient(#064f52 0%, #0dcebf 100%);
  background: -o-linear-gradient(#064f52 0%, #0dcebf 100%);
  background: linear-gradient(#064f52 0%, #0dcebf 100%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative; 
}
@media (max-width: 767px) {
  .about-image .about-shape {
    width: 350px;
    height: 350px; 
  } 
}
.about-image .about-shape::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  -webkit-transform: scale(1.1) rotate(25deg);
  -moz-transform: scale(1.1) rotate(25deg);
  -ms-transform: scale(1.1) rotate(25deg);
  -o-transform: scale(1.1) rotate(25deg);
  transform: scale(1.1) rotate(25deg);
  border-radius: 50%;
  border: 2px solid #349d00;
  border-top-color: transparent;
  border-right-color: transparent; 
}
.about-image .app {
  position: relative;
  -webkit-transform:  translateY(-15%);
  -moz-transform:  translateY(-15%);
  -ms-transform:  translateY(-15%);
  -o-transform:  translateY(-15%);
  transform:  translateY(-15%);
  max-width: 500px;
  position: absolute;
  top: 50px;
  left: 5px;
  /* -webkit-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3); */
  /* box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3); */
  border-radius: 5px; 
}  
.real-image {
  border-radius: 10px; 
}
@media (max-width: 767px) {
  .about-image .app {
    max-width: 500px;
    border-radius: 0px;
    top: 60px; 
  } 
}

.about-content .main-btn {
  margin-top: 40px; 
}
