/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
    font-size: 16px;
    background-color: #E10767;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}






blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
    width: 100%;
    display: block;
}

html,body{
    
    margin:0;
        padding:0;
}


a:link { color: #000000; text-decoration: none}
a:visited { color: #000000; text-decoration: none}
a:hover { color: aqua; text-decoration: none}
a:active { color: #000000; text-decoration: none}

nav{
    margin-top:-0px;
    margin-left:0px;
    padding: 0;
    background-color: white;
    width: 100%;
    height: auto;
    position: fixed;
    overflow: visible;
    box-shadow: 0px 5px 6px rgba(30, 30, 30, .4 );
    z-index: 10000;

}




.bars {
float: right;
  background: #E10767;
  width: 6vw;
  height: 6vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
   padding: 5px;
  border-radius: 50%;
  transition: 0.7s;
  cursor: pointer;
/*  code do not select   */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
    margin: 10px;
}
.bars.active {
  transform: rotate(360deg);
}
.bar {
  background: #fff;
  height: 10%;
  width: 70%;
  border-radius: 10px;
  transition: 0.7s;
  
}


.bars.active .bar:nth-of-type(1) {
  
  transform: rotate(-35deg) translate( -45%, 30%);
  width: 50%;
}
.bars.active .bar:nth-of-type(3) {
  
  transform: rotate(35deg) translate( -45%, -30%);
  width: 50%;
}


.cd-popup-trigger {  

}


.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  background-color: rgb(0 0 0 0);
  border-radius: 30px;
  padding: 10px; 
  width: 50%;
  height: 300px; 
  position: relative;
  max-width: 400px;
  margin: 4em auto;
  background: #FFF;
  text-align: center;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-popup-container popupbox {
}
.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}
.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}
.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}



.popupitem{
    width: 100%;
    margin-right:auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: auto;
    float: left;
    display: block
    ;
}

.popupitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 4vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 4px;
}


.container{

}



.menuitem{
    margin-right:30px;
    margin-top: 20px;
    margin-bottom: auto;
    float: right;
    display: none;
    
}

.menuitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 1.1vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 4px;
    display: none;
}

.logoitem{
    width: 70%;
    margin-right:0;
    margin-top: 15px;
    margin-bottom: auto;
    margin-left: 10px;
    float: left;
    display: block; 
}

.logoitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 3vw;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 2%;
    letter-spacing: 10px
}

.wrapper{
    background-color: #E10767;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;

}


.header{
    display: inline-block;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    margin-top: 50px;
}



.wow{
    width: 100%;
    margin-top:0px;
    margin-left:0px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: white;
    height: auto;
    position: relative;
    overflow: hidden;
}

.orgs{
    height: 60px;
    background-color: none;
    margin: 0 auto;
    width: 100%;
    display: block;
}

.credit{
    background-color: none;
    float: left;
    margin: 0 auto;
    width: 100%;
    display: block;
    
}

.credit h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 2vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 4px
}

.footmenuitem{
    background-color: none;
    width:48%;
    margin-right: 5px;
    float: left;
}

.footmenuitem2{
    background-color: none;
    width:48%;
    margin-left: 5px;
    float: right;

    
}

.footmenuitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 2.6vw;
    text-transform: uppercase;
    text-align: right;
    letter-spacing: 1px
}

.footmenuitem2 h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 2.6vw;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px
}

.footlogoitem{
    margin-right:30px;
    margin-top: auto;
    margin-bottom: 10px;
    margin-left: 30px;
    float: left;
    
}

.footlogoitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 1.9vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 40px
}

footer {
    background-color: #E10767;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    float: left;
    height: 70px;

}






.portfolio a{
    background-color: none;
    width:30%;
    color: white; 
    text-align: left;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: .7vw;
    margin-left: 1%;
    float: left;
    margin-top: 30px;
    /*width: 30%; 
    color: white;
    font-family: sans-serif;
    font-size: 1vw;
    margin-left: 1%;
    margin-bottom: 0em;
    margin-top: 90e;
    padding-bottom: 0em;
    text-decoration: underline;*/
    
}
.portfolio :hover{
    color: aqua; 
    float: left;
}

.portfolio h1{
    padding-bottom: 0px;
    
    
}

.portfolio1{
    margin-top: 1px;
    margin-left:15%;
    width: 30%;
    float: left;
}

.portfolio1 a{
    background-color: none;
    width:100%;
    color: white; 
    text-align: left;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 1vw;
    margin-left: 1%;
    float: left;
    margin-top: 0em;

    
}
.portfolio1 :hover{
    color: aqua; 
}

.portfolio1 h1{
    padding-bottom: 2px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    letter-spacing:2px;
    
}



.footcontainer{
    padding-left: 25%;
    height: 40px;
    background-color: none;
    width:100%;
    padding-top: 5px;
    display: block;
    margin: 0 auto;
    float: left;
}

.footericons{
    background-color: none;
    width: 100%;
    text-align: center;
}



.footericonf {
    position: relative;
    padding-left: 0em;
    height: 2.2em;
    width: 12%;
    margin: 0;
    padding-top: 1px;
    overflow: hidden;
    float: left;
}

.footericoni {
    position: relative;
    padding-left: 0em;
    height: auto;
    width: 12%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.footericont {
    position: relative;
    padding-left: 0em;
    height: auto;
    width: 12%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.footericonl {
    position: relative;
    padding-left: 0em;
    height: auto;
    width: 12%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.thanks{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 5em;
}

.thanks h1{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing:2px;
    margin-top: 10px;
    margin-bottom: 3px;
    color: white;
    text-align: left;
}

.thanks h2{
    padding-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:0px;
    margin-top: 0px;
    color: white;
    text-align: left;
}

.thanks a{
    color:white;
    font-size: 2.5vw;
    font-weight: 600;
    padding-right: 0px;
    margin-top: 2px;
}

.award{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.award h1{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 6vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h2{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h3{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:0px;
    margin-top: -5px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.award a{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.award h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
}


.award img{
    background-color: aqua;
    margin-bottom:0px;
    margin-top:40px;
    padding:0;
}

.congrats{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.congrats h1{
    width:85%;
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 6vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.congrats h2{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.congrats h3{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:0px;
    margin-top: -5px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.congrats a{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.congrats h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    margin-top: 5px;
    color: white;
    text-align: left;
}

.summary{
    background-color: #E10767;
    width:100%;
    height: auto;
    padding-bottom: .1%;
    margin-top: 47%;


}
.summary h1 {
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    font-size: 3em;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 10px
}

.summary p {
    line-height: 20px;
    margin-top: -0px;
    width: 80%;
    font-family: sans-serif;
    font-weight: 200;
    font-size: 1em;
    color: white;
    text-align: center;
    padding-left: 10%;
}


.callsign {
background-color: rgba(0,0,0,0);
position: absolute;
width: 110%;
height: 16%;
left: -5%;
padding: 4.1em 0 0 0;
overflow: visible;
color: rgba(0,0,0,.35);
z-index: 10;
text-align: left;

}


.callsign h2 {
font-family: sans-serif;
font-size: 1em;
font-weight: bold;
text-transform: uppercase;
letter-spacing: .1em;

}

.instagram{
    position: relative;
    width: 51%;
    height: auto;
    background-color:none;
    visibility: visible;
    float: left;
    overflow: visible;
    padding-bottom: 20px;
}

.followus h1{
color: white;
font-family: titling-gothic-fb-compressed, sans-serif;
font-weight: 400;
font-size: 1.2em;
letter-spacing: .2em;
line-height: 1.5em;
text-transform: uppercase;
text-align: center;
padding-top: 8%;
}

.followus{
    position: relative;
    margin-top:20px;
    background-color: none;
    width: 100%;
    height: auto;
    color: white;
    overflow: hidden;
    
}

.icons{
    position: relative;
    height: auto;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.iconf {
    position: relative;
    padding-left: 0em;
    height: auto;
    width: 20%;
    margin: 0;
    overflow: hidden;
    float: left;
}

.iconi {
    position: relative;
    padding-left: .5em;
    height: auto;
    width: 20%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.icont {
    position: relative;
    padding-left: .5em;
    height: auto;
    width: 20%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.iconl {
    position: relative;
    padding-left: .5em;
    height: auto;
    width: 20%;
    margin: 0 auto;
    overflow: hidden;
    float: left;
}

.fa {
  padding-left: 5%;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 0 10% 0 0;
}

.fa-facebook {
  background: none;
  color: #E10767;
}
.fa-instagram {
  background: none;
  color: #E10767;
}
.fa-twitter {
  background: none;
  color: #E10767;
}
.fa-linkedin{
  background: none;
  color: #E10767;
}



    .squareone{
    background-color: white;
    width: 15.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:inline-block;
    float: left;
}
.recone{
    background-color: navy;
    width:31.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: inline-block;
    float: left;
}

.squaretwo{
    background-color: navy;
    width:39.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: inline-block;
    float: left;
}

.rectwo{
    background-color: navy;
    width:40% ;
    height: 100% ;
    margin: 0px 0% 1.02% 1%;
    display: inline-block;
    float: left;
}

.mobsquare{
background-color: white;
width: 50%;
height: 100%;
margin: 0px 0% 0% 0%;
/*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
background-size: 100% 100%;*/
display:inline-block;
float: left;
}
.mobrec{
background-color: #E10767;
width: 100%;
height: 100%;
margin: 0px 0% 0% 0%;
/*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
background-size: 100% 100%;*/
display:inline-block;
float: left;
}

.squareone{
background-color: #E10767;
width: 15.8%;
height: 100%;
margin: 0px 0% 1% 1%;
/*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
background-size: 100% 100%;*/
display:none;
float: left;
}
.recone{
background-color: navy;
width:31.6% ;
height: 100% ;
margin: 0px 0% 1% 1%;
display: none;
float: left;
}

.squaretwo{
background-color: navy;
width:39.6% ;
height: 100% ;
margin: 0px 0% 1% 1%;
display: none;
float: left;
}

.rectwo{
background-color: navy;
width:40% ;
height: 100% ;
margin: 0px 0% 1.02% 1%;
display: none;
float: left;
}
.tabrecone{
background-color: navy;
width:38.7% ;
height: 100%;
margin: 0px 0% 1.02% 1%;
display: none;
float: left;
}

.tabrectwo{
background-color: navy;
width:58.9% ;
height: 100%;
margin: 0px 0% 1.02% 1%;
display: none;
float: left;
}
.tabrecthree{
background-color: navy;
width:48.5% ;
height: 100%;
margin: 0px 0% 1.02% 1%;
display: none;
float: left;
}

.tabsquare{
background-color: #E10767;
width: 18.5%;
height: 100%;
margin: 0px 0% 1% 1%;
/*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
background-size: 100% 100%;*/
display:none;
float: left;
}

.tabrecone{
background-color: navy;
width:40% ;
height: 100% ;
margin: 0px 0% 1.02% 1%;
display: none;
float: left;
}



.callsign {
background-color: rgba(0,0,0,0);
position: absolute;
width: 110%;
height: 16%;
left: -5%;
padding: 4.1em 0 0 0;
overflow: visible;
color: rgba(0,0,0,.35);
z-index: 10;
text-align: left;

}

.callsignone {
background-color: rgba(0,0,255,0);
position: absolute;
width: 105%;
height: 10%;
top: -1.75em;
left: -3%;
padding: 40% 0 0 0;
overflow: visible;
color: rgba(255,255,255,1);
z-index: 10;

}

.callsignone h1 {
font-family: titling-gothic-fb-compressed, sans-serif;
font-weight: 500;
font-size: 4vw;
text-transform: uppercase;
text-align: center;
letter-spacing: 10px;
padding-top: 3em;
padding-left: .5em;
}

.callslast {
    position:absolute;
    width: 100%;
    height: auto;
    margin: 30px 0 0 0 ;
    overflow: visible;
    z-index: 1000;
}

.callslast h1 {
font-family: titling-gothic-fb-compressed, sans-serif;
font-weight: 500;
font-size: 4vw;
text-transform: uppercase;
text-align: center;
letter-spacing: 10px;
padding-top: 3em;
padding-left: .5em;
color: white;
}

.callsign h2 {
font-family: sans-serif;
font-size: 1em;
font-weight: bold;
text-transform: uppercase;
letter-spacing: .1em;

}

.avelar {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}
.avelar a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Avelar/avelar_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.avelar a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Avelar/avelar_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}


.bayless {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.bayless a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Bayless/bayless_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.bayless a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Bayless/bayless_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}


.defrancis {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.defrancis a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Defrancis/defrancis_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.defrancis a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Defrancis/defrancis_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}


.humphreys {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.humphreys a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Humphreys/humphreys_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.humphreys a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Humphreys/humphreys_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.jahani {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.jahani a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Jahani/jahani_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.jahani a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Jahani/jahani_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.kassin {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.kassin a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Kassin/kassin_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.kassin a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Kassin/kassin_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.laza {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.laza a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Laza/laza_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.laza a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Laza/laza_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.logan {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.logan a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Logan/logan_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.logan a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Logan/logan_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.magby {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.magby a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Magby/magby_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.magby a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Magby/magby_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.miller {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.miller a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Miller/miller_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.miller a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Miller/miller_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

		.pasquarelli {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.pasquarelli a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Pasquarelli/pasquarelli_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.pasquarelli a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Pasquarelli/pasquarelli_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.torain {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.torain a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Torain/torain_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.torain a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Torain/torain_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}


.webster {
position: relative;
width: 47%;
height: auto;
margin: 0 2% 1em auto;
float: left;
overflow: visible;

}

.webster a{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Webster/webster_front.jpg) no-repeat;
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}

.webster a:hover{
display: inline-block;
width: 100%;
height: 100%;
background: url(Heads/Webster/webster_front.jpg) no-repeat;
/*transition-delay: .07s;
background-position:  -200px 50%;*/
background-size: 100%;
float: left;
margin-right: 2%;
margin-bottom: 2%;
overflow: hidden;
}


















/*TABLET WIDTH */











@media screen and (min-width: 900px) {

    .header{
    display: inline-block;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
        margin-bottom: 1%;
}

.cd-popup-trigger {  
    display: none;

}
    
.container{
    display: block;

}
.summary{
    background-color: #E10767;
    width:100%;
    height: auto;
    padding-bottom: .1%;
    margin-top: 40%;
}
    
.menuitem{
    margin-right:30px;
    margin-top: 15px;
    margin-bottom: 0px;
    float: right;
    display: block;
    padding-bottom: 
    
}

.menuitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 1.1vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 4px;
    display: block;
}

.logoitem{
    width: 40%;
    margin-right:0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 30px;
    float: left;
    display: block; 
    
    
    
}

.logoitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 2vw;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 2%;
    letter-spacing: 4px
}

    
   .wrapper{
       background-color: #E10767; /*rgb(49	49	41)*/
    }
    
    .footericons{

}
    
    .portfolio a{
    background-color: none;
    width:30%;
    color: white; 
    text-align: left;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: .4vw;
    margin-left: 1%;
    float: left;
    margin-top: 1em;
    /*width: 30%; 
    color: white;
    font-family: sans-serif;
    font-size: 1vw;
    margin-left: 1%;
    margin-bottom: 0em;
    margin-top: 90e;
    padding-bottom: 0em;
    text-decoration: underline;*/
    
} 
    

.description{
    color: white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -10em;
    margin-top: -6em;
    
}

.description h1{
    color: #E10767;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 700;
    font-size: 4vw;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 10px;
}

.description h2{
    color: white;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    font-size: 3vw;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .3em;
    margin-top: -.7em;
}

.description h3{
    color: white;
    font-family:  sans-serif;
    font-weight: 200;
    font-size: 1.8vw;
    text-align: center;
    letter-spacing: 0em;
    line-height: 1.3em;
    margin-top: -.4em;
}


.squareone{
    background-color: #E10767;
    width: 15.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}

.mobsquare{
    background-color: #E10767;
    width: 48.4%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}
.mobrec{
    background-color: #E10767;
    width: 97.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}
.recone{
    background-color: navy;
    width:31.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: none;
    float: left;
}

.squaretwo{
    background-color: navy;
    width:39.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: none;
    float: left;
}

.rectwo{
    background-color: navy;
    width:40% ;
    height: 100% ;
    margin: 0px 0% 1.02% 1%;
    display: none;
    float: left;
}

.tabrecone{
    background-color: navy;
    width:38.7% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display: inline-block;
    float: left;
}

.tabrectwo{
    background-color: navy;
    width:58.9% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display: inline-block;
    float: left;
}
.tabrecthree{
    background-color: navy;
    width:48.5% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display: inline-block;
    float: left;
}

.tabsquare{
    background-color: #E10767;
    width: 18.5%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:inline-block;
    float: left;
}


.header{
    display: inline-block;
    width: 100%;
    height: 100%;
    float: left;
    padding-right: 100px;
    overflow: hidden;
}
    
.thanks h1{
    padding-bottom: 2px;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 4vw;0px;
    margin-top: 0px;
    color: white;
    text-align: center;
}
    
.thanks h2{
    padding-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5vw;;
    letter-spacing:2px;
    margin-top: 0px;
    color: white;
    text-align: center;
}
    
    .thanks img{
        margin:0 auto;
       width:50%;
    align-content:;
    }
    
    .thanks a{
        font-size:1.5vw;
    }

.award{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.award h1{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h2{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h3{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:0px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.award a{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.award h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
}


.award img{
    background-color: aqua;
    margin-bottom:0px;
    margin-top:30px;
    padding:0;
}
    
.congrats{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.congrats h1{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.congrats h2{
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.congrats h3{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 2vw;
    letter-spacing:0px;
    margin-top: -5px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.congrats a{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.congrats h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    margin-top: 5px;
    color: white;
    text-align: left;
}
    
.avelar {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.avelar a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Avelar/avelar_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.avelar a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Avelar/avelar_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .bayless {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.bayless a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Bayless/bayless_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.bayless a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Bayless/bayless_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .defrancis {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.defrancis a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Defrancis/defrancis_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.defrancis a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Defrancis/defrancis_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .humphreys {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.humphreys a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Humphreys/humphreys_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.humphreys a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Humphreys/humphreys_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .jahani {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.jahani a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Jahani/jahani_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.jahani a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Jahani/jahani_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .kassin {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.kassin a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Kassin/kassin_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.kassin a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Kassin/kassin_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .laza {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.laza a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Laza/laza_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.laza a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Laza/laza_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .logan {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.logan a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Logan/logan_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.logan a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Logan/logan_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .magby {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.magby a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Magby/magby_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.magby a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Magby/magby_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .miller {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.miller a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Miller/miller_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.miller a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Miller/miller_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .pasquarelli {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.pasquarelli a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Pasquarelli/pasquarelli_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.pasquarelli a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Pasquarelli/pasquarelli_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.torain {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.torain a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Torain/torain_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.torain a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Torain/torain_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


.webster {
    position: relative;
    width: 23%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.webster a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Webster/webster_front.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.webster a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Webster/webster_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


.instagram{
    width: 70%;
    height: 10em;
    background-color: none;
    visibility: visible;
    z-index: 10;
    float: left;
    overflow: hidden;
}

.instagram h1{
    color: white;
    margin-top: -40px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    font-size: 1.9em;
    letter-spacing: .2em;
    line-height: 1.1em;
    text-transform: uppercase;
    text-align: center;
}

.callsign {
    background-color: rgba(255,0,0,0);
    position: relative;
    width: 100%;
    height: 40%;
    padding: 1.5em 2em 0 0;
    color: rgba(0,0,0,0);

}

.callsignone {
    background-color: rgba(0,0,255,0);
    position: absolute;
    width: 100%;
    height: 100%;
    top: .90em;
    left: -.5em;
    padding: 30% 0 0 0;
    color: rgba(255,255,255,0);

}

.callsignone h1 {
    font-size: .8rem;
    letter-spacing: .4em;
}


.callsign h2 {
    font-size: 2em;
    letter-spacing: .3em;

}

.callsignone:hover {
    color: rgba(255,255,255,1);
}


.callsign:hover {
    color: rgba(255,255,255,1);
}

}













/*DESKTOP WIDTH */















@media screen and (min-width: 1280px) {

    .wow{
        height: 110px;
        padding-top: 15px;
    }
    
    .wrapper{
        background-color: #E10767;


    }

    .hamburger{
        display: none;
    }
    
.container{
    display: block;

}



.menuitem{
    margin-right:30px;
    margin-top: 12px;
    margin-bottom: 0px;
    float: right;
    display: block;
    padding-bottom: 
    
}

.menuitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 1.1vw;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2%;
    letter-spacing: 4px;
    display: block;
}

.logoitem{
    width: 40%;
    margin-right:0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 30px;
    float: left;
    display: block; 
    
    
    
}

.logoitem h1{
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    color: #E10767;
    font-size: 1.6vw;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 2%;
    letter-spacing: 4px
}

.credit{

}



.footericons{
}
    
    .portfolio a{
    background-color: none;
    width:30%;
    color: white; 
    text-align: left;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: .4vw;
    margin-left: 1%;
    float: left;
    margin-top: 0em;
    /*width: 30%; 
    color: white;
    font-family: sans-serif;
    font-size: 1vw;
    margin-left: 1%;
    margin-bottom: 0em;
    margin-top: 90e;
    padding-bottom: 0em;
    text-decoration: underline;*/
    
} 
    
    
.thanks h1{
    padding-bottom: 2px;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2vw;
    letter-spacing:2px;
    margin-top: 0px;
    color: white;
    text-align: center;
}
    
.thanks h2{
    margin: 0 auto;
    width: 60%;
    padding-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1vw;;
    letter-spacing:0px;
    margin-top: 0px;
    color: white;
    text-align: center;
}
    
    .thanks img{
        margin:0 auto;
       width:40%;
    align-content:;
    }
    
    .thanks a{
        font-size:1vw;
    }

.award{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.award h1{
    margin-left: 5.66em;
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h2{
    margin-left: 8.5em;
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.award h3{
    margin-left: 14.1em;
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 1.2vw;
    letter-spacing:0px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.award a{
    margin-left: 0px;
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 1.2vw;
    letter-spacing:2px;
    margin-top: -10px;
    margin-bottom: 10px;
    color: white;
    text-align: left;
}

.award h4{
    margin: 10px auto;
    width: 60%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
}


.award img{
    margin: 0 auto;
    width: 60%;
    background-color: aqua;
    margin-bottom:0px;
    margin-top:20px;
    padding:0;
}
    
.congrats{
    width: 85%;
    height:auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}

.congrats h1{
    margin: 0 auto;
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing:2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

.congrats h2{
    margin-left: 8.55em;
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 2vw;
    letter-spacing:2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}

.congrats h3{
    margin-left: 11.4em;
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:0px;
    margin-top: -5px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}

.congrats a{
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing:2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.congrats h4{
    width: 60%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    margin-top: 5px;
    color: white;
    text-align: left;
}
    
.footericons{
        margin-top:00px;
        margin-bottom:0px;
    }
    
.footmenuitem{
    background-color: none;
    width:48%;
    margin-left: 5px;
    float: left;
}

.footmenuitem2{
    background-color: none;
    width:48%;
    margin-right:5px;
    float: right;

    
}
    
    
 .footmenuitem h1{
        font-size: 1vw;
     
    }
    
.footmenuitem2 h1{
        font-size: 1vw;
    }
    
    .credit h1{
        font-size: .7vw
        
    }
    

    .orgs{
        margin-top: 20px;
    }

.mobsquare{
    background-color: white;
    width: 48.4%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}
.mobrec{
    background-color: white;
    width: 97.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}

.squareone{
    background-color: gray;
    width: 15.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}

.squareone{
    background-color: gray;
    width: 15.8%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:inline-block;
    float: left;
}
.recone{
    background-color: navy;
    width:31.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: inline-block;
    float: left;
}

.squaretwo{
    background-color: navy;
    width:39.6% ;
    height: 100% ;
    margin: 0px 0% 1% 1%;
    display: inline-block;
    float: left;
}

.rectwo{
    background-color: navy;
    width:40% ;
    height: 100% ;
    margin: 0px 0% 1.02% 1%;
    display: inline-block;
    float: left;
}


    .tabrecone{
    background-color: navy;
    width:40% ;
    height: 100% ;
    margin: 0px 0% 1.02% 1%;
    display: none;
    float: left;
}
    .tabrecone{
    background-color: navy;
    width:38.7% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display: none;
    float: left;
}

.tabrectwo{
    background-color: navy;
    width:58.9% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display:none;
    float: left;
}
.tabrecthree{
    background-color: navy;
    width:48.5% ;
    height: 100%;
    margin: 0px 0% 1.02% 1%;
    display: none;
    float: left;
}

.tabsquare{
    background-color: #E10767;
    width: 18.5%;
    height: 100%;
    margin: 0px 0% 1% 1%;
    /*background: url(img/poster_1920_min.png) no-repeat 0px 0px;
    background-size: 100% 100%;*/
    display:none;
    float: left;
}

.grid{
    padding: 1.75em 0 0 2.75%;

}

.avelar {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.avelar a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Avelar/avelar_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.avelar a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Avelar/avelar_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .bayless {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.bayless a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Bayless/bayless_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.bayless a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Bayless/bayless_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .defrancis {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.defrancis a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Defrancis/defrancis_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.defrancis a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Defrancis/defrancis_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


    .humphreys {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.humphreys a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Humphreys/humphreys_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.humphreys a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Humphreys/humphreys_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .jahani {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.jahani a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Jahani/jahani_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.jahani a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Jahani/jahani_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .kassin {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.kassin a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Kassin/kassin_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.kassin a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Kassin/kassin_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .laza {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.laza a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Laza/laza_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.laza a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Laza/laza_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .logan {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.logan a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Logan/logan_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.logan a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Logan/logan_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .magby {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.magby a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Magby/magby_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.magby a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Magby/magby_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .miller {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.miller a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Miller/miller_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.miller a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Miller/miller_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

        .pasquarelli {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.pasquarelli a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Pasquarelli/pasquarelli_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.pasquarelli a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Pasquarelli/pasquarelli_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.torain {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.torain a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Torain/torain_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.torain a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Torain/torain_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


.webster {
    position: relative;
    width: 18%;
    height: auto;
    margin: 0 2% 1em auto;
    float: left;
    overflow: visible;

}

.webster a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Webster/webster_side.jpg) no-repeat;
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

.webster a:hover{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(Heads/Webster/webster_front.jpg) no-repeat;
    /*transition-delay: .07s;
    background-position:  -200px 50%;*/
    background-size: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}


.callsign {
    background-color: rgba(255,0,0,0);
    position: relative;
    width: 100%;
    height: 40%;
    padding: 3em 2em 0 0;
    color: rgba(0,0,0,0);

}

.callsignone {
    background-color: rgba(0,0,255,0);
    position: absolute;
    width: 105%;
    height: 50%;
    top: .40em;
    left: -.5em;
    padding: 7em 0 0 0;
    color: rgba(255,255,255,0);

}

.callsignone h1 {
    font-size: 1.5em;
    letter-spacing: .4em;
}


.callsign h2 {
    font-size: 2em;
    letter-spacing: .3em;

}

.callsignone:hover {
    color: rgba(255,255,255,1);
}


.callsign:hover {
    color: rgba(255,255,255,1);
}





body:after{
 display:none;
 content: url(Heads/Avelar/avelar_front.png)
}


 .instagram{
    width: 37%;
    height: 14em;
    background-color: none;
    visibility: visible;
    z-index: 10;
    position: top: 50%;
    float: left;
    overflow: hidden;
}

.instagram h1{
color: white;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: .2em;
    line-height: 1.5em;
    text-transform: uppercase;
    text-align: center;
    padding-top: 3%;
}


.header{
    display: inline-block;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
}





}
