.opt-media{
  height: 100%;
  position: relative;
}
.opt-media .opt-about{
  position: relative;
  z-index: 2;
}
.opt-media .opt-about img{
  margin-bottom: 0px;
}
.opt-media .item1, .opt-media .item2, .opt-media .item3{
  position: absolute;
  z-index: 1;
}
.opt-media .item1{
  width: 100%;
  top: auto;
  bottom: -100px;
  right: 0px;
}
.opt-media .item2, .opt-media .item3{
  top: auto;
  z-index: 3;
  transform: translateY(-50%);
}
.opt-media .item2{
  bottom: 15%;
  left: 35px;
}

.opt-media .item3{
  bottom: 7%;
  right: 5px;
  max-width: 350px;
}
.opt-media .item1 svg{
  -webkit-animation: circleRot 25s linear infinite;
   -moz-animation: circleRot 25s linear infinite;
   -ms-animation: circleRot 25s linear infinite;
   -o-animation: circleRot 25s linear infinite;
   animation: circleRot 25s linear infinite;
   width: 100%;
}
@keyframes circleRot {
  100%{
    transform: rotate(360deg);
  }
}
.hang{
  -webkit-animation: hang 3s linear infinite;
   -moz-animation: hang 3s linear infinite;
   -ms-animation: hang 3s linear infinite;
   -o-animation: hang 3s linear infinite;
   animation: hang 3s linear infinite;
}
@keyframes hang {
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(10px);
  }
  100%{
    transform: translateY(0px);
  }
}
.opt-media .item2 .info{
  background: #f5f9f9;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0 , .1);
}
.opt-media .item2 .content-text{
  font-size: 55px;
  line-height: 110%;
  font-weight: bold;
  color: #0d3545;
  text-align: left;
}
.opt-media .item2 .title{
  font-size: 18px;
  font-weight: bold;
}
.opt-media .item3 .opt-logo{
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0 , .1);
}

@media (max-width:991px){
.opt-media .item3{
  max-width: 300px;
}
}

@media (max-width:575px){
  .opt-media .item2, .opt-media .item3{
    display: none;
  }
  .opt-media .item1{
    top: 50%;
    bottom: auto;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}