:root {

    --primary-color: #002F6C;
    --secondary-color: #F7B500;
    --light-color: #F8F9FA;
    --dark-color: #1A1A1A;

}

body {

    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;

}

.top-bar {

    background: var(--primary-color);
    color: white;
    padding: 10px 0;

}

.top-bar .container {

    display: flex;
    justify-content: space-between;

}

.top-bar a {

    color: white;
    text-decoration: none;
    margin-left: 15px;

}

.hero {

    background: url('../images/hero2.png') center center no-repeat;
    background-size: cover;
    min-height: 700px;

}

.hero-overlay {

    background: rgba(0,0,0,.55);
    min-height: 700px;

}

.hero-content {

    color: white;
    text-align: center;
    padding-top: 250px;

}

.hero-content h1 {

    font-size: 4rem;
    font-weight: bold;

}

.hero-content p {

    font-size: 1.4rem;
    margin-bottom: 30px;

}

.statistics {

    background: var(--primary-color);
    color: white;
    padding: 60px 0;

}

.statistics h2 {

    font-size: 3rem;
    font-weight: bold;

}

.about-home {

    padding: 80px 0;
    text-align: center;

}

.about-home h2 {

    color: var(--primary-color);

}

footer {

    background: var(--dark-color);
    color: white;
    padding: 50px 0;

}

footer a {

    color: white;
    text-decoration: none;

}

footer ul {

    list-style: none;
    padding-left: 0;

}

.page-banner{

    background:#002F6C;
    color:white;
    padding:90px 0;

}

.card-img-top{

    height:250px;
    object-fit:cover;

}

.card{

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}