@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    color: #fff;
}

b {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 100%;
    padding: 0 15px;
    margin: auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 730px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

section.banner-soon {
    background: url(images/Sunman_Media_Slide1.jpg) no-repeat;
    background-size: cover;
}

section.banner-soon .wrapper {
    padding: 80px 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

section.banner-soon h1 {
    font-weight: 300;
    font-size: 35px;
    max-width: 397px;
    line-height: 1.4;
    margin: 50px 0;
}

section.banner-soon .title p {
    font-weight: 300;
    font-size: 22px;
    max-width: 575px;
    line-height: 1.5;
    margin: 0;
}

section.banner-soon .links {
    width: 100%;
    max-width: 350px;
    margin: 50px 0;
}

section.banner-soon .links a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #fff;
    font-size: 22px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.21);
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 55px;
    text-decoration: none;
}

section.banner-soon .links a:last-of-type {
    margin-bottom: 0;
}

section.banner-soon .links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    background: #E50119;
    border-radius: 50%;
    transition: .3s all ease;
    z-index: -1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

section.banner-soon .links a:hover::before {
    transition: .3s all ease;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

section.banner-soon .anniversary {
    margin-bottom: 30px;
}

section.banner-soon .copyright {
    margin-top: auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .35rem;
    word-spacing: .35rem;
}

@media (max-width: 767px) {
    section.banner-soon .wrapper {
        padding: 60px 0 40px;
    }
    section.banner-soon .logo {
        max-width: 300px;
    }
    section.banner-soon h1 {
        font-size: 30px;
    }
    section.banner-soon .title p {
        font-size: 16px;
    }
    section.banner-soon .links a {
        font-size: 18px;
    }
    section.banner-soon .copyright {
        letter-spacing: .2rem;
        word-spacing: .2rem;
    }
}