@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: 2px solid #07293F;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 1.6em;
    line-height: 1.1;
    color: #B98F70;
    text-transform: uppercase;
    text-align: right;
}
h1 span {
    display: block;
    font-weight: 400;
}
h1+p {
    text-align: right;
    text-transform: uppercase;
    font-size: 1.6em;
    line-height: 1.1;
}
h2 {
    font-size: 2.5em;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0 0 0.5rem 8rem;
}
h2 span {
    font-weight: 700;
    text-indent: 6rem;
    display: block;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 1rem 1.5rem;
}
article {
    padding: 0 1.5rem;
}
.slogan {
    border-left: 2px solid #000;
    padding: 0 0 0 1rem;
    font-size: 1.25em;
    line-height: 1.3;
    width: 270px;
    margin-bottom: 2.5rem;
}
.slogan1 {
    position: absolute;
    right: 1.5rem;
    bottom: 16rem;
    color: #fff;
    font-size: 1.2em;
    line-height: 1.3;
}
.slogan1 strong {
    text-transform: uppercase;
    text-align: right;
    font-size: 0.7em;
    display: block;
    color: #000;
}
.contact {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    color: #fff;
    font-size: 0.9em;
    line-height: 1.3;
}
figure {
    margin: 0 0 -5rem;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h2 {
        margin-left: 0;
        font-size: 2em;
    }
    h2 span {
        text-indent: 0;
    }
    header, article {
        padding-inline: 1rem;
    }
    .slogan {
        width: auto;
    }
    figure {
        margin-bottom: 1rem;
    }
    .slogan1 {
        position: static;
        color: #000;
    }
    .slogan1 br {
        display: none;
    }
    .contact {
        position: static;
        color: #000;
        padding: 1rem;
    }
}