body {
    max-width: 55vw;
    height: 100vh;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: rgb(100, 93, 86);

    .sponsors {
        .logos {
            display: grid;
            column-gap: 35px;
            grid-template-columns: 145px 143px 165px 160px;
        }

        .logos .logo:nth-child(1) {
            padding-top: 5px;
        }
    }

    .media {
        .logos {
            display: grid;
            column-gap: 20px;
            grid-template-columns: 155px 225px;
        }
    }

    .logo {
        display: grid;
        max-height: 60px;
        align-content: center;
        overflow: hidden;
    }

}

.content {
    flex: 1;
    display: grid;
    grid-template-columns: 3fr 4fr;

    .column_left {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 28px;
        font-weight: 600;
        text-align: center;

        .title {
            margin: 12vh 0;
            text-align: left;
            font-size: 115px;
            font-weight: 600;
            line-height: 1;
            max-width: 500px;
            text-decoration: none;
            color: black;
        }

        .subtitle {
            font-size: 16px;
        }

        .schedule {
            position: relative;
            width: calc(100% + 50px);
            transform: translateX(25px);
            display: grid;
            grid-template-columns: 20fr 50px 20fr 50px 10fr;
            text-align: left;
            margin-top: 25px;
            margin-bottom: 25px;

            .divider::after {
                content: "";
                display: block;
                background: rgb(241, 244, 242);
                height: 90%;
                position: relative;
                top: 5%;
                width: 2px;
            }

            .divider:nth-child(2)::after {
                left: 5px;
            }

            .divider:nth-child(4)::after {
                left: 20px;
            }

            .hour {
                color: rgb(124, 101, 79);
            }

            .name {
                font-size: 16px;
                font-weight: 400;
            }
        }

        .disclaimer {
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 14px;
            font-weight: 400;
        }

        .address {
            margin: 3.5vh 0;
        }

        .address2 {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            font-size: 20px;
        }

        .buttons {
            display: flex;
            gap: 16px;
        }

        .buttons {
            a {
                display: inline-block;
                font-size: 19px;
                font-family: "Poppins", sans-serif;
                font-weight: 600;
                color: black;
                text-decoration: none;
                border-radius: 10px;
                width: 250px;
                height: 55px;
                line-height: 55px;
            }

            a:nth-child(1) {
                background: rgb(241, 244, 242);
                border: none;
            }

            a:nth-child(2) {
                background: transparent;
                border: 1px black solid;
            }
        }
    }

    .column_right {
        img {
            width: calc(100% + 50px);
            height: auto;
            margin-top: 50px;
        }
    }
}


.harmonogram {
    .content {
        .title {
            margin: 2vh 0;
        }
    }
}

img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 2500px) {
    .address2 {
        flex-direction: column !important;
    }
}

@media (max-width: 2050px) {
    body {
        max-width: 75vw;
    }

    .logos {
        column-gap: 25px !important;
    }
}

@media (max-width: 1920px) {
    body {
        max-width: 75vw;
    }
}

@media (max-width: 1500px) {
    body {
        max-width: 90vw;
    }
}

@media (max-width: 1300px) {
    .content {
        display: block;

        .column_right {
            img {
                width: 100%;
                height: auto;
                margin-top: 50px;
            }
        }
    }

    .schedule {
        width: 100% !important;
        transform: unset !important;
        grid-template-columns: 20fr 25px 20fr 25px 15fr !important;

        .divider::after {
            left: 5px !important;
        }
    }
}

@media (max-width: 1250px) {
    header {
        flex-direction: column
    }

    .title {
        max-width: 460px;
        font-size: 100px !important;
    }
}

@media (max-width: 720px) {
    .logos {
        display: flex !important;
        flex-wrap: wrap;
        max-height: unset !important;
        column-gap: 15px;

        .logo {
            max-width: 10% !important;
            min-width: 65px !important;
            max-height: 30px !important;
            min-height: 30px;
        }
    }

    .title {
        max-width: 460px;
        font-size: 40px !important;
        margin: 2vh 0 !important;
    }

    .date {
        margin-top: 1.5vh;
    }

    .date, .address {
        font-size: 16px !important;
    }

    .address {
        margin-top: 2vh !important;
        /*margin-bottom: 2.5vh !important;*/
    }

    .schedule {
        display: block !important;
        text-align: center !important;
    }

    .buttons {
        flex-direction: column;
        gap: 24px;

        a {
            font-size: 14px !important;
            height: 45px !important;
            line-height: 45px !important;
        }
    }

    .subtitle {
        font-size: 14px !important;
    }

    .hour {
        font-size: 16px !important;
    }

    .name {
        font-size: 14px !important;
    }

    header .media .logos .logo:last-child {
        min-width: 120px !important;
        margin-left: -7px;
    }

    .logo_title {
        font-size: 10px;
    }

    .media {
        .logo_title {
            margin-bottom: 8px;
        }
    }
}
