body {
    font-family: 'Roboto', sans-serif;
    color: #1B2633;
    font-size: 16px;
    line-height: 1.65;
}

p {
    color: #1B2633;
    font-size: 16px;
    margin-bottom: 15px;
}

h1, h2, h3, h4 {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
}


a {
    color: #ad003e;
}

a:hover, a:focus {
    color: #8f0235;
}

.btn {
    padding: 12px 40px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-small {
    padding: 10px 24px;
}

.btn:focus, a:focus {
    outline: none;
    box-shadow: none;
}

.btn-primary {
    color: #fff;
    background-color: #ad003e;
    border-color: #ad003e;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background-color: #8f0235;
    border-color: #8f0235;
    box-shadow: none;
}

.btn-default {
    color: #ad003e;
    background-color: #fff;
    border-color: #fff;
}

.btn-default:hover, .btn-default:focus, .btn-default:active,
.btn-default:not(:disabled):not(.disabled).active,
.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active:focus,
.btn-default:not(:disabled):not(.disabled):active:focus {
    color: #ad003e;
    background-color: #f2f2f2;
    border-color: #f2f2f2;
    box-shadow: none;
}


.btn-outline-primary {
    border-color: #E70D0D;
    color: #E70D0D;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background-color: #E70D0D;
    border-color: #E70D0D;
    box-shadow: none;
}

/* ====== Header =========*/
header.ec-header {
    padding: 20px 0;
    background: transparent;
    transition: all 0.25s;
}

header.ec-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

header.ec-header.ec-innerfixed {
    background: #000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

header.navbar.darkHeader {
    background: #000000;
}

header ul.navbar-nav .nav-item {
    margin: 0 8px;
}
header ul.navbar-nav a.nav-link {
    color: #fff !important;
    font-weight: 500;
}

span.navbar-toggler-icon img {
    height: 26px;
    padding: 5px 0 0;
    filter: invert(1) brightness(100);
}

.logo {
    padding: 0;
}

.logo img {
    max-width: 170px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

@media (max-width: 1200px) {
    header ul.navbar-nav .nav-item {
        margin: 0 5px;
    }
}
@media (max-width: 767px) {
    header.ec-header .logo img {
        max-width: 160px;
    }

    .container {
        max-width: 100%;
    }

    header.ec-header .logo{
        padding-left: 15px;
    }

    header.ec-header .navbar-toggler {
        margin-right: 15px;
    }

    header.ec-header .navbar-toggler:focus, 
    header.ec-header .navbar-toggler:hover {
        box-shadow: none;
        outline: none;
    } 

    header.ec-header .navbar-collapse {
        margin-top: 15px;
        padding: 20px 15px 20px;
        border-top: 1px solid #4758a9;
        text-align: center;
        background: #021982;
    }

    header.ec-header ul.navbar-nav .nav-item {
        margin: 5px 0;
    }

    header.ec-header .navbar-collapse .btn {
        margin: 10px 0 0;
    }
}
/* ====== Hero Section =========*/
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background: url('../images/hero-bg.jpg') no-repeat;
    background-size: cover;
}

.hero-section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(12, 10, 10, 0.65);
}

.hero-content {
    height: 100%;
    display: flex;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 30px;
}

.hero-section p {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ul-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ul-row .ul-list {
    min-width: 180px;
}

.ul-list ul {
    padding: 0;
    margin: 0;
}

.ul-list ul li {
    position: relative;
    list-style: none;
    padding: 0 0 0 30px;
    margin-bottom: 12px;
}

.ul-list ul li:before {
    content: '';
    background: url('../images/cs-icons-check-filled.svg');
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 1px;
}

@media (min-width: 1200px) {
    .hero-section {
        padding: 200px 0 120px;
    }
    .hero-content h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-content h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-content .button-area {
        margin: 25px 0 0;
    }
}

@media (max-width: 991px) {
    .hero-content .button-area {
        margin: 20px 0 70px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 140px 10px 60px;
    }
    .hero-content h1 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 26px;
    }
}
/* -------- Masthead ------*/

.stats {
    background: #000 url(../images/stats_bg.svg) no-repeat;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    background-position: right top;
    background-size: auto 100%;
}

.metrics-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.metrics-col {
    margin: 0 15px;
}

.metric-number {
    font-size: 34px;
    line-height: 38px;
    font-weight: 800;
    font-family: 'Frank Ruhl Libre', serif;
    margin-bottom: 5px;
}

.metric-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

@media (min-width: 1200px) {
    .metric-number {
        font-size: 40px;
        line-height: 42px;
    }
    .metric-desc {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (max-width: 991px) {
    .stats {
        background-size: auto;
        background-position: bottom;
    }
}

@media (max-width: 680px) {
    .stats {
        padding: 40px 0 15px;
    }
    .metrics-grid {
        flex-direction: column;
    }
    .metrics-col {
        margin: 0 15px 30px;
        min-width: 150px;
    }
    .metric-number {
        font-size: 30px;
        line-height: 34px;
    }
}

/* ====== masthead =========*/
.masthead {
    background: #FFE7E7;
    padding: 60px 0 45px;
    text-align: center;
}

.masthead .container {
    max-width: 840px;
}

.masthead h3 {
    font-size: 30px;
    line-height: 38px;
}

@media (max-width: 767px) {
    .masthead h3 {
        font-size: 24px;
        line-height: 32px;
    }
}
/* ====== Solutions =========*/
.solutions .row {
    margin: 0;
}

.solutions-inner .row>div {
    padding: 0;
}

.solution-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 75%;
}

.solution-content h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 3px;
    color: #E70E0D;
    line-height: 1;
    margin: 0 0 5px;
}

.solutions-inner.reverse .row {
    flex-direction: row-reverse;
}

.solutions-inner.reverse .solution-image {
    text-align: left;
}

.solution-content h3 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
}

.solution-image {
    text-align: center;
    height: 100%;
}

.solution-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.solution-content .ul-row {
    margin-bottom: 10px;
}
.solution-content .ul-list ul li:before {
    content: '';
    background: url(../images/cs-icons-check-filled-black.svg);
}

@media (max-width: 991px) {
    .solution-content {
        padding: 30px 0;
        max-width: 85%;
    }
    .solution-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .solution-image img {
        height: 100%;
        max-height: none;
    }
}

@media (max-width: 767px) {
    .solutions-inner.reverse {
        margin: 0;
    }

    .solution-content {
        padding: 40px 25px;
        max-width: 100%;
    }

    .solution-content h5 {
        font-size: 16px;
    }
}

/* ====== Funding =========*/

.funding {
    background: #FFF2F2;
    padding: 70px 0;
}

.funding-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 75%;
}

.funding h3 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
}

.funding p {
    margin: 0 0 30px;
}

.funding img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .funding {
        padding: 50px 0;
    }
    .funding-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .funding {
        padding: 0;
    }

    .funding-image {
        margin: 0 -15px;
    }
    .funding-content {
        padding: 40px 25px;
    }
    .funding-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* -------- Invite -------*/

.cta {
    background: #101010;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.cta h3 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
}

.cta-background {
    position: absolute;
    top: 90px;
    width: 115%;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.cta-background img {
    max-width: 100%;
}

@media (min-width: 1600px) {
    .cta-background {
        width: 108%;
    }
}
@media (max-width: 1400px) {
    .cta-background {
        width: 120%;
    }
}
@media (max-width: 1200px) {
    .cta-background {
        width: 132%;
    }
    .cta-inner {
        max-width: 600px;
    }
    .cta h3 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 991px) {
    .cta {
        padding: 65px 10px;
    }
    .cta h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .cta-background {
        width: 110%;
        left: -3%;
        top: 180px;
    }
    .cta-background img {
        max-width: 30%;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 45px 10px;
    }
    .cta h3 {
        font-size: 22px;
        line-height: 28px;  
    }

    .cta-background {
        top: auto;
        bottom: -40px;
    }
}

/* -------- Content -------*/
section.section-content {
    padding: 120px 0 40px;
}
section.section-content h1 {
    margin-bottom: 50px;
}


/* -------- Footer -------*/
.footer {
	background: #000;
	padding: 50px 0;
}

.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-menu ul {
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: row;
}

.footer-menu ul li {
    list-style: none;
    margin-left: 10px;
    font-size: 14px;
}

.footer-menu ul li:before {
    content: '/';
    color: #F5F7F6;
    margin-right: 10px;
}

.footer-menu ul li:first-child {
	margin:0;
}

.footer-menu ul li:first-child:before {
	display: none;
}

.footer-menu ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}

.footer-right a.btn.btn-clear {
    padding: 5px 0;
    font-weight: 500;
    color: #e5e5e5;
}

p.copyright {
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    color: #F5F7F6;
}

.footer-right {
	text-align: right;
}

.address {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

.address img {
    vertical-align: top;
    max-width: 25px;
}

.address span {
    color: #F5F7F6;
    margin-left: 15px;
    font-size: 15px;
}

.footer-logo img {
    max-height: 26px;
}

@media (max-width: 767px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
    }

    p.copyright {
        margin-bottom: 30px;
    }
    .address {
        flex-direction: column;
        align-items: center;
    }
    .address span {
        display: block;
        margin: 10px 0 15px;
    }
}