.dionisy__festival_hero {
    height: 100svh;
}

.dionisy__festival_hero_wrapper {
    width: 100%;
    height: 100%;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 5rem 0rem;
}

.dionisy__festival_hero_bg {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    overflow: hidden;
}

.dionisy__festival_hero_bg>img {
    object-fit: cover;

    min-width: 100%;
    max-height: 100%;

    filter: brightness(50%);
}

.dionisy__festival_hero_content {
    max-width: 80%;

    isolation: isolate;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    gap: 1.5rem;

    position: relative;
    top: 4rem;
}

.dionisy__festival_hero_content_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.dionisy__festival_hero_content_title img {
    width: 100%;
    max-width: 30rem;

}

.dionisy__festival_hero_content h1 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: white;
    white-space: nowrap;

    transition: all .25s;
}

.dionisy__festival_hero_content h2 {
    font-family: "Titillium Web", sans-serif;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: white;
}

.dionisy__festival_hero_content_info span {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2rem;
    color: white;
}

.dionisy__festival_hero_content_countdown {
    display: flex;
    justify-content: space-around;
    gap: .5rem;
}

.dionisy__festival_hero_content_countdown>div {
    display: flex;
    align-items: baseline;
    gap: .1rem;

    font-family: "Titillium Web", sans-serif;
    color: white;
    line-height: 2rem;
}

.dionisy__festival_hero_content_countdown>div>span:first-child {
    font-weight: 600;
    font-size: 2rem;
}

.dionisy__festival_hero_content_countdown>div>span:last-child {
    font-weight: 500;
    font-size: 1.25rem;
}

.dionisy__festival_hero_content_action {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.dionisy__festival_hero_content_action>a {
    padding: .5rem 1rem;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    color: white;
}

.dionisy__festival_hero_content_action>a:first-child {
    outline: 2px solid #db27f2;
    /*background: #db27f2;*/

    transition: all .3s;
}

.dionisy__festival_hero_content_action>a:first-child:hover {
    background: #db27f2;
}

.dionisy__festival_hero_content_action>a:last-child {
    outline: 2px solid #f25d27;
    /*background: #f25d27;*/
    transition: all .3s;
}

.dionisy__festival_hero_content_action>a:last-child:hover {
    background: #f25d27;
}

@media screen and (max-width: 767px) {}

@media screen and (min-width: 768px) {
    .dionisy__festival_hero_content_title h1 {
        letter-spacing: 2rem;
        position: relative;
        left: 1rem;
    }
}