*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.text_slider{
    width: 100% !important;
    height: 400px !important;
    background: linear-gradient(to right , black ,  #00A651);
    overflow: hidden;
    position: relative;
}
.jumbotron{
    margin-top: -372px;
  text-align: right !important;
}
.text_slider .animated_photo{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.text_slider .animated_photo .animation_photo{
    position: absolute;
    height: 473px !important;
    width: auto;
    top: -46px;
    left: -243px;
    z-index: 100;
  animation-name: round;
  -webkit-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
#not_animation_photo{
    position: absolute;
    height: 747px !important;
    width: auto;
    top: -167px;
    left: -325px;
}
@keyframes round{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100%{
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@media(max-width: 578px){
    .text_slider .animated_photo .animation_photo{
        height: 350px !important;
        width: auto !important;
        top: 26px !important;
        left: -179px !important;
        z-index: 100 !important;
    }
}