/* Ensure border-box is used */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *,
  *:before,
  *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
  }

/*--------------------------------------*/
/*            Core Styles               */
/*--------------------------------------*/

body {
    margin: 0;
    padding:0;
    background: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
    min-width: 198px;
}


/*--------------------------------------*/
/*    Contains Header, Nav, & Logo      */
/*--------------------------------------*/

.container {
    width: 95%; 
    max-width: 1200px;
    margin: 0 auto;
}


/*--------------------------------------*/
/* HEADER: Position relative to help... */
/*    ... poitioning elements absolute  */
/*--------------------------------------*/

header {
    background: #4d4d4d;
    padding: 1em 0;
    position: relative;
}

/*------------------------------------------*/
/* Allows multiple floats in same element   */
/*------------------------------------------*/

header::after {
    content: '';
    clear: both;
    display: block;
}

/*--------------------------------------*/
/*               LOGO                   */
/*--------------------------------------*/

.logo #logo-first {                  /* Effects the whole logo, but #logo-last has changes */
    float: left;                    /* Starting position of "JASON" for logo */
    color: #00b3b3;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.logo #logo-last {      /* Changes to the logo for "SUTTON", This is starting Position */
    float: left;
    font-weight: 300;
    font-size: 1rem;
    color: #f2f2f2;
    padding-bottom: 20px;

}
.logo #logo-logo {      /* Changes to the logo for "SUTTON", This is starting Position */
    float: left;
    font-weight: 300;
    font-size: 1rem;
    color: #f2f2f2;
    position:relative;
    top:-20px;
    padding-left:10px;
}

.logo:hover #logo-last {    /* Logo colors switch on hover */
    margin: 0;
    color: #00b3b3;
}

.logo:hover #logo-first {     /* Logo colors switch on hover */
    margin: 0;
    padding-bottom: 20px;
    color: #f2f2f2;
}

/*--------------------------------------*/
/*            Navigation                */
/*--------------------------------------*/
.site-nav {
    z-index: 1000;
    position: absolute;
    top: 100%;
    right: 0%;
    background: #a6a6a6;
    height: 0px;
    overflow: hidden;
}

.site-nav-open {
    height: auto;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;  /* Removes li bullets */
}

.site-nav li {
    border-bottom: 1px solid #8c8c8c;  /* border beneath nav li */
}

.site-nav li:last-child {     /* removes border from last nav li */
    border: none;
}

.site-nav a {            /* Displays nav links as block for smaller screens */
    color: #f2f2f2;
    display: block;
    padding: 2em 2em 2em 1.5em;  /* padding for links */
    text-transform: uppercase;
    text-decoration: none;
}

.site-nav a:hover,         /* hover is for computers and focus is for mobile */
.site-nav a:focus {
    background: #00b3b3;
    color: #4d4d4d;
}

/*--------------------------------------*/
/*   ICON styling for smaller screens   */
/*--------------------------------------*/ 

.site-nav-icon  {
    display: inline-block;   /* allows margin changes */
    font-size: 1.5em;
    margin-right: 1em;
    width: 1em;           /* width lines the icons up */
    text-align: right;  
    color: rgba(255, 255, 255, .35);  /* white with low opacity to make icons less bright */
}

/*--------------------------------------*/
/* Acts as btn & contains hamburger     */
/*--------------------------------------*/

.menu-toggle {
    padding: 1em;
    position: absolute;
    top: 1.7em;
    right: 1em;
    cursor: pointer;
}


/*--------------------------------------*/
/*   Styles the hamburger for btn       */
/*--------------------------------------*/

.hamburger,
.hamburger::before,
.hamburger::after {
    content:'';
    display: block;
    background: #00b3b3;
    height: 3px;
    width: 1.75em;
    border-radius: 2px;
    transition: all ease-in-out 500ms;
}

/*--------------------------------------*/
/* Instance of hamburger (top line)     */
/*--------------------------------------*/

.hamburger::before {
    transform: translateY(-7px);
}

/*--------------------------------------*/
/* Instance of hamburger bottom line    */
/*--------------------------------------*/

.hamburger::after {
    transform: translateY(4px);
}

/*--------------------------------------*/
/* When Nav menu is open, hamburger = X */
/*--------------------------------------*/

.open .hamburger {
    transform: rotate(45deg);
    background: #ffc299;
}

/*--------------------------------------*/
/* Before hamburger line is invisible   */
/*--------------------------------------*/
.open .hamburger::before {
    opacity: 0;            
}

/*--------------------------------------*/
/* Animates after line to create an X   */
/*--------------------------------------*/
.open .hamburger::after {
    transform: translateY(-3px) rotate(-90deg);
    background: #ffc299;
}




/*--------------------------------------*/
/*    For Device (Screens > 700px )     */
/*--------------------------------------*/
@media (min-width:1100px) {

    .menu-toggle {       /* Removes hamburger menu */
        display: none;
    }

    .site-nav {         /* Positions site nav & removes background color */
        height: auto;
        position: relative;
        background: transparent;
        float: right;
        font-weight: 300;
    }

    .site-nav li {               /* inline-block and removes border from bottom */
        display: inline-block;
        border: none;
    }

    .site-nav a {       /* Adds spacing between Nav links */
        padding: 0;
        margin-left: 3em;
    }

    .site-nav a:hover,      /* Makes link background transparent on hover */
    .site-nav a:focus {        /* Changes font color to light blue */
        background: transparent;
        font-weight: 800;
        color: #00b3b3;
    }

    .site-nav .site-nav-icon {     /* Removes Font Awesome Icons for larger screens */
        display: none;
    }

}

.backToTop { font-size:200%; padding:50px }

#return-to-top {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}


/* Extra Things */
body{background: #eee ;font-family: 'Open Sans', sans-serif;}
h3{font-size: 30px; font-weight: 400;text-align: center;margin-top: 50px;}h3 i{color: #444;}