/* CSS Document */


/***********************************************/
/* Universals                                  */
/***********************************************/


html {
    height: 100%;
}

body {
    background-color: #Fcfcfc;   
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    font-size: 100%;
    color: #565574;
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
}




a {
    color: #BA1F00;
    text-decoration: none;
}


a:visited {
    color: #BA1F00;  
}

a:hover {
    color: darkred;
}

h1, h2, h3, h4, h5, h6 { /*reset for mobile browsers */
    font-weight: normal;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/*************************************************/
/* Navigation                                    */
/* Media query for mobile is also here           */
/* All other media queries in a separate section */
/*************************************************/


.mainNav {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    width: 100%;
    background: rgba(255, 255, 255, .95);
    position: fixed; 
    z-index: 100;
    margin: 0;
    padding: .6em 2em .2em 2em;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
}

#logobox {
    margin: 0;
    float: left;
}

#logo {
    position: absolute;
    z-index: 10;
}

#logotypebox {
    display: inline-block;
    position: relative;
    left: 35px;
    width: 187px;
    overflow: hidden;
    
}

#logotype {
    z-index: 1;
    opacity: 0;
    position: relative;
    left: -200px;
    -webkit-transition: all 0.9s ease-out; 
     -moz-transition: all 0.9s ease-out; 
      -ms-transition: all 0.9s ease-out; 
       -o-transition: all 0.9s ease-out; 
          transition: all .9s ease-out;
}

#logobox:hover #logotype {
    left: 2px;
    opacity: 1;
}

#menu {
    float: right;   
}

#menu_toggle {
    display: none;
}

.menuButton {
    display: none;
}

.mainNav ul {
    margin: .9em 0 0 0;
}

.mainNav li {
    display: inline-block;
    list-style-type: none;
    padding: 0em 0em 1em 1em;
    
}

.mainNav li:first-child {
    display: none;
}

.mainNav ul a {   
    color: #000;
    opacity: 1;
    padding: 0em;
    font-size: .85em;
}

.mainNav ul a:hover {
    color: #BA1F00; 
}

.mainNav ul a::before,
.mainNav ul a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}

.mainNav ul a::before {
	margin-right: 10px;
	content: '(';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}

.mainNav ul a::after {
	margin-left: 10px;
	content: ')';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}

.mainNav ul a:hover::before,
.mainNav ul a:hover::after,
.mainNav ul a:focus::before,
.mainNav ul a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

@media screen and (max-width: 895px) {
    .mainNav li {
        padding: 0;
    }   
}

@media screen and (max-width: 830px) {
    
.mainNav {
    padding: .6em .2em .2em .7em;
}
    
.menuButton {  
    display: inherit;
    float: right;
    margin: .4em .5em 0 0;
    padding: .2em;
    font-size: 1.3em;
    cursor: pointer;
}

.menuButton:hover {  
    cursor: pointer;
}

.close {
    cursor: pointer;   
    font-size: .85em;
    padding: 1em 0 0 1.1em;
}

.close:hover {
    color: #BA1F00; 
}

:checked ~ .mainNav ul {
  right: 0; 
}

.mainNav ul {
    margin: 0 0 0 0;
    padding: 0;
    position: fixed;
    right: -52%;
    top: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .6);
    -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
      -ms-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}

.mainNav li {
    display: block;
    list-style-type: none;
    padding: 1em;
    font-size: 1.2em;

    
}

.mainNav li:first-child {
    display: inherit;
    margin: 0px;
    padding: .8em 0em 0em .3em;
    font-size: 1.5em;
}
    
    
    
    
    
}

/***********************************************/
/* Layout & Structure (mostly)                 */
/***********************************************/

#Content_Wrapper {
    width: 100%;
    overflow: hidden;
}

#innerFloater {
    width: 100%;
    float: left;
    -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
      -ms-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.hero {
    margin-top: 4em;  
    
}

.hero #herobkg {
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.hero #herobkg .inner {
    padding-top: 57.14%; /* height ÷ width x 100 = fluid resizing of image while maintaining  bkg img proportions */
    display: block;
    height: 0;
}

.hero #subherobkg {
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    
}


.hero #subherobkg .inner {
    padding-top: 21.43%; /* height ÷ width x 100 = fluid resizing of image while maintaining  bkg img proportions */
    display: block;
    height: 0;
}
.hero #companyherobkg {
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    
}


.hero #companyherobkg .inner {
    padding-top: 42.86%; /* height ÷ width x 100 = fluid resizing of image while maintaining  bkg img proportions */
    display: block;
    height: 0;
}

.hero #jobsherobkg {
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    
}


.hero #jobsherobkg .inner {
    padding-top: 42.86%; /* height ÷ width x 100 = fluid resizing of image while maintaining  bkg img proportions */
    display: block;
    height: 0;
}

.hero #contactherobkg {
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    
}


.hero #contactherobkg .inner {
    padding-top: 42.86%; /* height ÷ width x 100 = fluid resizing of image while maintaining  bkg img proportions */
    display: block;
    height: 0;
}

.ichero {
    background:rgba(43,178,76,0.4);   
}

.inthero {
    background:rgba(87,95,148,0.4);   
}

.companyhero {
    background:rgba(6,159,197,0.25);
}

.jobshero {
    background:rgba(6,159,197,0.25);
}

.contacthero {
}


section > div {
    width: 85%;
    max-width: 64em;
    margin: 0em auto 0em auto;
    padding: 1.5em;
}



section div p:last-child {
    margin-bottom: 0; /* 0 prevents last p from adding a space at the bottom of the section */
}

.featurebox {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: inline-block;
    vertical-align: top;
    width: 33%; 
    padding: 2.5em;
}

.col {
    width: 40%;
    padding: 0 2.5em 0em 2.5em;
    display: inline-block;
    vertical-align: top; 
}

.more {
    background: #E7ECEF; 
    padding: 4em 1em 4.5em 1em;
}

.white_box {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    background: #fcfcfc;
    width: 75%;
    padding: 4em 0em 4em 0em;
    text-align: center;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.more_col {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    width: 35%;
    padding: 0em 1em 0em 1em;
    margin: 0 1.5em 0 1.5em;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.teambox {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: inline-block;
    vertical-align: top;
    width: 49%; 
    padding: .3em 3em 3em 3em;
}

.teamboxSM {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 33%; 
    padding: .3em 3em 3em 3em;
}

.footernav {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: block;
    display: inline-block;
    vertical-align: top;
    width: 20%
}

.footercontact {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: block;
    display: inline-block;
    vertical-align: top;
    margin-left: 5em;
}


.footermap {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: block;
    float: right;
}



.fourohfour {
    text-align: center;
    margin-top: 100px;
}


/***********************************************/
/* Just the purty stuff                        */
/***********************************************/

.hero {
    text-align: center;
}

.herocontent {
    position: absolute;
    width: 100%;
}


.hero h1 {
    width: 75%;
    margin: 2.3em auto .8em auto;
    color: #565574;
    font-size: 5vw;
    font-family: 'geomanistmedium', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.2em;
}

h1.companyheader {
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, .3);
}

h1.jobsheader {
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, .3);
}

h1.contactheader {
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, .3);
    margin-top: 3.3em;
}

.hero h2 {
    width: 75%;
    margin: .9em auto 0em auto;
    color: #fff;
    font-size: 7vw;
    font-family: 'geomanistmedium', 'Helvetica', 'Arial', sans-serif;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, .3);
}



.call_button a {
    font-family: 'geomanistlight', 'Helvetica', 'Arial', sans-serif;
    color: #069FC5;
    font-size: 2vw;
    padding: 0.4em 1.5em 0.4em 1.5em;
    background: rgba(255, 255, 255, .75);
    border-radius: 4px; 
}

section div p {
    line-height: 1.5;
}

h2 {
    margin-top: 0;   /* 0 prevents h2 from adding a space at the top of the section */
    text-align: center;
    font-family: 'geomanistmedium', 'Helvetica', 'Arial', sans-serif;
    font-size: 2.1em;
    color: #069FC5;
}

section div strong {
    color: #069FC5;   
}

section div h3 {
    margin-top: 0;   /* 0 prevents h3 from adding a space at the top of the section */
    font-family: 'geomanistbook', 'Helvetica', 'Arial', sans-serif;
}

.feature h2 {
    color: #BA1F00;   
}


.featurebox div {
    font-size: 3.5em;
    color: #BA1F00;
    display: block;
    text-align: center;
}

.featurebox em {
    display: block;
    text-align: center;
    color: #BA1F00;
    font-style: normal;
    font-size: 1.1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    
}
.callout {
    background: #E7ECEF;   
}

.callout div {
    margin-bottom: 0px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.5em;
    color: #069FC5;
    background: #E7ECEF;
}

.callout em {
    color: #BA1F00;   
}

.col h3 {
     text-align: center;
    font-family: 'geomanistbook, 'Helvetica', 'Arial', sans-serif;
}

.col ul {
    line-height: 1.5em;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.col ul li {
    padding: 1em 0 1em 0;
}


ul.icon li {
    text-indent: -1.3em;
}

ul.icon li:before {
    font-family: "FontAwesome"; 
    font-size: .9em;
    content: "\f013";
    font-weight: 900;
    float: left;
    width: 1.3em;
    color: #069FC5;
}

.mainContentImage {
    text-align: center;
    margin-bottom: 10px;
    background: url(images/mobilegraph400.png) center no-repeat;
    height: 178px;
    
}

.signup {
    display: inline-block;
}

.signup a {
	padding: 0.3em 1.2em 0.3em 1.2em;
	background: #BA1F00;
	color: #fff;
    font-family: 'geomanistlight', 'Helvetica', 'Arial', sans-serif;
	font-size: 1em;
	text-transform: uppercase;
	border-radius: 4px;
    line-height: 2em;
    margin: 0;
}

.ic {
    font-size: 1.4em;
    font-family: 'geomanistmedium', 'Helvetica', 'Arial', sans-serif;
    color: #6CC551;
}

.intel {
    font-size: 1.4em;
    font-family: 'geomanistmedium', 'Helvetica', 'Arial', sans-serif;
    color: #575D90;
}

.team h2 {
    color: #BA1F00;   
}

.teambox div {
    text-align: center;
}

.teamicon {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    display: inline-block;
    width: 100%;
    font-size: 4em;
    color: #BA1F00;
    text-align: center;
    
}

#jb {
    background-image: url(images/john300.jpg);   
}

.bioimgmaskLG {
    -webkit-clip-path: circle(148px at center);  
    clip-path: circle(148px at center); 
}

.bioimgmaskSM {
    -webkit-clip-path: circle(100px at center);  
    clip-path: circle(100px at center); 
}

.teambox em {
    display: block;
    text-align: center;
    color: #BA1F00;
    font-style: normal;
    font-size: 1.1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    
}

.teamboxSM em {
    color: #BA1F00;
    font-style: normal;
    font-size: 1.1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    
}

.footer {
    width: 100%;
    background-color: #565574;
    color: #c6ebf4;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
}

.footer a {
     color: #c6ebf4;
}

.footer a:visited {
     color: #c6ebf4;
}

.footer a:hover {
       color: #ffffff;
}

.footermenu {
    list-style-type: none; 
    margin: 0;
    padding: 0;
}

.footermenu li {
    padding: .15em;   
}

.footermenu ul {
    list-style-type: none; 
    margin: 0;
    padding: 0;
    font-family: 'geomanistextralight', 'Helvetica', 'Arial', sans-serif;
}

.footercontact td {
    padding: 0em .5em 1em .5em;   
    vertical-align: top;
}

.footercontact td:nth-child(1) {
     text-align: center;
}

.footercontact td div {
    font-size: 1.5em;
}


#map {
    margin-bottom: 1em;
        height:250px;
        width:320px;
    }
    .gm-style-iw * {
        display: block;
        width: 100%;
    }
    .gm-style-iw h4, .gm-style-iw p {
        margin: 0;
        padding: 0;
    }
    .gm-style-iw a {
        color: #4272db;
    }

form {
    width: 80%;
    margin: 0 auto;
}

.contact {
    margin: 0 auto 0 auto;
}

.contact .col {
       width: 35%;
}

.contact p {
    width: 80%;
    margin-left: 6%;
}

.contactUs input[type=text] {
    height: 2em;
    width: 100%;
    border: 1px solid #D0D5D8;
    border-radius: 8px;
    background-color: #E7ECEF;
    padding: .1em 1em .1em 1em;
    font-size: 1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    color: #069FC5;
    margin-bottom: 1em;
}

textarea {
    height: 2em;
    width: 100%;
    height: 100px;
    border: 1px solid #D0D5D8;
    border-radius: 8px;
    background-color: #E7ECEF;
    padding: .1em 1em .1em 1em;
    font-size: 1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    color: #069FC5;
    margin-bottom: 1em;
}

.contact input[type=submit] {
    font-size: 1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: .02em;
    color: #ffffff;
    padding: 0.4em 1.5em 0.4em 1.5em;
    background: #069FC5;
    border: 0;
    border-radius: 4px; 
    -webkit-appearance: none;
    float: right;
}

/***********************************************/
/* Fun with Modals                             */
/***********************************************/

.modalSignup {
    position: fixed;
    font-family: 'geomanistregular-regular', 'Helvetica', 'Arial', sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    -webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalSignup:target {
	opacity:1;
	pointer-events: auto;
}

.modalSignup > div {
    width: 290px;
    position: relative;
    margin: 25% auto;
    padding: 25px 25px 15px 25px;
    border-top: 8px solid #BA1F00;
    border-bottom: 4px solid #E7ECEF;
    border-radius: 8px;
	background: #fff;
    
}

.closeModal {
	position: absolute;
	right: 15px;
	text-align: center;
	top: 4px;
    font-size: 1.4em;
    font-family: 'geomanistbook', 'Helvetica', 'Arial', sans-serif;
}

.modalHeader {
    display: inline;
    color: #069FC5;
    text-align: center;
    font-size: 1.5em;
    font-family: 'geomanistbook', 'Helvetica', 'Arial', sans-serif;
    
}

.innerModal {
    width: 100%; 
    height: 85%;
    margin: 0 auto;
    text-align: center;
    overflow: auto;
}

.innerModal p {
    margin: .8em 0 1em 0;   
    line-height: 1.5em;
    text-align: left;
}

.innerModal input[type=email] {
    height: 2em;
    width: 88%;
    border: 1px solid #D0D5D8;
    border-radius: 8px;
    background-color: #E7ECEF;
    padding: .1em 1em .1em 1em;
    font-size: 1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    color: #069FC5;
    margin-bottom: 1em;
}

.innerModal input[type=submit] {
    font-size: 1em;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: .02em;
    color: #ffffff;
    padding: 0.4em 1.5em 0.4em 1.5em;
    background: #069FC5;
    border: 0;
    border-radius: 4px; 
    -webkit-appearance: none;
}

.mailchimptext {
    margin: .8em 0 1em 0;   
    line-height: 1.5em;
    text-align: left;
}


.modalBio {
    position: fixed;
    font-family: 'geomanistregular-regular', 'Helvetica', 'Arial', sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    -webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalBio:target {
	opacity:1;
	pointer-events: auto;
}

.modalBio > div {
    width: 45%;
    height: 500px;
    position: relative;
    margin: 20% auto;
    padding: 5px 25px 13px 25px;
    border-top: 8px solid #BA1F00;
    border-bottom: 4px solid #E7ECEF;
    border-radius: 8px;
	background: #fff;
    
}

.bioHeader {
    color: #069FC5;
    font-size: 1.5em;
    font-family: 'geomanistbook', 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 0px;
    
}

.stop-scrolling {
               height: 100%;
               overflow: hidden;
           }

/***********************************************/
/* For the Handheld Devices                    */
/***********************************************/

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .hero #herobkg {
        background-image: url(images/legologo480.jpg);  
    }
    
     .hero #subherobkg {
        background-image: url(images/subhero480.jpg);  
    }
    
    .hero #companyherobkg {
        background-image: url(images/keyboard480.jpg);  
    }
    
     .hero #jobsherobkg {
        background-image: url(images/office480.jpg);  
    }
    
    .hero #contactherobkg {
        background-image: url(images/demo480.jpg);  
    }
    
    .hero h1 {
    margin: 1em auto .8em auto;
    font-size: 6vw;
    line-height: 1em;
}
    
    section div h2 {
    font-size: 6vw;
}
    
    .call_button a {
    font-size: 4vw;
    font-family: 'geomanist_regularregular', 'Helvetica', 'Arial', sans-serif;
    color: #ffffff;
    padding: 0.4em 1.5em 0.4em 1.5em;
    background: rgba(6, 159, 197, .7);
    border-radius: 4px; 
    margin-right: 1em;
}
    
    .companyheader {
   padding-top: 20px;
}
    
        .contactheader {
   padding-top: 30px;
}
    
    
}

@media only screen and (min-width: 481px) and (max-width: 640px) {
    .hero #herobkg {
        background-image: url(images/legologo640.jpg);  
    }
    
     .hero #subherobkg {
        background-image: url(images/subhero640.jpg);  
    }
    
    .hero #companyherobkg {
        background-image: url(images/keyboard640.jpg);  
    }
    
      .hero #jobsherobkg {
        background-image: url(images/office640.jpg);  
    }
    
    .hero #contactherobkg {
        background-image: url(images/demo640.jpg);  
    }
    
}

@media only screen and (min-width: 641px) and (max-width: 800px) {
    .hero #herobkg {
        background-image: url(images/legologo800.jpg);  
    }
    
     .hero #subherobkg {
        background-image: url(images/subhero800.jpg);  
    }
    
    .hero #companyherobkg {
        background-image: url(images/keyboard800.jpg);  
    }
    
     .hero #jobsherobkg {
        background-image: url(images/office800.jpg);  
    }
    
    .hero #contactherobkg {
        background-image: url(images/demo800.jpg);  
    }
    
     .mainContentImage {
        background: url(images/mobilegraph500.png) center no-repeat;
        height: 223px;   
    }
}


@media only screen and (min-width: 801px) and (max-width: 1024px) {
    .hero #herobkg {
        background-image: url(images/legologo1024.jpg);  
    }
    
    .hero #subherobkg {
        background-image: url(images/subhero1024.jpg);  
    }
    
    .hero #companyherobkg {
        background-image: url(images/keyboard1024.jpg);  
    }
    
     .hero #jobsherobkg {
        background-image: url(images/office1024.jpg);  
    }
    
    .hero #contactherobkg {
        background-image: url(images/demo1024.jpg);  
    }
    
    .mainContentImage {
        background: url(images/mobilegraph700.png) center no-repeat;
        height: 312px;   
    }
    
        
}

@media only screen and (min-width: 1025px) {
    .hero #herobkg {
        background-image: url(images/legologo1400.jpg);  
    }
    
    .hero #subherobkg {
        background-image: url(images/subhero1400.jpg);  
    }
    
    .hero #companyherobkg {
        background-image: url(images/keyboard1400.jpg);  
    }
    
     .hero #jobsherobkg {
        background-image: url(images/office1400.jpg);  
    }
    
    .hero #contactherobkg {
        background-image: url(images/demo1400.jpg);  
    }
    
    .mainContentImage {
        background: url(images/mobilegraph800.png) center no-repeat;
        height: 356px;   
    }
    


}

@media screen and (max-width: 970px) {
    .footercontact {
    margin-left: 2em;
    }
    
    
}

@media screen and (max-width: 955px) {
    .teamboxSM {
    width: 32%; 
    padding: .3em 2em 2em 2em;
}   
    
}

@media screen and (max-width: 950px) {
    .featurebox {
        padding: 2em;
        width: 32%;   
    }
}

@media screen and (max-width: 945px) {
    .col {
        width: 35%;   
    }
}


@media screen and (max-width: 900px) {
    .featurebox {
        width: 48%;
    }
    
    .bioimgmaskLG {
    width: 250px;
    height: 250px;
    -webkit-clip-path: circle(123px at center);  
    clip-path: circle(123px at center); 
}
    
   .footernav {
    width: 18%
}

.footercontact {
    margin-left: 0;
}

}


@media screen and (max-width: 840px) {
    .featurebox {
        padding: 1.5em;
    } 
    
    
    .footernav {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    text-align: center;
        float: none;
    }
    
    .footermenu li {
        display: inline-block;
        margin: 0 .5em 1em .5em;
    }
    
    .footermenu ul {
      display: inline-block;
    }

.footercontact {
    margin: 1em 0 0 0;
}


.footermap {
    margin: 1em; 0 0 0;
}
    
.modalBio > div {
    width: 55%;
}
    
        .teamboxSM {
    width: 48%; 
    padding: .3em 2em 2em 2em;
}
    
}

@media screen and (max-width: 800px) {
    .contact .col {
       width: 75%
}
      
  
}


@media screen and (max-width: 780px) {
    
    .featurebox {
          width: 49%;  /* So feature columns don't get too skinny */ 
          padding: 2em;
    }
    
    .col {
        width: 90%;  /* So feature columns don't get too skinny */
    }
   
}


@media screen and (max-width: 740px) {
    
    .more_col {
        width: 40%; 
        padding: 0em 1em 0em 1em;
        margin: 0 0em 0 0em;
    }
    
    .bioimgmaskLG {
    width: 200px;
    height: 200px;
    -webkit-clip-path: circle(98px at center);  
    clip-path: circle(98px at center); 
}
    
    
    .footercontact {
        margin: 1em auto 0 auto;
        width: 43%;
        float: none;
}
    .footermap {
        margin: 0 auto;
        width: 51%;
        float: none;
}
    
    
    
}

@media screen and (max-width: 640px) {
    .featurebox {
        padding: 1em;
    } 
    
    
    .white_box {
    padding: 2.5em 0em 2.5em 0em;
    }
    
     .more_col {
        width: 45%; 
        padding: 0em 1em 0em 1em;
        margin: 0 0em 0 0em;
    }
    
    
    .teambox {
    box-sizing: border-box; /* keeps padding from messing up width of box */
    width: 100%; 
}
    
    .contact .col {
       padding-left: 1.5em;
}
    
    textarea {
    width: 95%;
}
    
}

@media screen and (max-width: 580px) {
    
    button {
    margin: .5em 1em 0 1em;
}
    
    .white_box {
    padding: 2.5em 0em 0em 0em;
    }
    
     .more_col {
        width: 80%; 
        padding: 0em 1em 2.5em 1em;
    }
    
     .footercontact {
        width: 50%;
}
    .footermap {
        width: 70%;
}
    
    
}



@media screen and (max-width: 560px) {
    .featurebox {
        width: 100%;
        padding: 1em;
    } 
    
    .modalBio > div {
    width: 80%;
    height: 375px;
}
    
        .teamboxSM {
    width: 100%; 
    padding: .3em 2em 2em 2em;
}
    
}


@media screen and (max-width: 500px) {
    
    .footercontact {
        width: 65%;
}
    .footermap {
        width: 80%;
}
}

@media screen and (max-width: 430px) {
    
    .footercontact {
        width: 75%;
}
    .footermap {
        width: 90%;
}
    
        .contact .col {
       padding-left: 1em;
}
}

@media screen and (max-width: 400px) {
    
    .footercontact {
        width: 100%;
}
    .footermap {
        width: 100%;
}
    
   
    
}

/***********************************************/
/* Helpers and WorkArounds                     */
/***********************************************/

.clearfix:before {  /* Clears floats so containers actually contain them  */
    content: " "; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	font-size: 0;
}