/*====================================================
  Importing less files
====================================================*/
/*====================================================
  COLOR VARIABLE FOR THEME
====================================================*/
/*====================================================
  MIXINS
====================================================*/
/*====================================================
  Common styles
====================================================*/
body {
  font-family: 'Inconsolata';
  font-size: 16px;
  font-weight: 300;
  color: #707070;
  line-height: 2em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #202020;
  margin-top: 0;
  margin-bottom: 8px;
}
h1 {
  font-size: 40px;
  letter-spacing: 4px;
}
h2 {
  font-size: 32px;
  letter-spacing: 2px;
}
h3 {
  font-size: 24px;
  letter-spacing: 2px;
}
h4 {
  font-size: 18px;
  letter-spacing: 2px;
}
h5 {
  font-size: 16px;
  letter-spacing: 2px;
}
h6 {
  font-size: 14px;
  letter-spacing: 2px;
}
a {
  color: #ff6f00;
}
a:hover,
a:focus {
  color: #ff6f00;
  text-decoration: none;
  outline: none;
}
p {
  margin: 0 0 16px;
}
iframe {
  display: block;
  border: 0;
}
img.gray {
  -webkit-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
img.gray:hover {
  -webkit-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
img.gray:before {
  content: '';
  width: 100%;
  background: #ffffff;
}
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 13px 24px;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.btn-default {
  border: 1px solid #707070;
  background: none;
  color: #707070;
  position: relative;
  z-index: 0;
}
.btn-default:before {
  content: '';
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}
.btn-default:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ff6f00;
  z-index: -1;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.btn-default:hover,
.btn-default:focus {
  background: none;
  color: #ffffff;
  border: 1px solid #ff6f00;
}
.btn-default:hover:after,
.btn-default:focus:after {
  height: 400%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
input[type="submit"] {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 7px 24px;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  letter-spacing: 2px;
  background: #ffffff;
  border: 1px solid #707070;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #ff6f00;
  border: 1px solid #ff6f00;
  color: #ffffff;
  outline: none;
}
input[type="search"],
input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
textarea,
.form-control {
  padding: 7px 16px;
  border: 1px solid #dfdfdf;
  height: 48px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
.form-control:focus {
  border: 1px solid #ff6f00;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
blockquote {
  padding: 24px 32px;
  line-height: 1.5em;
  font-style: italic;
  background: #202020;
  color: #ffffff;
  margin-bottom: 24px;
  border-left: 4px solid #ff6f00;
}
blockquote cite {
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  color: #bbbbbb;
}
blockquote cite:before {
  content: "\2013";
  margin-right: 8px;
}
pre {
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
}
.hljs {
  padding: 16px 32px;
}
::-moz-selection {
  color: #ffffff;
  background: #ff6f00;
  text-shadow: none;
}
::selection {
  color: #ffffff;
  background: #ff6f00;
  text-shadow: none;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
/*====================================================
  WP generted classes
====================================================*/
.alignnone {
  margin: 16px 24px 24px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 16px auto 16px auto;
}
.alignright {
  float: right;
  margin: 8px 0 24px 24px;
}
.alignleft {
  float: left;
  margin: 8px 24px 24px 0;
}
a img.alignright {
  float: right;
  margin: 8px 0 24px 24px;
}
a img.alignnone {
  margin: 8px 24px 24px 0;
}
a img.alignleft {
  float: left;
  margin: 8px 24px 24px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 96%;
  /* Image does not overflow the content area */
  text-align: center;
}
.wp-caption.alignnone {
  margin: 16px 24px 24px 0px;
}
.wp-caption.alignleft {
  margin: 16px 24px 4px 0px;
}
.wp-caption.alignright {
  margin: 16px 0px 4px 24px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
  padding: 4px;
}
.screen-reader-text {
  display: none;
}
.gallery:after {
  content: '';
  clear: both;
  display: block;
}
.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item {
  float: left;
  position: relative;
}
.gallery-columns-1 .gallery-item .gallery-icon img,
.gallery-columns-2 .gallery-item .gallery-icon img,
.gallery-columns-3 .gallery-item .gallery-icon img,
.gallery-columns-4 .gallery-item .gallery-icon img {
  margin-bottom: 0;
}
.gallery-columns-1 .gallery-item .gallery-caption,
.gallery-columns-2 .gallery-item .gallery-caption,
.gallery-columns-3 .gallery-item .gallery-caption,
.gallery-columns-4 .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  width: 100%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=(0));
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.gallery-columns-1 .gallery-item:hover .gallery-caption,
.gallery-columns-2 .gallery-item:hover .gallery-caption,
.gallery-columns-3 .gallery-item:hover .gallery-caption,
.gallery-columns-4 .gallery-item:hover .gallery-caption {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=(100));
}
.sticky {
  background: #ffffff;
}
.twitter-tweet {
  max-width: 520px;
  margin: 0 auto;
}
.SandboxRoot .EmbeddedTweet {
  margin: 0 auto;
}
/*====================================================
  Cover style
====================================================*/
.cover {
  color: #ffffff;
  position: relative;
  background-size: cover;
  background-color: #202020;
  background-position: center;
  background-attachment: fixed;
}
.cover h1,
.cover h2,
.cover h3,
.cover h4,
.cover h5,
.cover h6 {
  color: #ffffff;
}
.cover a {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cover a:hover,
.cover a:focus {
  color: #ff6f00;
}
.cover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.9);
}
.cover .title {
  color: #ffffff;
}
.cover .description {
  font-size: 18px;
  letter-spacing: 1px;
  padding-top: 16px;
}
.cover .avatar {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 16px;
}
.cover .meta-info {
  font-size: 14px;
  padding: 16px 0;
  position: relative;
}
.cover .meta-info span {
  margin-right: 16px;
}
.cover .meta-info span:last-child {
  margin-right: 0;
}
.cover .meta-info span i {
  margin-right: 8px;
}
.cover .meta-info:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -80px;
  background: #ff6f00;
}
.cover .post-count {
  font-size: 14px;
  padding: 16px 0;
}
.cover .tag-description {
  position: relative;
}
.cover .tag-description:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -80px;
  background: #ff6f00;
}
/*====================================================
  Header / navbar
====================================================*/
.main-header {
  width: 100%;
  background: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.main-header.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.main-header .navbar {
  border: none;
  margin-bottom: 0;
}
.main-header .navbar-collapse {
  max-height: 340px;
}
.main-header .container {
  box-sizing: border-box;
}
.main-header .container .navbar-content-wrap {
  border-bottom: 1px solid #707070;
  padding: 32px 0;
}
.main-header .btn-menu-toggle {
  padding: 10px;
  z-index: 99;
}
.main-header .btn-menu-toggle span {
  background: #202020;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
}
.main-header .btn-menu-toggle:hover span,
.main-header .btn-menu-toggle:focus span {
  background: #ffffff;
}
.main-header .btn-menu-toggle:active {
  background: none;
  box-shadow: none;
}
.main-header .navbar-brand {
  font-size: 40px;
  line-height: 0.8em;
  font-family: 'Montserrat', sans-serif;
  color: #202020;
  height: auto;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.main-header .navbar-brand:hover,
.main-header .navbar-brand:focus {
  color: #202020;
}
.main-header .navbar-brand.image-logo {
  padding: 0px 15px;
}
.main-header .navbar-brand.image-logo img {
  max-height: 56px;
}
.main-header .menu {
  padding: 0;
  margin-bottom: 0;
}
.main-header .menu li {
  list-style: none;
  display: inline-block;
  margin: 12px 0 0px 32px;
  padding-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
.main-header .menu li a {
  position: relative;
  text-transform: uppercase;
  color: #707070;
  font-size: 14px;
  letter-spacing: 2px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-header .menu li a:hover,
.main-header .menu li a:focus {
  color: #ff6f00;
  text-decoration: none;
}
.main-header .menu li.menu-item-has-children > a:after {
  content: '\f107';
  font-family: Fontawesome;
  display: inline-block;
  margin-left: 4px;
}
.main-header .menu li.current-menu-item > a,
.main-header .menu li.current-menu-parent > a,
.main-header .menu li.current-menu-ancestor > a {
  color: #ff6f00;
}
.main-header .menu li ul {
  visibility: hidden;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  text-align: left;
  padding: 4px 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 120%;
  width: 220px;
  z-index: 999;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=(0));
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.main-header .menu li ul ul {
  position: absolute;
  left: 100%;
  top: 20%;
  margin-top: -5px;
}
.main-header .menu li ul > li {
  display: block;
  margin: 0;
  padding: 0px 14px;
}
.main-header .menu li ul > li a {
  color: #707070;
  display: block;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.main-header .menu li ul > li.menu-item-has-children > a:after {
  content: '\f105';
  font-family: Fontawesome;
  position: absolute;
  right: 0;
}
.main-header .menu li ul > li.current-menu-ancestor > a {
  color: #ff6f00;
}
.main-header .menu li ul > li:hover ul {
  top: 0;
}
.main-header .menu li ul:hover > a {
  color: #ff6f00;
}
.main-header .menu li:hover > ul {
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=(100));
  top: 100%;
}
/*====================================================
  main content area
====================================================*/
.main-content {
  margin-top: 80px;
}
.main-content.nav-fixed {
  margin-top: 201px;
}
.main-content .content-wrap {
  background: #ffffff;
  margin-bottom: 64px;
}
.main-content .content-wrap .post {
  background: #fff;
}
.main-content .content-wrap .post .featured-media {
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}
.main-content .content-wrap .post .featured-media img {
  width: 100%;
  height: auto;
}
.main-content .content-wrap .post .featured-media .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}
.main-content .content-wrap .post .post-inner-wrap {
  max-width: 80%;
  margin: 0 auto;
}
.main-content .content-wrap .post .post-inner-wrap .post-header {
  position: relative;
  padding-top: 0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-header:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -80px;
  background: #ff6f00;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a {
  color: #202020;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a:focus {
  color: #202020;
  text-decoration: none;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta {
  font-size: 14px;
  color: #bbbbbb;
  padding: 16px 0 0;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a {
  color: #bbbbbb;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a:focus {
  text-decoration: none;
  color: #ff6f00;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .featured {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -38px;
  padding: 2px 5px 2px 7px;
  background: #ff6f00;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: -7px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content {
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content img {
  max-width: 100%;
  height: auto;
}
.main-content .content-wrap .post .post-inner-wrap .permalink {
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .permalink a {
  z-index: 1;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer {
  font-size: 14px;
  color: #bbbbbb;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer .tag-list i {
  margin-right: 6px;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer a {
  color: #bbbbbb;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-footer a:focus {
  text-decoration: none;
  color: #ff6f00;
}
.custom-background .content-wrap {
  padding-bottom: 32px;
}
.custom-background .content-wrap .post .featured-media {
  margin-bottom: 0;
}
.custom-background .content-wrap .post .post-inner-wrap {
  padding-top: 64px;
}
.custom-background .content-wrap .post .post-inner-wrap .post-footer {
  padding-bottom: 16px;
}
/*====================================================
  post format specific style
====================================================*/
.main-content .content-wrap {
  /* audio post */
  /* link post */
}
.main-content .content-wrap .format-quote .featured-media {
  text-align: left;
  margin-bottom: 0;
}
.main-content .content-wrap .format-quote .featured-media blockquote {
  margin-bottom: 0;
}
.main-content .content-wrap .format-quote .post-inner-wrap {
  padding-top: 48px;
}
.main-content .content-wrap .format-audio .featured-media {
  background-color: #202020;
  background-size: cover;
  background-position: center;
}
.main-content .content-wrap .format-audio .featured-media h4 {
  padding: 28px 0 30px;
  color: #ffffff;
}
.main-content .content-wrap .format-gallery .gallery-tiled {
  text-align: left;
}
.main-content .content-wrap .format-gallery .gallery-tiled ul {
  padding: 0;
  margin: 0;
}
.main-content .content-wrap .format-gallery .gallery-tiled ul li {
  list-style: none;
  float: left;
  width: 25%;
  height: 25%;
  position: relative;
}
.main-content .content-wrap .format-gallery .gallery-tiled ul li a .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=(0));
}
.main-content .content-wrap .format-gallery .gallery-tiled ul li a .overlay:before {
  content: '\f00e';
  font-family: Fontawesome;
  position: absolute;
  font-size: 14px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  color: #202020;
  text-align: center;
  background: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.main-content .content-wrap .format-gallery .gallery-tiled ul li a:hover .gray {
  -webkit-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
.main-content .content-wrap .format-gallery .gallery-tiled ul li a:hover .overlay {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=(100));
}
.main-content .content-wrap .format-status .featured-media {
  background-color: #202020;
  background-size: cover;
  background-position: center;
}
.main-content .content-wrap .format-status .featured-media.status-wrap {
  padding: 32px;
}
.main-content .content-wrap .format-status .featured-media blockquote {
  display: none;
}
.main-content .content-wrap .format-status .featured-media iframe {
  margin: 0 auto !important;
  border: none;
  z-index: 2;
  position: relative !important;
}
.main-content .content-wrap .format-video .featured-media,
.main-content .content-wrap .format-audio .featured-media {
  line-height: 0;
}
.main-content .content-wrap .format-link .featured-media {
  padding: 64px 0;
  background-color: #202020;
}
.main-content .content-wrap .format-link .featured-media .bg-overlay {
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
}
.main-content .content-wrap .format-link .featured-media h4 {
  z-index: 2;
  position: relative;
  margin-bottom: 0;
}
.main-content .content-wrap .format-link .featured-media h4 a {
  color: #ffffff;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.main-content .content-wrap .format-link .featured-media h4 a:hover,
.main-content .content-wrap .format-link .featured-media h4 a:focus {
  color: #ff6f00;
}
/*====================================================
  pagination style
====================================================*/
.pagination {
  display: block;
  text-align: center;
  margin: 0 0 64px;
  position: relative;
}
.pagination .page-number {
  line-height: 48px;
}
.pagination .newer-posts,
.pagination .older-posts {
  position: absolute;
  top: 0;
}
.pagination .newer-posts {
  left: 15px;
}
.pagination .older-posts {
  right: 15px;
}
.single-post-pagination a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 16px;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  letter-spacing: 2px;
  overflow: hidden;
  border: 1px solid #707070;
  background: none;
  color: #707070;
  position: relative;
  z-index: 0;
}
.single-post-pagination a:before {
  content: '';
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}
.single-post-pagination a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ff6f00;
  z-index: -1;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.single-post-pagination a:hover,
.single-post-pagination a:focus {
  background: none;
  color: #ffffff;
  border: 1px solid #ff6f00;
}
.single-post-pagination a:hover:after,
.single-post-pagination a:focus:after {
  height: 400%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
/*====================================================
  main footer
====================================================*/
.main-footer {
  background: #202020;
  padding: 32px 0;
  margin-top: 32px;
}
.main-footer .widget-wrap {
  margin-bottom: 32px;
  padding-bottom: 16px;
  position: relative;
}
.main-footer .widget-wrap:before {
  content: '';
  height: 1px;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 0;
  left: 15px;
  background: #282828;
}
.main-footer .widget {
  margin-bottom: 16px;
}
.main-footer .widget .title {
  color: #ffffff;
}
.main-footer .widget ul {
  padding: 0;
  margin: 0;
}
.main-footer .widget ul li {
  list-style: none;
}
.main-footer .copyright {
  line-height: 32px;
}
.main-footer a {
  color: #707070;
}
.main-footer a:hover,
.main-footer a:focus {
  color: #ff6f00;
  text-decoration: none;
}
.main-footer .social-links {
  text-align: right;
  padding: 0;
  margin: 0;
  font-size: 0px;
  line-height: 0;
}
.main-footer .social-links li {
  display: inline-block;
  list-style: none;
  line-height: 16px;
  font-size: 16px;
  margin: 0 0 4px 8px;
}
.main-footer .social-links li:last-child {
  margin-right: 0;
}
.main-footer .social-links li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.main-footer .social-links li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #707070;
}
.main-footer .social-links li a i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.main-footer .social-links li a i:hover,
.main-footer .social-links li a i:focus {
  color: #ff6f00;
}
.main-footer .social-links li a i:hover:after,
.main-footer .social-links li a i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.main-footer .social-links li a:hover,
.main-footer .social-links li a:focus {
  border: 1px solid #ffffff;
}
.search-form .form-group {
  margin-bottom: 0;
  margin-top: 16px;
}
.search-form label {
  display: none;
}
.search-form .search-input {
  width: 84%;
  height: 40px;
  background: transparent;
  border: 1px solid #707070;
}
.search-form .search-submit {
  width: 13%;
  height: 40px;
  padding: 0 0;
}
.search-form .search-submit:before {
  background: transparent;
}
.search-form .search-submit:after {
  background: #ff6f00;
}
.search-form .search-submit:hover,
.search-form .search-submit:focus {
  border: 1px solid #ff6f00;
  color: #ffffff;
  outline: none;
}
.widget .search-form .search-submit:after {
  background: #ffffff;
}
.widget .search-form .search-submit:hover,
.widget .search-form .search-submit:focus {
  border: 1px solid #ffffff;
  color: #ff6f00;
}
.tagcloud {
  margin-top: 16px;
}
.tagcloud a {
  font-size: 14px !important;
  border: 1px solid #707070;
  padding: 2px 7px;
  line-height: 1.5em;
  display: inline-block;
  margin: 0 4px 2px 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
}
.tagcloud a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.tagcloud a:hover,
.tagcloud a:focus {
  border: 1px solid #ffffff;
}
.tagcloud a:hover:after,
.tagcloud a:focus:after {
  height: 600%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.widget_calendar #calendar_wrap {
  margin-top: 16px;
}
.widget_calendar caption {
  text-align: center;
  line-height: 1em;
  background: #707070;
  color: #ffffff;
  text-transform: uppercase;
}
.widget_calendar table {
  text-align: center;
  width: 100%;
  border: 1px solid #707070;
}
.widget_calendar table thead tr th {
  text-align: center;
  line-height: 2em;
  border: 1px solid #707070;
}
.widget_calendar table tbody td {
  line-height: 2em;
  border: 1px solid #707070;
}
.widget_calendar table tbody a {
  background: #707070;
  display: block;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.widget_calendar table tbody a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.widget_calendar table tbody a:hover:after,
.widget_calendar table tbody a:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.widget_calendar table tfoot td {
  line-height: 2em;
}
.widget_calendar table tfoot #prev {
  text-align: center;
}
.widget_calendar table tfoot #next {
  text-align: center;
}
.widget_recent_entries ul li {
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.widget_recent_entries ul li span {
  display: block;
  font-size: 12px;
  line-height: 16px;
}
/*====================================================
  back to top
====================================================*/
#back-to-top {
  position: fixed;
  right: 0;
  bottom: 35px;
  display: none;
  z-index: 999;
  overflow: hidden;
}
#back-to-top i {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
  background: #707070;
}
#back-to-top i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ff6f00;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#back-to-top i:hover:after,
#back-to-top i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
/*====================================================
  some styles to override wordpress default
====================================================*/
.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #ff6f00 !important;
}
.wp-video,
video.wp-video-shortcode,
.mejs-container,
.mejs-overlay.load {
  width: 100% !important;
}
.wp-video:focus,
video.wp-video-shortcode:focus,
.mejs-container:focus,
.mejs-overlay.load:focus {
  outline: none;
}
/*====================================================
  flex slider style override
====================================================*/
.flexslider {
  margin: 0;
}
.flexslider.gallery-slides:hover img.gray {
  -webkit-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
.flex-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-bottom: 0;
  color: #ffffff;
  padding: 14px;
}
.flex-direction-nav a {
  background: #ffffff;
  text-align: center !important;
}
.flex-direction-nav a i {
  font-size: 40px;
  line-height: 40px;
  color: #202020;
}
.flexslider:hover .flex-direction-nav .flex-next {
  right: 0;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  left: 0;
}
/*====================================================
  single post
====================================================*/
.about-author {
  margin-bottom: 32px;
}
.about-author .avatar {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
}
.about-author .details {
  margin-left: 102px;
}
.about-author .details .author a {
  color: #bbbbbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.about-author .details .author a:hover {
  color: #ff6f00;
}
.about-author .details .meta-info {
  color: #707070;
  font-size: 14px;
}
.about-author .details .meta-info span {
  margin-right: 16px;
}
.about-author .details .meta-info span:last-child {
  margin-right: 0;
}
.about-author .details .meta-info i {
  margin-right: 8px;
}
.about-author .details .meta-info a {
  color: #707070;
}
.about-author .details .meta-info a:hover,
.about-author .details .meta-info a:focus {
  color: #ff6f00;
}
.share-author-wrap {
  max-width: 80%;
  margin: 64px auto;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  padding: 32px 32px 16px;
  background: #202020;
  color: #bbbbbb;
}
.custom-background .share-author-wrap {
  margin-top: 48px;
}
.share-link-wrap {
  text-align: center;
  padding-top: 24px;
  position: relative;
  border-top: 1px solid #707070;
}
.share-link-wrap .share-text {
  float: left;
}
.share-link-wrap ul {
  font-size: 0;
  line-height: 0;
  padding: 0;
  float: right;
}
.share-link-wrap ul li {
  display: inline-block;
  list-style: none;
  line-height: 16px;
  font-size: 16px;
  margin: 0 4px;
}
.share-link-wrap ul li:last-child {
  margin-right: 0;
}
.share-link-wrap ul li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.share-link-wrap ul li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #707070;
}
.share-link-wrap ul li a i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.share-link-wrap ul li a i:hover,
.share-link-wrap ul li a i:focus {
  color: #ff6f00;
}
.share-link-wrap ul li a i:hover:after,
.share-link-wrap ul li a i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.share-link-wrap ul li a:hover,
.share-link-wrap ul li a:focus {
  border: 1px solid #ffffff;
}
/*====================================================
  comment
====================================================*/
.comment-container {
  max-width: 80%;
  margin: 0px auto 64px;
}
.comment-container .comment-count {
  margin-bottom: 16px;
}
.comment-container .comment-count h3 {
  margin: 0 0 16px;
}
.comment-container ol {
  padding: 0;
  margin: 0;
}
.comment-container ol li {
  list-style: none;
}
.comment-container ol li article {
  border-top: 1px dashed #dfdfdf;
  padding-top: 16px;
}
.comment-container ol li article.bypostauthor .author-avater-link:before {
  content: '\f005';
  font-family: Fontawesome;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1em;
  font-size: 9px;
  color: #bbbbbb;
}
.comment-container ol li header {
  position: relative;
}
.comment-container ol li header .author-avater-link {
  float: left;
}
.comment-container ol li header .author-avater-link img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.comment-container ol li header .comment-details {
  margin-left: 48px;
}
.comment-container ol li header .comment-details .commenter-name {
  letter-spacing: 0;
  margin-bottom: 0px;
}
.comment-container ol li header .comment-details .commenter-name a {
  color: #202020;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.comment-container ol li header .comment-details .commenter-name a:hover {
  color: #ff6f00;
  text-decoration: none;
}
.comment-container ol li header .comment-details .commenter-meta {
  color: #bbbbbb;
  font-style: italic;
}
.comment-container ol li header .comment-reply-link {
  position: absolute;
  top: 0;
  right: 0;
  color: #707070;
  border: 1px solid #707070;
  text-transform: uppercase;
  padding: 0px 5px 0px 6px;
  font-size: 12px;
  line-height: 1.6em;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
  overflow: hidden;
}
.comment-container ol li header .comment-reply-link:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ff6f00;
  z-index: -1;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.comment-container ol li header .comment-reply-link:hover,
.comment-container ol li header .comment-reply-link:focus {
  background: none;
  color: #ffffff;
  border: 1px solid #ff6f00;
}
.comment-container ol li header .comment-reply-link:hover:after,
.comment-container ol li header .comment-reply-link:focus:after {
  height: 300%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.comment-container ol li .comment-body {
  margin-left: 48px;
  line-height: 1.6em;
}
.comment-container ol li.pingback .comment-body {
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px dashed #dfdfdf;
}
.comment-container ol ul {
  padding-left: 64px;
}
.comment-respond {
  margin: 28px 0 0;
}
.comment-reply-title {
  padding-bottom: 14px;
  border-bottom: 1px dashed #dfdfdf;
}
.comment-notes {
  margin-bottom: 28px;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  width: 31.1%;
  display: inline-block;
}
.comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label {
  letter-spacing: 1px;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email {
  margin-right: 14px;
}
.comment-form .required {
  color: #ff6f00;
}
.prev-next-wrap {
  max-width: 80%;
  margin: 0 auto;
}
.prev-next-wrap .previous-post {
  width: 48%;
  text-align: left;
}
.prev-next-wrap .next-post {
  width: 48%;
  text-align: right;
  float: right;
}
.prev-next-wrap .btn {
  white-space: inherit;
}
.prev-next-wrap .btn-default:hover:after {
  height: 500%;
}
/*====================================================
  page
====================================================*/
.page .main-content .content-wrap .post .post-inner-wrap .post-content {
  margin-bottom: 0;
}
/*====================================================
  error page
====================================================*/
.main-content-error {
  margin: 121px 0;
}
.main-content-error .error-block-inner h1,
.main-content-error .error-block-inner h4 {
  text-transform: uppercase;
}
/*====================================================
  media qurey
====================================================*/
@media (min-width: 768px) and (max-width: 991px) {
  .main-header .menu li {
    margin: 12px 0 0 12px;
  }
  .main-header .menu li a {
    font-size: 12px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  .cover {
    background-attachment: initial;
  }
  .main-header .menu li {
    display: block;
    margin: 16px 0;
    text-align: center;
    padding-bottom: 0;
  }
  .main-header .menu li.current-menu-parent > a,
  .main-header .menu li.current-menu-ancestor > a {
    color: #707070;
  }
  .main-header .menu li ul {
    position: relative;
    top: 100%;
    width: 100%;
    border: none;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=(100));
    -webkit-transition: height 0.9s ease;
    -moz-transition: height 0.9s ease;
    -ms-transition: height 0.9s ease;
    -o-transition: height 0.9s ease;
    transition: height 0.9s ease;
    visibility: visible;
  }
  .main-header .menu li ul ul {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 0;
  }
  .main-header .menu li ul > li.menu-item-has-children > a:after {
    content: '\f107';
    font-family: Fontawesome;
    position: relative;
  }
  .main-header .menu li ul > li.current-menu-ancestor > a {
    color: #707070;
  }
  .main-header .menu li:hover > ul {
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=(100));
    top: 100%;
    height: 100%;
  }
  .pagination .page-number {
    display: block;
  }
  .pagination .newer-posts,
  .pagination .older-posts {
    position: relative;
  }
  .pagination .newer-posts {
    left: 0;
  }
  .pagination .older-posts {
    right: 0;
  }
  .main-footer .copyright {
    text-align: center;
    margin-bottom: 16px;
  }
  .main-footer .social-links {
    text-align: center;
  }
  .share-link-wrap {
    text-align: center;
  }
  .share-link-wrap .share-text {
    float: none;
    margin-bottom: 16px;
    display: block;
  }
  .share-link-wrap ul {
    float: none;
  }
  .share-link-wrap ul li {
    margin-bottom: 4px;
  }
  .share-link-wrap ul li:last-child {
    margin-right: 4px;
  }
  .prev-next-wrap .previous-post,
  .prev-next-wrap .next-post {
    width: 100%;
    float: none;
  }
  .prev-next-wrap .previous-post {
    margin-bottom: 4px;
  }
  .prev-next-wrap .next-post {
    margin-top: 4px;
  }
  .prev-next-wrap .btn-default:hover:after {
    height: 700%;
  }
  .widget_calendar table tbody a:hover:after,
  .widget_calendar table tbody a:focus:after {
    height: 300%;
  }
}
@media screen and (max-width: 480px) {
  .about-author {
    text-align: center;
  }
  .about-author .avatar {
    float: none;
    margin-bottom: 16px;
  }
  .about-author .details {
    margin-left: 0px;
  }
}
