/*==================================================
TOP
==================================================*/

.cl-top{

    position:relative;

    width:100%;

    background:transparent;

    padding:18px 0;

}

.cl-top .cl-container{

    display:flex;

    justify-content:center;

    align-items:center;

}

.cl-top-logo{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.cl-top-logo-image{

    display:block;

    width:auto;

    max-width:100%;

    height:auto;

    max-height:70px;

}

/* Tablet */

@media (max-width:991px){

    .cl-top{

        padding:16px 0;

    }

    .cl-top-logo-image{

        max-height:60px;

    }

}

/* Mobile */

@media (max-width:767px){

    .cl-top{

        padding:12px 0;

    }

    .cl-top-logo-image{

        max-height:50px;

    }

}