/* 
 * 	1. - Flexbox Grid
-------------------------------------------------------------------------------*/

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.8rem;
    padding-left: 0.8rem
}

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -0.8rem;
    margin-left: -0.8rem
}

.row.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse
}

.col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse
}

.col-xs,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.8rem;
    padding-left: 0.8rem
}

.col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%
}

.col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%
}

.col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%
}

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%
}

.col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%
}

.col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%
}

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%
}

.col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%
}

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%
}

.col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%
}

.col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%
}

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
}

.col-xs-offset-1 {
    margin-left: 8.333%
}

.col-xs-offset-2 {
    margin-left: 16.667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.333%
}

.col-xs-offset-5 {
    margin-left: 41.667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.333%
}

.col-xs-offset-8 {
    margin-left: 66.667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.333%
}

.col-xs-offset-11 {
    margin-left: 91.667%
}

.start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start
}

.center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center
}

.end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end
}

.top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start
}

.middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center
}

.bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end
}

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1
}

.last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1
}

@media only screen and (min-width:48em) {
    .container {
        width: 46rem
    }
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 0.8rem;
        padding-left: 0.8rem
    }
    .col-sm {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-sm-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-sm-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-sm-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-sm-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-sm-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-sm-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-sm-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-sm-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-sm-offset-1 {
        margin-left: 8.333%
    }
    .col-sm-offset-2 {
        margin-left: 16.667%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-4 {
        margin-left: 33.333%
    }
    .col-sm-offset-5 {
        margin-left: 41.667%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-7 {
        margin-left: 58.333%
    }
    .col-sm-offset-8 {
        margin-left: 66.667%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-10 {
        margin-left: 83.333%
    }
    .col-sm-offset-11 {
        margin-left: 91.667%
    }
    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-sm {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-sm {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-sm {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-sm {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-sm {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-sm {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-sm {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

@media only screen and (min-width:62em) {
    .container {
        width: 61rem
    }
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 0.8rem;
        padding-left: 0.8rem
    }
    .col-md {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-md-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-md-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-md-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-md-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-md-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-md-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-md-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-md-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-md-offset-1 {
        margin-left: 8.333%
    }
    .col-md-offset-2 {
        margin-left: 16.667%
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-4 {
        margin-left: 33.333%
    }
    .col-md-offset-5 {
        margin-left: 41.667%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-7 {
        margin-left: 58.333%
    }
    .col-md-offset-8 {
        margin-left: 66.667%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-10 {
        margin-left: 83.333%
    }
    .col-md-offset-11 {
        margin-left: 91.667%
    }
    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-md {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-md {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-md {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-md {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-md {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-md {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-md {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-md {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

@media only screen and (min-width:75em) {
    .container {
        width: 71rem
    }
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 0.8rem;
        padding-left: 0.8rem
    }
    .col-lg {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }
    .col-lg-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%
    }
    .col-lg-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%
    }
    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }
    .col-lg-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%
    }
    .col-lg-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%
    }
    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }
    .col-lg-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%
    }
    .col-lg-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%
    }
    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }
    .col-lg-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%
    }
    .col-lg-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%
    }
    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }
    .col-lg-offset-1 {
        margin-left: 8.333%
    }
    .col-lg-offset-2 {
        margin-left: 16.667%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-4 {
        margin-left: 33.333%
    }
    .col-lg-offset-5 {
        margin-left: 41.667%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-7 {
        margin-left: 58.333%
    }
    .col-lg-offset-8 {
        margin-left: 66.667%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-10 {
        margin-left: 83.333%
    }
    .col-lg-offset-11 {
        margin-left: 91.667%
    }
    .start-lg {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start
    }
    .center-lg {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center
    }
    .end-lg {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end
    }
    .top-lg {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start
    }
    .middle-lg {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center
    }
    .bottom-lg {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end
    }
    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .between-lg {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
    .first-lg {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1
    }
    .last-lg {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}


/* 
 * 	2. - Reset
-------------------------------------------------------------------------------*/

html,
body,
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,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
figure,
footer,
header,
hgroup,
nav,
section,
details,
summary {
    display: block;
}

img,
object,
embed {
    max-width: 100%;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

input,
select {
    vertical-align: middle;
}

pre {
    white-space: pre;
    /* CSS2 */
    white-space: pre-wrap;
    /* CSS 2.1 */
    white-space: pre-line;
    /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word;
    /* IE */
}

input[type="radio"] {
    vertical-align: text-bottom;
}

input[type="checkbox"] {
    vertical-align: bottom;
}

select,
input,
textarea {
    font: 99% sans-serif;
    border-radius: 0;
}

small {
    font-size: 85%;
}

strong {
    font-weight: bold;
}

td,
td img {
    vertical-align: top;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

pre,
code,
kbd,
samp {
    font-family: monospace, sans-serif;
}

label,
input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
}

button,
input,
select,
textarea {
    margin: 0;
}

button {
    width: auto;
    overflow: visible;
}

.clearfix:before,
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

* {
    box-sizing: border-box;
}

.chromeframe {
    position: absolute;
    top: 0;
}

::-moz-selection {
    background: #000;
    color: var(--accent);
    text-shadow: none;
}

::selection {
    background: #000;
    color: var(--accent);
    text-shadow: none;
}

a:link {
    -webkit-tap-highlight-color: #000;
}

ins {
    background-color: #fcd700;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #fcd700;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 0.3;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

img {
    display: block;
}

input:not([type=checkbox]):not([type=radio]),
textarea {
    -webkit-appearance: none;
    border-radius: none;
    box-shadow: none;
}


/* General */

:root {
    font-size: 62.5%;
    /* Backgrounds */
    --accent: #E4CBB7;
    --background: #F2ECDD;
    /* Type */
    --font-family: sweet-sans-pro, sans-serif;
    --font-family-secondary: new-spirit, sans-serif;
    --text: #000;
    --text-invert: #fff;
    --text-light: rgba(0, 0, 0, 0.5);
    --font-size-xs: 1.2rem;
    --font-size-s: 1.6rem;
    --font-size-m: 2.4rem;
    --font-size-l: 3.2rem;
    /* Border */
    --border: 1px solid rgba(0, 0, 0, 0.15);
    --border-hover: 1px solid rgba(0, 0, 0, 0.3);
    --border-active: 1px solid rgba(0, 0, 0, 0.4);
    --border-invert: 1px solid rgba(255, 255, 255, 0.15);
    /* Spacers */
    --spacer-xs: 0.4rem;
    --spacer-s: 0.8rem;
    --spacer-m: 1.6rem;
    --spacer-l: 3.2rem;
    --spacer-xl: 4.8rem;
    --spacer-xxl: 24rem;
}

body,
html {
    background: var(--accent);
}

body {
    background: var(--background);
    color: var(--text);
    font-size: var(--font-size-xs);
    font-weight: 600;
    line-height: 1.3;
    font-family: var(--font-family);
    font-style: normal
}

.wrapper {
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-secondary);
    font-weight: 500;
    font-size: var(--font-size-m);
    margin-bottom: var(--spacer-m);
}

a,
a:active,
a:hover {
    color: var(--text);
    text-decoration: none;
    position: relative;
}

a:hover {
    color: var(--text);
}

a:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: var(--accent);
    position: absolute;
    left: 0;
    bottom: 0;
    animation-name: underlineOut;
    animation-duration: .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

a:hover:after {
    width: 100%;
}

a:hover:after {
    animation-name: underlineIn;
    animation-duration: .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes underlineOut {
    0% {
        width: 100%;
        left: 0;
    }
    1% {
        width: 100%;
        left: auto;
        right: 0;
    }
    100% {
        width: 0;
        left: auto;
        right: 0;
    }
}

@keyframes underlineIn {
    0% {
        width: 0;
        left: 0;
        right: auto;
    }
    1% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}


/* HEADER */

.header {
    margin-top: var(--spacer-s);
    position: relative;
    margin-bottom: var(--spacer-xxl);
    font-weight: 800;
    text-transform: uppercase;
}

.opening-hours h3 {
    text-transform: none;
}

.hours {
    margin-bottom: var(--spacer-m);
    margin-left: var(--spacer-l);
}

.hours span {
    font-family: var(--font-family-secondary);
    font-size: 90%;
    letter-spacing: 0.5px;
}

.hours span img {
    display: inline-block;
    width: 16px;
    margin: 2px 8px;
}

.logo {
    position: absolute;
    z-index: 900;
    right: 8vw;
    top: 120px;
    width: 320px;
}

.header .contact {
    justify-content: flex-end;
}


/* ABOUT*/

.about {
    margin-bottom: var(--spacer-xxl);
}

h1 {
    font-size: var(--font-size-l);
    font-family: var(--font-family);
    text-indent: 120px;
}

h1 span {
    font-family: var(--font-family-secondary);
    font-weight: 500;
}

.about h1 {
    max-width: 600px;
    margin: 0 auto;
}

.tag {
    color: var(--text);
    font-size: 6vw;
    letter-spacing: -0.75px;
    line-height: 1.5;
    text-align: left;
    display: block;
    margin-bottom: var(--spacer-xl);
    cursor: default;
}

.tag:last-of-type {
    text-align: right;
    margin-top: var(--spacer-xl);
    margin-bottom: 0;
}


/* GALLERY */

.gallery {
    display: flex;
    margin-bottom: var(--spacer-xxl);
}

.gallery img {
    width: 75%;
    margin: 0 auto;
}

.arch {
    border-radius: 500px 500px 0 0;
}

.about-more {
    margin: 0 auto var(--spacer-xxl) auto;
}

.about-more h1 {
    max-width: 1160px;
}


/* MENU */

.menu {
    margin-bottom: var(--spacer-xxl);
    font-family: var(--font-family-secondary);
    font-weight: 500;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.menu h3 {
    margin-left: var(--spacer-xl);
}

.menu-row {
    display: flex;
}

.menu-col-left,
.menu-col-right {
    width: 50%;
    padding: 0 var(--spacer-xl);
}

.menu h4 {
    font-family: var(--font-family);
    font-size: var(--font-size-s);
    font-weight: 800;
    margin-bottom: var(--spacer-m);
    position: relative;
    z-index: 1;
}

.menu h4:before {
    content: "";
    position: absolute;
    display: block;
    height: calc(100% + 3px);
    width: 1600px;
    background: var(--accent);
    right: calc(-1 * var(--spacer-xl));
    top: 0;
    z-index: -1;
}

.menu-col-right h4:before {
    left: calc(-1 * var(--spacer-xl));
}

.menu-cat {
    margin-bottom: var(--spacer-l);
}

.item {
    display: flex;
    margin-bottom: var(--spacer-s);
}

.item .name {
    width: calc(100% - 180px);
}

.item .name img {
    display: inline-block;
    margin: 0 var(--spacer-s) 2px 0;
    width: 10px;
}

.item .qty,
.item .price {
    font-family: var(--font-family);
    font-weight: 600;
    text-align: right;
}

.item .qty {
    width: 100px;
}

.item .price {
    width: 80px;
}


/* FOOTER */

.footer {
    text-align: center;
    font-weight: 800;
    font-size: var(--font-size-xs);
}
.footer-img {
    position: relative;
  width: 100%;
  background: var(--accent);
}
.footer-img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.footer .footer-logo {
    width: 64px;
    margin: 0 auto var(--spacer-m) auto;
}

.footer .footer-logo img {
    display: inline-block;
    margin-bottom: var(--spacer-xs);
}

.contact {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: var(--spacer-m);
}

.contact li {
    margin-right: 3.2rem;
    position: relative;
    display: inline-block;
}

.contact li:last-child {
    margin-right: 0;
}

.contact li:after {
    content: "";
    background: var(--text);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    right: -18px;
    top: 8px;
}

.contact li:last-child:after {
    display: none;
}

.address {
    text-transform: uppercase;
    font-style: normal;
    margin-bottom: var(--spacer-xl);
}

.credit {
    font-size: 100%;
    color: var(--text-light);
}

.credit a {
    color: var(--text-light);
}


/* RESPONSIVE */

@media screen and (max-width:1378px) {
     :root {
        --spacer-xxl: 16rem;
        --font-size-l: 2.4rem
    }
    .about h1 {
        max-width: 520px;
    }
    .about-more h1 {
        max-width: 820px;
    }
}

@media screen and (max-width:991px) {
     :root {
        --spacer-xxl: 8rem;
        --spacer-xl: 3.2rem;
        --font-size-l: 2rem;
        --font-size-m: 2rem;
    }
    h1 {
        letter-spacing: 0.1px;
    }
    .wrapper {
        padding: 0 16px;
    }
    .header {
        flex-direction: column-reverse;
        margin-top: 16px;
        margin-bottom: var(--spacer-xxl);
    }
    .header .contact {
        display: none;
    }
    .logo {
        right: 10px;
        top: 202px;
        width: 50%;
        transform: rotate(2deg);
        padding: 4px;
        border-radius: 2px;
    }
    .menu h3 {
        margin-left: 0;
    }
    .menu-row {
        flex-direction: column;
        align-items: center;
    }
    .menu-col-left,
    .menu-col-right {
        width: 100%;
        padding: 0;
    }
    .item .name {
        width: calc(100% - 140px);
    }
    .item .qty {
        width: 80px;
    }
    .item .price {
        width: 60px;
    }
    .menu h4::before {
        right: -50%;
    }
    .menu-col-right h4::before {
        left: auto;
    }
    .about {
        margin-bottom: 0;
    }
    .about img {
        margin-bottom: var(--spacer-l);
    }
    h1 {
        text-indent: 60px;
    }
    .about h1 {
        max-width: 100%;
        text-indent: 0;
    }
    .gallery img {
        width: 100%;
    }

    .footer-img::after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }
    .footer-img img {
        position: absolute;
        height: 100%;
        object-position: -50px center;
    }
    .contact {
        flex-direction: column;
    }
    .contact li {
        margin-right: 0;
    }
    .contact li::after {
        display: none;
    }
    .contact li a {
        padding: 2px;
        display: block;
    }
    .tag {
        font-size: 12vw;
        line-height: 2;
        margin-bottom: var(--spacer-xxl);
    }
    .tag:last-of-type {
        margin-top: var(--spacer-xxl);
        margin-bottom: 0;
    }
}