.videos {
    width: 90%;
    padding: 100px 5% 100px 5%;
    background-color: #00002A
}

.videos h1 {
    text-align: center;
    margin: 0 auto;
    color: #FFF;
    font-size: 50px;
    margin-bottom: 25px;
    text-shadow: 2px 2px #000;
}

.videos .youtube {
    display: flex;
    flex-wrap: wrap;
}

.videos iframe {
    aspect-ratio: 16 / 9;
    width: 32% !important;
    margin-bottom: 50px;
}

.videos .center {
    margin-left: 2%;
    margin-right: 2%;
}

.pictures {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.pic-h1 {
    margin: 0 auto;
    text-align: center;
    font-size: 50px;
    color: #FFF;
    margin-top: 50px;
    margin-bottom: 50px;
}

.pictures img {
    width: 25%;
    height: auto;
}

.big-picture {
    width: 100%;
    height: auto;
    background-color: #000
}

.big-picture img {
    width: 100%;
    vertical-align: top;
}

/* Banner Styles */
.big-banner {
    width: 100%;
    height: 100%;
    background-image: url(images/bp-1.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.big-banner h1 {
    margin: 0 auto;
    text-align: center;
    font-size: 65px;
    font-weight: 700;
    color: #FFF;
    text-shadow: 2px 2px #000;

}

@media screen and (max-width: 950px) {

    .videos  {
        padding: 50px 5% 50px 5%;
    }
    .videos h1 {
        font-size: 40px;
    }

    .videos .youtube {

        display: block;
    }

    .videos .center {
        margin-left: 0px;
        margin-right: 0px;
    }

    .videos iframe {
        width: 100% !important;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .big-banner {
        padding-top: 300px;
        padding-bottom: 300px;
        height: auto;
    }

    .big-banner h1 {
        font-size: 40px;
    }

    .pic-h1 {
        font-size: 40px;
    }
    .pictures img {
        width: 50%;
    }
}

@media screen and (max-width: 950px) {
    .big-banner {
        padding-top: 100px;
        padding-bottom: 100px;
        height: auto;
        background-position: center;
    }

    .big-picture {
        display: none;
    }
}

