@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') bottom left no-repeat, #E40613;
    overflow: hidden;
}
article p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.66em;
    line-height: 1.1em;
    text-transform: uppercase;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1em;
    float: left;
    margin-left: -1rem;
}
.logo {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: #fff;
}
article {
    padding: 2rem 2rem 0;
}
.row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
}
.row i {
    width: 15px;
}
.row p {
    padding-bottom: 0;
}
.box {
    clip-path: polygon(0% 0%, 100% 0%, 89% 100%, 0% 100%);
    background: #E40613;
    position: relative;
    margin: -9rem 0 0 -2rem;
    padding: 2rem;
}
.button {
    text-align: center;
}
.button a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #E40613;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.125em;
}
footer {
    padding: 9rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
footer p {
    font-size: 1.6em;
    line-height: 1.1em;
    padding-top: 0.5rem;
}
.imgab {
    position: absolute;
    left: 12.8rem;
    top: -3.4rem;
    opacity: 0;
}
.icon{
    font-size: 5em;
    position: absolute;
    left: 27rem;
    bottom: 12rem;
    z-index: 999;
    transform: rotate(-40deg)
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 0;
    }
    footer section {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: #000;
    }
    footer p {
        text-align: center;
    }
    footer br {
        display: none;
    }
    footer figure {
        display: flex;
        padding: 2rem;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }
    span {
        display: inline-block;
    }
    .imgab{
        position: static;
        opacity: 1;
    }
    .icon{
        display: none;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer :is(section, figure) {
        padding: 1rem;
    }
}