:root {
    --green: #087f49;
    --dark: #06283d;
    --orange: #f77f00
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    color: #172b4d;
    font-family: Arial, sans-serif
}

.topbar {
    background: #06283d;
    color: #fff;
    padding: 9px
}

.topbar a {
    color: #fff;
    margin-left: 12px
}

.brand {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px
}

.brand h3{
    color:var(--green);
}
.brand img {
    width: 120px;
    height: 80px;
    object-fit: contain
}

.brand h2 {
    color: var(--green)
}

nav {
    background: var(--green)
}

.hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(#0008, #0008), url('../img/actuality/actuality-10.jpg') center/cover;
    color: #fff
}

.hero h1 {
    font-size: 48px;
    font-weight: 700
}

.flash {
    padding: 15px 5%;
    background: #f77f00;
    color: #fff
}

.section {
    padding: 70px 0
}

.light {
    background: #f5f7fb
}

.section-title {
    text-align: center;
    margin-bottom: 35px
}

.section-title h2 {
    font-size: 38px;
    color: var(--green)
}

.card {
    border: 0;
    box-shadow: 0 5px 25px #00000012
}

.card-img-top {
    height: 230px;
    object-fit: cover
}

.project-img {
    height: 300px
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover
}

.partner-img {
    max-width: 100%;
    height: 80px;
    object-fit: contain
}

.stats {
    background: var(--dark);
    color: #fff;
    padding: 55px
}

.stats i {
    display: block;
    font-size: 32px
}

.stats strong {
    display: block;
    font-size: 38px
}

.stats span {
    display: block
}

footer {
    background: #041c32;
    color: #fff;
    padding: 50px 0
}

a {
    text-decoration: none
}

.icon {
    font-size: 32px;
    color: var(--green)
}