
@font-face {
    font-family: 'quandoregular';
    src: url('../fonts/quando-regular-webfont.woff2') format('woff2'),
    url('../fonts/quando-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'montserratregular';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratlight';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'montserratmedium';
    src: url('../fonts/montserrat-medium-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'montserratthin';
    src: url('../fonts/montserrat-thin-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'judsonbold';
    src: url('../fonts/judson-bold-webfont.woff2') format('woff2'),
    url('../fonts/judson-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing:border-box;
}

body.index{
  height: 2500px;

}
.clearfix{
  clear: both;
}
footer{
  position: relative;
  bottom: 0;
  width: 100%;
  height: 150px;
  background-color: #404968;
  font-family: 'quandoregular';

}
.footer-logo{
  float: left;
  margin-top: 50px;
  margin-left: 20%;
}


.footer-link{

  margin-left: 50%;
  transform:translateX(-50%);
  margin: 0 auto;
  float: right;
  margin-top: 35px;
}

footer .footer-link ul{
  list-style: none;
  color: white;
}

footer .footer-link ul li{
  text-align: center;
  margin-left: 60px;
  display: inline-block;
  float: left;

}
footer .footer-link ul li a{
  color: white;
  text-decoration: none;
}


.footer-nav{
    margin-bottom: 40px;
    padding-right: 100px;
}
ul.footer-social{
  margin-left: 100px;
}

ul.footer-social li{
   padding-left: -10px;
    /* margin-left: -50px; */

}

.copyright{
  color: white;
  margin-top: 10px;
  /* padding-left: 160px; */
  text-align: center;
  font-size: 0.6em;

}
/*======================= HOME PAGE ===============================*/

/*----------- header nav ------------*/

nav{
  position: relative;
  z-index: 30;
  width: 100%;
  height: 70px;
  background-color: #404968;
}

ul#navbar{

  font-family: 'quandoregular';
  text-align: center;
  background-color: rgb(247,127,80);
  padding: 15px;
  width: 100%;
	list-style-type: none;
}

ul#navbar li{
	display: inline-block;
	font-size: 1em;
  width: 100px;
  /* padding-left: 60px; */
}
ul#navbar li a{
	text-decoration: none;
	display: block;
	padding: 10px;
	color: white;
	transition: all 0.3s ease;
}

ul#navbar li a:hover{
	color: #404968;

}

ul li.logo{
  display: inline-block;
  padding-top: 10px;
  float: left;
  margin-left:50%;
  transform:translateX(-50%);
}

.fa-bars, .fa-search{
  color: white;
}

.fa-search{
  margin-top: 10px;
}

ul li.right{
  display: inline-block;
  float: right;
  margin-left: 20px;
  color: white;
  padding-right: 30px;
  padding-top: 20px;
}

/*-------- hamburger ---------*/
#nav-toggle {
   cursor: pointer;
   padding: 10px 35px 16px 0px;
 }
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: white;
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 500ms ease-in-out;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}


nav ul li.first{
  text-align: center;
}

.fixed{
  position: fixed;
  z-index: 100;
  width: 100%;
  top:0;
  /* font-size: 1em; */
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
 animation: navmove 1s;

}


@-webkit-keyframes navmove {
    from {top: -110px;}
    to {top: 0px;}
}

@keyframes navmove {
    from {top: -100px;}
    to {top: 0px;}
}
/*----------- heade
r content ------------*/

.header-wrapper{

  width: 100%;
  height: 800px;
  position: relative;
  z-index: 20;
  height: 700px;
  overflow: hidden;
}

.header-content{
  position: absolute;
  z-index: 30;
  width: 100%;
  top: 10%;
	/* left: calc(55% - 330px); */
  /* left:50%; */
	color: white;
/* background-image: linear-gradient(to left bottom, #404968, #715382, #ac5886, #dd6273, #f77f50); */
  background-color:rgba(247,127,80, .6);
  height: 300px;
  padding: 50px;
  margin-left:50%;
  transform:translateX(-50%);
  margin-top: 100px;
  text-align: center;
}

/* source{
  background-position: center center;
} */
.header-content h1{
  font-family: 'quandoregular';
  font-size: 2.5em;
  margin: 0;
  padding: 10px;

}

.header-content h2{
  font-family: 'montserratregular';
  font-size: 1.2em;
  line-height: 30px;
  margin-top: 30px;
  margin-bottom: 50px;

}

.header-content a{
  position: relative;
  background-color: #404968;
  border-radius: 50px;
  padding: 20px;
  text-decoration: none;
  color: white;
  font-family: 'quandoregular';
}

.header-content a:hover{
  -webkit-transition: all ease-in-out 200ms;
  -o-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
  background-color: white;
  color: #404968;
}


/*----------- Featured Story ------------*/
.featured-story{
  background-color:rgb(247,127,80);
  position: relative;
  height: 1000px;
  width: 100%;

  /* margin: 0 auto; */
  /* color: black; */
  /* margin-top: 30px; */
  background-image: url(../img/index-usmap.png);
  background-position: center bottom;
  background-size: 600px 400px;
  background-repeat: no-repeat;
  background-attachment: fixed;


}



.featured-intro{
  padding-top: 100px;
  color: white;
  text-align: center;
}

.featured-story h1.fea-title, .featured-story h2{
  width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;

}
.featured-story h1.fea-title{
  font-family: 'quandoregular';
}

.featured-story h2{
  font-family: 'montserratregular';
  font-size: 16px;
}

.featured{
  position: relative;
  top: 0;
  width: 283px;
  height: 500px;
  background-color: white;
  display: inline-block;
  float: left;

  margin-right: 20px;
  /* padding-right: 20px; */
  text-align: center;
  -webkit-transition: all ease-in-out 250ms;
  -o-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
}

.featured:hover{
  top:-10px;
  -webkit-box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
  -moz-box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
  box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
}


.featured h1{
  text-align: center;
  font-family: 'montserratregular';
  color: #404968;
}
.featured p{
  width: 200px;
  font-size: 12px;
  line-height: 18px;
  font-family: 'montserratlight';
  margin: 0 auto;
}

/* Code Reference https://codepen.io/hmps/ */
section {
  width: 120px;
  display: block;
  margin: 50px auto;
  text-align: center;

}
.container {
  margin: 50px auto;
  width: 400px;
  text-align: center;
}

.container > .dropdown {
  margin: 0 20px;
  vertical-align: top;
}

.dropdown {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 28px;
  width: 150px;
  background: #f2f2f2;
  border: 1px solid;
  border-color: white #f7f7f7 whitesmoke;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.dropdown:before, .dropdown:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #888888 transparent;
  pointer-events: none;
}

.dropdown:before {
  border-bottom-style: solid;
  border-top: none;
}

.dropdown:after {
  margin-top: 7px;
  border-top-style: solid;
  border-bottom: none;
}

.dropdown-select {
  position: relative;
  width: 130%;
  margin: 0;
  padding: 6px 8px 6px 10px;
  height: 28px;
  line-height: 14px;
  font-size: 12px;
  color: #62717a;
  text-shadow: 0 1px white;
  background: #f2f2f2; /* Fallback for IE 8 */
  background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

.dropdown-select:focus {
  z-index: 3;
  width: 100%;
  color: #394349;
  outline: 2px solid #49aff2;
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -2px;
}

.dropdown-select > option {
  margin: 3px;
  padding: 6px 8px;
  text-shadow: none;
  background: #f2f2f2;
  border-radius: 3px;
  cursor: pointer;
}

.stories-wrapper{
  width: 960px;
  margin: 0 auto;
}

/*----------- Map ------------*/
.map{
  background-image: url('../img/map-intro.png');
  color:white;
  line-height: 30px;
  margin-bottom: -20px;
  /* position: relative;
  bottom: 0; */
}
.map-intro{
  width: 600px;
  margin: 0 auto;
  font-size: 1em;
  font-family: 'quandoregular';
  padding: 50px;

}


/*======================= PAGE 2 : ABOUT PAGE ===============================*/
body.About{
  height: 700px;
  /* background:rgb(247,127,80); */
  background-image: url('../img/orange.jpg');
  overflow-x: hidden;
}

.about-nav{
position: absolute;
z-index: 60;
width: 100%;
height: 70px;
background: white;
padding-top: 30px;
padding-left: 60px;
-webkit-box-shadow: 3px 18px 33px -15px rgba(64,73,104,.5);
-moz-box-shadow: 3px 18px 33px -15px rgba(64,73,104,.5);
box-shadow: 3px 18px 33px -15px rgba(64,73,104,.5);
}

.about-nav ul li{
  display: inline-block;
  float: left;
}

.about-nav ul li.blank{
  padding-left: 10px;
  padding-right: 10px;
}

.about-nav ul li a{
  text-decoration: none;
  color: #404968;
  font-family: 'quandoregular';

}
.ytb-wrapper{
  background: #404968;
  -webkit-box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
  -moz-box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
  box-shadow: 0px 7px 18px 1px rgba(99,62,47,.6);
}

.ytb{
  margin-left:50%;
  transform:translateX(-50%);
}

.about-wrapper{
  position: relative;
  z-index: 30;
  margin: 0 auto;
  width: 750px;
  height: 2400px;
  padding: 80px;
  background-color: white;
}

.about-wrapper h1{
  font-family: 'quandoregular';
}

.about-wrapper p{
  font-family: 'montserratlight';
  line-height: 25px;
  padding-bottom: 20px;

}

dt{
  position: relative;
    font-family: 'quandoregular';
    font-size: 1em;
    padding: 20px;
    border-bottom: 1px dotted black;
}

dt span{
  padding-left: 30px;

}
dd{
  position: relative;
  padding-top: 30px;
  width: 450px;
  margin: 0 auto;

}

.upcoming{
  margin-top: 60px;
}
/*======================= PAGE 3 ： Atrticle Page ===============================*/
body.article{
  /* background-color: rgba(247,127,80,.6); */
  background-image: url('../img/orange.jpg');
}
.article-wrapper{
  height: 2650px;
  background-color: white;
  width: 900px;
  margin: 0 auto;

}
.article-wrapper .main-article{
  margin: 0 auto;
  width: 500px;
  /* padding-left: 100px; */
}

.category{
  background-color: rgb(247,127,80);
  position: relative;
  z-index: 30;
  right: -500px;
  float: right;
  width: 210px;
  height:500px;
  -webkit-box-shadow: 0px 11px 51px 0px rgba(200,85,40,1);
  -moz-box-shadow: 0px 11px 51px 0px rgba(200,85,40,1);
  box-shadow: 0px 11px 51px 0px rgba(200,85,40,1);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.sticky{
	position: fixed;
  /* z-index: 50; */
	top: 70px;
	right:0px;
}

.category h1{
  text-align: center;
  font-family: 'quandoregular';
  color: white;
  font-size: 1.6em;
}
.category ul{
  list-style: none;
  padding-top: 50px;
}

.category ul li{
  padding-bottom:30px;
  text-align: center;
}

.category ul li a {
  font-family: 'montserratregular';
  text-decoration: none;
  color: white;
  -webkit-transition: all ease-in-out 250ms;
  -o-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
}

.category ul li a:hover{
  color: #404968;

}
.category .cate-line{
  border-bottom: 2px dotted white;

}

.article-title{
  padding: 40px;
  /* background: black; */
}

.article-title h1{
  font-family: 'quandoregular';
}

.article-title img{
  position: relative;
  margin: 0 auto;
}

.article-title .sub{
  font-family: 'montserratmedium';
  padding-bottom: 15px;

}

.main-title{
  margin-left:50%;
  transform:translateX(-60%);

}

.main-title span{
  padding-right: 20px;
}

.main-article p{
  font-family: 'montserratlight';
  line-height: 28px;
}

.main-article span.first-letter{
  font-size: 2.5em;
  font-weight: 600;
}

.main-article audio{
  margin-bottom: 30px;
}

.share{
  padding: 20px;
}
.share i{

  float: left;
}
.share p{
  float: right;
  font-family: 'quandoregular';
}


/* USERREVIEW */

  .user-review{
    width: 900px;
    /* float: left; */
    padding: 70px;
    margin-bottom: 20px;
    margin-top: 30px;
    margin-left:50%;
    transform:translateX(-50%);
    background-color: white;

  }
  form{
    width: 600px;
         margin: 0 auto;
  }

  .user-review h2{
    font-family: 'quandoregular';
    padding-bottom: 20px;
  }
  .write-review{
    float: left;
  }
  .infor{
    float: right;
    /* padding-left: 20px; */
  }

  label{
    font-family: 'montserratmedium';
  }

  .infor input{
      border-top: none;
      border-left: none;
      border-right: none;
  }
  #review-form input[type="text"],
  #review-form textarea {
    width: 100%;
    /* background: transparent; */
  }
  #review-form .form-group {
    margin-bottom: 15px;
  }

  .form-group .control-label{
    border: none;
  }

  .btn{
    text-decoration: none;
    background-color: rgb(247,127,80);
    padding: 10px;
    width: 200px;
    color: white;
    text-align: center;
    font-size: 16px;

  }


/*======================= PAGE 4 ： Media Page===============================*/

body.media{
  height: 800px;
  width: 100%;
}

.media-container{
  padding-top: 150px;
  padding-bottom: 80px;

}
.media-nav{
    width: 500px;
  list-style: none;
    padding: 20px;
    margin-left: 20px;
    margin-bottom: 20px;

}

.media-nav ul{
  display: inline-block;


}

.media-nav ul li{
  /* display: block; */
  float: left;
  list-style: none;
  padding-left: 30px;
  text-align: center;

}

.media-nav ul li a{
    font-family: 'quandoregular';
  text-decoration: none;
  font-size: 1.1em;
  position: relative;
  color: black;
  display: inline-block;
  float: right;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}


.media-content{
  width: 500px;
  margin: 0 auto;
}

 .mediaToggle ol li{
	/* display:none; */
    font-family: 'montserratlight';
    line-height: 20px;
    padding-bottom: 10px;
    font-size: .9em;
}

/* Hover underline effect*/
 .media-nav ul li a:after {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 10px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

 .media-nav ul li a:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* print release */
.print-release{
  position: relative;
  background-attachment: fixed;
  background-image: url('../img/lookfor.jpg');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  height: 350px;
}

.filter{
  position: absolute;
  background-color: rgba(0,0,0,.5);
  z-index: 10;
  left: 0;
  top: 0;
  height: 350px;
  width: 100%;
}

.print-release h2{

  padding-top: 10px;
  font-family: 'quandoregular';
  color: white;
}
.print-release ul li{
  list-style: none;

}

.print-release ul li a{
    text-decoration: none;
    color: white;
    font-family: 'montserratlight';
    font-size: .6em;
    letter-spacing: 2px;

}

.release-wrapper{
  position: relative;
  z-index: 40;
  margin: 0 auto;
  width: 600px;
}

.release-wrapper article{
  margin-top: 30px;
  color: rgb(247,127,80);
}

article, .con-link:hover{
    color: rgb(247,127,80);
}
.release-wrapper article h3{
  font-family: 'quandoregular';
  letter-spacing: 1px;
  padding-bottom: 8px;
}
.print-release .contact-1{
  float: left;
}

.print-release .contact-2{
  float: right;
}
