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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: "";
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100hv;
}

.header {
    background-color: #fdfdfd;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.header_logo {
    width: 8rem;
    padding: 1rem;
    margin-left: 2rem;
    margin-top: 1rem;
}

.header_text {
    color: #0d316e;
    font-size: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 3rem;
}

.main {
    margin-top: 50px;
    margin-bottom: 500px;
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: end;
    margin-top: 3rem;
    max-width: 1200px;
    margin: auto;
}

.promoCard {
    margin-top: 40px;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promoImage {
    width: 100%;
    border-radius: 5px;
}

.promoText {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0d316e;
    font-size: 1.1 rem;
}

.promoButton {
    width: 60%;
    height: 40px;
    border: 1px solid #004441;
    color: #ffffff;
    background-color: #004441;
    letter-spacing: 0.05rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
}

    .promoButton:hover {
        background-color: #b8daea;
        color: #0d316e;
    }

.main_btn {
    color: white;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    height: 4rem;
    width: 12rem;
    border-radius: 15px;
    border: none;
    background: linear-gradient(to right, #0d316e, #016ab1);
    box-shadow: 2px 2px 5px #0d316e(0, 0, 0, 0.4);
    cursor: pointer;
}

    .main_btn:hover {
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
        transform: translateY(-3px);
    }

.footer {
    width: 100%;
    background-color: #9fb6ab;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
     font-family: "Roboto";
}

.footer_logo {
    margin-top: 20px;
    width: 8rem;
}

.footer_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 0.8rem;
    gap: 5px;
     font-family: "Roboto";
}

.footer_list--link {
    text-decoration: none;
    color: white;
}

.footer_RRSS {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 5px;
}

.footer_RRSS--link {
    display: flex;
}

.footer_RRSS--icon {
    width: 80%;
    display: flex;
    margin: auto;
}

.socialMedia {
    width: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

    .socialMedia svg {
        height: 1.5rem;
    }

@media (min-width: 768px) {
    .promoCard {
        margin-top: 3rem;
        width: 350px;
    }
    .main{
        gap: 50px;
        flex-direction: row;
    }
}

@media (min-width: 1440px) {
    .promoCard {
        margin-top: 3rem;
        width: 550px;
    }
    .main{
        gap: 80px;
    }
    .promoText {
    font-size: 1.3 rem;
}
}