/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Non-semantic
04 Navbar
05 Single-Page Sections
06 Footer
07 Bootstrap Carousel
08 Buttons
09 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

@font-face {
    font-family: 'Catamaran', sans-serif;   /* 'Harmattan', sans-serif;  'Catamaran', sans-serif;  'Carme', sans-serif; */
    src: url("font/Catamaran-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bilbo Swash Caps', cursive;
    src: url("font/bilbo-swash-caps_regular.ttf");
    font-weight: normal;
    font-style: normal;
}

div, article, section, header, footer, nav, li {
    position: relative;
}

li {
    text-align: right;
}

.group:after {
    display: block;
    height: 0;
    clear: both;
    content: ".";
    visibility: hidden; /* For clearing */
}

body {
    background: #f0f0f0;
    color: #312A1E;
    font-size: 100%;
    font-family: 'Catamaran', sans-serif;
}

::-moz-selection {
    background: #f0bf00;
    color: #333;
}

::selection {
    background: #f0bf00;
    color: #333;
}
/*---------- FORMS ----------*/

input[type=text], input[type=submit], textarea {
    width: 100%;
    padding: 0.5em;
    font-size: 1em;
    margin-bottom: 1.5em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

input, button, select, textarea {
    font-family: 'Catamaran', sans-serif;
}
/* ---------------------------------------------------------------------------------------------------------- 
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/*

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/



p {
    font-size: 1em; /* 16px */
    line-height: 1.5; /* 24px */
    margin: 0 0 1.5em 0;
}

ul, ol {
    font-size: 1em; /* 16px */
    line-height: 1.5; /* 24px */
    margin: 0 0 1.5em 0;
}

body, input, textarea {
}

a:link, a:visited {
    /* 	color: #d6bd3f; */
    /* color: #0000CC; */
    /* 	text-decoration: underline;
 */
}

a:hover, a:active {
    /* color: #d6bd3f; */
    /* color: #0000CC; */
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal; /* reset default browser weight for our webfonts */
    font-family: 'Catamaran', sans-serif;
}

h1 {
    font-size: 1.5em; /* 24px */
    line-height: 1; /* 24px */
    margin-top: 1.42em;
    margin-bottom: 0em;
}

h2 {
    font-size: 1.3125em; /* 21px */
    font-weight: bold;
    line-height: 1.1429; /* 24px */
    margin-top: 1.1429em;
    margin-bottom: 0em;
}

h3 {
    font-size: 1.125em; /* 18px */
    line-height: 1.3333; /* 24px */
    margin-top: 1.3333em;
    margin-bottom: 0em;
}

h4 {
    font-size: 1em; /* 16px */
    line-height: 1.5; /* 24px */
    margin-top: 1.5em;
    margin-bottom: 0em;
}

h5 {
    font-size: 0.875em; /* 14px */
    line-height: 1.7143; /* 24px */
    margin-top: 1.7143em;
    margin-bottom: 0em;
}

strong {
    font-weight: bold;
    font-family: 'Catamaran', sans-serif;
}

small {
    font-size: 0.75em; /* 12px */
    line-height: 2; /* 24px */
    margin-top: 2em;
    margin-bottom: 0em;
}

em {
    font-style: normal;
    font-family: 'Catamaran', sans-serif;
}

.muted {
    color: #A5A5A2;
    font-family: 'Catamaran', sans-serif;
}

.impressed {
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5), /* shadow */ 1px 1px 0 rgba(255, 255, 255, 0.9); /* highlight */
}

.more-link {
    font-size: .875em; /* 14px */
    margin-top: 1.5em;
    font-family: 'Catamaran', sans-serif;
}

    .more-link:link, .more-link:visited {
        color: #f0bf00;
        text-transform: uppercase;
    }
/* ---------------------------------------------------------------------------------------------------------- 
03 Non-semantic ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/* New Image Replacement Hack */

.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1em;
}

.alignright {
    text-align: right;
}

.alignleft {
    text-align: left;
}

.aligncenter {
    text-align: center;
}

.medium {
    font-weight: normal;
    font-family: 'Catamaran', sans-serif;
}
/* ---------------------------------------------------------------------------------------------------------- 
04 Navbar ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
.logo {
    position: relative;
    top: 10px;
	width: 100px;
	height: 100px;
	float: left;
}

.navbar-fixed-top .container {
    /* Uncomment to make nav expand full width */
    width: auto;
}

.navbar .brand {
    margin-left: 0;
    padding: 0;
    margin-top: 2.5em;
}

    .navbar .brand .my {
        padding-left: 10px;
        color: #fff;
        font-size: 1.75em;
        margin-left: 0;
        font-weight: normal;
        font-family: 'Bilbo Swash Caps', cursive;
    }

    .navbar .brand a {
        padding: 0;
        color: #fff;
        font-size: 1.75em;
        margin-left: 0;
        font-weight: normal;
        font-family: 'Catamaran', sans-serif;
    }
	
	h1 .brand:focus {
		color: #f0bf00;	
		}

    .navbar .brand .highlight:hover a {
        color: #f0bf00; /* #d6bd3f; */
        /* transition: color .15s linear;
	-webkit-transition: color .15s linear;
	-moz-transition: color .15s linear; */
    }

    .navbar .brand .highlight a {
        text-decoration: none;
		
        /* transition: color .15s linear;
	-webkit-transition: color .15s linear;
	-moz-transition: color .15s linear; */
    }

/*     .navbar .brand a:focus {
        outline: none;
    } */

.navbar-inner {
    min-height: 4em;
}

.navbar-inverse .navbar-inner {
    background-repeat: repeat;
    background-color: #004E71 /* #336699 */ /*  #204E62 */ /* #0b333f */;
    border-color: #f0bf00; /* #d6bd3f; */
}

.navbar-wrapper {
    overflow: hidden; /* No fixed height, will break collapsible nav */
}

ul#menu-main > li > a {
    font-family: 'Catamaran', sans-serif;
    font-weight: normal; /* bold; */
    font-size: 1.05em; /* 1em; */
    color: #fff;
}

    ul#menu-main > li > a:hover {
        background: #f0bf00; /* #d6bd3f; */
        color: #004E71;
        padding: 9px 15px;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
    }

.navbar-inverse .brand, .navbar-inverse .nav > li > a {
    text-shadow: none;
}
/* .nav li {
    display: inline;
    position: relative;
}
.nav li:hover .sub-menu {
    display: block;    
}
.sub-menu {
    display: none;
    position: relative;
    top: 17px;
    left: 0;
}
.sub-menu li {
    display: block;
} */

/* ---------------------------------------------------------------------------------------------------------- 
05 Single-Page Sections ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#headerwrap {
    width: 100%;
    background: #004E71 repeat; /*  top-bg.jpg  OR  IMG_3251.jpg  OR  *1* IMG_3176.jpg OR  IMG_3183.jpg  OR  2014_Capitol_Panorama.jpg  OR  Bottom.jpg  */ 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 700px;
    margin-top: -60px;
    padding-top: 95px;
    text-align: center;
}

    #headerwrap h1 {
        color: #FFFFFF; /* color: #f0bf00"  */
        font-family: 'Catamaran', sans-serif;
        font-size: 55px;
        font-weight: 400;
        margin-top: 0px;
        text-shadow: 1px 1px 8px #000;
    }

    #headerwrap h2 {
        color: #FFFFFF;
        font-family: 'Catamaran', sans-serif;
        font-size: 2em;
        font-weight: bold;
        margin: 0.5em 0;
        text-shadow: 1px 1px 1px #696969;
    }

    #headerwrap input[type=text] {
        background: rgba(227, 231, 228, 1);
        font-family: 'Catamaran', sans-serif;
        font-size: 1.3125em;
        border: 0;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 0 !important;
        height: 2.9em;
        width: 50%;
    }

        #headerwrap input[type=text]:focus {
            /* 	background: #43413e;/*  
/*	color: #eff1ef; */
            /* transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in; */
        }

    #headerwrap input[type=submit] {
        font-family: 'Catamaran', sans-serif;
        color: #004E71; /* #005580  #336699  #f0bf00  #9B7A47  #fff */;
        width: 100px;
        height: 2.9em;
        font-size: 1.3125em; /* 21px */
        padding: 0.5em;
        letter-spacing: 0.05em;
        margin: 0;
        border: 0;
        text-transform: none;
        background: #f0bf00; /* #336699 */ /* #F8F2CB */ /* #f0bf00 */
        !important;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }
/* #headerwrap input[type=submit]:hover, #headerwrap input[type=submit]:active {
	background: / #204E62 / / #43413e / !important;
} */
.search-table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

    .search-table td {
        vertical-align: top;
        padding-bottom: 30px;
        text-align: center;
        width: 25%;
    }


/*========== Social Icons ==========*/
ul.icon {
    font-size: 54px;
    margin: 1em 0 0.5em 0;
}

    ul.icon li {
        display: inline-block;
        /* -webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear; */
    }

        ul.icon li:hover {
            opacity: 0.7;
        }

section.single-page {
    padding: 4.75em 0; /* 76px */
}

    section.single-page h1 {
        text-align: center;
        font-family: 'Catamaran', sans-serif;
        margin-bottom: 2em; /* 72px */
        font-size: 2.25em; /* 36px */
    }


.gsc-input input {
    /* position: relative; */
    top: 10px;
	height: 35px;
}


/*========== Bootstrap ==========*/
.navbar-inner {
    z-index: 1;
}


/* Search Text */

section#searchText {
    margin-top: 50px;
}

#searchText h1 {
    margin-top: 1.5em;
}


/* Quick links */

/* section#quicklink {
    padding-bottom: 9.5em;
}

#quicklink h1 {
    font-size: 3em;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

section#quicklink h2 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
}

section#quicklink p {
    margin: 10px;
}

section#quicklink .align {
    text-align: center;
    margin-top: 10px;
    font-size: 6em;
}

    section#quicklink .align .sev_icon {
        text-align: center;
        margin: 10px 0 20px 0;
        font-size: 0.6em;
        color: #F0BF00;
    }

section#quicklink .span3 {
    background: #e9e9e9;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    section#quicklink .span3:hover {
        background: #e3e3e3;
        box-shadow: 1px 1px 6px #C1BAC1;
    }

section#quicklink .span4 {
    background: #e9e9e9;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    section#quicklink .span4:hover {
        background: #e3e3e3;
        box-shadow: 1px 1px 6px #C1BAC1;
    }

section#quicklink .span6 .box {
    background: #e9e9e9;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    section#quicklink .span6 .box:hover {
        background: #e3e3e3;
        box-shadow: 1px 1px 6px #C1BAC1;
    }
 */
/* 004E71 header blue*/

/* Contact 1*/

section#contact {
    /* color: url("../img/grey-cardboard-bg.png") repeat 0 0;
	background: url("../img/grey-cardboard-bg.png") repeat 0 0; */
    color: #e4e5e2;
    background: #004E71; /*(brown:)#312A1E;*/
}

    section#contact .align {
        font-size: 6em;
        text-align: center;
    }

#contact h1 {
    font-size: 3em;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

.contact-link-title {
    font-weight: bold;
    font-size: 1.25em;
    margin-top: 1.5em;
    color: #d6bd3f;
	text-decoration: underline;
}

.contact-link-title:link, .contact-link-title:visited {
    color: #d6bd3f;
}

.contact-link-title:hover, .contact-link-title:active {
        color: #d6bd3f;
        text-decoration: underline;
}

.contact-link:link, .contact-link:visited {
    color: #d6bd3f;
	text-decoration: underline;
}

.contact-link:hover, .contact-link:active {
    color: #d6bd3f;
    text-decoration: underline;
}

#contact {
    padding-top: 4.75em;
    padding-bottom: 0;
}

.contact-disclaimer {
    text-align: center;
    font-style: italic;
	font-weight: bold;
}

.contact-right {
    text-align: right;
    font-style: italic;
}

/* ---------------------------------------------------------------------------------------------------------- 
06 SkipNav ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */


.skipnav { text-align: left; }
  .skipnav a { position: absolute; overflow: hidden; }
  .skipnav a:focus, .skipnav a:active { position: static; overflow: visible; text-decoration: underline; }


/* ---------------------------------------------------------------------------------------------------------- 
07 Footer ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#map-wrapper {
    margin-top: 20px;
}

footer {
    text-align: center;
    color: #1a1a1a;
    font-weight: bold;
}

    footer p {
        margin-top: -130px;
    }

.footer-table {
    text-align: center;
    border: 1px solid black;
    width: 95%;
    padding: 10px;
    border-spacing: 0px;
}

footer td {
    width: 95%;
    text-align: center;
    padding: 10px;
    border-spacing: 0px;
}

.footer-link:link, .footer-link:visited {
    color: #1a1a1a;
    */;
    /* text-decoration: underline; */
    /* text-transform: uppercase; */
}

/* ---------------------------------------------------------------------------------------------------------- 
07 Bootstrap Carousel ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.carousel-caption {
    background-color: transparent;
    position: static;
    max-width: 550px;
    padding: 0 20px;
    margin-top: 200px;
    position: absolute;
}

    .carousel-caption h1, .carousel-caption .lead {
        margin: 0;
        line-height: 1.25;
        color: #fff;
        text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
    }

    .carousel-caption .btn {
        margin-top: 10px;
    }

.carousel-control {
    height: 50px;
    top: 46%;
    margin-top: 0;
    font-size: 6.5em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
    background-color: transparent;
    border: 0;
    font-family: 'Catamaran', sans-serif;
    opacity: 0.4;
    border-radius: 0;
}

    .carousel-control:link, .carousel-control:visited {
        color: #262626;
    }
/* Banner Carousel  */
#banner.carousel {
    margin-top: 4.75em;
    margin-bottom: 0;
    margin-top: 0;
    max-height: 642px;
}

.banner-caption {
    /*	width: 18%; */
    position: absolute;
    left: 20%;
    top: 10%;
    color: #007ac3;
}

#intro-caption {
    margin-top: 150px;
    font-family: 'Catamaran', sans-serif;
    text-align: center;
    font-size: 80px;
    line-height: 90px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 2px #000;
}

    #intro-caption span {
        font-family: 'Catamaran', sans-serif;
        font-size: 0.65em;
    }

#banner.carousel .item {
}

#banner.carousel img {
}

#banner.carousel .carousel-control {
}
/* ---------------------------------------------------------------------------------------------------------- 
08 Buttons ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
.btn {
    font-family: 'Catamaran', sans-serif;
    color: #fff;
    width: 185px;
    height: 20px;
    text-shadow: none;
    font-size: 1.3125em; /* 21px */
    padding: 1em 0.5em;
    letter-spacing: 0.05em;
    margin: 4.5em auto 0;
    display: block;
    border: 0;
    text-transform: none;
    background: #f0bf00 !important;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

    .btn:link, .btn:visited {
        color: #fff;
    }

    .btn:hover {
        background: #312A1E !important;
    }

.navbar-inverse .btn-navbar {
    width: auto;
    height: auto;
}

/* ---------------------------------------------------------------------------------------------------------- 
09 Media queries --------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */


/* RESPONSIVE-------------------------------------------------- */

@media (max-width: 1186px) {
    .banner-caption {
        /*	width: 18%; */
        position: absolute;
        left: 20%;
        top: 6%;
        color: #007ac3;
    }

    #intro-caption {
        font-family: 'Catamaran', sans-serif;
        text-align: center;
        font-size: 60px;
        line-height: 70px;
    }

    .banner-caption p {
        font-size: 1em;
    }
}

@media (max-width: 979px) {
    .navbar-fixed-top {
        margin-bottom: 0;
    }

    .navbar .container {
        width: 100%;
    }

    .navbar .brand {
        margin-top: 0;
    }

    .navbar .btn-navbar {
        margin-top: 0;
    }

    .navbar-fixed-top .navbar-inner {
        padding: 0px;
    }

    .featurette {
        height: auto;
        padding: 0;
    }

    .featurette-image.pull-left, .featurette-image.pull-right {
        display: block;
        float: none;
        max-width: 40%;
        margin: 0 auto 20px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    #headerwrap {
        padding-top: 8%;
    }
}

@media (max-width: 767px) {
    .container {
        padding-right: 1em;
        padding-left: 1em;
    }

    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .navbar-inner {
        margin: 0;
    }

    .carousel {
        margin-left: -20px;
        margin-right: -20px;
    }

        .carousel .container {
        }

    .carousel-caption {
        width: 65%;
        padding: 0 70px;
        margin-top: 100px;
    }

        .carousel-caption h1 {
            font-size: 30px;
        }

        .carousel-caption .lead, .carousel-caption .btn {
            font-size: 18px;
        }
}

/* Smaller screens ----------- */
@media (max-device-width : 480px) {
    #headerwrap {
        padding-top: 0;
    }

        #headerwrap h1 {
            font-size: 2em;
        }

        #headerwrap h2 {
            font-size: 1em;
        }

        #headerwrap input[type="text"] {
            width: 100%;
            font-size: 0.95em;
        }

        #headerwrap input[type="submit"] {
            margin-top: 1em;     
			width: 90px;
            height: 50px;
        }
	
	#navbar-inner {
        margin: 0;
    }

    #banner { /*display: none;*/
    }

    section.single-page {
        padding: 1em 0;
    }
	
	.logo {
		width: 75px;
		height: 75px;
		float: left;
	}
    

}


/*iPhone 5 & 5S (portrait & landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) { 
   
   #headerwrap {
        padding-top: 0;
    }

        #headerwrap h1 {
            font-size: 2em;
        }

        #headerwrap h2 {
            font-size: 1em;
        }

        #headerwrap input[type="text"] {
            width: 100%;
            font-size: 0.95em;
        }

        #headerwrap input[type="submit"] {
            margin-top: 1em;     
			width: 90px;
            height: 50px;
        }
	
	#navbar-inner {
        margin: 0;
    }

    #banner { /*display: none;*/
    }

    section.single-page {
        padding: 1em 0;
    }
	
	.logo {
		width: 75px;
		height: 75px;
		float: left;
	}
}

/* Smartphones and iPhone 2G, 3G, 4, 4S (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

   #headerwrap {
		padding-top: 0;
	}

	#headerwrap h1 {
		font-size: 2em;
	}

	#headerwrap h2 {
		font-size: 1em;
	}

	#headerwrap input[type="text"] {
		width: 100%;
		font-size: 0.95em;
	}

	#headerwrap input[type="submit"] {
		margin-top: 1em;     
		width: 90px;
		height: 50px;
	}
		
    #navbar-inner {
        margin: 0;
    }
    #banner { /*display: none;*/
    }
    section.single-page {
/*         padding: 1em 0; */
    }
		
	.logo {
		width: 75px;
		height: 75px;
		float: left;
	}
	 .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
/* 	 	margin-left: auto;
		margin-right: auto; */
	}
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
    #feature-headline {
        font-size: 32px; /* 34px */
    }
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
    #feature-headline {
        font-size: 1.1875em; /* 19px */
    }

    #feature article p {
        font-family: 'Catamaran', sans-serif;
        font-size: 26px; /* font-size: 26px; */
        margin-bottom: 0;
        line-height: 30px;
        color: #fff;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .banner-caption p {
        font-size: 0.6em;
    }

    #intro-caption {
        font-size: 4em;
    }

    #headerwrap {
        width: 100%;
        background: #004E71 repeat; /*  top-bg.jpg  OR  IMG_3251.jpg  OR  *1* IMG_3176.jpg  OR  IMG_3183.jpg  OR  2014_Capitol_Panorama.jpg  OR  Bottom.jpg*/ 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        min-height: 760px;
        margin-top: -60px;
        padding-top: 15%;
        text-align: center;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    /* Styles */
}

@media (min-width: 980px) {
    #menu-main {
        margin-top: 3.125em;
    }
}

