.wrapperMain{
    font-family: 'museosans-500';
    background: #0C1E37;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}
@font-face {
    font-family: 'museosans-300';
    src: url('../fonts/MuseoSans-300.woff2') format('woff2'),
        url('../fonts/MuseoSans-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'museosans-500';
    src: url('../fonts/MuseoSans-500.woff2') format('woff2'),
        url('../fonts/MuseoSans-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'museosans-700';
    src: url('../fonts/MuseoSans-700.woff2') format('woff2'),
        url('../fonts/MuseoSans-700.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.containerNew{
    max-width: 1030px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.containerNew>div{
    width: 50%;
}
.containerNew h1{
    font-size: 45px;
    color: #13a0cb;
    margin-bottom: 20px;
    font-family: 'museosans-700';
}
.containerNew h2{
    margin-bottom: 10px;
    color: #13A0CB;
    font-size: 22px;
    font-family: 'museosans-500';
}
.containerNew p{
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'museosans-700';
}
.backbtn{
    padding: 0px 50px 0px 25px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    top: 2px;
    text-transform: uppercase;
    border-radius: 25px;
    color: #fff;
    font-family: 'museosans-500';
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(152,188,63,1);
    background: -moz-linear-gradient(left, rgba(152,188,63,1) 0%, rgba(19,160,203,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(152,188,63,1)), color-stop(100%, rgba(19,160,203,1)));
    background: -webkit-linear-gradient(left, rgba(152,188,63,1) 0%, rgba(19,160,203,1) 100%);
    background: -o-linear-gradient(left, rgba(152,188,63,1) 0%, rgba(19,160,203,1) 100%);
    background: -ms-linear-gradient(left, rgba(152,188,63,1) 0%, rgba(19,160,203,1) 100%);
    background: linear-gradient(to right, rgba(152,188,63,1) 0%, rgba(19,160,203,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#98bc3f', endColorstr='#13a0cb', GradientType=1 );
    margin-bottom: 20px;
}
.backbtn:after{
    content: "";
    display: inline-block;
    height: 23px;
    width: 23px;
    text-align: center;
    line-height: 23px;
    position: absolute;
    top: 7px;
    right: 7px;
    background: url(../images/arrow.png) no-repeat;
    background-size: 100% auto;
}
.otherlinks span{
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.otherlinks ul{
    display: flex;
    padding: 0 0 17px 17px;
    flex-wrap: wrap;
}
.otherlinks li{
    padding-right: 16px;
    position: relative;
    margin-bottom: 5px;
}
.otherlinks li:after{
    content: '';
    position: absolute;
    right: 7px;
    top: 3px;
    width: 1px;
    height: 12px;
    background: #2f105c;
}
.otherlinks li a{
    color: #2f105c;
}
.otherlinks li:last-child:after{
    display: none;
}
.otherlinks{
    margin-right: -100px;
    position: relative;
    border: 4px solid #d32f2f;
    border-radius: 10px;
    padding-top: 5px;
    padding-left: 5px;
}


/*New css*/
.listing{
    display: flex;
    justify-content: space-between;
    margin-right: -150px;
    position: relative;
    z-index: 999;
}
.listing a{
    color:rgba(255,255,255,0.5);
}
.listing a:hover{
    color:rgba(255,255,255,1);
}
@media(max-width:1180px){
    .containerNew{
        padding: 0 30px;
    }
    .listing li{
        margin:0 5px;
    }
    .listing{
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        margin-right: 0;
    }
}


@media (max-width: 767px){
    .containerNew{
        flex-direction: column;
        height: 100%;
    }
    .containerNew>div{
        width: 100%;
    }
    .containerNew>div.colleft{
        text-align: center;
        padding-bottom: 40px;
    }
    .listing{
        justify-content: center;
    }
    .listing li{
        margin:0 6px 3px;
    }
}