/*font-family*/
.ff-en{
font-family: neusa-next-std, sans-serif;
font-weight: 400;
font-style: normal;
}

.ff-en-m{
font-family: neusa-next-std, sans-serif;
font-weight: 500;
font-style: normal;
}

.ff-en-italic{
font-family: neusa-next-std-compact, sans-serif;
font-weight: 400;
font-style: italic;
}

/*--text-align----------------------*/
.txt-center{
    text-align: center;
}
.txt-left{
    text-align: left;
}
.txt-right{
    text-align: right;
}

/*img*/
img.imgcenter{
    display: block;
    margin: 0 auto;
}

.blue{
    color: #003A60;
}

/*--flex----------------------*/
.row{
    display: flex;
    flex-flow: wrap;
}
.column{
    display: flex;
    flex-direction: column;
}
.between{
    justify-content: space-between;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-2 .col{
    width: 48%;
}
.col-3 .col{
    width: 32%;
}
.col-4 .col{
    width: 25%;
}

@media screen and (max-width:896px){
.col-2 .col{
    width: 100%;
}
.col-3 .col{
    width: 100%;
}
.col-4 .col{
    width: 50%;
}
    
}
/*------------------------------*/
.mt0{
    margin-top: 0!important;
}
.mb0{
    margin-bottom: 0!important;
}
.mr0{
    margin-right: 0!important;
}
.ml0{
    margin-left: 0!important;
}
