html,
body {
    overflow-x: hidden;
}

header,
section {
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

main {
    background: var(--section-zero-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--Josefin);
}

/*Section 0*/
.section-0 .row .col-md-12 {
    padding-top: 10vmin;
    font-family: var(--Jost);
    color: var(--light-black);
}

.section-0 .container .col-md-12 h6 {
    color: var(--primary-colour);
    padding: 1.5vw;
    letter-spacing: 4px;
    font-size: 1.5rem;
}

.section-0 .container .col-md-12 h1 {
    color: var(--brand-colour);
    font-size: 4rem;
    font-weight: bold;
    padding: 0.1em 0em;

}

.section-0 .container .col-md-12 p {
    padding: 1vmin 5vmin;
    font-size: 1rem;
}

.section-0 .container .col-md-12 button {
    background-color: var(--primary-colour);
    color: var(--secondary-colour);
    border-radius: 3px;
}

/*Section 1*/

.section-1 {
    padding: 10vmin 1vmin 10vmin 1vmin;
}

.section-1 .container-fluid {
    width: 90%;
    display: flex;
    flex-direction: column;
}


.section-1:first-child {
    width: 100%;
}

.section-1 .col-md-12 .player img {
    width: 100%;
    height: auto;
    border-radius: 0.2em;
    object-fit: contain;
}

.section-1 .col-md-12 .panel {
    background: whitesmoke;
    border-radius: 3px;
    text-align: left;
    padding: 5vmin;
    box-shadow: 0px 25px 42px rgba(31, 31, 31, 0);
    font-family: var(--Josefin);
    height: auto;
    width: 100%;
}

.section-1 .col-md-12 .panel h1,
.section-1 .col-md-12 .panel h2,
.section-1 .col-md-12 .panel h3,
.section-1 .col-md-12 .panel h4,
.section-1 .col-md-12 .panel h5,
.section-1 .col-md-12 .panel h6 {
    color: var(--brand-colour);
}

.section-1 .col-md-12 .panel h1 {
    font-weight: bold;
    padding: 0.4em 0;
    font-size: 2rem;
}

.section-1 .col-md-12 .panel p,
.section-1 .col-md-12 .panel li {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0, 5);
}

.section-1 .col-md-12 .panel .richtext-image {
    width: 100%;
    height: auto;
}

/*--MEDIA QUERIES--*/

/*If the screen size is 321px or less*/
@media only screen and (max-width: 321px) {}

/*If the screen size is 480px or less*/
@media only screen and (max-width: 480px) {
    .section-0 .container .col-md-12 h1 {
        font-size: 3rem;
    }

    .section-1 .container-fluid .row .col-md-12 .panel {
        padding: 10vmin;
    }
}

/*If the screen size is 596px wide but less than or = 767px*/
@media only screen and (min-width: 597px) and (max-width: 767px) {}

/*If the screen size is 640px or less*/
@media only screen and (max-width: 640px) {}

/*If the screen size is 767px or less*/
@media only screen and (max-width: 767px) {
    .section-1 .container-fluid {
        width: 100%;
        padding: 0;
    }

    .section-1 .container-fluid .col-md-12 {
        width: 100%;
        padding: 0;
    }

}

/*If the screen size is 768px wide or more*/
@media only screen and (min-width: 768px) {}

/*If the screen size is at least 768px wide but less than or = 996px*/
@media only screen and (min-width: 768px) and (max-width: 996px) {

    .section-1 .container-fluid {
        width: 100%;
        padding: 0;
    }

    .section-1 .container-fluid .col-md-12 {
        width: 100%;
        padding: 0;
    }
}

/*If the screen size is 768px wide but less than or = 1023px*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {}

/*If the screen size is 996px wide or less*/
@media only screen and (max-width: 996px) {}

/*If the screen size is 1006px wide but less than or = 1366px*/
@media only screen and (min-width: 1006px) and (max-width: 1366px) {}

/*If the screen size is 1024px wide or more*/
@media only screen and (min-width: 1024px) {}

/*If the screen size is 1024px wide but less than or = 1200px*/
@media only screen and (min-width: 1024px) and (max-width: 1200px) {}

/*If the screen size is 1280px wide or less*/
@media only screen and (max-width: 1280px) {}

/*If the screen size is 1279px wide or less*/
@media only screen and (min-width: 1280px) {}

@media only screen and (min-width: 2560px) {}