@import url('icon-font.css');

/*--Colors--*/
.primary{
  background: rgba(139,131,120, 1);
  color: #fff;
}
.secondary{
  background: rgba(68,68,68, 1);
  color: #fff;
}

/*--Buttons--*/
button,
input,
select,
textarea{
  border: none;
  outline: 0;
  resize: none;
}

input,
.input{
  background: transparent;
  padding: 0;
}

button{
  background: transparent;
  cursor: pointer;
}

.btn{
  display: inline-block;
  padding: 12px 16px;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn:hover{
  text-decoration: underline;
}

/*--Generic classes--*/
html {
  -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    -webkit-font-smoothing: antialiased !important;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit; 
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

::selection{
  color: #fff;  
  background: #2A2337;
}

.flexbox{
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: -moz-flex;
  display: flex;  
  
  -webkit-flex-flow: row wrap;
  flex-wrap: wrap;
}

.flexbox1{
  justify-content: space-around;
}

.flexbox2{
  justify-content: space-between;
}

.flexbox3{
  justify-content: flex-end;
}

.flexbox4{
  justify-content: center;
}

body{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

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

a{
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

b{
  font-weight: 500;
}

h1,
h2,
h3,
h4{
  margin: 0;
  font-weight: 400;
}

.h1, h1{
  font-size: 2.2em;
}
.h2, h2{
  font-size: 1.8em;
}
.h3, h3{
  font-size: 1.6em;
}
.h4, h4{
  font-size: 1.4em;
} 

.container{
  width: 1120px;
  padding: 0 10px;
  margin: 0 auto
}
.center{
  text-align: center;
}
.pad60{
  padding: 60px 0;
}
.table{
  display: table;
  width: 100%;
  height: 100%
}
.tc{
  display: table-cell;
  vertical-align: middle;
}
.card{
  background: #fff;
}

/*--Hidden Search--*/
.modal{
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0, 0.60);
  overflow-x: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.appear{
  visibility: visible;
  opacity: 1;
  top: 0;
}
.modal-area{
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  margin-bottom: 40px;
  z-index: 1111;
  background: #f7f7f7;
  border-radius: 3px;
}
.modal-area .head{
  background: #e1e1e1;
  border-radius: 3px 3px 0 0;
}
.modal .head div{
  padding: 12px 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.modal .head a{
  padding: 12px 18px;
}
.modal .body{
  padding: 24px 18px;
}
.modal .body > div{
  width: 80%;
  margin: 0 auto;
  align-items: center;
}
.modal .body > div input{
  flex-grow: 1;
  flex-shrink: 1;
  max-width: 100%;
  padding: 8px 0;
  margin-right: 10px;
  border-bottom: 1px solid #555;
}
.modal .body > div a{
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 2px;
}
/*--Headers--*/
.info-header{
  padding: 10px 0;
  font-size: 12px;
}

.info-header a:hover{
  text-decoration: underline;
}

.info-header .secondary-items li{
  margin-right: 24px;
}

.info-header .secondary-items li:last-child{
  margin-right: 0;
}

.info-header .note{
  color: rgba(255,255,255,0.9);
}

.info-header .note a{
  color: #fff;
}

header.primary{
  height: 60px;
  overflow: hidden;
}
header.primary > div > div.flexbox{
  align-items: center;
}
header.primary .logo{
  margin: 5px 36px 5px 0;
  height: 50px;
  line-height: 50px;
}
header.primary .logo a{
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  vertical-align: middle;
}
header.primary .logo a img{
  display: block;
  max-height: 50px;
  max-width: 100%;
}
header.primary nav{
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
}
header.primary nav .closeup{
  display: none;
}
header.primary nav li{
  margin-right: 24px;
}
header.primary nav li a{
  display: inline-block;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  position: relative;
  color: rgba(255,255,255,0.9);
}
header.primary nav li a:after{
  content: '';
  width: 100%;
  height: 3px;
  background: rgba(255,255,255, 0.80); 
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
header.primary nav li a:hover{
  color: rgba(255,255,255,1);  
}
header.primary nav li a:hover:after{
  visibility: visible;
  opacity: 1;
  top: calc(100% - 3px);
}
header.primary .search,
header.primary .menu{
  margin-left: auto;
  height: 50px;
  line-height: 50px;
}
header.primary .menu{
  margin-left: 0;
}
header.primary .search a,
header.primary .menu a{
  display: inline-block;
  padding: 0 10px;
}
header.primary i.fa{
  vertical-align: middle;
}
header.primary .menu{
  display: none;
}

/*--Above the Fold--*/
.fold .hero{
  min-height: 320px;
  height: calc(100vh - 95px);
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  color: #fff;
  position: relative;
}
.fold .hero h1{
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
}
.fold .hero .cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../images/jordan5.jpg') center no-repeat;
  background-size: cover;
}

/*--Sections--*/
.one h1,
.two h2,
.three h2,
.five h2,
footer h2{
  margin-bottom: 1em;
  font-weight: 300;
}
.one p{
  margin: 0;
  line-height: 1.6;
}
.two{
  background: #fff;
}

.top-locations article a{
  display: block;
  overflow: hidden;
  position: relative;
}
.top-locations article.main,
.top-locations article.sub{
  width: calc(50% - 5px);
}
.top-locations article.main a{
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
}
.top-locations article.sub{
  margin-left: auto;
}
.top-locations article.sub a{
  width: calc(50% - 5px);
  height: 145px;
  margin-bottom: 10px;
}
.top-locations article.sub a:nth-child(odd){
  margin-right: 10px;
}
.top-locations article a i{
  position: absolute;
  top: 0;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  color: #fff;
  font-size: 32px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(0,0,0,0.75);
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  -webkit-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.top-locations article a:hover i{
  top: 50%;
  visibility: visible;
  opacity: 1;
}
.top-locations article a img{
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.top-locations article.sub a img{
  height: 145px;
}
.top-locations article a .caption{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 16px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.four{
  background: url('../images/offer-cover.jpg') center no-repeat;
  background-size: cover;
  height: 240px;
}
.four div a{
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0,0,0, 0.85);
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 18px;
  text-transform: uppercase;
}
.four div a:hover{
  background: rgba(0,0,0, 1);
}

.five p{
  font-weight: 500;
  color: #000;
  margin: 0 0 1.8em;
  line-height: 1.6;
}
.guide-pack{
  margin: 0 -10px;
}
.guide-pack .brochure h3,
.column h3{
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0.45em;
}
.guide-pack .brochure{
  min-width: 240px;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 3em;
}
.guide-pack .brochure a{
  display: block;
  overflow: hidden;
  height: 145px;
}
.guide-pack .brochure img{
  display: block;
  width: 100%;
  vertical-align: middle;
  max-width: 100%;
  border-radius: 2px;
  -webkit-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;

}
.guide-pack .brochure a:hover img{
  transform: scale(1.1);
}
.six .covers a{
  width: 50%;
  min-width: 240px;
  height: 480px;
  overflow: hidden;
  position: relative;
}
.six .covers a img{
  position:absolute;
  top:50%;
  min-height:100%;
  display:block;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width:100%;
}
.six .covers a:hover{
  opacity: 0.8;
}

footer h3{
  text-transform: uppercase;
  margin-bottom: 1.4em;
}
footer h2 a{
  display: inline-block;
}
footer h2 a img{
  display: block;
  max-height: 80px;
  max-width: 100%;
}
.lists{
  margin: 0 -10px;
}
footer .column{
  min-width: 240px;
  width: calc(33%);
  padding: 0 10px;
  margin-bottom: 3em;
}
footer .column ul li{
  margin-bottom: 0.6em;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 300;
}
footer .column ul li:last-child{
  margin-bottom: 0;
}
footer .column ul li a{
  color: rgba(255,255,255,0.8);
}
footer .column ul li a:hover{
  color: #fff;
}
footer .column ul li a i{
  min-width: 32px;
}
footer.bottom{
  padding: 18px;
  font-weight: 300;
  background: #212121;
  text-align: center;
  color: rgba(255,255,255,0.9);
}
footer.bottom .copyright{
  margin-bottom: 16px;
}
footer.bottom p{
  font-size: 12px;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.75);
}
footer.bottom p:last-child{
  margin: 0;
  color: rgba(255,255,255,1);
}


/*--Responsive Media Queries--*/
@media screen and (max-width: 1140px) {
  .container{
    width: 920px;
  }
}


@media screen and (max-width: 940px) {
  .container{
    width: 90%;
  }
  .top-locations article a{
    min-width: 240px;
  }
  .top-locations article.main, .top-locations article.sub{
    width: 100%;
  }
  .top-locations article.sub a{
    height: 180px;
  }
  .top-locations article.main a  img,
  .top-locations article.sub a img{
    min-height: 180px;
  }
  header.primary nav{
    background: rgba(139,131,120, 0.9);
    position: fixed;
    width: 240px;
    height: 100%;
    right: -240px;
    top: 0;
    bottom: 0;
    z-index: 55;
    overflow-y: auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
  }
  header.primary nav.wow{
    -webkit-transform: translateX(-240px);
    transform: translateX(-240px);
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
  header.primary nav .closeup {
    display: block;
    background: rgba(0,0,0,0.95);
    height: 44px;
    width: 44px;
    line-height: 44px;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
  }
  header.primary nav ul{
    margin: 12px 0 20px;
  }
  header.primary nav ul li{
    width: 100%;
    display: block;
    margin: 0;
    border-bottom: 1px solid #615B54;
  }
  header.primary nav ul li:last-child{
    border-bottom: none;
  }
  header.primary nav ul li a{
    width: 100%;
    height: auto;
    line-height: initial;
    padding: 12px 18px;
  }
  header.primary nav ul li a:after{
    all: initial;
  }
  header.primary nav ul li a:hover{
    background: rgba(0,0,0,0.8);
  }
  header.primary .menu{
    display: inherit;
  }
}


@media screen and (max-width: 780px) { 
  .guide-pack .brochure {
    width: 50%;
  }
}


@media screen and (max-width: 640px) {
  .modal-area{
    left: 20px;
    right: 20px;
  }
  .modal .body > div{
    width: 100%;
  }
  .secondary-items{
    width: 100%;
    margin-top: 10px;
    order: 1;
  }
  .secondary-items li{
    margin-bottom: 5px;
  }
  .fold .hero h1{
    font-size: 36px;
  }
  .top-locations article.sub a{
    width: 100%;
    height: 300px;
  }
  .top-locations article.main a  img, .top-locations article.sub a img{
    min-height: 300px;
  }
  .top-locations article.sub a:nth-child(odd){
    margin-right: 0;
  }
  .six .covers a {
    width: 100%;
    height: 240px;
  }
  .guide-pack .brochure {
    width: 100%;
  }
  .guide-pack .brochure a{
    height: 220px;
  }
}


@media screen and (max-width: 480px) {
  .container{
    width: 95%;
  }
  header.primary .logo{
    margin-right: 10px;
  }
  header.primary .logo a img{
    width: 160px;
    max-height: 50px;
  }
  header.primary nav{
    width: 100%;
    height: 100%;
    right: -100%;
  }
  header.primary nav.wow{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .fold .hero h1{
    font-size: 24px;
  }
  .guide-pack .brochure a,
  .top-locations article.main a,
  .top-locations article.sub a,
  .top-locations article.main a  img, .top-locations article.sub a img{
    height: auto;
    min-height: auto;
  }
}