
@media only screen and (min-width:1441px) {
    header, .hero-carousel, .tiles-wrapper, .footer-copy {
        width: 80%;
        margin: auto;
    }

    .carousel-slide {
        min-width: 30%;
    }

    header, main, .footer-copy {
        padding: 0rem;
    }
}

@media only screen and (max-width:1200px) and (min-width:951px) {
    .carousel-slide {
        min-width: 100%;
    }
    .carousel-slide img {
        width: 30%; 
        height: 100%;
    }
    .carousel-caption {
        width: 10%;
    }
    h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width:950px) {
    .carousel-slide {
        min-width: 100%;
    }
    .carousel-slide img {
        width: 13%;
    }
    .carousel-caption {
        width: 5%;
    }
    h1 {
        font-size: 30px;
    }
    p {
        font-size: 16px;
    }
    .video-copy h3 {
        font-size: 20px;
    }
    .video-item {
        width: 47%;
    }
    .carousel-copy {
        width: 50%;
    }
    footer {
        padding: 1rem 0rem;
    }
}

@media only screen and (max-width:480px) {
    header, main, .footer-copy {
        padding: 0rem 1rem;
    }
    .hero-carousel {
        display: none;
    }
    nav {
        width: 95%;
        position: absolute;
        top: 3rem;
        z-index: 100;
        background-color: #fff;
        border-radius: 15px;
        left: 0;
        right: 0;
        margin: auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        display: none;
        /* opacity: 0; */
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        margin: auto 0;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    .bar {
        width: 30px;
        height: 3px;
        background-color: #000;
        margin: 4px 0;
        transition: 0.4s;
        display: block;
        border-radius: 10px;
    }
    .init .bar {
        transform: rotate(45deg);
        margin-top: 10px;
    }

    .init .bar:nth-child(2) {
        transform: rotate(-45deg);
        margin-top: -7px;
    }
    .tiles-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 0rem !important;
        width: 100%;
    }
    .video-item {
        width: 100%;
    }
    .reveal {
        display: block;
        animation: menuDisplay 0.5s ease forwards;
    }

    .reveal ul {
        margin-left: -2rem;
        text-align: center;
    }

    .reveal ul li { 
        margin: 0rem 1rem;
    }

    @keyframes menuDisplay {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        
    }
}
