/* Home styles */

.main {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 0;
    padding-top: 130px;
    padding-bottom: 120px;
}
.main.home {
    background-color: #ccc;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    transition-duration: 2s;
    transition-timing-function: linear;
    transition-delay: 1s;
    animation-timing-function: ease-in-out;
}
.bg__sf {
    background-image: url('../../assets/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main__logo {
    line-height: 0;
    margin: 0;
    padding: 0;
}

.main__logo img {
    width: 215px;
}

.main__slogan {
    margin: 1em 0 0 0;
    padding: 0;
}

.main__slogan img {
    height: 54px;
    width: 247px;
}

.main__date {
    color: #fff;
    font-size: 1.2em;
    padding: 0 1em;
    text-align: center;
    margin-top: 15px;
    font-weight: normal;
}

.second__date {
    color: #fff;
    font-size: 1.2em;
    padding: 0 1em;
    text-align: center;
    margin-top: 0;
    font-weight: bold;
    margin-bottom: 15px;
}

.main__cta {
    margin-top: 1.5em;
}

.winners {
    font-size: 1em;
    background-color: #000;
    border-radius: 30px;
    color: #F59600;
    padding: 10px 30px;
    text-decoration: none;
    text-align: center;
    margin: 0 10px;
}
.winners:hover {
    transition: all .2s ease-out;
    transform: scale(1.08);
}

#bgVideo {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 100%;
    height: 800px;
    transform: translateX(calc((100% - 50vw) / 2));
}

.home__box {
    background-color:rgba(0, 0, 0, 0.6);
    margin: 30px 0;
}

@media screen and (min-width: 500px) {
    .main {
        padding-top: 200px;
        padding-bottom: 160px;
    }
    .main__logo img {
        width: 300px;
    }
    .main__date {
        font-size: 1.6em;
    }

    .winners {
        font-size: 18px;
        width: 200px
    }
    .second__date {
        font-size: 1.8em;
    }
}

@media screen and (min-width: 780px) {

    .main.home {
        background-position: bottom left;
    }

   #bgVideo {
        transform: translateX(calc((100% - 100vw) / 2));
    }

    .main {
        padding-bottom: 150px;
    }

}

@media screen and (min-width: 960px) {

    .main__slogan img {
        height: 102px;
        width: 519px;
    }

    .main__date {
        font-size: 1.6em;
    }

    #bgVideo {
        height: unset;
        min-height: 100%;
    }

    .winners {
        font-size: 20px;
        width: 220px;
    }

}

@media screen and (min-width: 1200px) {
    .main.home {
        background-position: bottom center;
    }
}

@media screen and (min-width: 1500px) {

    .main {
        padding-top: 200px;
        padding-bottom: 215px;
    }

}
