.hero-section {
    background: #f6f7f4;
    width: 100%;
}

.hero-wrapper {
    width: 100%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-navbar {
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 3;
}

.hero-brand-text {
    font-size: 2rem;
    color: #1c2b2d;
    line-height: 1;
}

.hero-nav-link {
    color: #2b2b2b;
    font-weight: 500;
}

.hero-nav-link:hover,
.hero-nav-link.active {
    color: #178a3f;
}

.hero-content {
    min-height: 78vh;
    /*display: flex;
    align-items: center;*/
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f5a3a;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2f2f2f;
    max-width: 650px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #178a3f, #43a047);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px rgba(23, 138, 63, 0.18);
}

.hero-btn-primary:hover {
    color: #fff;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, #e0a106, #f1bb28);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px rgba(224, 161, 6, 0.18);
}

.hero-btn-secondary:hover {
    color: #fff;
}

.hero-image-wrap {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-shape {
    position: absolute;
    width: 110%;
    height: 110%;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50% 0 0 50%;
    background: linear-gradient(
        135deg,
        rgba(23, 138, 63, 0.15),
        rgba(224, 161, 6, 0.28),
        rgba(23, 138, 63, 0.12)
    );
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    max-width: 640px;
    max-height: 560px;
    object-fit: cover;
    border-radius: 45% 55% 50% 50% / 45% 45% 55% 55%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.hero-partners {
    border-top: 1px solid #f0f0f0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.partner-logo {
    max-height: 72px;
    object-fit: contain;
}

.small-logo {
    max-height: 62px;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-decor-left {
    top: -5px;
    left: -50px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,161,6,.22) 0%, rgba(23,138,63,.12) 45%, rgba(255,255,255,0) 75%);
}

.hero-decor-right {
    right: -180px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,138,63,.15) 0%, rgba(224,161,6,.14) 45%, rgba(255,255,255,0) 75%);
}

@media (max-width: 991.98px) {
    .hero-content {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-image-wrap {
        min-height: auto;
    }

    .hero-main-image {
        max-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-login-btn,
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.about-impact-section {
    background: #f7f8f4;
    position: relative;
}

.about-impact-wrapper {
    position: relative;
    z-index: 1;
}

.section-badge {
    background: rgba(23, 138, 63, 0.08);
    color: #178a3f;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.about-impact-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f2f1f;
    text-transform: uppercase;
}

.about-impact-title span {
    color: #d89000;
}

.about-impact-intro {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #2c2c2c;
    max-width: 760px;
}

.about-impact-image-wrap {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-shape {
    position: absolute;
    inset: 0;
    border-radius: 42% 58% 50% 50% / 45% 40% 60% 55%;
    background: linear-gradient(
        135deg,
        rgba(23, 138, 63, 0.18),
        rgba(224, 161, 6, 0.28),
        rgba(23, 138, 63, 0.12)
    );
    transform: rotate(-4deg);
}

.about-impact-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    max-height: 460px;
    object-fit: cover;
    border-radius: 42% 58% 50% 50% / 45% 40% 60% 55%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.about-impact-highlight {
    position: relative;
    z-index: 2;
}

.about-highlight-box {
    background: rgba(255, 255, 255, 0.78);
    border-left: 6px solid #178a3f;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
    backdrop-filter: blur(6px);
}

.about-highlight-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #232323;
}

.about-highlight-box strong {
    color: #0f5a3a;
}

.impact-card {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.impact-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon span {
    font-size: 2rem;
    line-height: 1;
}

.impact-icon-green {
    background: linear-gradient(135deg, #178a3f, #53b95f);
    color: #fff;
}

.impact-icon-gold {
    background: linear-gradient(135deg, #d89000, #f1bb28);
    color: #fff;
}

.impact-card-title {
    font-size: 1.95rem;
    line-height: 1.2;
    font-weight: 800;
}

.impact-card-title small {
    display: block;
    font-size: 0.72em;
    font-weight: 600;
    margin-top: 0.35rem;
}

.impact-green {
    color: #0f5a3a;
}

.impact-gold {
    color: #b87500;
}

.impact-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3b3b3b;
}

.about-impact-btn {
    background: linear-gradient(135deg, #178a3f, #3ea54d);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 12px 25px rgba(23, 138, 63, 0.18);
}

.about-impact-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.about-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.about-decor-top {
    top: 0px;
    left: 0px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,161,6,.18) 0%, rgba(23,138,63,.10) 45%, rgba(255,255,255,0) 75%);
}

.about-decor-bottom {
    right: 0px;
    bottom: 0px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,138,63,.14) 0%, rgba(224,161,6,.12) 45%, rgba(255,255,255,0) 75%);
}

@media (max-width: 1199.98px) {
    .about-impact-title {
        font-size: 2.5rem;
    }

    .about-impact-intro {
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .about-impact-title {
        font-size: 2.2rem;
    }

    .about-impact-intro {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .about-impact-image-wrap {
        min-height: auto;
    }

    .about-impact-main-image {
        max-height: 400px;
    }

    .about-highlight-box {
        padding: 1.5rem;
    }

    .about-highlight-box p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .impact-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .about-impact-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .about-impact-title {
        font-size: 1.8rem;
    }

    .about-impact-intro {
        font-size: 1rem;
    }

    .impact-card {
        padding: 1.5rem 1.25rem;
    }

    .impact-card-title {
        font-size: 1.4rem;
    }

    .impact-card-text {
        font-size: 1rem;
    }

    .about-impact-btn {
        width: 100%;
    }
}

.why-important-section {
    background: #fcfcf8;
    position: relative;
}

.why-important-wrapper {
    position: relative;
    z-index: 1;
}

.why-important-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f5a3a;
    text-transform: uppercase;
    max-width: 720px;
}

.why-important-title span {
    display: block;
    color: #d89000;
}

.why-important-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #2e2e2e;
    max-width: 720px;
}

.why-important-image-wrap {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image-shape {
    position: absolute;
    inset: 0;
    border-radius: 40% 60% 52% 48% / 45% 40% 60% 55%;
    background: linear-gradient(
        135deg,
        rgba(23, 138, 63, 0.18),
        rgba(224, 161, 6, 0.28),
        rgba(23, 138, 63, 0.12)
    );
    transform: rotate(6deg);
}

.why-important-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    max-height: 440px;
    object-fit: cover;
    border-radius: 40% 60% 52% 48% / 45% 40% 60% 55%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.why-card {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.why-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon span {
    font-size: 2rem;
    line-height: 1;
}

.why-icon-green {
    background: linear-gradient(135deg, #178a3f, #4cb55a);
    color: #fff;
}

.why-icon-gold {
    background: linear-gradient(135deg, #d89000, #f1bb28);
    color: #fff;
}

.why-card-title {
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 800;
}

.why-green {
    color: #0f5a3a;
}

.why-gold {
    color: #b87500;
}

.why-card-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #3b3b3b;
}

.why-important-note {
    position: relative;
    z-index: 2;
}

.why-note-box {
    background: #ffffff;
    border: 2px solid rgba(216, 144, 0, 0.75);
    border-radius: 999px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.why-note-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.why-note-box strong {
    color: #0f5a3a;
}

.why-note-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d89000, #f1bb28);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-note-icon span {
    font-size: 1.6rem;
}

.why-important-btn {
    background: linear-gradient(135deg, #178a3f, #3ea54d);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 12px 25px rgba(23, 138, 63, 0.18);
}

.why-important-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.why-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.why-decor-left {
    left: -120px;
    top: 140px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,161,6,.16) 0%, rgba(23,138,63,.08) 45%, rgba(255,255,255,0) 75%);
}

.why-decor-right {
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,138,63,.14) 0%, rgba(224,161,6,.12) 45%, rgba(255,255,255,0) 75%);
}

@media (max-width: 1199.98px) {
    .why-important-title {
        font-size: 2.5rem;
    }

    .why-important-intro {
        font-size: 1.2rem;
    }

    .why-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .why-important-title {
        font-size: 2.2rem;
    }

    .why-important-intro {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .why-important-image-wrap {
        min-height: auto;
    }

    .why-important-main-image {
        max-height: 380px;
    }

    .why-note-box {
        border-radius: 2rem;
    }

    .why-note-box p {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .why-important-title {
        font-size: 1.8rem;
    }

    .why-card {
        padding: 1.5rem 1.2rem;
    }

    .why-card-title {
        font-size: 1.35rem;
    }

    .why-card-text {
        font-size: 1rem;
    }

    .why-note-box {
        padding: 1rem;
    }

    .why-important-btn {
        width: 100%;
    }
}

.impact-cycle-section {
    background: #f8f9f5;
    position: relative;
}

.impact-cycle-wrapper {
    position: relative;
    z-index: 1;
}

.impact-cycle-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f5a3a;
    text-transform: uppercase;
}

.impact-cycle-title span {
    display: block;
    color: #d89000;
}

.impact-cycle-intro {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #2e2e2e;
    max-width: 860px;
}

.cycle-desktop {
    position: relative;
    min-height: 900px;
}

.cycle-center {
    position: absolute;
    top: 48%;
    left: 50%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cycle-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 18px;
    background: conic-gradient(
        from 45deg,
        #178a3f 0deg,
        #178a3f 140deg,
        #f1bb28 140deg,
        #d89000 250deg,
        #178a3f 250deg,
        #178a3f 360deg
    );
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: relative;
}

.cycle-ring::before {
    content: "";
    position: absolute;
    inset: 20px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.cycle-center-image {
    position: absolute;
    inset: 42px;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.cycle-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cycle-step {
    position: absolute;
    z-index: 3;
}

.cycle-step-card {
    width: 300px;
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    position: relative;
    text-align: left;
}

.cycle-step-card-gold {
    background: linear-gradient(180deg, #fffdfa, #ffffff);
}

.cycle-step-number {
    position: absolute;
    top: -18px;
    left: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #178a3f, #42af52);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(23, 138, 63, 0.25);
}

.cycle-step-number-gold {
    background: linear-gradient(135deg, #d89000, #f1bb28);
    box-shadow: 0 10px 25px rgba(216, 144, 0, 0.25);
}

.cycle-step-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f5a3a;
}

.cycle-step-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #3c3c3c;
}

.cycle-step-card-gold h3 {
    color: #c27c00;
}

.cycle-step-1 {
    top: 80px;
    left: 40px;
}

.cycle-step-2 {
    top: 260px;
    left: 10px;
}

.cycle-step-3 {
    top: 470px;
    left: 40px;
}

.cycle-step-4 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.cycle-step-5 {
    top: 470px;
    right: 40px;
}

.cycle-step-6 {
    top: 260px;
    right: 10px;
}

.cycle-step-7 {
    top: 80px;
    right: 40px;
}

.cycle-line {
    position: absolute;
    border: 2px dashed rgba(23, 138, 63, 0.55);
    border-radius: 999px;
    z-index: 1;
}

.cycle-line-1 {
    top: 190px;
    left: 300px;
    width: 170px;
    height: 90px;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(-8deg);
}

.cycle-line-2 {
    top: 360px;
    left: 280px;
    width: 180px;
    height: 80px;
    border-right: 0;
    border-top: 0;
    transform: rotate(6deg);
}

.cycle-line-3 {
    top: 560px;
    left: 300px;
    width: 180px;
    height: 90px;
    border-right: 0;
    border-top: 0;
    transform: rotate(18deg);
}

.cycle-line-4 {
    bottom: 170px;
    left: 50%;
    width: 160px;
    height: 80px;
    transform: translateX(-50%);
    border-left: 0;
    border-right: 0;
    border-top: 2px dashed rgba(216, 144, 0, 0.6);
    border-bottom: 0;
}

.cycle-line-5 {
    top: 560px;
    right: 300px;
    width: 180px;
    height: 90px;
    border-left: 0;
    border-top: 0;
    transform: rotate(-18deg);
}

.cycle-line-6 {
    top: 360px;
    right: 280px;
    width: 180px;
    height: 80px;
    border-left: 0;
    border-top: 0;
    transform: rotate(-6deg);
}

.cycle-line-7 {
    top: 190px;
    right: 300px;
    width: 170px;
    height: 90px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(8deg);
}

.cycle-mobile-main-image {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cycle-mobile-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
}

.cycle-mobile-card-gold {
    background: linear-gradient(180deg, #fffdfa, #ffffff);
}

.cycle-mobile-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #178a3f, #42af52);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cycle-mobile-number-gold {
    background: linear-gradient(135deg, #d89000, #f1bb28);
}

.cycle-mobile-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: #0f5a3a;
}

.cycle-mobile-card-gold h3 {
    color: #c27c00;
}

.cycle-mobile-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #3c3c3c;
}

.impact-cycle-banner {
    background: linear-gradient(135deg, #0f7a3d, #178a3f);
    color: #fff;
    border-radius: 999px;
    padding: 1.35rem 1.5rem;
    text-align: center;
    box-shadow: 0 14px 35px rgba(23, 138, 63, 0.18);
    position: relative;
    z-index: 3;
}

.impact-cycle-banner p {
    font-size: 1.25rem;
    line-height: 1.7;
}

.impact-cycle-banner strong {
    color: #ffe08c;
}

.impact-cycle-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.impact-cycle-decor-left {
    top: -100px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,161,6,.16) 0%, rgba(23,138,63,.10) 45%, rgba(255,255,255,0) 75%);
}

.impact-cycle-decor-right {
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,138,63,.14) 0%, rgba(224,161,6,.12) 45%, rgba(255,255,255,0) 75%);
}

@media (max-width: 1399.98px) {
    .cycle-desktop {
        min-height: 960px;
    }

    .cycle-center {
        width: 320px;
        height: 320px;
    }

    .cycle-step-card {
        width: 270px;
    }

    .cycle-step-card h3 {
        font-size: 1.6rem;
    }

    .cycle-step-card p {
        font-size: 1.05rem;
    }

    .cycle-step-1 { left: 20px; }
    .cycle-step-2 { left: 0; }
    .cycle-step-3 { left: 20px; }
    .cycle-step-5 { right: 20px; }
    .cycle-step-6 { right: 0; }
    .cycle-step-7 { right: 20px; }
}

@media (max-width: 1199.98px) {
    .impact-cycle-title {
        font-size: 2.5rem;
    }

    .impact-cycle-intro {
        font-size: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .impact-cycle-title {
        font-size: 2.1rem;
    }

    .impact-cycle-intro {
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .impact-cycle-banner {
        border-radius: 2rem;
    }

    .impact-cycle-banner p {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .impact-cycle-title {
        font-size: 1.7rem;
    }

    .cycle-mobile-card h3 {
        font-size: 1.25rem;
    }

    .impact-cycle-banner {
        padding: 1rem;
    }
}







.eqap-footer {

    background: linear-gradient(
        135deg,
        #0f5a3a,
        #178a3f
    );

    color: #ffffff;
}

.footer-description {

    font-size: 0.95rem;
    line-height: 1.7;
    color: #e6f4ea;
    max-width: 380px;
}

.footer-title {

    font-weight: 700;
    margin-bottom: 15px;
    color: #f1bb28;
}

.footer-links,
.footer-contact {

    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {

    margin-bottom: 10px;
}

.footer-links a {

    color: #e6f4ea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {

    color: #f1bb28;
}

.footer-contact li {

    font-size: 0.9rem;
    color: #e6f4ea;
}

.footer-divider {

    border-color: rgba(255,255,255,0.2);
}

.footer-bottom p {

    font-size: 0.85rem;
    color: #e6f4ea;
}