:root {
    --vh: 100vh;
}

* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: "HelveticaNeueLTStd-Roman", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
    line-height: 1.6;
}

.brand-name {
    display:flex;
    position: relative;
    margin-bottom: 45px;
    margin-top: 0px;
}

.brand-name a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.brand-name svg {
    height: 24px;
    width: auto;
}

@media (min-width: 600px) {
    .brand-name {
        margin-bottom: 60px;
        margin-top: -20px;
    }
    .brand-name svg {
        height: 30px;
    }
}


.brand-name svg:last-child {
    fill: #00cc33;
}

picture.background {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    transition: opacity 1.2s ease 0s;
}
ul li + li {
    margin-top: 5px;
}
picture.background img {
    width: 100%;
    float: left;
    object-fit: cover;
    height: calc(var(--vh, 1vh) * 100);
}
.animate picture.background {
    opacity: 1;
}
a.container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    text-decoration: none;
    display: flex;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}
.title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 80vw;
    margin-left: 0;
    margin-top: -35px;
    width: 100%;
    opacity:0;
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
    display: block;
}
@media(min-width: 600px) {
    .title {
        max-width: 540px;
        margin-top: -45px;
    }
}

@media(min-width: 900px) {
    .title {
        max-width: 640px;
    }
}
.subtitle {
    position: absolute;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
    max-width: 140px;
    width: 100%;
    opacity:0;
    transition: opacity 1.2s ease 1.8s;
}
.animate a.container img {
    opacity: 1;

}

/*.animate a.container img.title:hover {*/
/*    transition: transform .6s ease 0s;*/
/*    transform: translateY(-50%) translateX(-50%) scale(1.05);*/
/*    cursor: pointer;*/
/*}*/
.border {
    width: 20vw;
    height: 20vw;
    max-width:200px;
    max-height: 200px;
    position: absolute;
    transition: transform .6s ease-out 3.2s, opacity .6s ease 3.2s;
    opacity: 0;
    display: flex;
}
@media(min-width: 2000px) {
    .title {
        max-width: 600px
    }
    .subtitle {
        max-width: 220px;
    }
    .border {
        max-width:300px;
        max-height: 300px;
    }
}
.border-wrapper {
    width: 100%;
    height: 100%;
    background: url(../border.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.border.border-left {
    transform: translateY(-15px) translateX(-15px);
    left: 30px;
    top: 30px;
}
.border.border-right {
    transform: translateY(-15px) translateX(15px);
    right: 30px;
    top: 30px;
}
.border.border-right.border-bottom {
    top: auto;
    bottom: 30px;
    transform: translateY(15px) translateX(15px);
}
.border.border-left.border-bottom {
    top: auto;
    bottom: 30px;
    transform: translateY(15px) translateX(-15px);
}
.border.border-right .border-wrapper {
    transform: rotate(90deg);
}
.border.border-right.border-bottom .border-wrapper {
    transform: rotate(180deg);
}
.border.border-left.border-bottom .border-wrapper {
    transform: rotate(-90deg);
}
.animate .border.border-left, .animate .border.border-right {
    transform: translateY(0%) translateX(0%);
    opacity: 1;
}

.content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #37352f;
    overflow: auto;
    padding: 40px 20px;
    transition: opacity 0.3s ease 0s;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
}

@media(min-width: 600px) {
    .content {
        padding: 90px;
    }
}

.content-wrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.content h1 {
    font-weight: normal;
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-size: 2em;
    line-height: 1.3em;
    margin-bottom: 1em;
    margin-top: 0;
}


@media(min-width: 600px) {
    .content h1 {
        font-size: 2.4em;
    }
}

.content h2 {
    font-weight: normal;
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-size: 1.2em;
    margin-bottom: 0;
    margin-top: 0;
}

.content h3 {
    font-weight: normal;
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-size: 1em;
    margin-bottom: 0;
}

.content ul {
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.content h2 + ul, .content h3 + ul {
    margin-top: 5px;
}

.content p {
    margin-top: 10px;
}

.content p + p {
    margin-top: 5px;
}

.content p + h2, .content ul + h2 {
    margin-top: 30px;
}

.content a {
    color: blue;
}

.anim-wrapper {
    position: relative;
    display: inline-flex;
}

.anim {
    animation: spin 10s ease infinite;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    line-height: 1em;
}

hr {
    height: 1px;
    border-top: 2px solid #e7e7e7;
    border-bottom: 0 none;
    border-left: 0;
    border-right: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.new {
    background: #FFFACD;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

figure.teasers {
    display: flex;

    width: calc(100% + 40px);
    margin: 30px -20px;
}

figure.teasers picture {
    width: 50%;
}

figure.teasers picture + picture{
    margin-left: 20px;
    margin-top: 60px;
}

@media(min-width: 600px) {
    figure.teasers {
        width: 100%;
        margin: 60px 0;
    }
    figure.teasers picture + picture{
        margin-left: 60px;
        margin-top: 90px;
    }
}

figure.teasers picture img {
    width: 100%;
}

div[itemprop="description"] {
    margin-bottom: 30px;
}