
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 70vh;
}

.company-color span{
  color: #f3083f !important;
  font-weight: bold;
  font-size: 40px;
  margin-top: 10px;
  
}

.text-design{
  font-family: 'Dancing Script', cursive !important;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
  }

  .section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 3px;
    background: blue;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .main-about{
    margin-top: -30px;
  }
  .main-text{
    font-size: 12px;
  }
  .kyaw p{
    position: absolute;
    /* background: red; */
    z-index: -1;
    pointer-events: none;
    animation: animate 10s ease-out infinite;
}

@keyframes animate{
  0%{
      transform: translateY(-600px) scale(0) rotate(0deg);
      opacity: 0;
  }
  10%{
      opacity: 1;

  }
  90%{
      opacity: 1;
      
  }
  100%{
      transform: translateY(1200px) scale(1) rotate(360deg);
      opacity: 0;
  }
}

