/*----------------------

  Jane - CSS 1.0
  By Themanoid

  Table of Contents

  00.  Header
  01.  About
  02.  Contact
  03.  Navigation
  04.  Work
  05.  Footer
  06.  Blog

-----------------------*/
.toggleContainer {
  position: fixed;
  right: -100px;
  width: 200px;
  bottom: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 99999;
  padding-left: 100px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .toggleContainer {
    display: none;
  }
}

.toggleContainer .container-caption {
  position: absolute;
  right: 170px;
  bottom: 0;
  margin-bottom: -15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.toggleContainer .toggle-container-btn {
  font-size: 42px;
  left: -60px;
  width: 80px;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  cursor: pointer;
}

.toggleContainer .option {
  position: relative;
  font-size: 32px;
  width: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.toggleContainer .option span {
  position: absolute;
  right: -100%;
  padding-right: 10px;
  text-align: right;
  font-size: 11px;
  width: 100px;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  line-height: 42px;
}

.toggleContainer:hover .container-caption {
  margin-bottom: 65px;
}

.toggleContainer.active {
  right: -60px;
}

.toggleContainer.active .container-caption {
  margin-bottom: 65px;
  right: 130px;
}

.toggleContainer.active .toggle-container-btn {
  left: -20px;
}

.toggleContainer.active .option {
  left: -25px;
}

.toggleContainer.active .option span {
  opacity: 1;
  right: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.toggleContainer.active .option:hover, .toggleContainer.active .option.active {
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: .5;
}

/* 00. Header */
header {
  padding: 40px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  header {
    padding: 20px 0;
  }
}

header a.brand {
  color: #000;
  text-decoration: none;
  display: block;
}

header a.brand .image {
  height: 40px;
  float: left;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  header a.brand {
    margin-top: -2px;
  }
}

header .author {
  padding-top: 3px;
  font-family: "Nexa Bold", Verdana, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8em;
}

header .title {
  font-weight: 300;
  font-family: "Roboto", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2em;
  margin-top: 0;
}

/* 01. About */
ul.list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

ul.list li {
  font-weight: 300;
  font-size: 1.1em;
  padding: 0;
  margin: 15px 0;
}

/* 02. Contact */
.contact-info {
  font-family: "Roboto", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  padding-top: 15px;
}

.contact-info a {
  display: block;
}

.contact-info p, .contact-info a {
  font-size: 1.8em;
  color: #000;
  margin: 10px 0;
}

form {
  width: 100%;
}

form label {
  font-family: "Nexa Bold", Verdana, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8em;
  margin-bottom: 10px;
}

form .form-control {
  padding: 15px;
  height: auto;
  background: #f5f5f5;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-bottom: 25px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  form .form-control {
    padding: 10px;
  }
}

form .form-control:focus {
  outline: none !important;
  box-shadow: inherit !important;
  background: #000;
  color: #fff;
}

form span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  form span.p-md {
    display: block;
    padding: 20px 0 !important;
  }
}

form textarea.form-control {
  height: 150px;
}

/* 03. Navigation */
.nav-trigger {
  margin: 5px 0;
  float: right;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 10;
  height: 40px;
  width: 40px;
}

.nav-trigger .bar {
  width: 40px;
  height: 3px;
  background: #000;
  margin: 6px 0 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#navigation {
  width: 500px;
  background: #915880;
  position: fixed;
  top: 0;
  right: -500px;
  height: 100%;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

@media screen and (max-width: 768px) {
  #navigation {
    width: 100%;
    max-width: 350px;
    overflow-y: scroll;
  }
}

#navigation .nav-trigger {
  position: absolute;
  top: -40px;
  left: -5px;
  opacity: 0;
}

#navigation .nav-trigger .bar {
  background: #fff;
  opacity: 0;
  margin: 0;
}

#navigation .nav-trigger .bar:first-child {
  margin-top: 17px;
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#navigation .nav-trigger .bar:last-child {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -6px;
}

#navigation .inner {
  margin: 80px;
  position: relative;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  #navigation .inner {
    margin: 60px 30px;
    padding-top: 20px;
  }
}

#navigation hr {
  opacity: .3;
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  #navigation hr {
    margin: 20px 0;
  }
}

#navigation p {
  color: #fff;
  font-size: 1.3em;
  opacity: .7;
  font-family: "Playfair Display", Georgia, serif;
}

ul.menu, ul.menu-small {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

ul.menu li, ul.menu-small li {
  padding: 0;
  margin: 15px 0;
}

@media screen and (max-width: 768px) {
  ul.menu li, ul.menu-small li {
    margin: 20px 0;
    font-size: 1.2em;
  }
}

ul.menu li:first-child, ul.menu-small li:first-child {
  margin-top: 0;
}

ul.menu li:last-child, ul.menu-small li:last-child {
  margin-bottom: 0;
}

ul.menu li a, ul.menu-small li a {
  display: block;
  color: #fff;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  font-size: 0.8em;
  font-family: "Nexa Bold", Verdana, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

ul.menu li a:hover, ul.menu-small li a:hover {
  text-decoration: none;
  opacity: .5;
}

ul.menu-small li {
  margin: 15px 10px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  ul.menu-small li {
    display: block;
    margin: 15px 0;
  }
}

ul.menu-small li:first-child {
  margin-left: 0;
}

ul.menu-small li:last-child {
  margin-right: 0;
}

body.menu-active {
  background: #333;
}

body.menu-active .toggleContainer * {
  color: #fff;
}

body.menu-active header .nav-trigger {
  opacity: 0;
}

body.menu-active #navigation .nav-trigger {
  opacity: 1;
}

body.menu-active .container-fluid {
  opacity: 0.2;
}

@media screen and (min-width: 768px) {
  body.menu-active .container-fluid {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
}

@media screen and (max-width: 768px) {
  body.menu-active .container-fluid {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  body.menu-active #navigation {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
}

@media screen and (max-width: 768px) {
  body.menu-active #navigation {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
}

/* 04. Work */
@-webkit-keyframes itemIn {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes itemIn {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

body.filtering .grid .item {
  -webkit-animation: none !important;
          animation: none !important;
}

.grid {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.grid .item {
  text-decoration: none;
  color: #000;
  margin-bottom: 20px;
}

.grid .item .inner {
  -webkit-animation-name: itemIn;
          animation-name: itemIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  margin-bottom: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.grid .item:nth-of-type(1) .inner {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.grid .item:nth-of-type(2) .inner {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.grid .item:nth-of-type(3) .inner {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.grid .item:nth-of-type(4) .inner {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.grid .item:nth-of-type(5) .inner {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.grid .item:nth-of-type(6) .inner {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.grid .item:nth-of-type(7) .inner {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.grid .item:nth-of-type(8) .inner {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.grid .item:nth-of-type(9) .inner {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.grid .item:nth-of-type(10) .inner {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.grid .item:nth-of-type(11) .inner {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.grid .item:nth-of-type(12) .inner {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.grid .item:nth-of-type(13) .inner {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.grid .item:nth-of-type(14) .inner {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.grid .item:nth-of-type(15) .inner {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.grid .item:nth-of-type(16) .inner {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

@media screen and (max-width: 768px) {
  .grid .item {
    margin-bottom: 20px;
  }
  .grid .item .inner {
    margin-bottom: 0;
  }
}

.grid .item .thumb {
  position: relative;
  overflow: hidden;
}

.grid .item .thumb:after {
  content: '';
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.grid .item .thumb img {
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-backface-visibility: hidden;
}

.grid .item .caption {
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.grid .item .caption:before, .grid .item .caption:after {
  content: '';
  left: 0;
  right: 0;
  bottom: -20px;
  height: 3px;
  position: absolute;
}

.grid .item .caption:before {
  background: rgba(0, 0, 0, 0.1);
}

.grid .item .caption:after {
  right: 100%;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.grid .item .caption .title {
  margin-top: 19px;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .grid .item .caption .title {
    font-size: 1.3em;
    margin-top: 10px;
  }
}

.grid .item .caption .tag {
  margin: 10px 0 20px;
  font-size: 0.8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Nexa Bold", Verdana, sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .grid .item .caption .tag {
    margin: 10px 0;
    font-size: 0.8em;
  }
}

.grid .item:hover .thumb:after {
  opacity: .2;
}

.grid .item:hover .caption:after {
  right: 0;
}

.filters {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}

.filters li {
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .filters li {
    display: block;
    margin: 10px 0;
  }
}

.filters li:first-child {
  margin-left: 0;
}

.filters li a {
  color: #000;
  display: inline-block;
  opacity: .2;
  text-decoration: none;
  font-family: "Nexa Bold", Verdana, sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.filters li a.active, .filters li a:hover {
  opacity: 1;
}

/* 05. Footer */
footer {
  border-top: 1px solid rgba(150, 150, 150, 0.2);
  padding: 100px 0;
  margin-top: 100px;
  color: #000;
  font-family: "Nexa Bold", Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8em;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 30px;
    margin-top: 30px;
    text-align: center;
  }
}

footer span {
  opacity: .3;
}

footer a {
  margin: 0 10px;
  color: #000;
}

/* 06. Blog */
.grid.blog .item .thumb {
  position: relative;
}

.grid.blog .item .thumb .date {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4em;
  padding: 20px 25px;
  background: #000;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .grid.blog .item .thumb .date {
    padding: 10px 15px;
    font-size: 1.2em;
  }
}

.grid.blog .item:hover .thumb img {
  opacity: 1;
}

.content .search {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.content .search .form-control {
  line-height: 1.6;
  height: 40px;
  font-size: 1.1em;
  background: none !important;
  box-shadow: none !important;
  color: rgba(0, 0, 0, 0.4);
}

.content .search .form-control:focus {
  color: #000;
}

.content .search .btn {
  padding: 8px 12px 7px 14px;
  display: block;
  float: right;
  height: 40px;
  font-size: 21px;
  background: #fff !important;
  color: rgba(0, 0, 0, 0.3) !important;
}

.comments {
  margin: 20px 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .comments {
    margin-top: 50px;
  }
}

.comments .comment {
  margin: 15px 0;
  position: relative;
}

.comments .comment p {
  font-size: 1.1em;
}

.comments .comment .thumb {
  margin-top: -15px;
  width: 65px;
}

@media screen and (max-width: 992px) {
  .comments .comment .thumb {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .comments .comment .thumb {
    margin: 0 auto 30px;
  }
}

.comments .comment a {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: 2;
  color: #000;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.comments .comment a .fa-reply {
  margin-left: 5px;
}

.comments .comment a:hover {
  text-decoration: none;
}

.comments .comment:hover a {
  opacity: 1;
}

.comments .comment .message {
  margin-bottom: 40px;
}

.comments .comment .details {
  margin-bottom: 20px;
}

.comments .comment .details .date {
  font-family: "Roboto", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .comments .comment .details {
    text-align: center;
  }
}

.comments .comment .comment .thumb {
  margin-top: -5px;
  width: 50px;
}

@media screen and (max-width: 768px) {
  .comments .comment .comment {
    padding: 0 20px;
    border-left: 1px solid #f5f5f5;
  }
  .comments .comment .comment p:last-child {
    margin-bottom: 0;
  }
}

.comments .comment .comment .details {
  margin-bottom: 10px;
}

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

ul.label-list li {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  ul.label-list {
    margin-bottom: 50px;
  }
}

ul.item-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

ul.item-list li {
  margin: 12px 0;
}

ul.item-list li a, ul.item-list li span {
  color: #000;
  font-size: 1.2em;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 35px;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-family: "Roboto", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.1em;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  ul.item-list li a, ul.item-list li span {
    width: 100%;
  }
}

ul.item-list li a:before, ul.item-list li span:before {
  content: '';
  border-top: 1px solid #000;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 10px;
  height: 1px;
  margin-top: -1px;
  left: 0;
  display: block;
  position: absolute;
  top: 50%;
}

ul.item-list li a:hover, ul.item-list li span:hover {
  padding-left: 45px;
  opacity: .5;
}

ul.item-list li a:hover:before, ul.item-list li span:hover:before {
  opacity: .5;
  width: 30px;
}

ul.item-list li a {
  font-weight: 600;
}

ul.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
  float: none;
}

ul.tag-list li {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.label {
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 8px 11px 7px;
  color: #000;
  display: inline-block;
  border-radius: 0;
  float: left;
  font-weight: 400;
  font-size: 1em;
  margin: 0 2px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
}

.label:hover {
  opacity: .5;
  color: #000 !important;
}
