.hero_icon {
    display: inline;
    animation: zoom-in-zoom-out 3s ease-in-out infinite;
    position: absolute;
    right: 60px;
    top: 0;
}

.hero_left_content {
    position: relative;
}

.hero_left_content h1 {
    margin-bottom: 30px;
    max-width: 550px;
}
.hero_buttom_content {
    display: flex;
    gap: 30px;
}
.hero_buttom_content .logo_contents_box p {
    text-transform: uppercase;
    color: #6c7c81;
    font-size: 13px;
    margin: 0;
}
.hero_bottom_image img {margin-left: -55px;margin-top: -90px;}

.hero_bottom_image img{
    animation: animName 5s linear infinite;
}
@keyframes animName {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
}
@media only screen and (max-width: 991px) {
    section.hero_area .row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .hero_bottom_image img {
        margin: 0;
    }
    
    .hero_left_content h1 {
        font-size: 34px;
        line-height: 110%;
    }
    .hero_icon {
        top: -80px;
    }
}
@media only screen and (max-width: 767px) {
    .hero_buttom_content{
        flex-flow: column;
    }
}
@media only screen and (max-width: 375px) {
    .hero_buttom_content img {
        margin-left: 0;
        margin-top: 10px;
    }
    .hero_icon {
        right: 0;
    }
}