.d-flex{
    display: flex;
}
.f-column{
    flex-direction: column;
}
.align-items-center{
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-around{
    justify-content: space-around;
}
.justify-content-center{
    justify-content: center;
}
.mt-auto{
    margin-top: auto;
}
.mb-auto{
    margin-bottom: auto;
}
.mb-1{
    margin-bottom: 1em;
}
.mb-2{
    margin-bottom: 2em;
}
.mb-3{
    margin-bottom: 3em;
}
.mb-4{
    margin-bottom: 4em;
}
.mt-1{
    margin-top: 1em;
}
.mt-2{
    margin-top: 2em;
}
.mt-3{
    margin-top: 3em;
}
.mt-4{
    margin-top: 4em;
}
.mt-5{
    margin-top: 5em;
}
.mr-auto{
    margin-right: auto;
}
.ml-auto{
    margin-left: auto;
}
.uppercase{
    text-transform: uppercase;
}
.text-primary{
    color: #004F97;
}
.text-white{
    color: #fff;
}
.text-right{
    text-align: right;
}
.font-primary{
    font-family:  DelaGothicOne-Regular;
}
.mw-75{
    max-width: 75%;
}
.no-scroll{
    overflow: hidden;
}
@media screen and (max-width: 425px){
    .hide-425{display: none;}
}