video {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/*----------------------------- FLEXBOX ---------------------------------*/
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.col-1 {
    width: 8.333333333333332%;
}

.col-2 {
    width: 16.666666666666664%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333333333%;
}

.col-5 {
    width: 41.66666666666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333333333333336%;
}

.col-8 {
    width: 66.66666666666666%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33333333333334%;
}

.col-11 {
    width: 91.66666666666666%;
}

.col-12 {
    width: 100%;
}

@media (max-width: 768px) {
    .flex {
        flex-direction: column;
    }

    .flex > * {
        width: 100%;
    }
}

/*----------------------------- TEMPLATE ---------------------------------*/
.container {
    width: 1000px;
    margin: auto;
    position: relative;
}

.container-full {
    width: 100%;
    position: relative;
}

.parallax {
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}