/* Responsiveness */

@media (max-width: 560px) {
    .cards,
    .features {
        grid-template-columns: 1fr;
    }
    .wrap {
        padding: 0 18px;
    }
}

/* Large Screens (Desktops) */

@media only screen and (max-width : 1440px) {

}

@media only screen and (max-width : 1430px) {

}

/* Medium Screens (Tablets - Landscape) */

@media only screen and (max-width : 1225px) {

    header.site .wrap {
        flex-direction: column;
    }

    header.site .logo {
        position: absolute;
        left: 15px;
        top: 15px;
    }

    header.site .options {
        order: -1;
    }

    header.site #navigation {
        margin-left: auto;
    }
}

/* Small Screens  (Tablets - Portrait ) */

@media only screen and (max-width : 991px) {

    header.site #navigation ul li {
        margin-left: 6px;
        margin-right: 6px;
    }

    header.site .logo {
        width: 182px;
    }

    header.site .logo img {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* Extra Small Screens */

@media only screen and (max-width : 767px) {
	#menuBtn {
		display: block;
	}	

    header.site {
        position: static;
        padding: 20px 15px;
        border-top: 8px solid rgba(201, 118, 61, 0.9);
        border-bottom: 4px solid rgba(201, 118, 61, 0.9);
    }

    header #navigation {
        display: none;
    }

    header.site .wrap {
        flex-direction: column;
    }

    header.site .logo {
        position: static;
        display: block;
        margin: 0 auto 5px;
        width: 250px;
    }

    header.site .logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    header.site .options {
        margin-right: auto;
        order: 10;
    }

    .hero-grid,
    .welcome .inner,
    .curric .inner,
    .findus .inner,
    .follow .inner {
        grid-template-columns: 1fr;
    }
    .cards,
    .features {
        grid-template-columns: 1fr 1fr;
    }
    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
    }
    .gallery .photo:nth-child(1) {
        grid-row: span 1;
    }
    .nav ul {
        display: none;
    }

    .journey .step {
        width: 73px;
    }

    .gallery .photo:nth-child(1) {
        grid-column: span 2;
    }

    .fb-embed {
        margin: 0;
    }

    .quote {
        width: 100%;
        margin-bottom: 30px;
    }

    .quote:last-child {
        margin-bottom: 0;
    }

    .findus .info {
        padding: 36px 20px;
    }

    .foot-grid {
        display: block;
    }

    .foot-grid>div {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width : 478px) { 
    .cards, .features {
        display: block;
    }

    .card,
    .feature {
        margin-bottom: 30px;
    }

    .card:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width : 400px) { 

}