@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
body {
    background:var(--white);
}
html {
    font-family:var(--primary-font);
}

:root {
    --primary-color: #162B1E;
    --white: #FAF9F5; /* alt: F9F7F2 */
    --copper: #A67C52;
    --primary-font: "Questrial", sans-serif;
}
.wrapper {
    width:calc(100% - 36px);
    margin: 0 auto;
    max-width:1450px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:calc(100vh - 100px);
    margin-top:45px;
}
.header {
    width:100%;
}
.header img {
    width:180px;
}
h1 {
    font-size:60px;
    line-height:80px;
    color:var(--primary-color);
    margin-bottom:30px;
    font-weight:800;
}
.main-bottom {
    display:flex;
    align-items:center;
    gap:12px;
}
.main-bottom img {
    width:15px;
    height:10px;
}
.main-bottom p {
    font-weight:500;
    color:var(--primary-color);
}
.wrapper-hero {
    position:relative;
}
.hero-img {
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}
.hero-img img {
    width:100%;
    top:-50px;
    position:relative;
}