body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
    background: #1b3864;
  margin: 0;
  padding: 0;
  transition: ease all 0.2s;
}
.body-inner {
    
}
/*
.body-inner:before {
    position: absolute;
    z-index: -1;
    background: #c7c7c7;
    width: 500px;
    height: 200px;
    content: "";
    top: 0;
    right: 0;
}
*/
.container {
    position: relative;
}
a {
    color: #dc2829;
    outline: none !important;
    transition: ease all 0.2s;
}
a:hover,
a:focus {
    color: #000;
    outline: none !important;
    text-decoration: none;
}

p {
    line-height: 26px;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    color: #000;
    transition: ease all 0.2s;
}

h3,
.h3 {
    font-size: 36px;
    margin: 0 0 30px 0;
}
h4,
.h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
}
h5,
.h5 {
    font-size: 19px;
    margin: 0 0 20px 0;
}
h6,
.h6 {
    font-size: 16px;
    margin: 0 0 15px 0;
}

.btn {
    border: 0 !important;
    border-radius: 50px !important;
    transition: ease all 0.2s;
    padding: 12px 24px;
}

.btn-primary {
    color: #fff;
    transition: ease all 0.2s;
    background: #091f41;
}
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: #000;
}
.btn-inverse {
    color: #101010;
    transition: ease all 0.2s;
    background: #fff;
}
.btn-inverse:hover,
.btn-inverse:focus {    
    color: #fff;
    background: #101010;
}


.bg-white {
    background: #fff !important;
}
.no-margin {
    margin: 0 !important;
}
.no-padding {
    padding: 0 !important;
}

hr {
    display: table;
    width: 100%;
    margin: 40px 0;
    padding: 0;
    height: 5px;
    border: 0 !important;
    background: url('../images/hr-bg.png') top center;
}

.text-white {
    color: #fff !important;
}
.lead {
    font-size: 22px;
    margin-bottom: 30px;
}
.mb-15 {
    margin-bottom: 15px !important;
}

@media (max-width: 991px) {
    body:before {
        height: 350px;
    }
    .container {
        width: 100%;
    }
    body:before,
    .body-inner:before {
        background: none;
    }
}

@media (max-width: 768px) {   
    
}
@media (max-width: 641px) {
    h3,
    .h3 {
        font-size: 24px;
        margin: 0 0 20px 0;
    }
}

