/* 

Table of Contents

- Body
- Headings
- Navigation
- Text
- Media
- Gallery
- Footer

Swatch
#ffffff White
#231f20 Black
#6dbe45 Green

*/

@font-face {
    font-family: Avenir;
    src: url("AvenirLTStd-Book.otf") format("opentype");
}


/*------------ Body ------------*/

#wrapper {
    display: block;
    width: 100%;
    margin: auto;
    overflow: hidden;
    min-height: 100%;
    margin-bottom: -40px;
}
html, body {
    height: 100%;
    margin: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#logo {
    padding: 50px 100px 0;
}
#box {
    border-style: solid;
    border-color: #6dbe45;
    background-color: #6dbe45;
    position: relative;
    width: 100%;
    height: 100%;
}
#wrapper2 {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/*------------ Headings ------------*/

.title {
	font-size: 1.5em;
	font-family: sans-serif; 
	color: #272526;
    text-align: center;
    letter-spacing: 2px;
}
h1 {
    margin-bottom: 5px;
    font-weight: 200;
    margin-top: 30px;
	margin-bottom: 20px;
    text-align: center;
    font-family:  "Avenir", sans-serif; 
    font-weight: 600;
}
h2 {
    font-family: sans-serif;;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

/*------------ Navigation ------------*/

nav ul {
    list-style: none;
    color: #272526;
}
#menuWrapper nav {
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    margin: 60px auto 0;
    padding: 10px;
}
.menuWrapper nav{
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    margin: 0 auto 0;
    padding: 10px;
}
.menu li {
    display: inline;
}
nav a {
    text-decoration: none;
    color: #ffffff;
    text-transform: capitalize;
    font-family: monospace;
    padding: 10px 20px 11px;
    font-size: 16px;
    transition: background-color 0.5s ease-in-out;
    font-family: "Raleway", sans-serif;
}
.logolink {
    padding: 10px 20px 11px;
}
nav ul li a:hover {
  background-color: #6dbe45;
}

/*------------ Text ------------*/

p {
    font-family: Avenir, sans-serif;
    margin-left: 5px;
    line-height: 23px;
    font-weight: 300;
}
#contact {
	padding-top: 20px;
}
p a {
	color: #000000
}

/*------------ Media ------------*/

.box {
    display: inline-block;
    float: right;
    margin-right: 5%;
    border-radius: 30px;
}
.box img {
    height: 300px;
    width: auto;
}
.rIMG {
    width: 300px;
    vertical-align: top;
    border-radius: 30px;
    border: 2px solid #ffffff;
}
.video {
    margin-left: 5%;
    margin-top: 5px;
}


/*------------ Gallery ------------*/

.gallery {
    width: 100%;
    text-align: center;
	margin-bottom: 10px;
}
.gallery img {
    display: inline-block;
    height: 150px;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}
.gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/*------------ Formatting ------------*/

.logo {
    display: block;
    margin: auto;
    height: 60px;
}
#push {
    margin-bottom: 60px;
}
.about{
    text-align: left;
    margin: 10px 5%;
    width: 55%;
    margin-left: 10%;
    padding: 6px 20px 7px;
}
.footer, .push {
    height: 40px;
}
.footer {
    background-color: #272526;
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
    font-family: sans-serif;
    letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
    .box {
        display: block;
        width: 305px;
        float: none;
        margin: auto;
    }
    .about{
        width: auto;
    }
}
@media screen and (max-width: 480px) {
    .logo{
        display: none;
    }
        .rIMG{ 
        display: none;
    }
}