hero {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    min-height: 98vh;
    background: rgb(31, 16, 8);
    overflow: hidden;
}

hero > contentwrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}


hero > contentwrap > content {
    position: relative;
    display: block;
}

hero > contentwrap > content > titlewrap {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 0 52px;
}


hero > contentwrap > content > titlewrap > h1 {
    position: relative;
    display: block;
    text-align: center;
    font-size: 132px;
    color: #ffffff;
    opacity: 0;
    text-shadow: 0px 0px 64px rgba(0, 0, 0, .9), 0px 0px 16px rgba(0, 0, 0, .9);
}

@media(max-width: 1200px) {
    hero > contentwrap > content > titlewrap > h1 {
        font-size: 92px;
    }
}

hero > contentwrap > content > titlewrap > h6 {
    position: relative;
    display: block;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #aaaaaa;
    opacity: 0;
    text-shadow: 0px 0px 32px rgba(0, 0, 0, .9), 0px 0px 8px rgba(0, 0, 0, 1);
}

hero > contentwrap > content > titlewrap > p {
    position: relative;
    display: block;
    text-align: center;
    color: #aaaaaa;
}

hero > contentwrap > content > titlewrap > flagmark {
    margin: 0 auto;
    opacity: 0;
}


hero > contentwrap > content > buttonswrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}


hero > contentwrap > content > buttonswrap > a {
    position: relative;
    white-space: nowrap;
    margin: 0;
    color: #ffffff;
}

hero > contentwrap > content > buttonswrap > a > icon {
    color: #ffffff;
}

hero > contentwrap > content > buttonswrap > a:not(:last-of-type) {
    margin-right: 16px;
}

hero > contentwrap > content > buttonswrap > a.btn:active {
    color: #ffffff;
}


hero > imagewrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    opacity: .8;
}



hero > imagewrap > img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    object-fit: cover;
    object-position: center center;
}

section.single-image {
    padding: 0;
    height: 700px;
    overflow: hidden;
}


section.single-image > contentwrap {
    max-width: unset;
}

section.single-image > contentwrap > img {
    position: relative;
    display: block;
    width: 100%;
    height: 900px;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}


@media(max-width: 1200px) {
    section.single-image {
        height: 500px;
    }

    section.single-image > contentwrap > img {
        height: 700px;
    }
}

@media(max-width: 600px) {
    section.single-image {
        height: 300px;
    }

    section.single-image > contentwrap > img {
        height: 500px;
    }
}