/* CSS Reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, 
pre, form, fieldset, input, textarea, p, blockquote, th, td, { 
	padding: 0;
	margin: 0!
    box-sizing: border-box;
}
body{
    margin: 0;
}
header, section, footer, aside, nav, article, figure, figcaption{
    display:  block;
}
ol, ul {
	list-style: none;
}
hr{ 
    margin: 0 auto;
}
a{
    text-decoration: none;
    color: black;
}
sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
.cf:before,
.cf:after{
    content: " ";
    display: table;
}
.cf:after{
    clear: both;
}

.container{
    max-width: 1040px;
    margin: 0 auto;
    overflow: auto;
    padding-left: 20px;
    padding-right: 20px;
}
body{
    background-color: #f5f5f5;
    font-family: "Lato", sans-serif;
}

.menu{
    padding-top: 20px;
}
#brand-logo{
    float: left;
    font-family: "Lato", sans-serif;
    font-size: 1.3em;
    letter-spacing: .1em;
    color: #99ff99;
    transition: ease-in-out 1s;
    -webkit-transition: ease-in-out 1s;
    padding-top: 10px;
}
#brand-logo:hover{
    color: #f5f5f5;
}
#brand-logo span{
    color: #181818;
    transition: ease-in-out .4s;
    -webkit-transition: ease-in-out .4s;
}
#brand-logo:hover span{
    color: #f5f5f5;
}
#main-menu{
    margin-top: 0px;
    font-family: "Lato", sans-serif;
    font-size: .8em;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
}
#main-menu li{
    float: right;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    color: #f5f5f5; 

}
#main-menu li:after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: -1px;
    right: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background-image:linear-gradient(to right, #80d0c7, #99ff99);
    transition: transform 0.4s;
}
#main-menu li:hover:after{
    transform: scaleX(1);
    transform-origin: left;
}
.hero{
    position: relative;
    /*background-image: linear-gradient(180deg, #13547a 1%, #80d0c7 110%);*/
   /* background-image: url(assets/pexels-mark-angelo-1587927.jpg);
    background-repeat: no-repeat;
    background-size: cover;*/
    background-position:bottom;
    background-attachment:fixed;
    background: 
    /*overlay*/
    linear-gradient(
      rgba(19,84,122, 0.5), 
      rgba(128,208,199,0.6)
    ),
    /* bottom, image */
    url(assets/pexels-mark-angelo-1587927.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
    overflow: auto;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
    height: 90%;
}
.preamble{
    position: relative;
    margin: 9.9vh auto;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}
.preamble section{
    width: 40%;
}
.preamble img{
    width: 100%;
}
.preamble aside{
    width: 50%;
    padding: 0 20px;
    overflow: hidden;
}
.preamble h1{
    font-family: "Muli", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-size: 2.6em;
    letter-spacing: .03em;
    color: #eee;
}
.preamble p{
    font-family: "Raleway", sans-serif;
    font-size: 0.9em;
    font-weight: 200;
    letter-spacing: .06em;
    line-height: 2em;
    color: #eee;
}

.findUs {
    display: inline-block;
    width:35%;
    margin: 5%;
    padding: 5px;
	font-family: "Lato", sans-serif;
    font-size: 0.60em;
    text-transform: uppercase;
    letter-spacing: .4em;
    line-height: 2em;
    text-align: center;
    color: whitesmoke;
    border-radius: 5px;
    background: rgba(200,200,200,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all ease-in-out .2s;
    z-index: 2;
}
.findUs:hover{
    transform: translate(0px, -1px) scale(1.03);
    background: rgba(190,190,190,0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12), 0 0px 0px rgba(0,0,0,0.24);

}
.findUs:active{
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 0px 1px rgba(0,0,0,0.24);
    background: rgba(210,210,210,0.6);
    transform: translate(0px, 0px) scale(1.01);
}

.fa{
    font-size: 1.5em;
    transition: ease-in-out .2s;
}
.findUs:hover i.fa-comments{
    color: #3b5998;
}
.findUs:hover i.fa-phone{
    color: greenyellow;
}

#what{
    width: 95%;
    max-width: 1200px;
    margin: -2em auto;
    padding-top: 1em;
    position: relative;
    background-color: #f8f8f8;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
    z-index: 2;
    text-align: center;
    font-family: "Lato", sans-serif;
}
.wwd{
    display: flex;
}
.wwda{
    flex: 1;
    text-align: center;
    font-family: "Lato", sans-serif;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.wwda:nth-child(odd){
    margin-left: 1.5%;
    margin-right: 1.5%;
}
.wwda h2{
    display: inline-block;
    padding: px 20px;
    //transform: translatey(-100%);
    margin-bottom: 0;

}
.wwd p{
    font-weight: 200;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1.7em;
    padding: .5em 1em 1em 1em;
    transform: translateY(-10px);
    //color: #959595;
}
.wwd-img{
    position: relative;
    background-position: center;
    background-size: cover;
    height: 30vw;
    max-height: 280px;
}
/*.wwd-img:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(transparent,rgba(245,245,245,.1), rgba(245,245,245,.2), rgba(245,245,245,1));
}*/
.repairs{
    background-image: url(assets/iphone-repair.jpg);
}
.shop{
    background-image: url(assets/shop.jpg);
}
.trade{
    background-image: url(assets/swap.jpg);
}

.promise{
    display: flex;
    padding: 10px 20px 60px;
    overflow: auto;
    position: relative;
    top: 20px;
}
.promise>div{
    width: 29.9999%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    text-align: center;
   // background-color: #f1f1f1;
   // box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
}
.promise p{
    padding: 0 20px;
    font-weight: 200;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.wrapper{
    position: relative;
    background-image: linear-gradient(1deg, #5B6789 10%, #718FA4 150%);
    padding-top: 2em;
    padding-bottom: 2em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
}
.ticketmaster{
    text-align: center;
    margin-bottom: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.ticketmaster h2{
    letter-spacing: 0.05em;
    font-family: "Roboto", sans-serif;
    padding: .5em 2em;
    color: #f1f1f1;
    background-color: #e91e63;
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 0em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
}
/*.ticketmaster h2:before, .ticketmaster h2:after{
    content: " — ";
}*/
.ticketmaster p{
    width: 70%;
    margin: 0 auto 4em;
    font-size: 1.1em;
    font-weight: 200;
    letter-spacing: 0.05em;
    line-height: 1.7em;
    color: #f1f1f1;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.ticketmaster div{
    border: 1px solid rgba(33,33,33,0.4);
    box-sizing: border-box;
    width: 29.999%;
    max-height: 190px;
    overflow: hidden;
    margin: 1.5%;
    display: inline-block;
    position: relative;
    box-shadow: 0 4px 2px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
}
.ticketmaster img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.ticketmaster sup{
    font-size: 0.6em;
}

.star{
    max-width: 200px;
    width: 30%;
    margin-top: 0;
    height: auto;
    margin: 0 auto;
}
.star>img{
    width: 100%;
}
.quote{
    padding: 40px;
    padding-bottom: 150px;
    margin: 0 auto;
    max-width: 1400px;
}
.quote blockquote{
    box-sizing: border-box;
    width: 29.9%;
    float: left;
    text-align: center;
    font-weight: 200;
    font-size: 1em;
    font-family: "Lato", sans-serif;
    font-style: italic;
    line-height: 1.7em;
    border-top: 1px solid #ccc;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    color: #f5f5f5;
    margin-left: 1.5%;
    margin-right: 1.5%;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;  
}
.quote blockquote>strong{
    display: inline-block;
    color: #f5f5f5;
    margin-left: 20px;
}

#googleMap{
    position: relative;
    margin: -2em auto;
}
.map{
    position: relative;
    margin: 0 auto;
    width: 95%;
    max-width:  1200px;
    height: 50vh;
    box-sizing: border-box;
    box-shadow: 0 1px 5px rgba(0,0,0,0.12), 0 1px 10px rgba(0,0,0,0.24);
    z-index: 2;
}
.details{
    margin: 0 auto;
    max-width: 1200px;
    width: 95%;
    display: flex;
    box-shadow: 0 1px 5px rgba(0,0,0,0.12), 0 1px 10px rgba(0,0,0,0.24);
    
}
.info{
    position: relative;
    top: -3px;
    width: 33.333%;
    padding: 0 2em;
    text-align: center;
    background-color: #f1f1f1;
    z-index: 3;
}
.info:nth-child(even){
    border-left: 1px solid rgba(33,33,33,0.2);
    border-right: 1px solid rgba(33,33,33,0.2);
}
.details p{
    font-weight: 200;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}
.details h1{
    font-size: 1em;
}

footer{
    position: relative;
    padding-top: 2em;
    text-align: center;
    color: #1f1f1f;
    background-color: #5B6689;
    padding-bottom: 1em;
}
.conditions{
    font-size: .8em;
    font-weight: 200;
    color: #1c1c1c;
}
.anchor-top a{
    font-size: 1.3em;
    letter-spacing: .1em;
    color: #99ff99;
}
.anchor-top a span{
    font-size: 1.3em;
    letter-spacing: .1em;
    color: #111;
}
.fb-link{
    background-color: #3b5998;
    color: #f5f5f5;
    font-weight: 400;
    padding:  3px 6px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.24);
}

.fb-wrapper{
    margin: 0 auto;
    overflow: hidden;
}
.fb-like2{
    position: relative;
    top: -8px;
}
@media screen and (max-width: 900px){
.wwda{
    margin: 0 1%;  
}
    .ticketmaster p{
        width: 90%;
    }
}
@media screen and (max-width: 640px){
#main-menu{
    display: none;
}
  #brand-logo{
        float: none;
        margin: 0 auto;
        text-align: center;
}
.preamble{
    align-items: center;
    flex-direction: column;
    margin: 5vh auto 10vh;
}
.preamble section{
    width: 60%;
    margin-bottom: 10px;
}
.preamble section img{
    width: 100%;
}
.preamble aside{
    text-align: center;
    width: 90%;
    padding-bottom: 10px;
}
.preamble h1{
    font-family: "Montserrat", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-size: 1.6em;
    letter-spacing: .03em;
    color: #eee;
}
.preamble aside p{
    font-family: "Raleway", sans-serif;
    font-size: 0.85em;
    font-weight: 200;
    letter-spacing: .06em;
    line-height: 1.7em;
    color: #eee;
    padding-top: 20px;
}
.findUs{
    display: inline-block;
    width: 60%;
    margin: 10px auto 0px;
    }
.quote blockquote{
    display: block;
    float: none;
    width:70%;
    margin: 30px auto;
}
.ticketmaster div{
    width:60%;
    max-height: 300px;
    margin-bottom: 3%;
}
}
@media screen and (max-width: 540px){
.wwd{
    flex-direction: column; 
    width: 100%;
    box-sizing: border-box;
}
.wwda{
    margin-bottom: .5em;
}
.wwda:nth-child(odd){
    margin-left: 1%;
    margin-right: 1%;
}
.wwd-img{
    height: 30vh;
    width: 100%;
}
.promise{
    flex-direction: column;
}
.promise>div{
    width: 100%;
    margin: 0 auto;
}
.details{
    flex-direction: column; 

}
.info{
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(33,33,33,0.2);
}
.info:nth-child(even){
    border-left: none;
    border-right: none;
}
}









