:root {
    --col-ec-green: #86BC24;
    --col-text-ptimary: #828186;
    --col-border: #f1f1f1f1;
    --shadow-card: 0px 6px 20px 0px rgba(204,204,204,.65);
}
/* RESET BROWSER STYLES */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1em;
    font-size: 100%;
    vertical-align: baseline;
}
img {
    max-width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    position: relative;
    width: 100%;
}
html, body {
    margin: 0;
    font-size: 16px;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--col-text-ptimary);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Titillium Web',sans-serif;
    color: var(--col-ec-green);
    margin-bottom: 1rem;
}
h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25em;
    margin-bottom: 0;
}
p {
    line-height: 1.35em;
    font-size: 16px;
}

.card {
    padding: 2.5rem 2rem;
    border-width: 0px;
    border-color: transparent;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

ul {
    list-style: none; /* Remove default bullets */
    padding-left: 1.2rem;
    margin-top: 1.5rem;
}

ul li::before {
    content: "\2022";
    color: var(--col-ec-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; /* Also needed for space (tweak if needed) */
    margin-bottom: 10px;
}


a {
	text-decoration: none;
    display: inline-block;
    color: var(--col-text-ptimary);
}

a:hover {
    color: var(--col-ec-green);
}

a:visited {
    color: var(--col-ec-green);
  }

.moduls-section {
    margin-top: 3rem;
}
.moduls-section h2 {
    color: White;
}
.moduls-section .card {
    background-color: var(--col-ec-green);
    color: white;
}
.moduls-section-title {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}
.modul {
    margin-bottom: 1.5rem;
}
.modul-title {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1rem;
}
.modul-title h3 {
    color: White;
}
.title-icon {
    display: flex;
    padding: 8px;
    background: white;
    border-radius: 8px;
}
.title-icon svg {
    fill: var(--col-ec-green);
    width: 15px;
    height: 15px;
}
header {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    background: var(--col-ec-green);
    color: white;
}
footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    background: var(--col-ec-green);
    color: white;
}
footer a {
    color: white;
    text-decoration: underline;
}
footer a:visited {
    color: white;
}

@media screen and (max-width: 990px) {
    .row {
        flex-direction: column!important;
    }
}

/* GRID LAYOUT */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media screen and (min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media screen and (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}