* {
    box-sizing: border-box;
}

html {
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

body {
    background-color: #191818;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    padding: 24px 32px 0 32px;
    margin: 0;
}

@media (min-width: 768px) {
    body {
        padding: 40px 40px 0 40px;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
    width: fit-content;
}

.wcoc-logo {
    width: 100%;
    margin: 0 auto;
    max-width: 250px;
    height: fit-content;
}

.tag-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: center;
}

.tag-line p {
    padding: 0 8px;
    border-right: #E30613 solid 2px;
    line-height: 1;
    margin: 0;
}

.tag-line p:nth-child(4) {
    border-right: none;
}


h1,
h2,
.content__icon p {
    font-family: 'Karla', sans-serif;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.25rem;
        margin-bottom: 32px;
    }
}

p {
    font-family: 'Lato', sans-serif;
}

.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .content {}
}

.content__upper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content__upper__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content__upper__icon p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF1623;
    margin: 0;

}

@media(min-width: 768px) {
    .content__upper__icon p {
        font-size: 2rem;
    }
}

.content__upper__icon img {
    width: 50px;
}

@media (min-width: 768px) {

    .content__upper__icon img {
        width: 75px;
    }
}

.content__upper__details {
    max-width: 500px;
    text-align: center;
    z-index: 10;
}

.content__upper__details p {
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .content__upper__details p {
        font-size: 1.25rem;
        margin-bottom: 8px;
        flex-direction: row;
        column-gap: 8px;
        justify-content: center;
    }
}

.content__upper__details p:nth-child(1) {
    margin-bottom: 16px;
}

.content__upper__details p:nth-child(2) {
    margin-bottom: 8px;
}

.content__upper__details a {
    color: #fff;
    cursor: pointer;
    text-underline-offset: 4px;
    text-decoration-color: #E30613;
    text-decoration-thickness: 1.5px;
    z-index: 10;
}

.content__upper__details a:hover {
    text-decoration: none;
}

.content__lower {
    width: calc(100% - 80px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    max-width: 500px;
}


@media (min-width: 768px) {
    .content__lower {
        width: 50%;
    }
}

.content__lower__image svg {
    display: block;
    height: 100%;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .content__lower__image svg {
        width: 100%;
    }
}

.hob-animate {
    fill: #E30613;
    transition: fill .75s ease-in-out;
}

.wcoc-logo:hover .hob-animate,
.content__lower__image:hover .hob-animate {
    fill: rgb(255, 255, 255, 25);
}