/* Common Styles */
*, *::before, *::after{
    box-sizing: border-box;
}
body {
    background-image: url("../img/header-bg.jpg");
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    font-size: 13px !important;
    font-weight: 400;
    font-family: Inter, Helvetica, "sans-serif";
    display: flex;
    flex-direction: column;
}
.bgi-size-cover {
    background-size: cover;
}
.bgi-position-center {
    background-position: center;
}
.bgi-no-repeat {
    background-repeat: no-repeat;
}
.fw-bolder {
    font-weight: 700 !important;
}
@media (min-width: 1200px){
    h1, .h1 {
        font-size: 1.75rem;
    }
}
.btn-new-primary{
    background-color: #0072c3;
    color: white;
}
.btn-new-primary:hover{
    background-color: #008ba6;
       color: white;
}


