@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 0.938em/1.5em "Trebuchet MS", sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 1000px;
    border: solid 1px #000;
    background: #fff;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    text-transform: uppercase;
    font-size: 3.1em;
    line-height: 1.1em;
    color: #0A50A1;
}

h1, h2 {
    font-family: Segoe, "Segoe UI", sans-serif;
}

h2 {
    color: #55a932;
    font-size: 1.5em;
    line-height: 1.3;
    text-align: center;
    overflow: hidden;
    padding-bottom: 1rem;
    position: relative;
}

h2::before, h2::after {
    background-color: currentColor;
    content: "";
    height: 6px;
    top: 14px;
    position: absolute;
    right: 0;
    width: 31%;
}

h2::before {
    width: 31%;
    left: 0;
}

.darkgreen {
    color: #006B47;
}

.darkgreen:before, .darkgreen:after {
    width: 41%;
}

.orange:before, .orange:after {
    width: 43%;
}

.orange {
    color: #F18700;
}

.red:before, .red:after {
    width: 43%;
}

.red {
    color: #E63312;
}

.pink {
    color: #D70077;
}

.pink:before, .pink:after {
    width: 39%;
}

.benefits {
    background: #FEF3E5;
    padding: 1rem 1.5rem;
    margin: 0 -1.5rem 1rem;
}

.benefits ul {
    font-family: Segoe, "Segoe UI", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    text-transform: uppercase;
    font-weight: 700;
}

.benefits li:before {
    display: none;
}

.benefits li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    width: 49%;
    text-transform: uppercase;
    padding: 0 0 1rem;
    gap: 0.5rem;
}

.benefits :is(li, p) {
    color: #F18801;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: "■";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
    color: #006b47;
}

header {
    padding: 1rem 1.5rem;
}

.banner {
    display: flex;
    justify-content: center;
    padding: 0 0 1rem;
}

.logo {
    display: flex;
    justify-content: end;
}

.title :is(h1, p) {
    text-align: center;
}

.title {
    background: #E5F0F7;
    padding: 1rem 1.5rem;
    margin: 0 -1.5rem 1rem;
}

.title p span {
    display: block;
}

.title p {
    color: #209BD8;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avt, .pictures {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.avt section {
    width: 83%;
}

article {
    padding: 0 1.5rem;
}

footer {
    padding: 1rem 1.5rem 5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(108, 71, 150, 0)), to(rgba(108, 71, 150, 0.75)));
    background: linear-gradient(to bottom, rgba(108, 71, 150, 0) 0%, rgba(108, 71, 150, 0.75) 100%), url('../images/bg.png') no-repeat bottom;
}

.button {
    text-align: center;
    border-top: 1px solid #000;
    margin: 1rem 0;
}

.button a.apply {
    font-size: 1rem;
    margin: 0 0.5rem;
    text-decoration: none;
    background: #0A50A1;
    color: #fff;
    border: 1px solid #0A50A1;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 0.7rem;
}

.button a.apply:hover {
    background: #fff;
    color: #0A50A1;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    h1 {
        font-size: 2em;
    }

    p :is(span, a) {
        display: inline-block;
    }

    .pink:before, .pink:after, h2::before, h2::after {
        display: none;
    }

    .avt section {
        width: 60%;
    }

}

@media only screen and (max-width:500px) {
    .avt section {
        width: 100%;
    }

    .avt {
        flex-wrap: wrap;
    }

}

@media only screen and (max-width:600px) {
    .benefits ul {
        width: 100%;
        flex-direction: column;
    }

    .benefits li {
        width: 100%;
    }

}
