@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

:root {
    --theme-gradient: linear-gradient(235deg, #127681 20%, #8EC6C5 87%);
    --theme-gradient-orange: linear-gradient(235deg, #EF4040 10%, #FFA732 82%);
    --theme-gradient-purple: linear-gradient(235deg, #711DB0 22%, #C21392 83%);
}

html, body {
    padding:0;
    margin:0;
    font-family: "Golos Text", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2 {
    font-weight: 900;
    text-transform: uppercase;
}

#reyez-slideshow {
    margin: 0;
    position: relative;
    width: 100vw;
    height: 100vh;
    padding: 0;
}

.slideshow__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.the-content {
    position: absolute;
    top:50%;
    left:0;
    width:100vw;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
}

.title--h1 {
    font-size:6rem;
    line-height: 5.2rem;
    display: block;
    text-align: center;
}

.title--h1 strong {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title--subtitle {
    font-size:4rem;
    display: block;
    margin-top:-60px;
    text-align: center;
}

.title--subtitle strong {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme--orange .title--h1 strong {
    background: var(--theme-gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme--orange .title--subtitle strong {
    background: var(--theme-gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown {
    padding: 10px 30px 10px;
    background:var(--theme-gradient-purple);
    border-radius:60px;
    max-width:600px;
    margin:0 auto;
}

.countdown__box {
    display: inline-block;
    position: relative;
    width:100px;
    margin:0 10px;
    color:white;
}

.countdown__box::after {
    position: absolute;
    content:':';
    display: inline-block;
    color:yellow;
    right:-20px;
    top:calc(50% - 10px);
    transform: translateY(-50%);
    color:white;
    font-weight: 400;
    font-size: 1.8rem;
    opacity: 0.4;
}

.countdown__box:last-of-type::after {
    content:'';
}

.countdown__box--timer {
    display: block;
    width:100%;
    height:75px;
    font-size:4rem;
}

.countdown__box--title {
    display: block;
    height:20px;
    font-weight: 200;
    font-size:0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.hexagon-image {
    position: absolute;
    left:100px;
    top:100px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    z-index: 1;
}

.hexagon-image__img {
    width:500px;
}