/*

1. TYPOGRAPHY
2. BUTTONS
3. TABS
4. PAGINATION
5. BREADCRUMBS
6. GENERAL
7. HEADER
8. MENU
9. MOBILE MENU
10.PAGE HEADER
11.FOOTER
12.BLOG
13.ELEMENTS
14.COMMENTS
15.WIDGETS
16.CAROUSEL

*/

/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/

body {
  background-color: #f5f5f5;
  overflow-x: hidden;
  color: #3b3e43;
  font: 15px/24px "Gotham", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

h1 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 45px;
}

h2 {
  margin-bottom: 14px;
  font-size: 35px;
  line-height: 40px;
}

h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 35px;
}

h4 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 30px;
}

h5 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 25px;
}

h6 {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 20px;
}


h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

p {
  margin-bottom: 20px;
}

blockquote {
  border-left: 3px solid #333;
  padding-left: 15px;
  font-size: 18px;
  line-height: 27px;
}

blockquote p {
  font-style: italic;
}

a {
  color: #333;
}

a:hover, a:focus {
  outline: 0;
  color: #555;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
}

.blog-article ul {
  margin-left: 20px;
}

.last {
  margin-bottom: 0;
}

.hr {
  margin: 30px 0;
  border-top: 1px solid #000;
}

.text-primary {
  color: #333;
}

label {
  font-weight: normal;
}

input, select, textarea {
  display: block;
  max-width: 100%;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: transparent;
  -webkit-appearance: none;
}

input[type="text"]:focus, input[type="url"]:focus {
  border-color: #000;
}

textarea:focus {
  border-color: #000;
}

th, td {
  padding: 0.4em;
}

th {
  border-width: 0 1px 1px 0;
  font-weight: 700;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

table, th, td {
  border: 1px solid #eaeaea;
}

table{
  margin-bottom: 10px;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

.page .blog-article{
  background-color: #fff;
  padding: 20px;
}

/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/

.btn {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  padding: 15px 20px;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn:after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  opacity: 0;
  content: "";
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn:hover {
  background-color: transparent;
}

.btn:hover:after {
  width: 101%;
  opacity: 1;
}

.btn:focus {
  outline: 0;
}

.btn i {
  display: inline-block;
  line-height: 43px;
  text-align: center;
  border-left: 1px solid #fff;
  padding-left: 20px;
  margin: -15px 0 -15px 20px;
}

.btn-default {
  display: inline-block;
  color: #333;
  background-color: transparent;
  font: 15px/26px "Gotham", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  border: 2px solid #333;
  padding: 5px 25px;
  margin-top: 20px;
}

.btn-default:hover {
  color: #fff;
  border: 2px solid #333;
  background-color: #333;
  text-decoration: none;
}

/***********************************************************************************
 *	+ TABS
 ***********************************************************************************/

.nav-tabs>li>a {
  border-radius: 2px;
  color: #3b3e43;
  border-color: transparent;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
  background-color: transparent;
  border-color: transparent;
  color: #333;
}

.nav-tabs>li.active>a {
  color: #333;
}

.nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
  color: #333;
}

.tab-content {
  margin: 40px 0;
}

.tab-content img {
  float: left;
  display: block;
  margin-right: 20px;
}

/***********************************************************************************
 *	+ PAGINATION
 ***********************************************************************************/

.pagination {
  display: block;
  margin-bottom: 50px;
}

@media (max-width: 991px){
  .pagination{
    text-align: center;
  }
}

.pagination>li:last-child>a, .pagination>li:first-child>a {
  border-radius: 0;
}

.pagination li {
  display: inline-block;
  margin-right: 5px;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li a {
  display: block;
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  background-color: #3b3e43;
  color: #fff;
  padding: 0;
  text-align: center;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pagination>li>a:hover {
  background-color: #777;
  color: #fff;
}

.pagination>li.active>a {
  background-color: #777;
  color: #fff;
}

.pagination>li.active>a:hover {
  background-color: #777;
  color: #fff;
}

/***********************************************************************************
 *	+ BREADCRUMB
 ***********************************************************************************/

.breadcrumb {
  background-color: transparent;
  text-align: right;
  margin: 0;
  padding: 0;
  letter-spacing: 3px;
}

.breadcrumb li a {
  color: #333;
}

.breadcrumb li a:hover {
  text-decoration: none;
  color: #3b3e43;
}

.breadcrumb li.active {
  color: #3b3e43;
}

/***********************************************************************************
 *	- SMALL DISPLAY (TABLETS)
 ***********************************************************************************/

@media (min-width: 768px) and (max-width: 991px) {
  .widget-latest-news ul li img {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .widget-latest-news ul li .news-title {
    margin-left: 0;
  }
  .tp-rightarrow, .tp-leftarrow {
    display: none;
  }
  .widget-recent-posts ul li img {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .widget-tab .nav-tabs>li {
    float: none;
    margin-bottom: 0;
  }
  .widget-tab .nav-tabs>li>a {
    border: 1px solid #d7d7d7;
    border-bottom: none;
    border-radius: 0;
    margin-right: 0;
  }
  .widget-tab .nav-tabs>li>a:hover {
    border-color: #d7d7d7;
  }
}

/***********************************************************************************
 *	- EXTRA SMALL DISPLAY (PHONES PORTRAIT)
 ***********************************************************************************/

@media (max-width: 767px) {
  .nav-tabs>li {
    float: none;
    margin-bottom: 0;
  }
  .nav-tabs>li>a {
    border: 1px solid #d7d7d7;
    border-bottom: none;
    border-radius: 0;
    margin-right: 0;
  }
  .nav-tabs>li>a:hover {
    border-color: #d7d7d7;
  }
  .tab-content img {
    float: none;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .timeline-item h2 a:after, .timeline-item h2 a:before {
    display: none;
  }
  #project-slider-control a:last-child {
    border-bottom: none;
  }
}

/***********************************************************************************
 *	- EXTRA SMALL DISPLAY (PHONES LANDSCAPE)
 ***********************************************************************************/

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .isotope.col-5 .isotope-item {
    float: left;
    width: 50%;
  }
}

.footer-navigation li {
  list-style: none;
}

.footer-navigation li a {
  color: #d7d7d8;
  font-weight: 600;
}

/***********************************************************************************
 *	+ GENERAL
 ***********************************************************************************/
#page-preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 100500;
}

#page-preloader .spinner {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -16px 0 0 -16px;
}

.wp-caption {
  margin-bottom: 20px;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  font-size: 16px;
}

.gallery-caption {
  font-size: 16px;
}

.bypostauthor{
  font-size: 16px;
}

.sticky .fa-thumb-tack{
  color: #777;
}

.sticky .post-category{
  margin-top: 10px;
  font-family: "Gotham", Helvetica, Arial, sans-serif;
}

.sticky .fa-thumb-tack:before{
  font-size: 30px;
}

#masonry .sticky{
  text-align: left;
}

.sticky-post{
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .sticky-post{
    text-align: center;
  }
}

.posts-wrapper{
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

@media (max-width: 991px) {
  .posts-wrapper{
    padding-left: 0;
    padding-right: 0;
  }
}

.blog-2-col{
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .blog-2-col{
    text-align: center;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute !important;
  height: 1px;
  width: 1px;
}

.alignleft {
  float: left;
  margin:15px 15px 15px 0;
}

.alignright {
  float: right;
  margin:15px 0 15px 15px;
}

.aligncenter {
  display: block;
  margin: 15px auto;
}

.fst-img{
  margin-top: 0;
}

.page-content {
  margin-bottom: 50px;
}

.page-content .blog-article img{
  padding: 0;
}

.page-content .blog-article ul{
  margin-left: 25px;
}

#comments .commentlist{
  margin-left: 0;
}

.error-page {
  padding: 200px 0;
  position: relative;
  height: 700px;
  text-align: center;
  background-size: cover;
}

.error-page-container {
  padding-top: 80px;
  color: #333;
}

.error-page-container p{
  color:#333;
  margin-top: 20px;
  margin-bottom: 20px;
}

.error-page-container #searchform input{
  border: 1px solid #333;
}

.error-page-container #searchform .search-button{
  display: none;
}

.error-page-container input::-webkit-input-placeholder{
  color:#333;
}
.error-page-container input::-moz-placeholder{
  color:#333;
}
.error-page-container input:-moz-placeholder{
  color: #333;
}
.error-page-container input:-ms-input-placeholder{
  color:#333;
}

.error-page-container #searchform input {
  width: 350px;
  margin: 25px auto 0;
  padding: 7px 20px;
}

.error-title, .none-page-title {
  color: #333;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

#home.full-section, #home-video-section, #home.bannercontainer {
  margin-bottom: 0;
}

li.customize-control {
  background-color: #fff;
  padding: 10px;
}

.main-content{
  padding-top:50px;
}

figcaption{
  text-align:center;
}

.widget img, .widget video {
  height: auto;
  max-width: 100%;
}

.base-wrapper{
  padding-top: 100px;
}

@media (max-width: 767px){
  .base-wrapper{
    padding-top: 50px;
  }
}

.post-detail-wrapper{
  background-color: #fff;
  padding: 15px 25px 30px;
}

.post-detail-wrapper-horizontal{
  background-color: #fff;
  padding: 5px 25px 33px;
}

.post-detail-wrapper-search{
  background-color: #fff;
  padding: 15px 25px;
}

.post-detail-wrapper-search h2{
  margin-top: 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .post-detail-wrapper-horizontal {
    background-color: #fff;
    padding: 43px 25px 70px;
  }
}

@media (max-width: 1199px){
  .post-detail-wrapper{
    text-align: center;
  }
}

@media (max-width: 767px){
  .post-detail-wrapper-search{
    text-align: center;
  }
}
/***********************************************************************************
 *	+ HEADER
 ***********************************************************************************/

header {
  position: relative;
  background-color: #fff;
}

#fullscreen header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: #fff;
}

#fullscreen #search-container.open+header {
  top: 84px;
}

header [class^="col-"] {
  position: static;
}

header .container {
  position: relative;
}

#logo {
  display: inline-block;
  margin: 10px 0;
  font-size: 38px;
  font-weight: bold;
}

@media (min-width: 992px) and (max-width: 1199px) {
  #logo {
    margin-top: 25px;
  }
}


/***********************************************************************************
 *	- MENU
 ***********************************************************************************/
.dropdown-menu li:not(:last-child){
  border-bottom:1px solid #151515;
}

.navbar-nav>li>.dropdown-menu{
  border-radius: 0;
}

@media (max-width: 991px) {
  .dropdown-menu li {
    text-align: center;
  }
}

.transparent-header {
  background: transparent;
  border-bottom: none;
  z-index: 199;
}

@media (min-width: 992px){
  .sticky-header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 11;
  }
}

@media (min-width: 768px) {
  .center-navigation .nav>li {
    float: none;
  }
  .center-navigation .nav {
    float: none;
    text-align: center;
  }
}

@media (min-width: 991px) {
  .center-navigation .nav>li {
    display: inline-block;
  }
}

.main-header.transparent-header {
  box-shadow: none;
}

.navbar-default {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
}

.center-navigation .menu {
  float: none;
}

.center-navigation .menu>li {
  display: inline-block;
  position: relative;
  float: none;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none;
}

.nav {
  padding: 0;
  margin: 0;
  list-style: none;
  float: right;
  margin-top: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

.nav>li {
  float: left;
}

.nav li a {
  display: block;
  font-size: 14px;
  color: #3b3e43;
}

.nav li a:hover {
  color: #333;
  text-decoration: none;
}

.nav li.current-menu-item>a, .nav li.sfHover>a {
  color: #333;
  text-decoration: none;
}

.nav li.dropdown ul {
  margin-top: 20px;
  position: absolute;
  top: 100%;
  display: none;
  z-index: 2000;
  width: 220px;
  padding: 5px 0;
  border-left: none;
  border-right: none;
  border-bottom:none;
  background-color: #151515;
}

@media (max-width: 991px){
  .nav li.dropdown ul {
    position: absolute;
    top: 100%;
    display: none;
    z-index: 2000;
    width: 100%;
    padding: 5px 0;
    border-left: none;
    border-right: none;
    border-bottom:none;
  }
}

.nav li.dropdown ul li a {
  padding: 8px 20px;
  color: #E3E3E3;
}

.nav li.dropdown ul li a:hover {
  background-color: #262626;
}

.dropdown-menu>li>a:focus{
  background-color: #262626;
}


.nav li.dropdown ul ul {
  top: -1px;
  left: 100%;
  margin-top: -27px;
}

.nav li.dropdown.menuExpanded>ul {
  display: block;
}

.nav>li>a, .nav>li>button {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

.nav>li:last-child>a {
  margin-right: 0;
}

.dropdown-menu>li>a:hover {
  background-color: transparent;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus {
  background-color: transparent;
}

.dropdown-menu>.active>a:hover {
  color: #777;
  background-color: transparent;
}

.navbar-default .navbar-nav>.active>a {
  color: #777;
  background-color: transparent;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>button:focus, .navbar-default .navbar-nav>li>button:hover {
  color: #777;
  background-color: transparent;
}

.navbar-default .navbar-nav>li>a {
  color: #333;
}

li.menu-item.dropdown .dropdown-menu{
  position: absolute;
  top: 50px;
  visibility: hidden;
  margin-top: -1px;
}

@media (min-width: 992px) {
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 35px;
  }
  li.menu-item.dropdown .dropdown-menu{
    position: absolute;
    top: 70px;
    visibility: hidden;
    margin-top: -1px;
  }
  .sticky-header-tiny li.menu-item.dropdown .dropdown-menu{
    position: absolute;
    top: 55px;
    visibility: hidden;
    margin-top: -1px;
  }
}

.sticky-header-tiny{
  height: 70px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.sticky-header-tiny #logo{
  line-height: 30px;
}

.sticky-header-tiny .nav{
  margin-top: 15px;
}

.sticky-header-tiny #logo{
  width: 150px;
  height: 50px;
  margin-top: 10px;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .sticky-header-tiny li.menu-item.dropdown .dropdown-menu{
    position: absolute;
    top: 40px;
    visibility: hidden;
    margin-top: -1px;
  }
  .sticky-header-tiny{
    position: fixed;
    z-index: 11;
    width: 100%;
    background-color: #fff;
  }
  .sticky-header-tiny #mobile-menu-button {
    margin-top: 15px;
  }
  .sticky-header-tiny .menu-wrapper{
    background-color: #fff;
    width: 100%;
  }
  .sticky-header-tiny .navbar-default .navbar-collapse{
    padding: 0;
    margin: 0;
    width: 100%
  }
  .sticky-header-tiny #logo{
    margin-top: 0;
    transition: all 0.3s;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #logo {
    line-height: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sticky-header #logo {
    margin-top: 25px;
  }
  .sticky-header.sticky-header-tiny #logo {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .sticky-header #logo {
    margin-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sticky-header #logo {
    margin-top: 0;
  }
  #logo{
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .sticky-header #logo {
    margin-top: 0;
  }
  .sticky-header.sticky-header-tiny #logo {
    margin-top:10px;
  }
}

@media (max-width: 599px){
  .sticky-header-tiny{
    top: 0;
  }
}

@media (min-width: 992px) {
  .simple-menu .navbar-nav > li > a,  .simple-menu .navbar-nav > li > button {
    padding-top: 15px;
    padding-bottom: 35px;
  }
  .simple-menu li.menu-item.dropdown .dropdown-menu{
    position: absolute;
    top: 70px;
    visibility: hidden;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .simple-menu #logo {
    margin: 5px 0 10px;
  }
}

@media (max-width: 991px) {
  .simple-menu #mobile-menu-button {
    margin-top: 25px;
  }
}

li.menu-item.dropdown.menuExpanded .dropdown-menu{
  visibility: visible;
}

li.menu-item.dropdown.menuExpanded .dropdown-menu{
  display: block;
}

li.menu-item.dropdown button {
  font-family: "Gotham SSm A","Gotham SSm B",Arial,Helvetica,sans-serif;
  border:0px;
  background:transparent;
  line-height: 20px;
}

.logo-centered{
  padding: 10px 0;
}

@media (max-width: 991px) {
  li.menu-item.dropdown .dropdown-menu{
    visibility: visible;
    display: block;
  }
  .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 10px;
    vertical-align: middle;
    border-top: 5px dashed;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
  .dd-menu-show{
    display: block !important;
    visibility: visible !important;
  }
}

@media ( max-width: 991px) {
  .logo-centered #logo{
    float:left;
  }
}

.menu-logo-centered{
  border-top: 1px dashed #d7d7d7;
}

.menu-logo-centered-reverse{
  border-bottom: 1px dashed #d7d7d7;
}

@media ( max-width: 991px ){
  .menu-logo-centered{
    border-top: 1px solid #d7d7d7;
  }
}

.menu-logo-wrapper .nav{
  margin-top: 10px;
}

@media (min-width: 992px) {
  .menu-logo-wrapper .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .menu-logo-wrapper li.menu-item.dropdown .dropdown-menu {
    top: 50px;
  }
}

.menu-logo-centered .nav{
  margin-top: 10px;
}

.menu-logo-centered .navbar-nav > li > a {
  padding-bottom: 20px;
}

.menu-logo-centered li.menu-item.dropdown .dropdown-menu{
  top: 56px;
}

/***********************************************************************************
 *	- MOBILE MENU
 ***********************************************************************************/

#navbar-toggle {
  float: right;
  display: none;
  font-size: 32px;
  line-height: 32px;
  padding: 5px 10px;
  border-radius: 3px;
  margin-top: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar-toggle:hover {
  background-color: #333;
  color: #fff;
}

.navbar-default .navbar-nav>.active>a:hover {
  background-color: transparent;
}

@media (max-width: 991px) {
  .mobile-menu {
    display: none;
  }
  .navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
  }
  #navbar-collapse-menu .nav {
    float: left;
    width: 100%;
  }
  #navbar-collapse-menu .nav>li {
    float: none;
  }
  #navbar-collapse-menu .nav>li:not(:last-child) {
    border-bottom: 1px #fff solid;
  }
  .nav>li>a, .nav>li>button {
    padding: 15px 10px 15px 0px;
  }
  .navbar-default .navbar-nav>li>a, .navbar-default .navbar-nav>li>button {
    color: #555;
  }
  .menu-wrapper {
    text-align: center;
    min-height: inherit;
  }
  .navbar-default {
    background-color: transparent;
  }
  .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: transparent;
  }
  .navbar-default .navbar-nav>.active>a {
    background-color: transparent;
  }
  .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>button:focus, .navbar-default .navbar-nav>li>button:hover {
    color: #555;
  }
}

#mobile-menu-button {
  float: right;
  font-size: 32px;
  line-height: 32px;
  padding: 5px 10px;
  border-radius: 3px;
  margin-top: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#mobile-menu-button i{
  color: #333;
}

@media (max-width: 991px) {
  #mobile-menu-button {
    margin-top: 30px;
  }
  .sticky-header #mobile-menu-button {
    margin-top: 20px;
  }
  .sticky-header #logo{
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .navbar-toggle {
    display: initial;
  }
}

@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
/***********************************************************************************
 *	- PAGE HEADER
 ***********************************************************************************/

#page-header {
  padding: 50px 0 35px 0;
  margin-bottom: 70px;
  border-top: 1px dashed #d7d7d7;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 991px){
  #page-header{
    margin-bottom:50px;
	border-top:none;
  }
}

@media (max-width: 767px){
  #page-header{
    margin-bottom:30px;
	border-top:none;
  }
}

#page-header h4 {
  margin-bottom: 0;
  font-weight: 700;
}

#page-header h1 {
  font-weight: 700;
  margin-bottom: 15px;
}

/***********************************************************************************
 *	- FOOTER
 ***********************************************************************************/

#footer caption, .footer-top caption{
  color: #fff;
}

#footer-top a:hover {
  color: #777777;
  transition: all 0.3s;
  text-decoration: none;
}

#footer-top .widget:last-child {
  margin-bottom: 15px;
  padding-bottom: 0;
}

#footer {
  padding-top: 30px;
  color: #454545;
  background-color: #fff;
}

#footer-top {
  color: #454545;
  background-color: #fff;
  margin-top:35px;
}

#footer .widget-title, #footer-top .widget-title{
  text-transform: none;
  color: #454545;
}

#footer .widget-title:after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #333;
  display: block;
  width: 55px;
  margin-top: 15px;
}

#footer-bottom{
  background-color: #fff;
  border-top:1px dashed #d7d7d7;
}

#footer-bottom .widget{
  margin: 20px 0
}

/***********************************************************************************
 *	- BLOG
 ***********************************************************************************/

.small-thumbs .entry-image {
  float: left;
  width: 400px;
  margin: 0;
}

.small-thumbs .post{
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .small-thumbs .entry-image{
    width: 100%;
    float: none;
  }
  .small-thumbs{
    text-align: center;
  }
}

.small-img-wrapper{
  overflow: hidden;
}

.small-img-wrapper{
  margin-top: 0;
}

.small-img-wrapper .blog-article-details{
  margin-bottom: 20px;
}

.small-img-wrapper .entry-image img{
  height: 100%;
}

.small-img-description-wrapper{
  overflow: hidden;
}

.single-post .blog-article{
  padding: 25px;
  background-color: #fff
}

.blog-article {
  margin-bottom: 50px;
}

.blog-article-thumbnail {
  position: relative;
}

.blog-article-thumbnail img {
  height: auto;
}

.blog-article-thumbnail img:hover{
  opacity: 0.8;
}

.single-tmb img:hover{
  opacity: 1;
  max-width: 100%;
  text-align: center;
}

.single-tmb{
  margin-bottom: 30px;
}

.blog-article-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(59, 62, 67, 0.85);
  opacity: 0;
  text-align: center;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-article-hover .zoom-action {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: top 0.3s 0.2s, opacity 0.3s 0.2s;
  transition: top 0.3s 0.2s, opacity 0.3s 0.2s;
}

.blog-article .blog-article-hover .zoom-action:hover {
  color: #333;
}

.blog-article:hover .blog-article-hover {
  opacity: 1;
  margin: 20px;
}

.blog-article:hover .blog-article-hover .zoom-action {
  opacity: 1;
  top: 50%;
}

.blog-article-details {
  margin-bottom: 30px;
}

.blog-article-details h2{
  margin-top: 15px;
}

.blog-article-details h4, .blog-article-details h6 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.blog-article-details h4 {
  font-size: 14px;
}

.blog-2-col .blog-article-thumbnail {
  margin-bottom: 0;
  font-weight: 700;
}

.blog-article-details p {
  margin-bottom: 0;
}

.blog-article-details p i {
  margin: 0 7px;
  color: #555;
}

.blog-article-details p i:first-child {
  margin-left: 0;
}

.page-links{
  padding-bottom: 20px;
}

.entry-meta-header {
  color: #555;
}

.entry-meta-header a {
  color: #555;
}

.entry-meta-header span:after {
  content: "|";
  margin-left: .4em;
  margin-right: .4em;
  color: #555;
}

@media (max-width: 767px){
  .entry-meta-header span:after{
    display: none;
  }
}

.entry-meta-header span:last-child:after {
  content: none;
}

.sticky-category-wrapper{
  padding-top: 150px;
}

@media (max-width: 767px){
  .sticky-category-wrapper{
    padding-top: 50px;
  }
}

.blog-col .post-category {
  font-size: 14px;
}

.blog-col h3 {
  font-size: 17px;
  margin-top: 8px;
}

.blog-col h3 a {
  letter-spacing: 1px;
}

.post-category {
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}

.several-columns {
  height: 680px;
}

.blog-col h3 a {
  font-size: 22px;
  letter-spacing: 0px;
}

.small-img-post {
  width: 35%;
}

.small-img-description {
  width: 65%;
  float: left;
}

.post-author-image-desc {
  display:table;
  padding: 20px;
}

@media (max-width: 991px) {
  .post-author-image-desc {
    display:initial;
  }
}

.post-author-image-desc img {
  float:left;
  border-radius: 50%;
  margin-right: 40px;
}

.post-author-image-desc h6 {
  margin: 0px 0px 4px 0px;
}

.post-author-image-desc p {
  margin: 0px;
}

.post-author-image-desc .post-full-desc {
  display:table-cell;
  vertical-align:middle;
  padding: 4px;
}

@media (max-width: 767px) {
  .post-author-image-desc .post-full-desc {
    display:block;
  }
  .post-author-image-desc{
    margin-bottom: 0;
  }
}

.blog-article-author {
  border: 1px dashed #d7d7d7;
  margin: 75px 0 10px;
  padding: 10px;
}

.blog-article-author>p {
  float: left;
  margin-right: 40px;
  text-transform: uppercase;
  color: #333;
}

.blog-article-author>p img {
  display: block;
  border-radius: 50%;
  margin-bottom: 10px;
}

.blog-article-author-details{
  padding-top: 5px;
}

.blog-article-author-details h4 {
  color: #333;
  font-weight: 700;
}

.blog-article-author-details h6 a{
  font-size: 20px;
  color: #333;
}

.post-tags a{
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  line-height: 28px;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 14px !important;
}

.post-tags a:hover{
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.post-tags{
  font-weight: bold;
  margin-top: 40px;
}

@media (min-width: 992px) and ( max-width: 1199px ) {
  .three-col .entry-meta-header span:after {
    display: none;
  }
}

@media (min-width: 992px)  {
  .four-col .entry-meta-header span:after {
    display: none;
  }
  .four-col{
    text-align: center;
  }
}

#masonry .post{
  margin-bottom: 50px;
}

#masonry h2 a{
  font-size: 27px;
}

.masonry-3-col .post-item {
  float: left;
  width: 375px;
  padding-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .masonry-3-col .post-item {
    width: 300px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .masonry-3-col .post-item {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .masonry-3-col .post-item {
    float: none;
    width: 100%;
    padding-right: 30px;
  }
}

.masonry-4-col .post-item {
  float: left;
  width: 275px;
  padding-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .masonry-4-col .post-item {
    width: 230px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .masonry-4-col .post-item {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .masonry-4-col .post-item {
    float: none;
    width: 100%;
    padding-right: 30px;
  }
}

.masonry-2-col .post-item {
  float: left;
  width: 570px;
  padding-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .masonry-2-col .post-item {
    width: 445px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .masonry-2-col .post-item {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .masonry-2-col .post-item {
    float: none;
    width: 100%;
    padding-right: 30px;
  }
}

/***********************************************************************************
 *	- ELEMENTS
 ***********************************************************************************/

.elements-menu {
  z-index: 1;
  background-color: #fff;
  padding: 20px;
}

.elements-menu.elements-menu-sticky {
  position: fixed !important;
  top: 70px !important;
  background-color: #fff;
  z-index: 99999;
}

.elements-menu .nav {
  list-style: none;
  margin-top: 80px;
}

.elements-menu .nav>li>a {
  display: inline-block;
  padding: 0;
  text-transform: uppercase;
  color: #3b3e43;
  font-weight: 700;
  text-decoration: none;
}

.elements-menu .nav>li>a:focus {
  display: inline-block;
  padding: 0;
  text-transform: uppercase;
  color: #3b3e43;
  font-weight: 700;
  text-decoration: none;
}

.elements-menu .nav>li>a:hover {
  color: #333;
  background-color: transparent;
}

.elements-menu .nav>li.current-menu-item>a {
  color: #333;
  background-color: transparent;
}

.elements-menu .nav>li>a:focus {
  background-color: transparent;
}

.elements-section {
  padding-top: 80px;
}

/***********************************************************************************
*	- LARGE DISPALY (>1200px)
***********************************************************************************/

@media (min-width: 1200px) {
  .menu>li>a {
    margin-right: 20px;
  }
}

/***********************************************************************************
*	- SMALL DISPLAY (TABLETS)
***********************************************************************************/

@media (min-width: 768px) and (max-width: 991px) {
  #navbar-toggle {
    display: block;
  }
  #fullscreen #search-container.open+header {
    top: 0;
  }
  .about-me-thumbnail .btn {
    bottom: 10px;
  }
  .elements-menu.elements-menu-sticky {
    width: 180px;
  }
}

/***********************************************************************************
 *	- EXTRA SMALL DISPLAY (PHONES)
 ***********************************************************************************/

@media (max-width: 767px) {
  #fullscreen header {
    position: relative;
  }

  #navbar-toggle {
    position: absolute;
    top: 0;
    right: 20px;
    display: block;
  }
  a.search-button {
    top: 50px;
    right: 75px;
  }
  a.search-button.open:after {
    top: -50px;
  }
  #fullscreen #search-container.open+header {
    top: 0;
  }
  #page-header .breadcrumb {
    display: none;
  }
  .blog-article-details p i {
    margin-left: 0;
  }
  .blog-article-author {
    padding-bottom: 20px;
    text-align: center;
  }
  .blog-article-author>p {
    float: none;
    margin-right: 0;
  }
  .blog-article-author>p img {
    display: initial;
    border-radius: 50%;
    margin-bottom: 0;
  }
  .post-author-image-desc{
    margin-bottom: 5px;
  }
  .post-author-image-desc img{
    margin-right: 0;
  }
  .commentlist ul {
    margin-left: 20px;
  }
  .comment-author {
    display: block;
    margin-right: 0;
  }
  .comment-author .avatar {
    display: block;
    margin-right: 0;
  }
  .comment-content {
    margin: 0;
  }

  .reply {
    margin-left: 0;
  }
  .elements-menu {
    display: none;
  }
  #commentform input[type="text"], #commentform textarea {
    width: 100%;
  }
}

/***********************************************************************************
 *	- COMMENTS
 ***********************************************************************************/

.comments {
  padding: 1em 0 3em;
  margin-bottom: 3em;
}

.comments-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: justify;
}

.comments-list li {
  padding: 1.5em 0;
  border-top: 1px solid #f6f6f6;
}

.comments-list>li:first-child {
  border-top: none;
}

.comments-list ul {
  list-style: none;
  margin: 0;
  padding: 1.5em 0 0 4.125em;
}

.comments-list ul li:last-child {
  padding-bottom: 0;
}

.comments-list ul.meta-list {
  display: inline;
  padding: 0;
}

.comments-list ul.meta-list li {
  padding: 0;
  border-top: none;
}

.comments-list ul.meta-list .meta {
  margin-right: 1.5em;
}

.comment-form-author input, .comment-form-email input, .comment-form-url input {
  width: 100%;
}

.comment {
  overflow: hidden;
}

.comments {
  margin-bottom: 3em;
  padding: 1em 0 3em;
}

.says{
  display:none;
}

#commentform .submit {
  display: inline-block;
  color: #333;
  font-weight: 600;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.25s;
  border: initial;
  padding: 10px 20px;
  border:2px solid #333;
}

#commentform .submit:hover {
  background-color: #333;
  text-decoration: none;
  color: #fff;
  border:2px solid #333;
}

.comment-list {
  margin-left: 0;
  padding-left: 0;
}

.comment-list li {
  list-style: none;
}

@media (min-width: 768px) {
  .reply {
    margin-left: 90px
  }
}

.comment-reply-link {
  display: inline-block;
  color: #333;
  font: 16px/26px "Roboto", sans-serif;
  font-weight: 600;
  text-decoration: none;
  /* text-transform: uppercase; */
  transition: all 0.25s;
  border: 2px solid #333;
  padding: 4px 25px;
}

.comment-reply-link:hover, .comment-reply-link:focus, .comment-reply-link:active {
  color: #fff;
  background-color: #333;
  text-decoration: none;
}

.avatar {
  float: left;
  margin-right: 1.125em;
  padding-bottom: 0;
  padding-top: 0;
  border-radius: 50%;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .avatar {
    float: none;
  }
}

.commentlist li {
  list-style: none;
}

.comments-area .commentlist .children {
  margin-left: 90px;
}

.comment-body {
  margin-bottom: 50px;
}

.fn {
  font-size: 18px;
  font-weight: 600;
  color: #3b3e43;
}

@media (max-width: 767px) {
  .comments-area{
    margin-bottom: 40px;
  }
  .comments-area .commentlist .children {
    margin-left: 40px;
  }
}

.comments-area{
  background-color: #fff;
  padding: 25px;
}

#commentform textarea {
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #d7d7d7;
  width: 100%;
}

#commentform textarea:focus {
  border-bottom-color: #3b3e43;
  outline: 0;
}

.commentlist-title {
  border-bottom: 1px dashed #d7d7d7;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.commentlist-title, .comment-reply-title {
  font-weight: 600;
}

.comment-form-author input, .comment-form-email input, .comment-form-url input {
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #d7d7d7;
  width: 90%;
}

.comment-form-author input:focus, .comment-form-email input:focus, .comment-form-url input:focus {
  border-bottom-color: #3b3e43;
  outline: 0;
}

.comment-form-url, .comment-form-email, .comment-form-author, .comment-form-comment {
  color: #ccc;
}

.comment-form-url input, .comment-form-email input, .comment-form-author input, .comment-form-comment textarea {
  padding-left: 0;
}

.comment-form-url label, .comment-form-email label, .comment-form-author label, .comment-form-comment label {
  display: none;
}

.comment-metadata{
  display: none;
}

.comment-notes {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  #commentform input[type="text"], #commentform textarea {
    width: 100%;
  }
}

/***********************************************************************************
*	- Widgets
***********************************************************************************/

.mpb-widget-wrapper{
  margin: 30px auto 75px;
}

.info-box {
  position: relative;
  display: table;
  float: left;
  width: 33.333333%;
  height: 234px;
  padding: 0 15px;
}

.info-box-link {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #f3f3f3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.info-box-text {
  position: relative;
  padding: 15px 45px 15px;
  display: inline-block;
  background-color: #333;
  opacity: 0.8;
}

.info-box-text h5 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.info-box-text:hover {
  background-color: #222;
  opacity: 1;
  transition: all 0.4s;
}

@media (max-width: 767px){
	.info-box{
		width: 100%;
		margin-bottom:20px;
	}
}

.widget {
  margin-bottom: 50px;
}

.widget-title {
  font-size: 22px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 50px;
}

.widget-search form {
  position: relative;
}

.widget-search input[type="text"] {
  width: 100%;
  height: 45px;
}

.widget-search input[type="submit"] {
  height: 45px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
}

.widget-categories ul {
  list-style: none;
  margin-bottom: 0;
}

.widget-categories ul li {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.widget-categories ul li:last-child {
  margin-bottom: 0;
}

.widget-categories ul li a {
  font-weight: 600;
  text-transform: uppercase;
  color: #3b3e43;
}

.widget-categories ul li a:hover {
  color: #333;
  text-decoration: none;
}

.widget-recent-posts ul {
  list-style: none;
  margin-bottom: 0;
}

.widget-recent-posts ul li {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 15px;
}

.widget-recent-posts ul li:last-child {
  margin-bottom: 0;
}

.widget-recent-posts ul li img {
  float: left;
  display: block;
  margin-right: 20px;
  margin-bottom: 15px;
  border-radius: 50%;
}

.widget-recent-posts ul li .post-title {
  text-transform: uppercase;
  color: #3b3e43;
  font-weight: 600;
}

.widget-recent-posts ul li .post-title:hover {
  color: #333;
  text-decoration: none;
}

.widget-recent-posts ul li .post-date {
  margin-bottom: 15px;
  font-size: 10px;
  line-height: 16px;
  color: #acacac;
  text-transform: uppercase;
  font-weight: 600;
}

.widget-recent-posts ul li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.widget-latest-news ul {
  list-style: none;
  margin-bottom: 0;
}

.widget-latest-news ul li {
  margin-bottom: 40px;
}

.widget-latest-news ul li:last-child {
  margin-bottom: 0;
}

.widget-latest-news ul li img {
  float: left;
  display: block;
  margin-right: 20px;
  border-radius: 50%;
}

.widget-latest-news ul li .news-title {
  margin-bottom: 0;
  line-height: 20px;
  margin-left: 100px;
  padding-bottom: 8px;
}

.widget-latest-news ul li .news-title a {
  color: #3b3e43;
  font-weight: 600;
}

.widget-latest-news ul li .news-title:hover a {
  color: #333;
  text-decoration: none;
}

.widget-latest-news ul li .news-date {
  margin-bottom: 15px;
  font-size: 11px;
  color: #acacac;
  text-transform: uppercase;
  font-weight: 600;
}

.widget-latest-news ul li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.widget-recent-comments ul {
  list-style: none;
  margin-bottom: 0;
}

.widget-tab .widget {
  margin-bottom: 0;
}

#secondary .widget .widget-title{
  margin-bottom: 65px;
}

#secondary{
  text-align: center;
}

#secondary .widget .widget-title:after {
  left: 44%;
  position: absolute;
}

#secondary .widget-title:after {
  content: "";
  border-bottom: 2px solid #333;
  display: block;
  width: 50px;
  margin-top: 15px;
}

@media (min-width: 768px ) and ( max-width: 991px ) {
  #secondary .widget .widget-title:after {
    left: 47%;
    position: absolute;
  }
}

@media  ( max-width: 767px ) {
  #secondary .widget .widget-title:after {
    display: none;
  }
}

#secondary .menu>li>a{
  margin-right: 0;
}

#secondary .widget{
  background-color: #fff;
  padding: 25px;
}

.widget select{
  width:100%
}

.widget table{
  width:100%
}

.widget caption, th, td {
  text-align: center;
}

.widget ul.sub-menu {
  padding-left: 20px;
  padding-top: 20px;
}

.widget ul.sub-menu li:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}

form.searchform {
  position: relative;
  margin-bottom: 0;
}

form.searchform input {
  margin-bottom: 0;
  width: 100%;
}

form.searchform .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
}

.search-button {
  position: relative;
  display: inline-block;
  height: 40px;
  cursor: pointer;
  transform-style: preserve-3d;
}

form.searchform .button-search {
  position: absolute;
  top: 0;
  background-color: transparent;
  right: 0;
  border: 0;
  padding: 0;
  border-radius: 0;
  width: 40px;
  height: 100%;
  text-align: center;
  font-size: 14px;
}

.button-search .fa{
  color: #333;
}

.button-search .fa:hover{
  color: #555;
  transition: all 0.3s;
}

.about-me-widget-title{
  color: #333;
  margin-top: 15px;
  margin-bottom: 10px;
}

.about-me-widget img{
  margin: 0 auto;
}

.about-me-widget h6{
  margin-bottom: 10px;
}

.rpwe-block ul{
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.rpwe-block li{
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #d7d7d7;
  list-style-type: none;
  text-align: left;
}

.rpwe-block li:last-of-type{
  border-bottom:none;
}

.rpwe-block a{
  text-decoration: none;
}

.rpwe-img img:hover{
  opacity: 0.8;
  transition: all 0.3s linear 0s;
}

@media(max-width: 991px){
  #secondary .rpwe-block a{
    display: initial !important;
  }
  #secondary .rpwe-alignleft{
    display: inherit !important;
    float: none !important;
  }
  #secondary .rpwe-block li{
    text-align: center;
  }
  #secondary .rpwe-li .rpwe-thumb{
    display: none !important;
  }
}

.rpwe-thumb{
  margin: 2px 10px 2px 0;
}

.rpwe-summary{
  font-size: 12px;
}

.rpwe-time{
  color: #bbb;
  font-size: 11px;
}

.rpwe-comment{
  color: #bbb;
  font-size: 11px;
  padding-left: 5px;
}

.rpwe-alignleft{
  display: inline;
  float: left;
}

.rpwe-alignright{
  display: inline;
  float: right;
}

.rpwe-aligncenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.rpwe-clearfix:before,
.rpwe-clearfix:after{
  content: "";
  display: table !important;
}

.rpwe-clearfix:after{
  clear: both;
}

.rpwe-title a{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
}

.rpwe-title{
  margin-bottom: 5px;
  line-height: 25px;
}

.rpwe-time{
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 16px;
  color: #555;
  text-transform: uppercase;
  font-weight: 600;
}

.widget_nav_menu ul li{
  list-style: none;
  border-bottom: 1px dashed #d7d7d7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.widget_nav_menu ul li:last-of-type{
  border-bottom: none;
}

.widget_nav_menu ul li a {
  font-weight: 600;
  color: #3b3e43;
}

.widget_nav_menu ul li a:hover {
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.tagcloud a{
  background-color:#fff;
  border: 2px solid #333;
  color: #333;
  font-weight: 500;
  display: inline-block;
  line-height: 28px;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 14px !important;
}

.tagcloud a:hover{
  background-color:#333;
  border: 2px solid #333;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s linear 0s;
}

@media (min-width: 768px) and (max-width: 991px) {
  .fb_iframe_widget iframe{
    left:33%
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .fb_iframe_widget iframe{
    left:23%
  }
}

@media (max-width: 499px) {
  .fb_iframe_widget iframe{
    left:18%
  }
}

.footer-logo{
  margin-bottom: 15px;
}

#footer .rpwe-block li{
  border: none;
}

#footer .rpwe-title a{
  font-weight: 600;
  color: #333;
}

#footer .rpwe-title a:hover{
  color: #fff;
}

#footer  .rpwe-summary{
  font-size: 14px;
}

#footer .rpwe-thumb {
  margin: 10px 10px 2px 0;
}

#footer  .rpwe-thumb{
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

#footer .menu-sidebar-menu-container ul li{
  list-style: none;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#footer .menu-sidebar-menu-container ul li a{
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

#footer .menu-sidebar-menu-container ul li a:hover{
  font-weight: 600;
  text-decoration:none;
  color: #333;
}

.about-me-social-icon{
  text-align: center;
}

.about-me-social-icon li{
  display: inline-block;
  margin-right: 15px;
}

.about-me-social-icon li a i {
  color: #333;
  font-size: 18px;
}

.about-me-social-icon li a i:hover {
  color: #555;
  transition: all 0.4s;
}

.footer-bottom-social-wrapper{
  text-align: center;
}

.footer-bottom-social-icon li {
  display: inline-block;
  padding: 0 20px 0 0;
}

.footer-bottom-social-icon li a {
  font-size: 14px;
  color: #3b3e43;
  font-weight: bold;
}

.footer-bottom-social-icon li a i {
  color: #3b3e43;
  font-size: 16px;
  margin-right: 5px;
}

@media (min-width: 992px) and (max-width: 1199px){
  .small-img-sidebar #secondary .widget .widget-title:after {
    left: 47.5%;
  }
  .small-img-sidebar .rpwe-block li{
    text-align: center;
  }
  .small-img-sidebar .rpwe-thumb{
    display: none;
  }
  .small-img-sidebar .fb_iframe_widget iframe {
    left: 35%;
  }
}

.widget_archive ul, .widget_categories ul, .widget_pages ul, .widget_meta ul,
.widget_recent_comments ul, .widget_recent_entries ul, .widget_rss ul{
  text-align: left;
  padding-left: 20px;
}

#footer .menu li {
  list-style: none;
}

#footer .menu li a {
  font-size: 18px;
}

#footer .menu li a:hover {
  text-decoration: none;
  color: #777;
}

#footer .rpwe-thumb {
  margin: 10px 20px 2px 0;
}

#footer .rpwe-summary {
  font-size: 14px;
  padding-right: 30px;
}

#footer .rpwe-block li{
  padding-bottom: 10px;
   margin-bottom: 0;
}

#footer .rpwe-title a:hover {
  color: #777;
}

.newsletter-input {
  border: 2px solid #333;
  color:#333;
}

.newsletter-btn {
  border: 2px solid #333;
  color:#fff;
  background-color: #333;
}

.newsletter-btn:hover {
  border: 2px solid #333;
  background-color: #fff;
  color:#333;
  transition: all 0.3s linear 0s;
}

@media (min-width: 991px) {
  .newsletter-btn {
    width: 100%;
  }
  .newsletter-input {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .mc4wp-form-fields{
    text-align: center;
  }
  .mc4wp-form-fields input{
    display: initial;
    width: 350px;
  }
}


/***********************************************************************************
*	- Carousel
***********************************************************************************/

.main-slider {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.main-slider .owl-prev {
  bottom: 46%;
  color: #999999;
  left: 0;
  padding: 15px 10px;
  position: absolute;
  transition: all 0.3s linear 0s;
  font-size: 20px;
  background-color: #111111;
}

.main-slider .owl-next {
  bottom: 46%;
  color: #999999;
  right: 0;
  padding: 15px 10px;
  position: absolute;
  transition: all 0.3s linear 0s;
  font-size: 20px;
  background-color: #111111;
}

.main-slider .owl-next .fa , .main-slider .owl-prev .fa  {
  color: #fff;
}

.main-slider .owl-next:hover,.main-slider .owl-prev:hover{
  opacity: 0.6;
}

.owl-carousel .owl-item img{
  height: auto;
}

@media (max-width: 767px){
  .main-slider .owl-prev, .main-slider .owl-next{
    display: none !important;
  }
}

.fa {
  color: #333;
}

.carousel-wrapper{
  margin-top: 70px;
  margin-bottom: 30px;
}

.carousel-text{
  font-weight: bold;
  font-size: 44px;
  color: #fff;
  padding: 10px 30px;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .carousel-text{
    font-size: 32px;
    padding: 10px 10px;
  }
  .carousel-category a{
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .carousel-text{
    font-size: 28px;
    padding: 0 10px;
  }
  .carousel-category a{
    font-size: 18px;
  }
  .carousel-date{
    font-size: 16px;
  }
}

.carousel-text:hover{
  color: #e3e3e3;
  transition: all 0.3s;
}

.textoverlay a:hover{
  text-decoration: none;
}

.carousel-date {
  font-family: "Gotham", Helvetica , Arial, sans-serif;;
  color: #fff;
  font-size: 18px;
}

.owl-item {
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.textoverlay {
  text-align: center;
  position: absolute;
  z-index: 10;
  right: 0;
  height: 100%;
  padding-top: 16%;
  left: 0;
  background-image: linear-gradient(to bottom, transparent 0, #000000 200%);
  background-repeat: repeat-x;
}

.main-slider{
  margin-bottom: 40px;
}

.carousel-category a{
  font-size: 20px;
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  color: #fff;
  border-bottom: 1px solid #fff
}

.carousel-category a:hover{
  border-bottom: none;
}

.carousel-category{
  margin-bottom: 0;
}

.comment-body .comment-content p{
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}

.comment-content{
  overflow: hidden;
}

@media (min-width: 992px) {
  .carousel-stm-wrapper {
    padding-top: 100px;
  }
}