@import url("http://fonts.googleapis.com/css?family=Geo");
@import url(http://fonts.googleapis.com/css?family=Teko:400,300);
@import url(https://fonts.googleapis.com/css?family=Yantramanav:300,100);

body {
  background: #ece5df;
  box-sizing: border-box;
}

.blog-container {
  background: #ece5df;
  color: #000;
  font-family: 'Inconsolata';
  font-weight: 400;
  font-size: 10pt;
letter-spacing: -0.02em;
  margin: 48px auto;
  width: 20rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  position: relative;
}
@media screen and (min-width: 480px) {
  .blog-container {
    width: 18rem;
  }
  .post-date {
  left: 0px;
  top: -47px;
  }
  @media screen and (orientation:landscape) {
  .blog-container {
    width: 20rem;
  }
  .post-date {
  left:-65px;
  top:20px;
  }
  }
}

@media screen and (min-width: 320px) {
  .blog-container {
    width: 19rem;
  }
}

@media screen and (min-width: 767px) {
  .blog-container {
    width: 40rem; padding: 0 5px;
  }
  .post-date {
  left: 0px;
  top: -47px;
  }

.title {
    font-size: 10px;
  }

  @media screen and (orientation:landscape) {
  .blog-container {
    width: 40rem;
  }
  .post-date {
  left:-65px;
  top:20px;
  }
  }
}
@media screen and (min-width: 959px) {
  .blog-container {
    width: 50rem;
  }
  .post-date {
  left:-65px;
  top:20px;
  }
}

.blog-container a {
  color: #000;
  text-decoration: none;
  -webkit-transition: .25s ease;
  transition: .25s ease;
}
.blog-container a:hover {
  border-color: rgb(246, 186, 90);
  color: rgb(246, 186, 90);
}

.blog-cover {
  
  background-size: cover;
  height: auto;
  width: 100%;
  box-shadow: inset rgba(0, 0, 0, 0.2) 0 64px 64px 16px;
}

.blog-author,
.blog-author--no-cover {
  margin: 0 auto;
  padding-top: .125rem;
  width: 80%;
}

.blog-author h3::before,
.blog-author--no-cover h3::before {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/17779/russ.jpeg");
  background-size: cover;
  border-radius: 50%;
  content: " ";
  display: inline-block;
  height: 32px;
  margin-right: .5rem;
  position: relative;
  top: 8px;
  width: 32px;
}

.blog-author h3 {
  color: #fff;
  font-weight: 100;
}

.blog-author--no-cover h3 {
  color: #999999;
  font-weight: 100;
}

.blog-body {
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #9d9995;
  margin-bottom: 100px;
}

.video-body {
  height: 100%;
  width: 100%;
}

.blog-title h1 a {
  color: #333;
  font-weight: 300;
  
}

.blog-summary p {
  color: #272727;
  font-size: 10pt;
}

.blog-tags ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.blog-tags li + li {
  margin-left: .5rem;
}

.blog-tags a {
  border: 1px solid #999999;
  border-radius: 3px;
  color: #999999;
  font-size: .75rem;
  height: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
  padding: 0 .5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  width: 5rem;
}

.blog-footer {
  border-top: 1px solid #e6e6e6;
  margin: 0 auto;
  padding-bottom: .125rem;
  width: 100%;
}

.blog-footer a {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: row;
  -webkit-flex: row wrap;
      -ms-flex: row wrap;
          flex: row wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 0;
}

.blog-footer li:first-child {
  
}

.blog-footer li + li {
  margin-left: .5rem;
}

.blog-footer  {
  color: #fff;
  font-size: .75rem;
  height: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.5rem;
  
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}
.blog-footer  a {
  color: #fff;
}

.blog-footer  a:hover {
  color: #000;
}

.pagination .left {
    float: left;
}

.pagination .right {
    float: right;
}

h1 {
    font-size: 1.8em;
    margin: 0;
    font-weight: 300;
}

geo {
    font-family: 'Geo', Helvetica, Arial, sans-serif;
    font-weight:normal;
    font-size: 1.2em;
     
    color:#000; 
    text-transform: lowercase;        		
}

small {
    font-size: 0.9em;
    margin-bottom:15px; 
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

/* [Object] Modal
 * =============================== */
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(236,229,223, .9);
  transition: opacity .25s ease;
  z-index: 10000;
}

.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;	
  transition: opacity .25s ease;
}

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 3em; 
}

.modal__inner {
  transition: top 1.25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: auto;
  overflow: auto;
  background: #ece5df;

  padding: 1em 2em;
  height: 100%;
}

.modal__inner h1 {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 2em;
}

.modal__close {
  position: absolute;
  right: 1em;
  top: 0;
width: 3.1em;
height: 3.1em;
  cursor: pointer;
}

.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 3.5em;
  background: #000;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #F6BA5A;
}

.modal__close:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
	
  .modal__inner {
    width: 100%;
    height: 90%;
    box-sizing: border-box;
  }
  .modal__inner h1{
    font-size: 1.5em;
  }

.title {
    font-size: 10px;
  }
}


/* Other
 * =============================== */

.btn {
  cursor: pointer;
  background: #1d1e21;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 0px;
  margin-top: 10px;
}

.btn:hover,
.btn:focus {
  background: #F6BA5A;
  color: #000;
moz-transition: all 0.2s linear;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.btn:active {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}

.btn1 {
    cursor: pointer;
    color: #333;
    font-weight: 300;
    display: inline-block;
}

.btn1:hover,
.btn1:focus {
  color: #000;
-webkit-transition:all 0.50s ease-in-out;
		-moz-transition:all 0.50s ease-in-out;
		-o-transition:all 0.50s ease-in-out;
		-ms-transition:all 0.50s ease-in-out;
		transition:all 0.50s ease-in-out;
}

.btn1:active {
  background: #F6BA5A;
}


.bttn {
  cursor: pointer;
  border: 1px solid #999999;
  color: #000;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 0px;
  margin-bottom: 30px;
}

.bttn:hover,
.bttn:focus {
  background: #F6BA5A;
  color: #000;
moz-transition: all 0.2s linear;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.bttn:active {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}

.js-video {
  height: 0;
  padding-top: 25px;
  padding-bottom: 67.5%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
 
.js-video.widescreen {
  padding-bottom: 56.34%;
}
 
.js-video.vimeo {
  padding-top: 0;
}

.js-video embed, .js-video iframe, .js-video object, .js-video video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

p.post-date{
  background:#232323;
  text-align:center;
  width:65px;
  margin:0;
  padding:5px 0em;
  position:absolute;

}

span.post-year{color:#fff;display:block;font-size:11px}
span.post-month{color:#e3e3e3;display:block;font-size:1.3em;margin-top:-8px;font-weight: normal;}

.gallery img{
	width: 100%;
}

.gallery ul{
	list-style: none;
	padding: 0;
}
.gallery li{
	display: inline-block;
	
	width: 29%;
	margin: 0 2.5% 2.5% 0;
	position: relative;
	font-size: 0;

}

@media only screen and (max-width: 680px) {
  .gallery li {
    width: 45%;
  }
.blog-links {
    display: none;
  }

.title {
    font-size: 15pt;
  }
.blog-summary p {
    
    font-size: 10pt;
}
.snavvy-links ul li a {
font-size: 10pt;
}

h1 {
    font-size: 1.4em;
}
}
			#gallery { overflow: hidden; }
			#gallery a { display: block; float: left; }
			#gallery a img { display: block; border: 0; }


.row:after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 0 10px 10px 0;
    
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media (max-width: 728px) {
.col-5 {width: 100%;}
.col-3 {width: 50%;}

}

.padding1  {
content: "|";
padding-right: 20px;
}

.padding2  {
padding-top: 2px;
}

ul.icons {
    cursor: default;
    margin-bottom: 1em;
list-style: none;
}

ul.icons a {
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border: 0;
}

.blog-links {
    font-size: 14px;line-height: 1;vertical-align: baseline;padding: 5px 0 0 1px;
}

.fa {
padding-left: 1px;
}

#preloader  {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #ece5de;
     z-index: 99999999999999999999999999999999999999999999999;
    width: 100%;
    height: 100%;
    
 }

#status  {
     width: 200px;
     height: 200px;
     position: absolute;
     left: 50%;
     top: 50%;
     background-image: url(../images/loader.gif);
     background-repeat: no-repeat;
     background-position: center;
     margin: -100px 0 0 -100px;
 }

p {
padding: 0px;
}


.header {
  width: 100%;
  display: inline-block;
  z-index: 99;
  padding-top: 10px;
  padding-bottom: 20px;
  position: relative;
  margin: 0px;
  
}



.nav {
  position: relative;
  text-align: left;
  z-index: 9;
  margin-top: -50px;
  display: inline-block;
  width: 100%;
  background: transparent;
}

.nav a {
  position: relative;
  display: inline-block;
  
  font-weight: 100;
  font-size: 17px;
  
  color: #fff;
  z-index: 9999;
  clear: both;
  text-align: center;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

.nav a:active, .nav a:focus { background: transparent !important; }

.nav a i {
  font-size: 22px;
  vertical-align: middle;
  color: #000;
}

.nav ul {
  padding: 0;
  margin: 0px;
  z-index: 999;
  position: relative;
  display: inline-block;
  width: 100%;
}

.nav ul li {
  display: inline-block;
  margin: 0px !important;
  padding: 0px !important;
}

.nav .show { display: inline-table !important; }

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background: transparent !important; }

#nav-icon {
  width: 60px;
  height: 50px;
  position: relative;
  
  margin-top: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  float: right;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) { top: 0px; }

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) { top: 8px; }

#nav-icon span:nth-child(4) { top: 16px; }

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.snavvy-container {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  display: block;
  height: auto;
}

.snavvy-fullscreen {
  top: 0;
  bottom: 0;
}

.snavvy {
  position: fixed;
  height: auto !important;
  padding: 0px;
  z-index: 99;
  overflow-y: scroll;overflow-y:visible;
  background: rgba(2, 2, 2, 0.87);
  opacity: 1;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.has-container {
  position: relative !important;
}

.get-snavvy {
  opacity: 1;
}

#close-snavvy {
  font-size: 40px !important;
  padding: 10px 15px;
  margin-bottom: 20px;
  color: #fff;
  cursor: pointer;
  
}

.snavvy-links {
  width: 100%;
  position: relative;
  display: block;
  text-decoration:none;
}
.snavvy-links ul {
  padding: 0px;
  margin: 0px;
}
.snavvy-links ul li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.snavvy-links ul li a {
  display: block;
  text-align: center;
  width: 100%;
  
  padding: 5px;
  color: #fff;font-family: 'Inconsolata';text-decoration:none;
}
.snavvy-links ul li a:hover {
  color: #F6BA5A;
}

.title {
    font-size: 15pt; 
  }

.hideme
{
    opacity:0;
}