.banner {
    height: 600px;
    background: url(/public/static/modules/cms/css/../images/banner.png) no-repeat top;
    background-size: cover;
    display: flex;
    align-items: center;
}

.contact-msg,.contact-map{
    padding: 50px 0;
}

.contact-msg article{
    /*display: flex;*/
    /*justify-content: space-around;*/
    text-align: center;
    margin-bottom: 20px;
}

.contact-msg article h3{
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height:22px;
}

.contact-msg article p{
    line-height: 22px;
}

.contact-map{
    background-color: #f9f9f9;
}

.cb-item-right  .s18{
    position: relative;
    height: .5rem;
    line-height: .5rem;
    display: inline-block;
}

.cb-item-right .map{
    display: inline-block;
    /*position: absolute;*/
    animation: move 3s  linear infinite;
}

.cb-item-right p{
    transition: .3s all;
}

.cb-item-right a:hover p{
    color: #f08519;
}

@keyframes move{
0{
    transform: translateY(0);
}

25%{
    transform: translateY(-5px);
}

50%{
    transform: translateY(0);
}

75%{
    transform: translateY(5px);
}
100%{
    transform: translateY(0);
}
}

.map-text-list:hover{
    background-color: #eee;
}

@media (min-width: 768px){
    .contact-box{
        padding: 50px 0 0;
    }

    .contact-msg article{
        display: block;
        text-align: left;
        /*justify-content: space-around;*/
    }

}

@media (min-width: 992px){
    .contact-msg article{
        display: flex;
        justify-content: space-around;
    }

    .map-area{
        margin-bottom: 50px;
    }

    .map-info section{float: right!important;}

}