.owl-item{
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item{
    width: 100%;
}
.e_team_img{
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event_team_slider .item .e_team_img img {
    transition: all 0.3s, opacity 0.4s linear;
}
.h_action_area{
    background-image: linear-gradient(140deg, #23026d 0%, #005493 100%);
}
.h_action_img, .h_action_content{
    text-align: center;
}
.h_action_content i{
    font-size: 25px;
    vertical-align: sub;
}
/**************/
.chevron_block{
    display: initial;
    position: relative;
    width: 100%;
    margin-top: 40px;
    left: 49%;
}
.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fba820;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@keyframes pulse {
    to {
        opacity: 1;
    }
}
