/* RESET */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    position: relative;
    background-color: #000;
    background-image: url('assets/background-mobile-wosa.jpg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    body {
        background-image: url('assets/background-wosa.jpg');
    }
}

table {
    border-collapse: collapse;
}

cite {
    font-style: normal;
}

figure {
    margin-left: 0;
    margin-right: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

button,
input[type="submit"] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

:state(block) {
    margin-bottom: 0;
}

/* https://www.kihlstrom.com/2016/firefox-button-padding-css-fix/ */
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/*
    :focus trick by @leaverou
    https://twitter.com/leaverou/status/1045768279753666562?lang=ca
  */
:focus {
    outline: 1px solid var(--color-0);
    outline-offset: -1px;
}

:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
}

/* IE11 */
main,
header,
nav,
footer {
    display: block;
}

/* https://stackoverflow.com/a/14007839 */
::-ms-clear {
    display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

iframe {
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
p {
    margin: 0;
    padding: 0;
    border: 0;
}

button {
    background: transparent;
    cursor: pointer;
}


body {
    font-family: sans-serif, 'Gill Sans';
}


/* BLOCKS */
.__header {
    position: absolute;
    width: 100%;
    z-index: 50;
    padding: 32px 16px;

    @media (min-width: 1024px) {
        padding: 32px 24px;
    }
}

.__header .logo {
    width: 200px;
}

.__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.__video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    max-width: 100%;
    display: block;
}

.__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 16px;
    padding-right: 32px;
    padding-top: 220px;
    padding-bottom: 24px;

    @media (min-width: 1024px) {
        flex-direction: row;
        padding: 0 24px;
        padding-top: 227px;
        gap:32px;
    }
}

.__main-text {
    max-width: 800px;
}

.__title {
    font-family: sans-serif, 'Gill Sans';
    font-size: 28px;
    font-weight: 500;
    line-height: 38.42px;
    color: #FFFFFF;
    margin-bottom: 24px;

    @media (min-width: 1024px) {
        font-size: 40px;
        font-weight: 500;
        line-height: 48px;
        margin-bottom: 48px;
    }
}

.__text {
    font-family: sans-serif, 'Gill Sans';
    font-size: 20px;
    font-weight: 500;
    line-height: 27.44px;
    color: #FFFFFF;

    @media (min-width: 1024px) {
        font-size: 22px;
        font-weight: 500;
        line-height: 26.4px;
        text-align: left;
        max-width: 680px;
    }
}

.__text a{
    text-decoration: underline;
}

.__col-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 23.52px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 8px;

    @media (min-width: 1024px) {
        font-size: 14px;
        font-weight: 700;
        line-height: 20.58px;
        text-align: left;

    }
}

.__col-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 23.52px;
    color: #F2F2F2;

    @media (min-width: 1024px) {
        font-size: 16px;
        font-weight: 500;
        line-height: 20.58px;
        text-align: left;
    }
}

.__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 23.52px;
    color: #F2F2F2;
    display: flex;
    gap: 2px;

    @media (min-width: 1024px) {
        font-size: 14px;
        font-weight: 500;
        line-height: 20.58px;
    }
}

.__link-2:hover {
    text-decoration: underline;
}

.__link:hover {
    color: #FFFFFF;
}

.__col {
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    @media (min-width: 1024px) {
        gap: 64px;
        margin-right: 24px;
    }
}

.__col-social {
    width: 227.84px;
}

.__col-social {
    
    width: 227.84px;
    
    @media (min-width: 1024px) {
        margin-right: 0;
        width: 100%;
        margin-top: 2em;
    }
}

.__how-to-reach {
    margin-top: 24px;
}

.__col-group {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    
    @media (min-width: 1024px) {
        flex-direction: column;
    }
}

.__schedule-row {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
}

.__desktop .__schedule-row .__col-text {
    font-size: 14px;
}

.__other-schedules {
    margin-top: 12px;
}

.__desktop {
    display: none;

    @media (min-width: 1024px) {
        display: flex;
    }
}

.__mobile {
    margin-top: 111px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    @media (min-width: 1024px) {
        display: none;
    }
}

.__row {
    max-width: 300px;
    display: flex;
    gap: 31px;
}

.__row-full {
    max-width: initial;
    gap: 31px;
}

.__row-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.__contact-info {
    display: flex;
    flex-direction: column;
}

.__schedule {
    width: 100%;
}

.__mobile .__location .__col-text {
    font-weight: 400;
}

.__mobile .__contact-info .__col-text {
    font-weight: 400;
}

.__watch {
    height: 100%;
    margin-right: 36px;
}