/** 
 *------------------------------------------------------------------------------
 * @package       Segue WP Template by TemeGUM
 *------------------------------------------------------------------------------

 TABLE OF CONTENTS:
 1.0 Main structure
	 1.1 Main Container
	 1.2 Menu Bar & Close Bar Button
	 1.3 Slide Sidebar
	 1.4 To Top Button
 2.0 Top Bar & Logo Style
	 2.1 Logo Style
	 2.2 Top Bar Panel
	 2.3 Logo Align
 3.0 Heading
 4.0 Blog
	 4.1 Comment Form
	 4.2 Comment List
	 4.3 Blog Title
	 4.4 Blog Gallery
	 4.5 Blog Post  .top-bar,
  .top-bar .toggle-main-menu {
	 4.6 Blog Page
	 4.7 Blog Teaser
	 4.8 Blog Grid
	 4.9 Single Post
	 4.10 Blog Masonry
 5.0 Pagination
 6.0 Widget & Sidebar
	 6.1 Widget Style
	 6.2 Post Tab Widget
	 6.3 Social Icon Plus Widget
	 6.4 Sidebar
 7.0 Footer
 8.0 Typhography
	 8.1 Heading Markup
	 8.2 Placeholder Style
	 8.3 Blockquote
	 8.4 Images
	 8.5 Button
	 8.6 Flex Video
	 8.7 WP Caption
	 8.8 Table
	 8.9 Nuno Carousel
	 8.10 Post Slider
	 8.11 Instagram Gallery
	 8.12 Social Links
 9.0 Woocommerce Shop
 ---------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
 1.0 Main structure 
 ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------
 1.1. Main Container
 ----------------------------------------------------------------*/
.main-content {
  background: #ffffff;
  padding-bottom: 50px;
  position: relative;
  min-height: 50vh;
}

@media(max-width:767px) {
 .main-content{ padding-top: 0!important } 
}

.main-content .page.content {
  padding-top: 50px;
}
.main-content.hilight-on {
  padding-top: 80px;
}
.content-padding-bottom {
  padding-bottom: 40px;
}
.content-padding-top {
  padding-top: 40px;
}
.page-template-editor_page .main-content {
  padding-bottom: 0;
}
.page-template-editor_page .main-content .page.content {
  padding: 0;
}
.el_column > .inner-column {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.el_row.column_equal_height > .inner-row > .container {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.el_row.column_equal_height.content-align_bottom > .inner-row > .container > .el_column > .inner-column {
  justify-content: flex-end;
}
.el_row.column_equal_height.content-align_center > .inner-row > .container > .el_column > .inner-column {
  justify-content: center;
}
.el_row.column_equal_height.content-align_justify > .inner-row > .container > .el_column > .inner-column {
  justify-content: space-between;
}
.el_column.self-align_center > .inner-column {
  justify-content: center !important;
}
.el_column.self-align_top > .inner-column {
  justify-content: flex-start !important;
}
.el_column.self-align_bottom > .inner-column {
  justify-content: flex-end !important;
}
.el_column.self-align_justify > .inner-column {
  justify-content: space-between !important;
}
html,
body {
  -webkit-transition: all 1s cubic-bezier(0.9, 0.6, 0.4, 1);
  -o-transition: all 1s cubic-bezier(0.9, 0.6, 0.4, 1);
  transition: all 1s cubic-bezier(0.9, 0.6, 0.4, 1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
body.archive .main-content,
body.category .main-content,
body.error404 .main-content,
body.search .main-content,
body.favorite-posts .main-content,
body.page-template-blog .main-content,
body.page-template-default .main-content {
  padding-top: 50px;
}
body.page-template-blank_page {
  padding-left: 20px;
  padding-right: 20px;
}
.main-container {
  position: relative;
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
/*----------------------------------------------------------------
 1.2. Menu Bar & Close Bar Button
 ----------------------------------------------------------------*/
.menu-bar {
  display: block;
}
.menu-bar span {
  width: 24px;
  height: 3px;
  background: #565a5c;
  display: block;
  margin-bottom: 5px;
  border-radius: 1px;
}
.close-bar {
  display: block;
  width: 22px;
  height: 22px;
  border: solid 1px #565a5c;
  position: relative;
}
.close-bar span {
  width: 18px;
  height: 1px;
  background: #565a5c;
  display: block;
  border-radius: 1px;
  position: absolute;
  bottom: 10px;
  left: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.close-bar span:nth-child(1) {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.menu-bar span:last-child {
  margin-bottom: 0;
}
/*----------------------------------------------------------------
 1.3. Slide Sidebar
 ----------------------------------------------------------------*/
.slide-bar {
  display: block;
  width: 31px;
  height: 31px;
  border: solid 1px #565a5c;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.slide-bar span {
  width: 30px;
  height: 0;
  border-top: solid 1px #565a5c;
  display: block;
  border-radius: 1px;
  position: absolute;
  top: 14px;
  left: 6px;
}
.slide-bar span:first-child {
  width: 15px;
  top: 9px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slide-bar span:last-child {
  width: 15px;
  top: 19px;
  left: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slide-bar.right span {
  left: -7px;
}
.slide-bar.right span:first-child {
  width: 15px;
  top: 9px;
  right: 2px;
  left: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slide-bar.right span:last-child {
  width: 15px;
  top: 19px;
  left: auto;
  right: 2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slide-sidebar-overlay {
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  cursor: pointer;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.slide-sidebar-container {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -0-overflow-scrolling: touch;
  overflow-scrolling: touch;
  position: fixed;
  width: 334px;
  height: 100%;
  background-color: #ffffff;
  right: -334px;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
  border: solid 1px #e6e6e6;
  border-top-width: 0;
  border-bottom-width: 0;
  border-right-width: 0;
}
@media (max-width: 850px) {
  .slide-sidebar-container {
    right: -270px;
    width: 270px;
  }
}
.slide-sidebar-container .slide-sidebar-head {
  color: #ffffff;
  background: #565a5c;
  min-height: 93px;
  border-bottom: 1px solid #ffffff;
  padding: 0px 30px;
  position: relative;
  margin-left: -1px;
  margin-right: -1px;
}
.slide-sidebar-container .slide-sidebar-head .search-field {
  background: transparent;
  width: 80%;
  border: none;
}
.slide-sidebar-container .slide-sidebar-head .search-field::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.slide-sidebar-container .slide-sidebar-head .search-field:-ms-input-placeholder {
  color: #ffffff;
}
.slide-sidebar-container .slide-sidebar-head .search-field::-webkit-input-placeholder {
  color: #ffffff;
}
.slide-sidebar-container .slide-sidebar-head .search-btn,
.slide-sidebar-container .slide-sidebar-head .search-field {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slide-sidebar-container .slide-sidebar-head .search-btn {
  font-size: 13px;
}
.slide-sidebar-container .slide-sidebar-wrap {
  padding: 30px;
}
body.slide-bar-left .slide-sidebar-container {
  right: auto;
  left: -334px;
  border-right-width: 1px;
  border-left-width: 0;
}
@media (max-width: 850px) {
  body.slide-bar-left .slide-sidebar-container {
    left: -270px;
  }
}
body.slide-bar-in .slide-sidebar-container {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
body.slide-bar-in .main-container {
  margin-right: 0;
  right: 0;
  position: fixed;
  -webkit-transform: translateX(-334px);
  -ms-transform: translateX(-334px);
  -o-transform: translateX(-334px);
  transform: translateX(-334px);
}
@media (max-width: 992px) {
  body.slide-bar-in .main-container {
    -webkit-transform: translateX(-270px);
    -ms-transform: translateX(-270px);
    -o-transform: translateX(-270px);
    transform: translateX(-270px);
  }
}
body.slide-bar-in .slide-sidebar-overlay {
  display: block;
}
body.slide-bar-in.slide-bar-left .slide-sidebar-container {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
body.slide-bar-in.slide-bar-left .main-container {
  left: 0px;
  right: auto;
  margin-left: 0;
  margin-right: auto;
  -webkit-transform: translateX(334px);
  -ms-transform: translateX(334px);
  -o-transform: translateX(334px);
  transform: translateX(334px);
}
@media (max-width: 992px) {
  body.slide-bar-in.slide-bar-left .main-container {
    -webkit-transform: translateX(270px);
    -ms-transform: translateX(270px);
    -o-transform: translateX(270px);
    transform: translateX(270px);
  }
}
/*----------------------------------------------------------------
 1.4. To Top Button
 ----------------------------------------------------------------*/
#toTop {
  z-index: 10;
  border: solid 1px #ababab;
  padding: 0;
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  display: none;
  vertical-align: middle;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
#toTop span {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  border: solid 1px #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 5px;
  border-width: 1px 0 0 1px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
#toTop:hover {
  background-color: #ababab;
}
@media (max-width: 768px) {
  body #toTop {
    right: 25px;
  }
}
body.mobile #toTop {
  right: 25px;
}
/*-----------------------------------------------------------------------------
 2.0 Top Bar & Logo Style
 ----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
 2.1 Logo Style
 -----------------------------------------------------------------------------*/
#logo {
  padding: 50px;
}
.logo-text {
  text-transform: none;
  margin: 0;
  font-size: 50px;
  line-height: 1.2;
  word-wrap: break-word;
  max-height: 130px;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}
.logo-text,
.logo-text a {
  color: #565a5c;
}
.logo-text span:nth-child(n+4) {
  color: #ababab;
}
.site-slogan {
  font-size: 13px;
  color: #ababab;
  margin-top: 12px;
}
#mobile-logo {
  width: 100%;
  background: #ffffff;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  #mobile-logo {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  #mobile-logo {
    min-height: 133px;
  }
  #mobile-logo .logo-image {
    height: 100%;
  }
  #mobile-logo .logo-image img {
    height: 100%;
    width: auto;
  }
  #mobile-logo .logo-text {
    font-size: 32px;
  }
}
#mobile-logo #logo {
  height: 100%;
  padding: 0;
}
@media (min-width: 480px) {
  #mobile-logo #logo img {
    height: 100%;
    width: auto;
    max-width: unset;
  }
}
/*-----------------------------------------------------------------------------
 2.2 Top Bar Panel
 -----------------------------------------------------------------------------*/
.top-bar {
  background: #ffffff;
  color: #565a5c;
  font-family: 'Lato', sans-serif;
  position: relative;
/*   min-height: 50px; */
  z-index: 2;
/*   -webkit-transition: top 0.4s ease-out;
  -o-transition: top 0.4s ease-out;
  transition: top 0.4s ease-out; */
}
@media (min-width: 768px) {
  .top-bar,
  .top-bar .toggle-main-menu {
 /* min-height: 93px; */
    min-height: 94px;
  }
  .top-bar .top-bar-container {
 /* min-height: 93px; */
    min-height: 94px;
  }
}
@media (max-width: 768px) {
  .top-bar .top-bar-container {
    border-bottom: solid 1px #e6e6e6;
  }
}
.top-bar #logo {
  padding: 30px 50px;
  width: 300px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  background: #ffffff;
  left: 0;
  min-height: 100%;
}
@media (max-width: 1140px) {
  .top-bar #logo {
    padding: 0 20px;
  }
}
.top-bar .mobile-menu-heading,
.top-bar .toggle-main-menu,
.top-bar .expand-menu,
.top-bar .other-menu {
  display: none;
}
.top-bar .toggle-main-menu {
  min-height: 50px;
}
.top-bar .toggle-mobile-menu {
  position: absolute;
  right: 15px;
  z-index: 999999;
}
.top-bar .mobile-menu-heading {
  padding: 15px 0;
}
.top-bar .other-menus {
  list-style: none;
  margin-left: -10px;
  margin-right: -10px;
  padding: 0;
}
.top-bar .other-menus .other-menu-item {
  display: inline-block;
  padding: 0;
  position: relative;
}
.top-bar .other-menus .other-menu-item > a {
  padding: 5px 8px;
}
.top-bar .expand-menu {
  width: 100%;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
}
.top-bar .menu-bar,
.top-bar .menu-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
	
}
.top-bar .menu-title,
.top-bar .menu-text {
  text-transform: capitalize;
}
.top-bar .menu-text {
  left: 0;
}
.top-bar .menu-container {
  width: calc(100% - 600px);
  margin-left: 300px;
  display: inline-block;
} 
@media (max-width: 1210px) {
.top-bar .menu-container {
  width: calc(100% - 700px);
  margin-left: 370px; 
 }
} 
.top-bar .menu-right-wrapper {
  position: absolute;
  width: 250px;
  right: 80px;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top-bar .menu-right {
  padding: 0;
  list-style: none;
  margin: 0;
  text-align: right;
}
.top-bar .menu-right .menu-item {
  display: inline-block;
  padding: 0;
  position: relative;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar .menu-right .menu-item {
    height: 100%!important;
  }
}
.top-bar .menu-right .menu-item a {
  color: #565a5c;
  padding: 0 6px;
}
.top-bar .menu-right .menu-item a:hover,
.top-bar .menu-right .menu-item a:focus {
  color: #2cc09f;
}
.top-bar .menu-right .menu-item > * {
  position: relative;
}
.top-bar .menu-right .menu-item.seach {
  padding-left: 6px;
  padding-right: 6px;
}
.top-bar .menu-right .menu-item.seach .search-field {
  width: 0px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  visibility: hidden;
}
.top-bar .menu-right .menu-item.seach.expand .search-field {
  right: 20px;
  width: 150px;
  visibility: visible;
}
.top-bar .menu-right .menu-item.seach .search-btn {
  cursor: pointer;
}
.top-bar .menu-right .menu-item.pinterer .pin-count {
  position: absolute;
  top: -50%;
  right: -4px;
  color: #fff;
  background: #f6a623;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 100%;
  line-height: 14px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}
.top-bar .menu-right .menu-item.pinterer .pin-count span {
  font-size: 11px;
}
.top-bar .menu-right .menu-item.shop-cart .cart-count {
  position: absolute;
  top: -50%;
  right: -4px;
  color: #fff;
  background: #f6a623;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 100%;
  line-height: 14px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}
.top-bar .menu-right .menu-item.shop-cart .cart-count span {
  font-size: 11px;
}
.top-bar .main-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -1px;
  text-align: center;
  padding-top: 31.5px;
  padding-bottom: 31.5px;
}
@media (max-width: 1140px) {
  .top-bar .main-menu {
    display: none;
  }
}  
.top-bar .main-menu .toggle-dropdown {
  width: 15px;
  height: 100%;
  text-align: right;
  float: right;
}
.top-bar .main-menu .page_item,
.top-bar .main-menu .menu-item {
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.7px;
  text-align: left;
}
.top-bar .main-menu .page_item,
.top-bar .main-menu .menu-item,
.top-bar .main-menu .page_item a,
.top-bar .main-menu .menu-item a {
  color: #565a5c;
}
.top-bar .main-menu .page_item .toggle-dropdown,
.top-bar .main-menu .menu-item .toggle-dropdown {
  position: relative;
}
.top-bar .main-menu .page_item .toggle-dropdown i,
.top-bar .main-menu .menu-item .toggle-dropdown i {
  font-size: 11px;
}
.top-bar .main-menu .page_item.open > .sub-menu-container,
.top-bar .main-menu .menu-item.open > .sub-menu-container,
.top-bar .main-menu .page_item.menu-item-has-children:hover > .sub-menu-container,
.top-bar .main-menu .menu-item.menu-item-has-children:hover > .sub-menu-container,
.top-bar .main-menu .page_item.menu-item-has-children:focus > .sub-menu-container,
.top-bar .main-menu .menu-item.menu-item-has-children:focus > .sub-menu-container,
.top-bar .main-menu .page_item.page_item_has_children:hover > .sub-menu-container,
.top-bar .main-menu .menu-item.page_item_has_children:hover > .sub-menu-container,
.top-bar .main-menu .page_item.page_item_has_children:focus > .sub-menu-container,
.top-bar .main-menu .menu-item.page_item_has_children:focus > .sub-menu-container {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.top-bar .main-menu > .page_item,
.top-bar .main-menu > .menu-item {
  padding: 7px 15px;
}
.top-bar .main-menu > .page_item.menu-item-has-children,
.top-bar .main-menu > .menu-item.menu-item-has-children,
.top-bar .main-menu > .page_item.page_item_has_children,
.top-bar .main-menu > .menu-item.page_item_has_children {
  padding-right: 30px;
}
.top-bar .main-menu > .page_item.menu-item-has-children > a:not(.toggle-dropdown),
.top-bar .main-menu > .menu-item.menu-item-has-children > a:not(.toggle-dropdown),
.top-bar .main-menu > .page_item.page_item_has_children > a:not(.toggle-dropdown),
.top-bar .main-menu > .menu-item.page_item_has_children > a:not(.toggle-dropdown) {
  display: block;
}
.top-bar .main-menu > .page_item.menu-item-has-children .toggle-dropdown,
.top-bar .main-menu > .menu-item.menu-item-has-children .toggle-dropdown,
.top-bar .main-menu > .page_item.page_item_has_children .toggle-dropdown,
.top-bar .main-menu > .menu-item.page_item_has_children .toggle-dropdown {
  position: absolute;
  top: 7px;
  right: 15px;
}
.top-bar .main-menu > .page_item:hover,
.top-bar .main-menu > .menu-item:hover,
.top-bar .main-menu > .page_item:hover > *,
.top-bar .main-menu > .menu-item:hover > * {
  color: #565a5c;
}
.top-bar .main-menu > .page_item > .sub-menu-container,
.top-bar .main-menu > .menu-item > .sub-menu-container {
  padding-top: 11.5px;
}
.top-bar .main-menu .sub-menu-container {
  position: absolute;
  margin-top: -1px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.top-bar .main-menu .sub-menu-container .toggle-dropdown i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.top-bar .main-menu .sub-menu-container .toggle-dropdown i:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top-bar .main-menu .sub-menu-container .menu-item-has-children,
.top-bar .main-menu .sub-menu-container .page_item_has_children {
  padding-right: 25px;
}
.top-bar .main-menu .sub-menu-container .menu-item-has-children > a:not(.toggle-dropdown),
.top-bar .main-menu .sub-menu-container .page_item_has_children > a:not(.toggle-dropdown) {
  display: block;
}
.top-bar .main-menu .sub-menu-container .menu-item-has-children > a.toggle-dropdown,
.top-bar .main-menu .sub-menu-container .page_item_has_children > a.toggle-dropdown {
  position: absolute;
  top: 5px;
  height: 17px;
  right: 18px;
}
.top-bar .main-menu .sub-menu-container .sub-menu {
  padding: 0;
  min-width: 160px;
  border: solid 1px rgba(171, 171, 171, 0.3);
  background: #ffffff;
}
.top-bar .main-menu .sub-menu-container .sub-menu .page_item,
.top-bar .main-menu .sub-menu-container .sub-menu .menu-item {
  width: 100%;
}
.top-bar .main-menu .sub-menu-container .sub-menu .page_item:hover,
.top-bar .main-menu .sub-menu-container .sub-menu .menu-item:hover,
.top-bar .main-menu .sub-menu-container .sub-menu .page_item:focus,
.top-bar .main-menu .sub-menu-container .sub-menu .menu-item:focus {
  background-color: rgba(171, 171, 171, 0.3);
}
.top-bar .main-menu .sub-menu-container .sub-menu .page_item:hover > a,
.top-bar .main-menu .sub-menu-container .sub-menu .menu-item:hover > a,
.top-bar .main-menu .sub-menu-container .sub-menu .page_item:focus > a,
.top-bar .main-menu .sub-menu-container .sub-menu .menu-item:focus > a {
  color: #565a5c;
}
.top-bar .main-menu .sub-menu-container .sub-menu .sub-menu-container {
  left: 100%;
  top: 0;
}
.top-bar .main-menu > .page_item,
.top-bar .main-menu > .menu-item {
  margin-left: -3px;
  margin-right: -3px;
}
.top-bar .main-menu > .page_item > .sub-menu-container,
.top-bar .main-menu > .menu-item > .sub-menu-container {
  left: 0;
  top: 100%;
}
.top-bar .mobile-main-menu {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ffffff;
  list-style: none;
  padding: 0;
  margin-top: -25px;
}
.top-bar .mobile-main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.top-bar .mobile-main-menu .mobile-menu-heading {
  text-align: center;
  cursor: pointer;
}
.top-bar .mobile-main-menu .mobile-menu-heading .menu-title {
  text-transform: uppercase;
}
.top-bar .mobile-main-menu .mobile-menu-heading .toggle-mobile-menu {
  display: none;
}
.top-bar .mobile-main-menu .mobile-menu-heading ~ li {
  display: none;
}
.top-bar .mobile-main-menu:hover > .page_item,
.top-bar .mobile-main-menu:hover > .menu-item {
  display: block;
}
.top-bar .mobile-main-menu .page_item,
.top-bar .mobile-main-menu .menu-item {
  position: relative;
  padding: 0;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.7px;
  text-align: left;
}
.top-bar .mobile-main-menu .page_item,
.top-bar .mobile-main-menu .menu-item,
.top-bar .mobile-main-menu .page_item a,
.top-bar .mobile-main-menu .menu-item a {
  color: #565a5c;
}
.top-bar .mobile-main-menu .page_item > a,
.top-bar .mobile-main-menu .menu-item > a {
  display: block;
  padding: 5px 15px;
  padding-right: 25px;
}
.top-bar .mobile-main-menu .page_item:hover,
.top-bar .mobile-main-menu .menu-item:hover,
.top-bar .mobile-main-menu .page_item:focus,
.top-bar .mobile-main-menu .menu-item:focus {
  background-color: rgba(171, 171, 171, 0.3);
}
.top-bar .mobile-main-menu .page_item:hover > a,
.top-bar .mobile-main-menu .menu-item:hover > a,
.top-bar .mobile-main-menu .page_item:focus > a,
.top-bar .mobile-main-menu .menu-item:focus > a {
  color: #565a5c;
}
.top-bar .mobile-main-menu .page_item.menu-item-has-children > a:after,
.top-bar .mobile-main-menu .menu-item.menu-item-has-children > a:after,
.top-bar .mobile-main-menu .page_item.page_item_has_children > a:after,
.top-bar .mobile-main-menu .menu-item.page_item_has_children > a:after {
  content: '';
  font-size: 0;
  display: block;
  right: 18px;
  top: 11px;
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0;
  border-left: solid 5px #565a5c;
  border-bottom: solid 5px transparent;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.top-bar .mobile-main-menu .page_item.menu-item-has-children.menu-expand > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item.menu-item-has-children.menu-expand > .sub-menu-container,
.top-bar .mobile-main-menu .page_item.page_item_has_children.menu-expand > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item.page_item_has_children.menu-expand > .sub-menu-container {
  opacity: 1;
  visibility: visible;
  height: 100%;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.top-bar .mobile-main-menu .page_item.menu-item-has-children:not(.menu-expand) > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item.menu-item-has-children:not(.menu-expand) > .sub-menu-container,
.top-bar .mobile-main-menu .page_item.page_item_has_children:not(.menu-expand) > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item.page_item_has_children:not(.menu-expand) > .sub-menu-container {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.top-bar .mobile-main-menu .page_item:not(:hover).menu-item-has-children > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item:not(:hover).menu-item-has-children > .sub-menu-container,
.top-bar .mobile-main-menu .page_item:not(:hover).page_item_has_children > .sub-menu-container,
.top-bar .mobile-main-menu .menu-item:not(:hover).page_item_has_children > .sub-menu-container {
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.top-bar .mobile-main-menu .sub-menu-container {
  margin-top: -2px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.top-bar .mobile-main-menu .sub-menu-container .sub-menu {
  padding-top: 2px;
  min-width: 160px;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .top-bar .mobile-main-menu,
  .top-bar .mobile-main-menu .mobile-menu-heading {
    display: block;
  }
}
.top-bar.affix {
  position: fixed;
  z-index: 2;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  width: 100%;
  background: #f9f9f9;
  border-bottom: none;
  top: -94px;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.top-bar.affix .top-bar-container {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  max-width: 1500px;
  border-bottom: 1px solid #e6e6e6;
}
.top-bar.affix #logo {
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-height: 100%;
  height: 100%;
/*   left: 30px; */
  background: transparent;
}
.top-bar.affix #logo img.custom-logo {
  width: auto;
/*   max-height: 60px; */
  height: 60px;
  max-width: unset;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top-bar.affix #logo .logo-text {
  font-size: 32px;
  max-height: 85px;
}
.top-bar.affix #logo .site-slogan {
  display: none;
}
.top-bar.affix #logo .logo-image {
  position: absolute;
  top: 50%;
  height: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top-bar.affix #logo .logo-image .custom-logo-link {
  display: block;
  height: 100%;
  position: relative;
}
body.admin-bar .top-bar.affix {
  top: -61px;
}
body.mobile .top-bar #logo {
  display: none;
}
body.mobile .top-bar .main-menu {
  text-align: left;
}
@media (max-width: 1140px) {
  body.mobile .top-bar .main-menu {
    display: block;
  }
}
body.mobile .slide-bar {
  right: 0px;
}
body.mobile .container {
  padding-left: 25px;
  padding-right: 25px;
}
body.mobile .menu-right {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
body.mobile .menu-right-wrapper {
  width: 100%;
  right: 0 !important;
  left: 0 !important;
  margin-right: 0;
}
body.mobile .menu-right-wrapper .menu-item.seach {
  display: none;
}
body.mobile .main-menu-wrapper.opened {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
body.mobile .main-container.opened {
  position: fixed;
}
body.mobile .main-container.opened .top-bar-container {
  position: absolute;
  z-index: 9999;
}
body.mobile .main-container.opened .menu-container {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
body.mobile .menu-container {
  position: fixed;
  z-index: 99999;
  top: 0;
  margin-left: 0;
  margin-right: 0;
  left: -250px;
  width: 250px;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
body.mobile .menu-container.opened {
  display: block;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
body.mobile .menu-container .main-menu {
  width: 250px;
  position: absolute;
  min-height: 780px;
  height: 100%;
  background: #f2f2f2;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}
body.mobile .menu-container .main-menu > .page_item,
body.mobile .menu-container .main-menu > .menu-item {
  margin-left: 0;
  margin-right: 0;
}
body.mobile .menu-container .main-menu > .page_item.menu-item-has-children > .toggle-dropdown,
body.mobile .menu-container .main-menu > .menu-item.menu-item-has-children > .toggle-dropdown,
body.mobile .menu-container .main-menu > .page_item.page_item_has_children > .toggle-dropdown,
body.mobile .menu-container .main-menu > .menu-item.page_item_has_children > .toggle-dropdown {
  position: relative;
  top: -17px;
  right: 0;
}
body.mobile .menu-container .main-menu .other-menu {
  border-top: solid 1px #ffffff;
  padding: 12px 15px;
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item {
  display: block;
  clear: both;
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item .search-field {
  padding-left: 10px;
  padding-right: 30px;
  width: 100%;
  background-color: rgba(86, 90, 92, 0.1);
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item .search-field::-moz-placeholder {
  color: #565a5c;
  opacity: 1;
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item .search-field:-ms-input-placeholder {
  color: #565a5c;
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item .search-field::-webkit-input-placeholder {
  color: #565a5c;
}
body.mobile .menu-container .main-menu .other-menu .seach.other-menu-item .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.mobile .menu-container .main-menu .other-menu .pinterer .pin-count {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #f6a623;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 100%;
  line-height: 14px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}
body.mobile .menu-container .main-menu .other-menu .pinterer .pin-count span {
  font-size: 11px;
}
body.mobile .menu-container .main-menu .other-menu .shop-cart .cart-count {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #f6a623;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border-radius: 100%;
  line-height: 14px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}
body.mobile .menu-container .main-menu .other-menu .shop-cart .cart-count span {
  font-size: 11px;
}
body.mobile .menu-container .main-menu .menu-item,
body.mobile .menu-container .main-menu .page_item {
  display: block;
  position: unset;
  border-top: solid 1px #ffffff;
  padding: 12px 15px;
}
body.mobile .menu-container .main-menu .menu-item.menu-item-has-children:not(.open):hover > .sub-menu-container,
body.mobile .menu-container .main-menu .page_item.menu-item-has-children:not(.open):hover > .sub-menu-container,
body.mobile .menu-container .main-menu .menu-item.menu-item-has-children:not(.open):focus > .sub-menu-container,
body.mobile .menu-container .main-menu .page_item.menu-item-has-children:not(.open):focus > .sub-menu-container,
body.mobile .menu-container .main-menu .menu-item.page_item_has_children:not(.open):hover > .sub-menu-container,
body.mobile .menu-container .main-menu .page_item.page_item_has_children:not(.open):hover > .sub-menu-container,
body.mobile .menu-container .main-menu .menu-item.page_item_has_children:not(.open):focus > .sub-menu-container,
body.mobile .menu-container .main-menu .page_item.page_item_has_children:not(.open):focus > .sub-menu-container {
  display: none;
}
body.mobile .menu-container .main-menu .menu-item:hover,
body.mobile .menu-container .main-menu .page_item:hover,
body.mobile .menu-container .main-menu .menu-item:focus,
body.mobile .menu-container .main-menu .page_item:focus {
  background-color: rgba(86, 90, 92, 0.1);
}
body.mobile .menu-container .main-menu .menu-item .toggle-dropdown,
body.mobile .menu-container .main-menu .page_item .toggle-dropdown {
  float: right;
}
body.mobile .menu-container .main-menu .menu-item .toggle-dropdown i:before,
body.mobile .menu-container .main-menu .page_item .toggle-dropdown i:before {
  content: '';
  width: 8px;
  height: 8px;
  display: block;
  border-right: solid 1px;
  border-bottom: solid 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.mobile .menu-container .main-menu .sub-menu-container {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #f2f2f2;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  margin-top: 0;
}
body.mobile .menu-container .main-menu .sub-menu-container .sub-menu {
  border-color: transparent;
}
body.mobile .menu-container .main-menu .sub-menu-container .sub-menu .sub-menu-container {
  left: 0;
}
body.mobile .menu-container .main-menu .sub-menu-container .expand-menu {
  display: block;
  padding: 15px;
}
body.mobile .menu-container .main-menu .sub-menu-container .expand-menu:hover,
body.mobile .menu-container .main-menu .sub-menu-container .expand-menu:focus {
  background-color: rgba(86, 90, 92, 0.1);
}
body.mobile .menu-container .main-menu .sub-menu-container .toggle-dropdown {
  position: relative;
  top: -20px;
  text-align: right;
}
body.mobile .menu-container .main-menu .sub-menu-container .toggle-dropdown i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
body.mobile .menu-container .main-menu .sub-menu {
  background: #f2f2f2;
}
body.mobile.logo-center .menu-container {
  margin-left: 0;
  width: 100%;
}
body.mobile .toggle-main-menu,
body.mobile .mobile-menu-heading,
body.mobile .other-menu {
  display: block;
}
body.mobile .top-bar-container {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
}
body.mobile .navigation-container {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 480px) {
  body .top-bar #logo {
    display: none;
  }
  body .top-bar .main-menu {
    text-align: left;
  }
  body .slide-bar {
    right: 0px;
  }
  body .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  body .menu-right {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
  }
  body .menu-right-wrapper {
    width: 100%;
    right: 0 !important;
    left: 0 !important;
    margin-right: 0;
  }
  body .menu-right-wrapper .menu-item.seach {
    display: none;
  }
  body .main-menu-wrapper.opened {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
  }
  body .main-container.opened {
    position: fixed;
  }
  body .main-container.opened .top-bar-container {
    position: absolute;
    z-index: 9999;
  }
  body .main-container.opened .menu-container {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  body .menu-container {
    position: fixed;
    z-index: 99999;
    top: 0;
    margin-left: 0;
    margin-right: 0;
    left: -250px;
    width: 250px;
    -webkit-transition-property: transform;
    -o-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  body .menu-container.opened {
    display: block;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  body .menu-container .main-menu {
    width: 250px;
    position: absolute;
    min-height: 780px;
    height: 100%;
    background: #f2f2f2;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  body .menu-container .main-menu > .page_item,
  body .menu-container .main-menu > .menu-item {
    margin-left: 0;
    margin-right: 0;
  }
  body .menu-container .main-menu > .page_item.menu-item-has-children > .toggle-dropdown,
  body .menu-container .main-menu > .menu-item.menu-item-has-children > .toggle-dropdown,
  body .menu-container .main-menu > .page_item.page_item_has_children > .toggle-dropdown,
  body .menu-container .main-menu > .menu-item.page_item_has_children > .toggle-dropdown {
    position: relative;
    top: -17px;
    right: 0;
  }
  body .menu-container .main-menu .other-menu {
    border-top: solid 1px #ffffff;
    padding: 12px 15px;
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item {
    display: block;
    clear: both;
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item .search-field {
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    background-color: rgba(86, 90, 92, 0.1);
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item .search-field::-moz-placeholder {
    color: #565a5c;
    opacity: 1;
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item .search-field:-ms-input-placeholder {
    color: #565a5c;
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item .search-field::-webkit-input-placeholder {
    color: #565a5c;
  }
  body .menu-container .main-menu .other-menu .seach.other-menu-item .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  body .menu-container .main-menu .other-menu .pinterer .pin-count {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #f6a623;
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border-radius: 100%;
    line-height: 14px;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
  }
  body .menu-container .main-menu .other-menu .pinterer .pin-count span {
    font-size: 11px;
  }
  body .menu-container .main-menu .other-menu .shop-cart .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #f6a623;
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border-radius: 100%;
    line-height: 14px;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
  }
  body .menu-container .main-menu .other-menu .shop-cart .cart-count span {
    font-size: 11px;
  }
  body .menu-container .main-menu .menu-item,
  body .menu-container .main-menu .page_item {
    display: block;
    position: unset;
    border-top: solid 1px #ffffff;
    padding: 12px 15px;
  }
  body .menu-container .main-menu .menu-item.menu-item-has-children:not(.open):hover > .sub-menu-container,
  body .menu-container .main-menu .page_item.menu-item-has-children:not(.open):hover > .sub-menu-container,
  body .menu-container .main-menu .menu-item.menu-item-has-children:not(.open):focus > .sub-menu-container,
  body .menu-container .main-menu .page_item.menu-item-has-children:not(.open):focus > .sub-menu-container,
  body .menu-container .main-menu .menu-item.page_item_has_children:not(.open):hover > .sub-menu-container,
  body .menu-container .main-menu .page_item.page_item_has_children:not(.open):hover > .sub-menu-container,
  body .menu-container .main-menu .menu-item.page_item_has_children:not(.open):focus > .sub-menu-container,
  body .menu-container .main-menu .page_item.page_item_has_children:not(.open):focus > .sub-menu-container {
    display: none;
  }
  body .menu-container .main-menu .menu-item:hover,
  body .menu-container .main-menu .page_item:hover,
  body .menu-container .main-menu .menu-item:focus,
  body .menu-container .main-menu .page_item:focus {
    background-color: rgba(86, 90, 92, 0.1);
  }
  body .menu-container .main-menu .menu-item .toggle-dropdown,
  body .menu-container .main-menu .page_item .toggle-dropdown {
    float: right;
  }
  body .menu-container .main-menu .menu-item .toggle-dropdown i:before,
  body .menu-container .main-menu .page_item .toggle-dropdown i:before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    border-right: solid 1px;
    border-bottom: solid 1px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  body .menu-container .main-menu .sub-menu-container {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f2f2f2;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    margin-top: 0;
  }
  body .menu-container .main-menu .sub-menu-container .sub-menu {
    border-color: transparent;
  }
  body .menu-container .main-menu .sub-menu-container .sub-menu .sub-menu-container {
    left: 0;
  }
  body .menu-container .main-menu .sub-menu-container .expand-menu {
    display: block;
    padding: 15px;
  }
  body .menu-container .main-menu .sub-menu-container .expand-menu:hover,
  body .menu-container .main-menu .sub-menu-container .expand-menu:focus {
    background-color: rgba(86, 90, 92, 0.1);
  }
  body .menu-container .main-menu .sub-menu-container .toggle-dropdown {
    position: relative;
    top: -5px;
    text-align: right;
  }
  body .menu-container .main-menu .sub-menu-container .toggle-dropdown i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  body .menu-container .main-menu .sub-menu {
    background: #f2f2f2;
  }
  body.logo-center .menu-container {
    margin-left: 0;
    width: 100%;
  }
  body .toggle-main-menu,
  body .mobile-menu-heading,
  body .other-menu {
    display: block;
  }
  body .top-bar-container {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
  }
  body .navigation-container {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
  }
}
/*-----------------------------------------------------------------------------
 2.3 Logo Align
 -----------------------------------------------------------------------------*/
body.logo-center .top-bar #logo {
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.logo-center .logo-image {
  text-align: center;
}
body.logo-center .top-bar.affix #logo {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.logo-center .top-bar.affix #logo .logo-image {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.logo-center .menu-container {
  margin-left: 30px;
  width: calc(50% - 200px);
}
body.logo-center .menu-container .main-menu {
  text-align: left;
}
body.logo-center .mobile-main-menu {
  left: 20px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
body.logo-center .mobile-main-menu .mobile-menu-heading {
  padding-left: 15px;
  text-align: left;
}
body.logo-right .top-bar #logo {
  left: unset;
  right: 0;
}
body.logo-right .top-bar #logo .menu-container {
  margin-left: 0;
  margin-right: 20%;
  float: right;
}
body.logo-right .top-bar.affix #logo {
  right: 30px;
  left: unset;
}
body.logo-right .top-bar.affix #logo .logo-image {
  right: 30px;
}
body.logo-right .top-bar .menu-right-wrapper {
  left: 50px;
  right: unset;
  text-align: right;
}
body.logo-right .slide-bar {
  left: 30px;
  right: unset;
}
/*-----------------------------------------------------------------------------
 3.0 Heading
 ----------------------------------------------------------------------------*/
.section-heading {
  min-height: 480px;
  background: #f9f9f9;
  padding-bottom: 40px;
  position: relative;
}
@media(max-width:767px){  
	.section-heading { min-height: 140px }
}
.section-heading .wp-custom-header {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.section-heading .wp-custom-header .flex-video {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-height: 200%;
  width: auto;
  height: auto;
  overflow: hidden;
}
.section-heading .wp-custom-header img {
  position: absolute;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  max-width: 200%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.section-heading .wp-custom-header .heading-fixed img {
  position: fixed;
  max-width: 1500px;
}
@media (min-width: 1219px) {
  .section-heading .wp-custom-header .heading-fixed img {
    min-width: 1500px;
  }
}
.section-heading .custom-page-title {
  position: absolute;
  left: 50%;
  width: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.section-heading .custom-page-title .page-title-wrap {
  padding: 40px;
  text-align: center;
  width: 100%;
  background: #f9f9f9;
  color: #565a5c;
}
.section-heading .custom-page-title .page-title {
  margin-top: 5px;
  margin-bottom: 0;
}
.section-heading .custom-page-title .category-label {
  color: #ababab;
}
.section-heading .custom-page-title .category-name i {
  margin-right: 10px;
  font-size: 22px;
}
.section-heading .custom-page-title .page-description {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .section-heading .page-description {
    display: none;
  }
  .section-heading .custom-page-title {
    width: 100%;
    bottom: 0;
    padding: 0 25px;
    background: transparent;
  }
  .section-heading .custom-page-title .page-title-wrap {
    padding: 25px;
  }
}
@media (min-width: 1219px) {
  body.home:not(.favorite-posts) .section-heading,
  .single-post .section-heading .owl-item,
  .single-post .section-heading .wp-custom-header,
  .single-post .section-heading .wp-custom-header {
    height: 660px;
    min-height: 660px;
  }
  body.home:not(.favorite-posts) .section-heading .wp-custom-header {
    height: 600px;
  }
}
/*-----------------------------------------------------------------------------
 4.0 Blog
 ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------
 4.1. Comment Form
 ----------------------------------------------------------------*/
.blogCommentsForm {
  display: none;
}
#replayform {
  position: relative;
}
#replayform .form-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  background: transparent;
  display: none;
}
#replayform .form-overlay .spiner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 11;
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#replayform .form-overlay.show {
  display: block;
}
#replayform .form-overlay.show .spiner {
  -webkit-animation: fa-spin 1s infinite linear;
  -o-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
}
.comment-respond .heading {
  margin-bottom: 18px;
}
.comment-respond .required {
  border-color: red;
}
.comment-respond .comment-notes {
  color: #ababab;
}
.comment-respond #cancel-comment-reply-link {
  float: right;
  font-size: 13px;
  margin-top: 40px;
  position: absolute;
  right: 20px;
  z-index: 1;
}
.comment-respond .comment-form {
  font-size: 12px;
}
.comment-respond .comment-form input,
.comment-respond .comment-form textarea,
.comment-respond .comment-form .button {
  margin-bottom: 10px;
  width: 100%;
}
.comment-respond .comment-form .row {
  margin-left: -15px;
  margin-right: -15px;
}
.comment-respond .comment-form .row > div {
  padding-left: 15px;
  padding-right: 15px;
}
.comment-respond .comment-form .form-submit .button {
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 0.7px;
  font-weight: bold;
  width: auto;
  background-color: #565a5c;
  color: #ffffff;
  font-size: 14px;
  box-shadow: none;
  border: none;
}
.comment-respond#blogrespond .comment-form .form-submit .button {
  margin: 0;
  width: 100%;
}
.comment-respond#blogrespond #cancel-comment-reply-link {
  margin-top: 0px;
}
/*----------------------------------------------------------------
 4.2. Comment List
 ----------------------------------------------------------------*/
.content-comments .comment-list {
  list-style: none;
  padding-left: 0;
}
.content-comments .comment-list .comment {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content-comments .comment-list .comment .bottom-devider {
  margin-bottom: 35px;
  margin-top: 40px;
}
.content-comments .comment-list .comment .comment-collapse {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3.2px;
}
@media (min-width: 768px) {
  .content-comments .comment-list .comment .comment-collapse {
    display: none;
  }
}
.content-comments .comment-list .comment.expanded-in {
  margin-left: -70px;
}
.content-comments .comment-list .comment .children.collapse-in {
  display: block;
}
.content-comments .comment-list .comment-body {
  position: relative;
  margin-left: 64px;
  padding-left: 20px;
  margin-top: 20px;
}
.content-comments .comment-list .comment-body .author-avatar {
  max-width: 52px;
  max-height: 52px;
  position: absolute;
  left: -64px;
}
.content-comments .comment-list .comment-body .comment-author {
  font-weight: bold;
  font-size: 14px;
  font-family: 'Playfair Display', serif;
}
.content-comments .comment-list .comment-body .comment-text {
  font-size: 13px;
  line-height: 20px;
  margin-top: 8px;
  letter-spacing: 0.4px;
}
.content-comments .comment-list .comment-body .comment-meta {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.content-comments .comment-list .comment-body .comment-meta,
.content-comments .comment-list .comment-body .comment-meta a {
  color: #ababab;
}
.content-comments .comment-list .comment-body .comment-meta .comment-edit-link,
.content-comments .comment-list .comment-body .comment-meta .comment-reply-link {
  color: #565a5c;
}
.content-comments .comment-list .pingback .comment-body {
  margin-left: 0;
  padding-left: 0;
}
.content-comments .comment-list > .comment > .comment-body {
  border-left: solid 3px #e6e6e6;
}
.content-comments .comment-list .depth-1 > .children {
  padding-left: 88px;
}
.content-comments .comment-list .depth-2 .comment-body {
  padding-left: 0;
  margin-left: 35px;
}
.content-comments .comment-list .depth-2 .author-avatar {
  left: -35px;
}
.content-comments .comment-list .children {
  list-style: none;
  padding-left: 35px;
}
.content-comments .comment-list .children .author-avatar {
  max-width: 26px;
  max-height: 26px;
  position: absolute;
}
body.mobile .comment #respond {
  position: absolute;
  z-index: 1;
  width: calc(100% - 50px);
  left: 0;
  margin-left: 25px;
  margin-right: 25px;
  padding-left: 15px;
  padding-right: 15px;
  background: #f9f9f9;
}
body.mobile .comment .comment-collapse + .children {
  display: none;
}
@media (max-width: 480px) {
  body .comment #respond {
    position: absolute;
    background: #ffffff;
    z-index: 1;
    width: 100%;
    left: 0;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  body .comment .comment-collapse + .children {
    display: none;
  }
}
/*----------------------------------------------------------------
 4.3. Blog Title
 ----------------------------------------------------------------*/
.post-title {
  margin-top: 0;
  margin-bottom: 5px;
}
.post-title,
.post-title a {
  color: #565a5c;
}
.post-title:hover a,
.post-title a:hover a,
.post-title a:hover,
.post-title a a:hover {
  color: #ababab;
}
.post-metainfo {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.post-metainfo .metainfo {
  font-size: 13px;
  text-transform: capitalize;
  display: inline-block;
}
.post-metainfo .metainfo > span,
.post-metainfo .metainfo.date-info {
  color: #ababab;
}
.post-metainfo .metainfo ul {
  list-style: none;
  padding: 0;
  display: inline;
}
.post-metainfo .metainfo.post-format-info {
  padding-right: 0.5em;
  font-size: 1em;
  color: #565a5c;
  vertical-align: bottom;
}
.post-metainfo .metainfo.categories-info {
  max-width: calc(100% - 2.5em);
}
.post-metainfo .metainfo.categories-info .post-categories {
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  display: block;
  line-height: 1em;
  margin-bottom: 0;
}
.post-metainfo .metainfo li {
  display: inline-block;
}
.bottom-devider {
  margin: 25px 0 25px;
  position: relative;
  clear: both;
  display: block;
}
@-webkit-keyframes article-moveDown {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes article-moveDown {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/*----------------------------------------------------------------
 4.4. Blog Gallery
 ----------------------------------------------------------------*/
.gallery {
  margin-left: -5px;
  margin-right: -5px;
}
.gallery .gallery-item {
  float: left;
  width: 100%;
  padding: 5px;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}
.gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
  width: 16.666%;
}
.gallery.gallery-columns-7 .gallery-item {
  width: 14.285%;
}
.gallery.gallery-columns-8 .gallery-item {
  width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
  width: 11.111%;
}
/*----------------------------------------------------------------
 4.5. Blog Post
 ----------------------------------------------------------------*/
article {
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
article .post-categories {
  list-style: none;
  padding: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.8px;
}
article .post-categories li {
  display: inline-block;
}
article .post-categories,
article .post-categories a {
  color: #565a5c;
}
article .date-info {
  text-align: left;
  font-size: 11px;
  margin-bottom: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
article .date-info i {
  font-size: 6px;
  padding: 0 5px;
}
article.in-queue {
  -webkit-animation: article-moveDown 0.3s ease-in;
  -o-animation: article-moveDown 0.3s ease-in;
  animation: article-moveDown 0.3s ease-in;
}
article .content-full *,
article .content-excerpt * {
  max-width: 100%;
}
article .content-excerpt p {
  margin-bottom: 0;
}
article .blog-image,
article .tgum-gallery {
  background-position: center;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
article .blog-image img,
article .tgum-gallery img {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
article .blog-image {
  height: 50vw;
}
article .blog-image .flex-video {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-height: 200%;
  width: auto;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  article .blog-image {
    height: 20vw;
  }
}
article .blog-image,
article .blog-audio,
article .blog-gallery {
  overflow: hidden;
}
article .soundcloud-media iframe {
  border: none;
  width: 100%;
  overflow: hidden;
}
article .soundcloud-media iframe .sc-media {
  height: 100%;
}
article .soundcloud-media iframe .compactSound__artwork {
  height: 100%!important;
}
article .soundcloud-media .compactSound__artwork {
  height: 100%!important;
}
article .blog-carousel {
  height: 50vw;
  clear: both;
}
@media (min-width: 992px) {
  article .blog-carousel {
    height: 20vw;
  }
}
article .blog-carousel .nav-btn {
  width: 27px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  display: block;
  position: relative;
  float: left;
}
article .blog-carousel .nav-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
article .blog-carousel .nav-btn.next {
  float: right;
  margin-left: auto;
}
article .blog-carousel .post-gallery-carousel-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
article .blog-carousel .post-gallery-carousel,
article .blog-carousel .post-gallery-carousel .carousel-inner,
article .blog-carousel .post-gallery-carousel .item {
  height: 100%;
}
article .blog-carousel .post-gallery-carousel .item {
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
article .blog-carousel .post-gallery-carousel .item img {
  position: absolute;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  max-width: 200%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
article .blog-carousel:hover .post-gallery-carousel-nav,
article .blog-carousel:focus .post-gallery-carousel-nav {
  opacity: 1;
  visibility: visible;
}
article .blog-gallery {
  height: 50vw;
  width: 100%;
  background: transparent;
  position: relative;
}
@media (min-width: 992px) {
  article .blog-gallery {
    height: 20vw;
  }
}
article .blog-gallery .tgum-gallery {
  background-position: center;
  background-size: cover;
  float: left;
  outline: solid 2px #ffffff;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), width 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), height 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  -moz-transition: -moz-transform 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), width 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), height 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  -o-transition: -o-transform 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), width 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), height 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  transition: transform 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), width 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6), height 0.2s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
article .blog-gallery .tgum-gallery .read-more {
  color: #fff;
  font-size: 18px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 480px) {
  article .blog-gallery .tgum-gallery .read-more {
    font-size: 24px;
  }
}
article .blog-gallery .tgum-gallery .read-more .num-gal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
article .blog-gallery .tgum-gallery.video {
  overflow: hidden;
}
article .blog-gallery .tgum-gallery.video .flex-video iframe {
  height: 200%;
}
article .blog-gallery.grid-1 .tgum-gallery {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(1, 1.4, 0.6, 1);
  -moz-transition: -moz-transform 0.6s cubic-bezier(1, 1.4, 0.6, 1);
  -o-transition: -o-transform 0.6s cubic-bezier(1, 1.4, 0.6, 1);
  transition: transform 0.6s cubic-bezier(1, 1.4, 0.6, 1);
}
article .blog-gallery.grid-1 .tgum-gallery:hover {
  width: 100%;
  outline-width: 0;
  -webkit-transform: scale(2) rotate(2deg);
  -moz-transform: scale(2) rotate(2deg);
  -ms-transform: scale(2) rotate(2deg);
  transform: scale(2) rotate(2deg);
}
article .blog-gallery.grid-1 .tgum-gallery.video.flex-video iframe {
  height: 100%;
}
article .blog-gallery.grid-2 .tgum-gallery {
  width: 50%;
}
article .blog-gallery.grid-2 .tgum-gallery:hover {
  width: 100%;
  outline-width: 0;
}
article .blog-gallery.grid-2 .tgum-gallery:hover + .tgum-gallery {
  width: 0;
}
article .blog-gallery.grid-2 .tgum-gallery:nth-child(n+2) {
  right: 0;
  left: unset;
}
article .blog-gallery.grid-3 .tgum-gallery {
  width: 50%;
}
article .blog-gallery.grid-3 .tgum-gallery:hover {
  width: 100%;
  z-index: 1;
}
article .blog-gallery.grid-3 .tgum-gallery:nth-child(1):hover ~ .tgum-gallery {
  width: 0;
}
article .blog-gallery.grid-3 .tgum-gallery:nth-child(n+2) {
  right: 0;
  top: 0;
  left: unset;
  width: 50%;
  height: 50%;
}
article .blog-gallery.grid-3 .tgum-gallery:nth-child(n+2):hover {
  height: 100%;
  width: 100%;
}
article .blog-gallery.grid-3 .tgum-gallery:nth-child(n+3) {
  right: 0;
  bottom: 0;
  top: unset;
}
article .blog-gallery.grid-4 .tgum-gallery {
  width: 50%;
}
article .blog-gallery.grid-4 .tgum-gallery:hover {
  width: 100%;
  height: 100%;
  z-index: 1;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+2) {
  right: 0;
  top: 0;
  left: unset;
  width: 50%;
  height: 50%;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+2):hover {
  height: 100%;
  width: 100%;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+3) {
  right: 25%;
  bottom: 0;
  top: unset;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+3) {
  width: 25%;
  height: 50%;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+3):hover {
  -webkit-transform: translateX(25%);
  -ms-transform: translateX(25%);
  -o-transform: translateX(25%);
  transform: translateX(25%);
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(4) {
  right: 0;
}
article .blog-gallery.grid-4 .tgum-gallery:nth-child(4):hover {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
article .read-more-prefix span {
  padding-right: 2px;
}
article .read-more {
  color: #ffffff;
  background-color: #055EA4;
  border-color: #055EA4;
  text-transform: uppercase;
  clear: both;
  margin-left: 15px;
}
article .read-more:focus,
article .read-more.focus {
  color: #ffffff;
  background-color: #22977d;
  border-color: #145849;
}
article .read-more:hover {
  color: #ffffff;
  background-color: #22977d;
  border-color: #218e76;
}
article .read-more:active,
article .read-more.active,
.open > .dropdown-togglearticle .read-more {
  color: #ffffff;
  background-color: #22977d;
  border-color: #218e76;
}
article .read-more:active:hover,
article .read-more.active:hover,
.open > .dropdown-togglearticle .read-more:hover,
article .read-more:active:focus,
article .read-more.active:focus,
.open > .dropdown-togglearticle .read-more:focus,
article .read-more:active.focus,
article .read-more.active.focus,
.open > .dropdown-togglearticle .read-more.focus {
  color: #ffffff;
  background-color: #1c7965;
  border-color: #145849;
}
article .read-more:active,
article .read-more.active,
.open > .dropdown-togglearticle .read-more {
  background-image: none;
}
article .read-more.disabled:hover,
article .read-more[disabled]:hover,
fieldset[disabled] article .read-more:hover,
article .read-more.disabled:focus,
article .read-more[disabled]:focus,
fieldset[disabled] article .read-more:focus,
article .read-more.disabled.focus,
article .read-more[disabled].focus,
fieldset[disabled] article .read-more.focus {
  background-color: #055EA4;
  border-color: #055EA4;
}
article .read-more .badge {
  color: #055EA4;
  background-color: #ffffff;
}
article .read-more:hover,
article .read-more:focus {
  color: #055EA4;
  background: #ffffff;
}
article .post-toolbars {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  font-size: 12px;
  text-transform: capitalize;
  width: 100%;
  line-height: 1.5;
  border-top: solid 1px #e6e6e6;
}
article .post-toolbars i {
  font-size: 12px;
}
article .post-toolbars .toolbar {
  padding: 15px;
  display: inline-block;
  position: relative;
  text-align: center;
  border-right: solid 1px #e6e6e6;
}
article .post-toolbars .toolbar:hover .label {
  opacity: 1;
  display: block;
}
article .post-toolbars .toolbar i {
  padding: 0 3px;
}
article .post-toolbars .toolbar .label {
  color: #ffffff;
  background: #565a5c;
  padding: 12px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 4px;
  display: none;
  position: absolute;
  bottom: 150%;
  left: 50%;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  -o-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
  opacity: 0;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: capitalize;
  z-index: 1;
}
article .post-toolbars .toolbar .label:after {
  display: block;
  content: '';
  width: 0px;
  height: 0px;
  border: solid 1px #565a5c;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-left: solid 10px #565a5c;
  border-bottom: solid 10px transparent;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  -moz-transform: rotate(-135deg) translateY(-50%);
  -ms-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
article .post-toolbars .toolbar.toolbar-shared:hover .share-action {
  display: block;
  opacity: 1;
}
article .post-toolbars .toolbar.toolbar-shared .share-action {
  list-style: none;
  background: #565a5c;
  padding: 10px 13px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 4px;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 8px);
  -ms-transform: translate(-50%, 8px);
  -o-transform: translate(-50%, 8px);
  transform: translate(-50%, 8px);
  opacity: 0;
  z-index: 1;
}
article .post-toolbars .toolbar.toolbar-shared .share-action .share-label {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}
article .post-toolbars .toolbar.toolbar-shared .share-action,
article .post-toolbars .toolbar.toolbar-shared .share-action a {
  color: #ffffff;
}
article .post-toolbars .toolbar.toolbar-shared .share-action li {
  min-width: 15px;
  display: inline-block;
}
article .post-toolbars .toolbar.toolbar-shared .share-action i {
  margin-left: 0;
  margin-right: 0;
}
article .post-toolbars .toolbar.toolbar-shared .share-action:after {
  display: block;
  content: '';
  width: 0px;
  height: 0px;
  border: solid 1px #565a5c;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-left: solid 10px #565a5c;
  border-bottom: solid 10px transparent;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  -moz-transform: rotate(-135deg) translateY(-50%);
  -ms-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
article .post-toolbars .toolbar.toolbar-shared .share-action:hover {
  display: block;
  opacity: 1;
}
article .post-toolbars .toolbar .pin-tool.pinned i,
article .post-toolbars .toolbar.toolbar-likes.liked i {
  color: #ec4b61;
}
article .post-toolbars .toolbar .pin-tool.pinned i .spinner i,
article .post-toolbars .toolbar.toolbar-likes.liked i .spinner i {
  color: inherit;
}
article .post-toolbars .toolbar:last-child {
  border-right: none;
}
article .post-toolbars .toolbar i {
  position: relative;
}
article .post-toolbars .toolbar .spinner {
  display: none;
}
article .post-toolbars .toolbar .spinner .fa-refresh {
  -webkit-animation: fa-spin 1s infinite linear;
  -o-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
}
article .post-toolbars.single-post {
  text-align: center;
}
article .post-toolbars.single-post .toolbar-date {
  text-align: left;
  float: left;
  font-size: 11px;
  letter-spacing: 0.16em;
}
article .post-toolbars.single-post .toolbar-date .date,
article .post-toolbars.single-post .toolbar-date a {
  text-transform: uppercase;
}
article .post-toolbars.single-post .toolbar-date i {
  font-size: 6px;
  padding-left: 5px;
  padding-right: 5px;
}
article .post-toolbars.single-post .toolbar-date {
  border-bottom: solid 1px #e6e6e6;
  border-right: none;
  width: 100%;
  display: block;
  clear: both;
}
@media (max-width: 480px) {
  article .post-toolbars.single-post .toolbar {
    padding: 10px;
  }
}
@media (min-width: 480px) {
  article .post-toolbars.single-post .toolbar-shared .fa-share-alt {
    display: none;
  }
  article .post-toolbars.single-post .toolbar-shared .share-action {
    display: block;
    opacity: 1;
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    bottom: unset;
    padding: 0;
    left: 0;
    line-height: inherit;
    border: none;
    background: none;
  }
  article .post-toolbars.single-post .toolbar-shared .share-action,
  article .post-toolbars.single-post .toolbar-shared .share-action a {
    color: #565a5c;
  }
  article .post-toolbars.single-post .toolbar-shared .share-action .share-label,
  article .post-toolbars.single-post .toolbar-shared .share-action:after {
    display: none;
  }
}
@media (min-width: 768px) {
  article .post-toolbars.single-post {
    text-align: right;
  }
  article .post-toolbars.single-post .toolbar-date {
    border-bottom: none;
    display: inline-block;
    width: auto;
  }
}
article .content-full p::first-word {
  font-weight: bold;
}
article .author-profile {
  line-height: 1.67;
  width: 100%;
  padding: 35px 0;
  display: inline-block;
  border-bottom: solid 1px #e6e6e6;
  margin-bottom: -8px;
}
article .author-profile .itemAuthorName {
  margin: 0 0 5px 0;
  font-weight: normal;
  color: #ababab;
  text-transform: capitalize;
}
article .author-profile .itemAuthorName a {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
}
article .author-profile .author-social-network {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}
article .author-profile .author-social-network li {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}
article .author-profile .author-social-network li,
article .author-profile .author-social-network li a {
  color: #ababab;
}
article .author-profile .avatar {
  width: 112px;
  height: 112px;
  float: left;
  margin-right: 20px;
  border-radius: 100%;
}
article .author-profile .avatar + .itemAuthorDetails {
  width: -webkit-calc(100% - 132px);
  width: -moz-calc(100% - 132px);
  width: -ms-calc(100% - 132px);
  width: -o-calc(100% - 132px);
  width: calc(100% - 132px);
  float: right;
}
article .adjacent-posts {
  display: inline-block;
  height: 100%;
  width: 100%;
  border-bottom: solid 1px #e6e6e6;
  padding: 0;
  position: relative;
}
@media (min-width: 480px) {
  article .adjacent-posts:before {
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    background: #e6e6e6;
    position: absolute;
    left: 50%;
  }
}
article .adjacent-post {
  width: 100%;
  float: left;
  padding: 25px 0;
}
@media (min-width: 480px) {
  article .adjacent-post {
    width: 50%;
  }
}
article .adjacent-post img {
  width: 58px;
  height: 58px;
  border-radius: 100%;
  float: left;
}
article .adjacent-post .heading {
  font-weight: bold;
  line-height: 1;
}
article .adjacent-post .related-link-nav {
  float: left;
}
article .adjacent-post .related-link-nav > span {
  width: 7px;
  height: 7px;
  border-left: solid 1px #ababab;
  border-bottom: solid 1px #ababab;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
article .adjacent-post .related-post {
  width: calc(100% - 25px);
  margin-top: 5px;
  float: left;
  position: relative;
}
article .adjacent-post .related-post .h6 {
  margin: 0;
  color: #ababab;
  margin-left: 15px;
}
article .adjacent-post .related-post img ~ * {
  padding-left: 75px;
}
article .adjacent-post.next {
  float: right;
  text-align: right;
}
article .adjacent-post.next img {
  float: right;
}
article .adjacent-post.next .related-post {
  float: right;
}
article .adjacent-post.next .related-post img ~ * {
  padding-right: 75px;
  padding-left: 0;
}
article .adjacent-post.next .h6 {
  margin-left: 0;
  margin-right: 15px;
}
article .adjacent-post.next .related-link-nav {
  float: right;
}
article .adjacent-post.next .related-link-nav > span {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -moz-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  right: 0;
  left: unset;
}
article .related-posts {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 40px;
}
article .related-posts .heading {
  text-align: center;
  margin-bottom: 35px;
}
article .related-posts .related-post-link .related-post-title {
  color: #565a5c;
  font-size: 15px;
  clear: both;
  max-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
article .related-posts .related-post-container {
  width: 100%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
article .related-posts .related-post-container .post-metainfo {
  border-top: 1px solid #e6e6e6;
  margin: 10px 0 0;
  padding: 3px 0;
}
article .related-posts .related-post-container .post-metainfo .date-info {
  margin-bottom: 0;
}
article .related-posts .related-post-container .post-metainfo .date-info,
article .related-posts .related-post-container .post-metainfo .date-info .month,
article .related-posts .related-post-container .post-metainfo .date-info .a {
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: inherit;
}
article .related-posts .related-post-container .categories-info ul li:nth-child(n+2) {
  display: none;
}
article .related-posts .related-post-container .blog-image {
  height: 135px;
  min-height: 135px;
  background-position: center;
  background-size: cover;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 480px) {
  article .related-posts .related-post-container {
    width: 33.333%;
  }
}
/*----------------------------------------------------------------
 4.6. Blog Page
 ----------------------------------------------------------------*/
/* ============================================== POSTS LIST ====================================================== */
.post-lists {
  display: block;
  clear: both;
  padding-top: 40px;
}
.post-lists article {
  background: #f9f9f9;
  position: relative;
}
.post-lists article .post-toolbars {
  border-bottom: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.post-lists article .post-toolbars .comment-info,
.post-lists article .post-toolbars .post-view,
.post-lists article .post-toolbars .toolbar-likes {
  border-right: none;
  padding-left: 10px;
  padding-right: 10px;
}
.post-lists article .post-toolbars .post-view {
  padding-left: 15px;
}
.post-lists article .post-toolbars .toolbar i {
  padding: 0 1px;
}
.post-lists article .post-content {
  padding: 0 15px 30px 15px;
}
.post-lists article .post-content .read-more {
  margin: 20px 0 0 0;
}
.post-lists article .post-bottom {
  position: relative;
  padding-bottom: 50px;
}
.post-lists article .comment-respond {
  position: relative;
  z-index: 2;
  background: #f9f9f9;
  width: 100%;
  padding: 10px 20px;
  top: 55px;
  transform: translateY(0);
}
.post-lists article .comment-respond input,
.post-lists article .comment-respond textarea,
.post-lists article .comment-respond .button {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #f3f3f3;
}
@media (max-width: 768px) {
  .post-lists article .post-toolbars .toolbar {
    padding: 10px;
  }
  .post-lists article .post-toolbars .toolbar.post-view,
  .post-lists article .post-toolbars .toolbar.comment-info,
  .post-lists article .post-toolbars .toolbar.toolbar-likes {
    padding-left: 3px;
    padding-right: 3px;
  }
  .post-lists article .post-toolbars .toolbar.post-view {
    padding-left: 10px;
  }
}
.post-lists.content-align-center article,
.post-lists.content-align-center article .date-info {
  text-align: center;
}
.post-lists.content-align-center article .post-toolbars {
  text-align: left;
}
.post-lists.content-align-center article .read-more {
  margin-left: auto;
  margin-right: auto;
}
.post-lists.content-align-right article,
.post-lists.content-align-right article .date-info {
  text-align: right;
}
.post-lists.content-align-right article .post-toolbars {
  text-align: left;
}
.post-lists.content-align-right article .read-more {
  margin-left: auto;
  margin-right: 15px;
}
.post-lists.post-tyle-1 .grid-column article .post-content,
.post-lists.post-tyle-3 .grid-column article .post-content {
  height: 265px;
}
.post-lists.post-tyle-3 .grid-column article .blog-image,
.post-lists.post-tyle-3 .grid-column article .blog-audio,
.post-lists.post-tyle-3 .grid-column article .blog-gallery,
.post-lists.post-tyle-3 .grid-column article .blog-carousel {
  height: 630px;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-2 .tgum-gallery {
  width: 100%;
  height: 50%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-2 .tgum-gallery:hover {
  height: 100%;
  outline-width: 0;
  z-index: 1;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-2 .tgum-gallery:nth-child(2) {
  top: 50%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-2 .tgum-gallery:nth-child(2):hover {
  top: unset;
  bottom: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-3 .tgum-gallery {
  width: 100%;
  height: 50%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-3 .tgum-gallery:hover {
  height: 100%;
  z-index: 1;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-3 .tgum-gallery:nth-child(n+2) {
  right: 0;
  top: unset;
  left: unset;
  bottom: 0;
  width: 50%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-3 .tgum-gallery:nth-child(n+2):hover {
  width: 100%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-3 .tgum-gallery:nth-child(3) {
  left: 0;
  right: unset;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery {
  width: 100%;
  height: 50%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:hover {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+2) {
  right: 0;
  top: 50%;
  left: unset;
  height: 25%;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+2):hover {
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(n+3) {
  width: 50%;
  bottom: 0;
  right: 50%;
  top: unset;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(3):hover {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(50%, 0);
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(4) {
  right: 0;
}
.post-lists.post-tyle-3 .grid-column article .blog-gallery.grid-4 .tgum-gallery:nth-child(4):hover {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.post-lists.template-2 .grid-column article {
  min-height: 315px;
}
.post-lists.template-2 .grid-column article .post-title {
  white-space: normal;
  margin-bottom: 12px;
}
.post-lists.template-2 .grid-column article .post-metainfo {
  margin-top: 15px;
}
.post-lists.template-2 .grid-column article .post-top {
  min-height: 315px;
  height: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.post-lists.template-2 .grid-column article .post-top .blog-image img,
.post-lists.template-2 .grid-column article .post-top .blog-gallery img {
  min-height: 100%;
  max-height: unset;
  max-width: unset;
}
.post-lists.template-2 .grid-column article .post-top .blog-audio,
.post-lists.template-2 .grid-column article .post-top .blog-image,
.post-lists.template-2 .grid-column article .post-top .blog-gallery,
.post-lists.template-2 .grid-column article .post-top .blog-carousel {
  height: 100%;
}
.post-lists.template-2 .grid-column article .comment-respond .col-lg-4 {
  width: 100%;
}
@media (min-width: 768px) {
  .post-lists.template-2 .grid-column article {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  .post-lists.template-2 .grid-column article .post-top + .post-bottom {
    padding-left: 35px;
  }
}
.post-lists.template-2 .grid-column article .post-bottom {
  margin-top: 0;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.post-lists.template-2 .grid-column article .post-top + .post-bottom .post-toolbars {
  width: calc(100% - 45px);
}
.post-lists.template-2.post-tyle-4 .grid-column.col-lg-6 .post-toolbars .toolbar {
  padding: 10px;
}
.post-lists.template-2.post-tyle-4 .grid-column.col-lg-4 .post-toolbars .toolbar {
  padding: 8px;
}
.post-lists.template-2.post-tyle-4 .grid-column.col-lg-3 .post-toolbars .toolbar {
  padding: 3px;
}
.post-lists.template-2.post-tyle-5 .grid-column article .post-top {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.post-lists.template-2.post-tyle-5 .grid-column.col-lg-6 .post-toolbars .toolbar {
  padding: 5px;
}
.post-lists.template-2.post-tyle-5 .grid-column.col-lg-4 .post-toolbars .toolbar {
  padding: 8px;
}
.post-lists.template-2.post-tyle-5 .grid-column.col-lg-3 .post-toolbars .toolbar {
  padding: 3px;
}
.post-lists.template-2.post-tyle-6 .grid-column article .post-bottom {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.post-lists.template-2.post-tyle-6 .grid-column.col-lg-4 .post-toolbars .toolbar {
  padding: 8px;
}
.post-lists.template-2.post-tyle-6 .grid-column.col-lg-3 .post-toolbars .toolbar {
  padding: 3px;
}
.post-lists.template-3 .grid-column article {
  display: block;
  position: relative;
}
.post-lists.template-3 .grid-column article .blog-gallery,
.post-lists.template-3 .grid-column article .blog-image,
.post-lists.template-3 .grid-column article .blog-audio,
.post-lists.template-3 .grid-column article .blog-carousel {
  height: 100%;
}
.post-lists.template-3 .grid-column article.format-quote blockquote {
  padding: 20px 20px 30px 30px;
  border: none;
  margin: 0;
  overflow: visible;
  visibility: hidden;
}
.post-lists.template-3 .grid-column article.format-quote blockquote:before {
  visibility: visible;
  left: 50%;
  top: unset;
  bottom: -30px;
}
.post-lists.template-3 .grid-column article .blog-audio .soundcloud-media {
  background: #ccc;
  height: 100%;
}
.post-lists.template-3 .grid-column article .blog-audio .soundcloud-media iframe {
  max-height: 100%;
}
.post-lists.template-3 .grid-column article .post-top {
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.post-lists.template-3 .grid-column article.format-quote .post-metainfo,
.post-lists.template-3 .grid-column article.format-video .post-metainfo,
.post-lists.template-3 .grid-column article.format-audio .post-metainfo {
  visibility: hidden;
}
.post-lists.template-3 .grid-column article.format-quote .post-toolbars,
.post-lists.template-3 .grid-column article.format-audio .post-toolbars,
.post-lists.template-3 .grid-column article.format-video .post-toolbars {
  visibility: hidden;
}
.post-lists.template-3 .grid-column article.format-quote .post-title,
.post-lists.template-3 .grid-column article.format-video .post-title,
.post-lists.template-3 .grid-column article.format-audio .post-title,
.post-lists.template-3 .grid-column article.format-standard .post-title {
  visibility: hidden;
}
.post-lists.template-3 .grid-column article .post-bottom,
.post-lists.template-3 .grid-column article .post-bottom .post-toolbars,
.post-lists.template-3 .grid-column article .post-bottom .post-metainfo,
.post-lists.template-3 .grid-column article .post-bottom .post-title {
  -webkit-transition: background 0.3s linear;
  -o-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
.post-lists.template-3 .grid-column article .post-bottom,
.post-lists.template-3 .grid-column article .post-bottom a {
  color: #ffffff;
}
.post-lists.template-3 .grid-column article .post-bottom .post-content {
  padding-top: 25px;
}
.post-lists.template-3 .grid-column article .post-bottom .post-metainfo {
  display: inline;
  clear: both;
  margin: 0;
  padding-left: 5px;
}
.post-lists.template-3 .grid-column article .post-bottom .post-metainfo .metainfo.post-format-info {
  color: #ffffff;
}
.post-lists.template-3 .grid-column article .post-bottom .post-title {
  padding: 0 5px;
}
.post-lists.template-3 .grid-column article .post-bottom .date-info,
.post-lists.template-3 .grid-column article .post-bottom .read-more,
.post-lists.template-3 .grid-column article .post-bottom .content-excerpt {
  visibility: hidden;
}
.post-lists.template-3 .grid-column article .post-bottom .toolbar,
.post-lists.template-3 .grid-column article .post-bottom .post-toolbars {
  border-color: rgba(0, 0, 0, 0.2);
}
.post-lists.template-3 .grid-column article .post-bottom .post-toolbars,
.post-lists.template-3 .grid-column article .post-bottom .post-metainfo,
.post-lists.template-3 .grid-column article .post-bottom .post-title {
  background: rgba(0, 0, 0, 0.3);
}
.post-lists.template-3 .grid-column article .post-top,
.post-lists.template-3 .grid-column article .post-bottom {
  width: 100%;
  height: 100%;
  height: 315px;
}
.post-lists.template-3 .grid-column article:hover .post-bottom .post-metainfo .metainfo.post-format-info {
  color: #565a5c;
}
.post-lists.template-3 .grid-column article:hover .post-bottom,
.post-lists.template-3 .grid-column article:hover .post-bottom a {
  color: #565a5c;
}
.post-lists.template-3 .grid-column article:hover .post-bottom .read-more {
  color: #ffffff;
}
.post-lists.template-3 .grid-column article:hover .post-bottom .read-more:hover {
  color: #2cc09f;
}
.post-lists.template-3 .grid-column article:hover .post-bottom,
.post-lists.template-3 .grid-column article:hover .post-bottom .post-toolbars,
.post-lists.template-3 .grid-column article:hover .post-bottom .post-metainfo,
.post-lists.template-3 .grid-column article:hover .post-bottom .post-title {
  background: #ffffff;
}
.post-lists.template-3 .grid-column article:hover .post-bottom .share-action a {
  color: #ffffff;
}
.post-lists.template-3 .grid-column article:hover blockquote,
.post-lists.template-3 .grid-column article:hover .post-metainfo,
.post-lists.template-3 .grid-column article:hover .post-title,
.post-lists.template-3 .grid-column article:hover .date-info,
.post-lists.template-3 .grid-column article:hover .read-more,
.post-lists.template-3 .grid-column article:hover .post-toolbars,
.post-lists.template-3 .grid-column article:hover .content-excerpt {
  visibility: visible;
}
/*-----------------------------------------------------------------------------
 4.7 Blog Teaser
 -----------------------------------------------------------------------------*/
.hilight-posts {
  margin-bottom: 40px;
}
.hilight-posts .grid-column {
  width: 100%;
}
.hilight-posts article .post-title {
  font-size: 27px;
}
.hilight-posts article .post-metainfo {
  margin-top: 25px;
  margin-bottom: 8px;
}
.hilight-posts article .blog-image,
.hilight-posts article .blog-gallery,
.hilight-posts article .blog-carousel {
  height: auto;
  min-height: 330px;
}
@media (min-width: 1219px) {
  .hilight-posts article .blog-image,
  .hilight-posts article .blog-gallery,
  .hilight-posts article .blog-carousel {
    height: 535px;
  }
}
/*-----------------------------------------------------------------------------
 4.8 Blog Grid
 -----------------------------------------------------------------------------*/
.grid-posts {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.grid-posts article {
  min-height: 100%;
  height: 100%;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: space-between;
}
.grid-posts article .blog-image,
.grid-posts article article .blog-audio,
.grid-posts article article .blog-carousel {
  margin-bottom: 0;
}
.grid-posts article .flex-video {
  padding-bottom: 100%;
}
.grid-posts article .post-metainfo {
  margin-bottom: 0;
  margin-top: 25px;
}
.grid-posts article .post-title {
  margin-bottom: 5px;
  max-height: 33px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.grid-posts article .post-content {
  position: relative;
}
.grid-posts article .content-excerpt {
  max-height: 5em;
  overflow: hidden;
}
.grid-posts article .post-top .blog-audio .soundcloud-media {
  height: 100%;
}
.grid-posts article .post-top .blog-audio .soundcloud-media iframe {
  max-heigt: 450px;
  height: 100%;
}
.grid-posts .grid-column {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .grid-posts .grid-column.col-sm-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  .grid-posts .grid-column.col-sm-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
}
@media (min-width: 992px) {
  .grid-posts .grid-column.col-md-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  .grid-posts .grid-column.col-md-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
}
@media (min-width: 1219px) {
  .grid-posts .grid-column.col-lg-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  .grid-posts .grid-column.col-lg-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
  .grid-posts .grid-column.col-lg-3 {
    width: 25%;
    width: calc(25% - 1px);
  }
  .grid-posts .grid-column .blog-image,
  .grid-posts .grid-column .blog-audio,
  .grid-posts .grid-column .blog-gallery,
  .grid-posts .grid-column .blog-carousel {
    height: 315px;
  }
  .grid-posts .grid-column.col-lg-3 .blog-image,
  .grid-posts .grid-column.col-lg-3 .blog-gallery,
  .grid-posts .grid-column.col-lg-3 .blog-carousel {
    height: 210px;
  }
  .grid-posts .grid-column.col-lg-3 .post-toolbars .toolbar {
    padding: 10px;
  }
}
.grid-posts .grid-column .comment-respond .col-lg-4 {
  width: 100%;
}
@media (min-width: 1219px) {
  .grid-posts .grid-column.col-lg-12 .comment-respond .col-lg-4 {
    width: 33.3333%;
  }
}
.grid-posts .grid-column.col-lg-12 .flex-video {
  padding-bottom: 55%;
}
@media (min-width: 480px) {
  .grid-posts .grid-column:not(.col-lg-12) article .blog-image img,
  .grid-posts .grid-column:not(.col-lg-12) article .blog-gallery img {
    min-height: 100%;
    max-height: unset;
    max-width: unset;
  }
}
@media (max-width: 1219px) {
  .grid-posts .grid-column .post-toolbars .toolbar {
    padding: 12px 14px;
  }
  .grid-posts .grid-column.col-md-6 .post-toolbars .toolbar,
  .grid-posts .grid-column.col-md-4 .post-toolbars .toolbar,
  .grid-posts .grid-column.col-md-3 .post-toolbars .toolbar {
    padding: 10px 11px;
  }
  .grid-posts .grid-column.col-md-6 .post-toolbars .toolbar.post-view,
  .grid-posts .grid-column.col-md-4 .post-toolbars .toolbar.post-view,
  .grid-posts .grid-column.col-md-3 .post-toolbars .toolbar.post-view,
  .grid-posts .grid-column.col-md-6 .post-toolbars .toolbar.comment-info,
  .grid-posts .grid-column.col-md-4 .post-toolbars .toolbar.comment-info,
  .grid-posts .grid-column.col-md-3 .post-toolbars .toolbar.comment-info,
  .grid-posts .grid-column.col-md-6 .post-toolbars .toolbar.toolbar-likes,
  .grid-posts .grid-column.col-md-4 .post-toolbars .toolbar.toolbar-likes,
  .grid-posts .grid-column.col-md-3 .post-toolbars .toolbar.toolbar-likes {
    padding-left: 2px;
    padding-right: 2px;
  }
  .grid-posts .grid-column.col-md-6 .post-toolbars .toolbar.post-view,
  .grid-posts .grid-column.col-md-4 .post-toolbars .toolbar.post-view,
  .grid-posts .grid-column.col-md-3 .post-toolbars .toolbar.post-view {
    padding-left: 10px;
  }
}
/*-----------------------------------------------------------------------------
 4.9 Single Post
 -----------------------------------------------------------------------------*/
body.single article .content-full {
  margin-top: 30px;
  padding-bottom: 40px;
}
body.single article .post-content .post-categories {
  margin-top: 45px;
}
body.single article .post-content .post-toolbars {
  border-bottom: solid 1px #e6e6e6;
}
body.single article .post-title {
  font-size: 34px;
}
@supports not (flex-wrap: wrap) {
  article .author-profile {
    display: block;
    border: solid 1px;
  }
}
/*-----------------------------------------------------------------------------
 4.10 Blog Masonry
 -----------------------------------------------------------------------------*/
body .grid-posts.masonry .grid-column {
  padding-bottom: 0;
  margin-bottom: 40px;
}
body .grid-posts.masonry .grid-column article .blog-audio {
  width: 100%;
  height: auto;
}
body .grid-posts.masonry .grid-column article .blog-image {
  width: 100%;
  height: auto;
  overflow: visible;
}
body .grid-posts.masonry .grid-column article .blog-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  position: relative;
  left: unset;
  top: unset;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
body .grid-posts.masonry .grid-column article .blog-image .flex-video {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  min-width: 100%;
  max-width: 100%;
  height: auto;
  padding-bottom: 50%;
}
body .grid-posts.masonry .grid-column article .content-excerpt {
  max-height: unset;
  overflow: visible;
}
body .grid-posts.masonry .grid-column article .post-content {
  height: auto;
}
body .grid-posts.masonry .grid-column article .post-bottom {
  padding-bottom: 0;
}
body .grid-posts.masonry .grid-column article .post-bottom .post-toolbars {
  position: relative;
}
body .blog-masonry .post-lists {
  position: relative;
  width: 100%;
}
body .blog-masonry .grid-posts {
  display: block;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
}
body .blog-masonry .grid-posts .grid-column {
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}
body .blog-masonry .grid-posts .grid-column .post-title {
  max-height: 100%;
  overflow: visible;
  white-space: inherit;
  text-overflow: visible;
}
@media (min-width: 768px) {
  body .blog-masonry .grid-posts .grid-column.col-sm-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  body .blog-masonry .grid-posts .grid-column.col-sm-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
}
@media (min-width: 992px) {
  body .blog-masonry .grid-posts .grid-column.col-md-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  body .blog-masonry .grid-posts .grid-column.col-md-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
}
@media (min-width: 1219px) {
  body .blog-masonry .grid-posts .grid-column.col-lg-6 {
    width: 50%;
    width: calc(50% - 1px);
  }
  body .blog-masonry .grid-posts .grid-column.col-lg-4 {
    width: 33.33%;
    width: calc(33.33% - 1px);
  }
  body .blog-masonry .grid-posts .grid-column.col-lg-3 {
    width: 25%;
    width: calc(25% - 1px);
  }
}
body.logged-in .grid-posts .grid-column:not(.col-lg-12) .toolbar.toolbar-tools {
  padding-right: 10px;
}
body.logged-in .grid-posts .grid-column:not(.col-lg-12) .toolbar.toolbar-tools .pin-tool {
  display: block;
  clear: both;
  margin-right: 20px;
}
/*-----------------------------------------------------------------------------
 5.0 Pagination
 ----------------------------------------------------------------------------*/
.page-pagination {
  margin-top: 40px;
}
.page-pagination .page-numbers {
  position: relative;
  display: inline-block;
  color: #565a5c;
  border: solid 1px #e6e6e6;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}
.page-pagination .page-numbers.current,
.page-pagination .page-numbers:hover,
.page-pagination .page-numbers:focus {
  background: #565a5c;
  border-color: #565a5c;
}
.page-pagination .page-numbers.current,
.page-pagination .page-numbers:hover,
.page-pagination .page-numbers:focus,
.page-pagination .page-numbers.current a,
.page-pagination .page-numbers:hover a,
.page-pagination .page-numbers:focus a {
  color: #fff;
}
.page-pagination > .page-numbers {
  background: #565a5c;
  color: #fff;
}
@-webkit-keyframes arrowAnnoyingRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  10% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes arrowAnnoyingRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  10% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes arrowAnnoyingLeft {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  10% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes arrowAnnoyingLeft {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  10% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  60% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.pagination {
  text-align: left;
  margin-bottom: 40px;
  clear: both;
  position: relative;
}
.pagination i {
  margin-left: 10px;
  margin-right: 10px;
}
.pagination ul {
  list-style: none;
  padding: 0;
}
.pagination li {
  display: inline-block;
}
.pagination li:not(:last-child) {
  margin-right: 6px;
}
.pagination li .page-numbers {
  position: relative;
  display: block;
  border: solid 1px #e6e6e6;
  font-size: 18px;
  padding: 10px 15px;
  text-align: center;
  line-height: 1.47;
  text-transform: uppercase;
}
.pagination li .page-numbers,
.pagination li .page-numbers:visited,
.pagination li .page-numbers:active,
.pagination li .page-numbers:clicked {
  color: #565a5c;
  border-color: #e6e6e6;
  background-color: #ffffff;
}
.pagination li .page-numbers.current,
.pagination li .page-numbers:hover,
.pagination li .page-numbers:focus {
  background: #565a5c;
  border-color: #565a5c;
}
.pagination li .page-numbers.current,
.pagination li .page-numbers:hover,
.pagination li .page-numbers:focus,
.pagination li .page-numbers.current a,
.pagination li .page-numbers:hover a,
.pagination li .page-numbers:focus a {
  color: #fff;
}
.pagination li .page-numbers > span {
  white-space: nowrap;
}
.pagination li .lazzy-more,
.pagination li .older-post,
.pagination li .newest-post {
  color: #ffffff;
  background-color: #ababab;
  border-color: #e6e6e6;
  text-transform: uppercase;
  clear: both;
  margin-top: 20px;
  position: relative;
}
.pagination li .lazzy-more:focus,
.pagination li .older-post:focus,
.pagination li .newest-post:focus,
.pagination li .lazzy-more.focus,
.pagination li .older-post.focus,
.pagination li .newest-post.focus {
  color: #ffffff;
  background-color: #929292;
  border-color: #a6a6a6;
}
.pagination li .lazzy-more:hover,
.pagination li .older-post:hover,
.pagination li .newest-post:hover {
  color: #ffffff;
  background-color: #929292;
  border-color: #c7c7c7;
}
.pagination li .lazzy-more:active,
.pagination li .older-post:active,
.pagination li .newest-post:active,
.pagination li .lazzy-more.active,
.pagination li .older-post.active,
.pagination li .newest-post.active,
.open > .dropdown-toggle.pagination li .lazzy-more,
.open > .dropdown-toggle.pagination li .older-post,
.open > .dropdown-toggle.pagination li .newest-post {
  color: #ffffff;
  background-color: #929292;
  border-color: #c7c7c7;
}
.pagination li .lazzy-more:active:hover,
.pagination li .older-post:active:hover,
.pagination li .newest-post:active:hover,
.pagination li .lazzy-more.active:hover,
.pagination li .older-post.active:hover,
.pagination li .newest-post.active:hover,
.open > .dropdown-toggle.pagination li .lazzy-more:hover,
.open > .dropdown-toggle.pagination li .older-post:hover,
.open > .dropdown-toggle.pagination li .newest-post:hover,
.pagination li .lazzy-more:active:focus,
.pagination li .older-post:active:focus,
.pagination li .newest-post:active:focus,
.pagination li .lazzy-more.active:focus,
.pagination li .older-post.active:focus,
.pagination li .newest-post.active:focus,
.open > .dropdown-toggle.pagination li .lazzy-more:focus,
.open > .dropdown-toggle.pagination li .older-post:focus,
.open > .dropdown-toggle.pagination li .newest-post:focus,
.pagination li .lazzy-more:active.focus,
.pagination li .older-post:active.focus,
.pagination li .newest-post:active.focus,
.pagination li .lazzy-more.active.focus,
.pagination li .older-post.active.focus,
.pagination li .newest-post.active.focus,
.open > .dropdown-toggle.pagination li .lazzy-more.focus,
.open > .dropdown-toggle.pagination li .older-post.focus,
.open > .dropdown-toggle.pagination li .newest-post.focus {
  color: #ffffff;
  background-color: #808080;
  border-color: #a6a6a6;
}
.pagination li .lazzy-more:active,
.pagination li .older-post:active,
.pagination li .newest-post:active,
.pagination li .lazzy-more.active,
.pagination li .older-post.active,
.pagination li .newest-post.active,
.open > .dropdown-toggle.pagination li .lazzy-more,
.open > .dropdown-toggle.pagination li .older-post,
.open > .dropdown-toggle.pagination li .newest-post {
  background-image: none;
}
.pagination li .lazzy-more.disabled:hover,
.pagination li .older-post.disabled:hover,
.pagination li .newest-post.disabled:hover,
.pagination li .lazzy-more[disabled]:hover,
.pagination li .older-post[disabled]:hover,
.pagination li .newest-post[disabled]:hover,
fieldset[disabled] .pagination li .lazzy-more:hover,
fieldset[disabled] .pagination li .older-post:hover,
fieldset[disabled] .pagination li .newest-post:hover,
.pagination li .lazzy-more.disabled:focus,
.pagination li .older-post.disabled:focus,
.pagination li .newest-post.disabled:focus,
.pagination li .lazzy-more[disabled]:focus,
.pagination li .older-post[disabled]:focus,
.pagination li .newest-post[disabled]:focus,
fieldset[disabled] .pagination li .lazzy-more:focus,
fieldset[disabled] .pagination li .older-post:focus,
fieldset[disabled] .pagination li .newest-post:focus,
.pagination li .lazzy-more.disabled.focus,
.pagination li .older-post.disabled.focus,
.pagination li .newest-post.disabled.focus,
.pagination li .lazzy-more[disabled].focus,
.pagination li .older-post[disabled].focus,
.pagination li .newest-post[disabled].focus,
fieldset[disabled] .pagination li .lazzy-more.focus,
fieldset[disabled] .pagination li .older-post.focus,
fieldset[disabled] .pagination li .newest-post.focus {
  background-color: #ababab;
  border-color: #e6e6e6;
}
.pagination li .lazzy-more .badge,
.pagination li .older-post .badge,
.pagination li .newest-post .badge {
  color: #ababab;
  background-color: #ffffff;
}
.pagination li .lazzy-more:hover,
.pagination li .older-post:hover,
.pagination li .newest-post:hover,
.pagination li .lazzy-more:focus,
.pagination li .older-post:focus,
.pagination li .newest-post:focus {
  color: #ffffff;
  background: #565a5c;
  border-color: #565a5c;
}
.pagination li .lazzy-more,
.pagination li .older-post {
  padding-right: 42px;
}
.pagination li .lazzy-more i,
.pagination li .older-post i {
  position: absolute;
  right: 10px;
  top: 8px;
}
.pagination li .lazzy-more.process i,
.pagination li .older-post.process i {
  -webkit-animation: arrowAnnoyingRight 0.6s infinite linear;
  -o-animation: arrowAnnoyingRight 0.6s infinite linear;
  animation: arrowAnnoyingRight 0.6s infinite linear;
}
.pagination li .lazzy-more.rtl,
.pagination li .older-post.rtl {
  padding-left: 42px;
  padding-right: 20px;
  left: 0;
  right: unset;
}
.pagination li .lazzy-more.rtl i,
.pagination li .older-post.rtl i {
  left: 10px;
  right: unset;
}
.pagination li .lazzy-more.rtl.process i,
.pagination li .older-post.rtl.process i {
  -webkit-animation: arrowAnnoyingLeft 0.6s infinite linear;
  -o-animation: arrowAnnoyingLeft 0.6s infinite linear;
  animation: arrowAnnoyingLeft 0.6s infinite linear;
}
.pagination li .older-post,
.pagination li .newest-post {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0;
}
.pagination li .newest-post {
  right: unset;
  left: 0;
  padding-left: 42px;
}
.pagination li .newest-post.rtl {
  right: 0;
  left: unset;
}
.pagination li .newest-post i {
  position: absolute;
  left: 10px;
  top: 8px;
}
.pagination li .newest-post.process i {
  -webkit-animation: arrowAnnoyingLeft 0.6s infinite linear;
  -o-animation: arrowAnnoyingLeft 0.6s infinite linear;
  animation: arrowAnnoyingLeft 0.6s infinite linear;
}
.pagination li .newest-post.rtl {
  padding-left: 20px;
  padding-right: 42px;
}
.pagination li .newest-post.rtl i {
  left: unset;
  right: 10px;
}
.pagination li .newest-post.rtl.process i {
  -webkit-animation: arrowAnnoyingRight 0.6s infinite linear;
  -o-animation: arrowAnnoyingRight 0.6s infinite linear;
  animation: arrowAnnoyingRight 0.6s infinite linear;
}
/*-----------------------------------------------------------------------------
 6.0 Widget & Sidebar
 ----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
 6.1 Widget Style
 -----------------------------------------------------------------------------*/
.widget {
  padding: 40px 0;
}
.widget .screen-reader-text {
  display: none;
}
.widget select {
  width: 100%;
  padding: 2px 10px 2px 0;
  border-color: #e6e6e6;
  border-width: 0 0 1px 0;
  border-style: solid;
}
.widget select option {
  border: solid 1px #e6e6e6;
  padding: 5px;
}
.widget .widget-title,
.widget .widgettitle {
  padding-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
.widget .post-date {
  color: #ababab;
  font-size: 12px;
  display: block;
  clear: both;
}
.widget ul {
  list-style: none;
  letter-spacing: 0.9px;
  padding-left: 35px;
}
.widget ul > li {
  position: relative;
}
.widget ul > li:before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #565a5c;
  position: absolute;
  left: -25px;
  top: 11px;
}
.widget.widget_calendar #wp-calendar,
.widget.widget_calendar table {
  width: 100%;
  position: relative;
  z-index: 1;
  background: transparent;
}
.widget.widget_calendar #wp-calendar td,
.widget.widget_calendar table td,
.widget.widget_calendar #wp-calendar th,
.widget.widget_calendar table th {
  border: none;
  text-align: center;
}
.widget.widget_calendar #wp-calendar caption,
.widget.widget_calendar table caption {
  padding-top: 0;
  line-height: 1;
  text-align: left;
}
.widget.widget_calendar #wp-calendar #today,
.widget.widget_calendar table #today {
  background-color: #2cc09f;
}
.widget.widget_calendar #wp-calendar #today,
.widget.widget_calendar table #today,
.widget.widget_calendar #wp-calendar #today a,
.widget.widget_calendar table #today a {
  color: #ffffff;
}
.widget.widget_calendar #wp-calendar td a,
.widget.widget_calendar table td a {
  color: #2cc09f;
}
.widget.widget_calendar #wp-calendar td a:hover,
.widget.widget_calendar table td a:hover {
  color: #565a5c;
}
.widget.widget_calendar #wp-calendar #prev,
.widget.widget_calendar table #prev {
  text-align: left;
}
.widget.widget_calendar #wp-calendar #next,
.widget.widget_calendar table #next {
  text-align: right;
}
.widget.widget_calendar #wp-calendar #prev:hover a,
.widget.widget_calendar table #prev:hover a,
.widget.widget_calendar #wp-calendar #next:hover a,
.widget.widget_calendar table #next:hover a {
  color: #565a5c;
}
.widget.widget_calendar a:hover,
.widget.widget_calendar a:focus {
  color: #777777;
  text-decoration: none;
}
.widget.widget_calendar td,
.widget.widget_calendar th {
  padding: 5px;
}
.widget.widget_calendar thead th {
  color: #ababab;
  font-weight: normal;
}
.widget.widget_calendar .calendar-year {
  opacity: 0.1;
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  letter-spacing: 1.3px;
}
.widget.widget_search form {
  margin-top: 20px;
}
.widget.widget_search form input {
  background: transparent;
  padding-right: 40px;
  width: 100%;
  font-size: 12px;
}
.widget.widget_search form .search-ico {
  margin-left: -30px;
}
.widget .tagcloud {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-right: -10px;
}
.widget .tagcloud a {
  border: solid 1px #e6e6e6;
  border-radius: 100px;
  padding: 2px 13px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin: 5px 10px 5px 0;
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(0.3, 0.6, 0.3, 0.6);
  -o-transition: all 0.2s cubic-bezier(0.3, 0.6, 0.3, 0.6);
  transition: all 0.2s cubic-bezier(0.3, 0.6, 0.3, 0.6);
}
.widget .tagcloud a:hover,
.widget .tagcloud a:focus {
  background-color: #2cc09f;
  color: #ffffff;
  border-color: #2cc09f;
}
.widget #recentcomments .recentcomments .comment-author-link {
  font-weight: bold;
}
.widget.widget_segue_comment .comment-author-link {
  font-weight: bold;
}
.widget.widget_segue_comment .comment-author-link a:hover,
.widget.widget_segue_comment .comment-author-link a:focus {
  color: #777777;
  tex-decoration: none;
}
.widget.widget_segue_comment .comment-text {
  display: block;
}
.widget.widget_segue_comment .comment-date {
  color: #ababab;
  font-size: 11px;
}
.widget.segue_widget_twitter .tweet {
  clear: both;
  padding-bottom: 30px;
}
.widget.segue_widget_twitter .tweet:nth-child(n+2) {
  border-top: dotted 2px #e6e6e6;
  padding-top: 10px;
}
.widget.segue_widget_twitter .fa-twitter {
  color: #1ec1f2;
  font-size: 16px;
  margin-right: 10px;
}
.widget.segue_widget_twitter .screenname {
  font-weight: bold;
}
.widget.segue_widget_twitter .tweet-tools {
  float: right;
}
.widget.segue_widget_twitter .tweet-tools > a {
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
}
.widget.segue_widget_twitter .tweet-tools .fa {
  color: #ababab;
}
.widget.segue_widget_twitter .tweet-date {
  font-size: 11px;
  float: left;
}
.widget.segue_widget_twitter .tweet-text {
  font-size: 12px;
  line-height: 1.7;
}
.widget.widget_categories .screen-reader-text {
  display: none;
}
.widget.widget_categories > ul {
  overflow: hidden;
}
.widget.widget_categories ul {
  list-style: none;
  padding-left: 0;
}
.widget.widget_categories ul > li > a {
  padding-left: 35px;
}
.widget.widget_categories ul > li > a > i.fa {
  position: absolute;
  left: 0;
}
.widget.widget_categories li {
  text-transform: capitalize;
  padding: 5px 0px;
  position: relative;
}
.widget.widget_categories li:after {
  content: '';
  display: block;
  height: 1px;
  border-bottom: solid 1px #e6e6e6;
  width: 1000px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.widget.widget_categories li i.fa {
  margin-left: 5px;
  margin-right: 15px;
  font-size: 19px;
  color: #565a5c;
}
.widget.widget_categories li i.fa.fa-caret-right {
  margin-right: 25px;
}
.widget.widget_categories li:before {
  display: none;
}
.widget.widget_categories li:last-child {
  padding-bottom: 0;
}
.widget.widget_categories li:last-child:after {
  border-bottom: none;
}
.widget.widget_categories .children {
  margin-top: 6px;
  padding-left: 50px;
}
.widget.widget_categories .children .children {
  padding-left: 10px;
}
.widget.widget_categories .children i.fa,
.widget.widget_categories .children i.fa.fa-caret-right {
  margin-right: 5px;
}
.widget.widget_categories .children li:first-child:after {
  content: '';
  display: block;
  height: 1px;
  border-bottom: solid 1px #e6e6e6;
  width: 1000px;
  position: absolute;
  top: 0;
  right: 0;
}
.widget.widget_rss li {
  padding-bottom: 10px;
}
.widget.widget_rss li:last-child {
  padding-bottom: 0;
}
.widget.segue_post .post-row {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  padding: 10px 0;
}
.widget.segue_post .post-row:first-child {
  padding-top: 0;
}
.widget.segue_post .post-row .popular-post-image {
  margin-right: 16px;
  width: 112px;
  height: 112px;
  float: left;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.5, 0.9, 0.2, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.5, 0.9, 0.2, 1);
  -o-transition: -o-transform 0.5s cubic-bezier(0.5, 0.9, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.5, 0.9, 0.2, 1);
}
.widget.segue_post .post-row .popular-post-image a {
  border-radius: 100%;
  display: block;
  overflow: hidden;
}
.widget.segue_post .post-row:hover .popular-post-image {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.widget.segue_post .post-row:not(:hover) .popular-post-image {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.5, 0.3, 0.8, 1);
  -moz-transition: -moz-transform 1s cubic-bezier(0.5, 0.3, 0.8, 1);
  -o-transition: -o-transform 1s cubic-bezier(0.5, 0.3, 0.8, 1);
  transition: transform 1s cubic-bezier(0.5, 0.3, 0.8, 1);
}
.widget.segue_post .post-row .popular-post-title {
  max-height: 90px;
  display: block;
  overflow: hidden;
}
.widget.segue_post .post-row .content-wrap {
  order: 2;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  float: right;
}
.widget.segue_post .widget-title + .post-row:nth-child(2) {
  border-top: none;
}
.widget.segue-post-tab .widget {
  border: none;
  padding: 0;
}
.widget.segue-post-tab ul.nav-tabs {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .widget.segue-post-tab ul.nav-tabs {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.widget.segue-post-tab ul.nav-tabs.nav-justified > li {
  display: table-cell;
  width: 1%;
}
.widget.segue-post-tab ul.nav-tabs.nav-justified > li.active {
  background: none;
}
.widget.segue-post-tab ul.nav-tabs.nav-justified > li.active > a {
  color: #565a5c;
  background: none;
}
.widget.segue-post-tab ul.nav-tabs.nav-justified > li > a {
  border: none;
  color: #ababab;
  padding: 10px;
}
.widget.segue-post-tab ul.nav-tabs.nav-justified > li > a:hover {
  background: none;
  color: #565a5c;
}
.widget.segue-post-tab ul.nav-tabs li:before {
  display: none;
}
.widget.segue_widget_instagram {
  overflow: hidden;
}
.widget.segue_widget_instagram .instagram-images {
  list-style: none;
  padding: 0;
  width: calc(100% + 3px);
}
.widget.segue_widget_instagram .instagram-images li {
  display: inline-block;
  width: 33.33%;
  padding-right: 10px;
  margin-bottom: 10px;
}
.widget.segue_widget_instagram .instagram-images li:before {
  display: none;
}
.widget.segue_widget_instagram .instagram-images li > a {
  position: relative;
  display: block;
  overflow: -moz-hidden-unscrollable;
}
.widget.segue_widget_instagram .instagram-images li img {
  -webkit-transition: all 0.4s cubic-bezier(0.5, 3, 0.8, 1);
  -o-transition: all 0.4s cubic-bezier(0.5, 3, 0.8, 1);
  transition: all 0.4s cubic-bezier(0.5, 3, 0.8, 1);
}
.widget.segue_widget_instagram .instagram-images li:hover .overlay-likes,
.widget.segue_widget_instagram .instagram-images li:focus .overlay-likes {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.widget.segue_widget_instagram .instagram-images li:hover img,
.widget.segue_widget_instagram .instagram-images li:focus img {
  opacity: 0.6;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.widget.widget_socialcountplus li,
.widget.widget_seguesocialcountplus li {
  width: 25%;
}
.widget.widget_socialcountplus li:before,
.widget.widget_seguesocialcountplus li:before {
  display: none;
}
.widget.widget_socialcountplus .social-count-plus .label,
.widget.widget_seguesocialcountplus .social-count-plus .label {
  font-size: 11px;
}
.widget.widget_siliconcounters .silicon_counters {
  background: transparent !important;
}
.widget.widget_siliconcounters .silicon_counters li:before {
  display: none;
}
.widget.segue_categories ul {
  padding-left: 0;
}
.widget.segue_categories li {
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.widget.segue_categories li:before {
  display: none;
}
.widget.segue_categories li:hover .masking-image {
  opacity: 0;
  -webkit-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
  transform: rotateX(90deg);
}
.widget.segue_categories li .masking-image {
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  -o-transition: all 0.3s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  transition: all 0.3s cubic-bezier(0.3, 0.4, 0.8, 0.6);
  background: rgba(255, 255, 255, 0.2);
}
.widget.segue_categories li.cat-item {
  height: 110px;
  background-color: #e6e6e6;
  margin-bottom: 20px;
}
.widget.segue_categories li:last-child {
  margin-bottom: 0;
}
.widget.segue_categories li .category-label {
  padding: 12px 14px;
  background: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 2.4px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.widget.segue_categories li .category-label,
.widget.segue_categories li .category-label a {
  color: #565a5c;
}
.widget.widget_nav_menu ul,
.widget.widget_pages ul {
  padding-left: 0;
}
.widget.widget_nav_menu ul li:before,
.widget.widget_pages ul li:before,
.widget.widget_nav_menu .menu li:before,
.widget.widget_pages .menu li:before {
  display: none;
}
.widget.widget_nav_menu ul .menu-item,
.widget.widget_pages ul .menu-item,
.widget.widget_nav_menu .menu .menu-item,
.widget.widget_pages .menu .menu-item,
.widget.widget_nav_menu ul .page_item,
.widget.widget_pages ul .page_item,
.widget.widget_nav_menu .menu .page_item,
.widget.widget_pages .menu .page_item {
  position: relative;
  cursor: pointer;
}
.widget.widget_nav_menu ul .menu-item .sub-menu,
.widget.widget_pages ul .menu-item .sub-menu,
.widget.widget_nav_menu .menu .menu-item .sub-menu,
.widget.widget_pages .menu .menu-item .sub-menu,
.widget.widget_nav_menu ul .page_item .sub-menu,
.widget.widget_pages ul .page_item .sub-menu,
.widget.widget_nav_menu .menu .page_item .sub-menu,
.widget.widget_pages .menu .page_item .sub-menu,
.widget.widget_nav_menu ul .menu-item .children,
.widget.widget_pages ul .menu-item .children,
.widget.widget_nav_menu .menu .menu-item .children,
.widget.widget_pages .menu .menu-item .children,
.widget.widget_nav_menu ul .page_item .children,
.widget.widget_pages ul .page_item .children,
.widget.widget_nav_menu .menu .page_item .children,
.widget.widget_pages .menu .page_item .children {
  display: none;
}
.widget.widget_nav_menu ul .menu-item:hover > a,
.widget.widget_pages ul .menu-item:hover > a,
.widget.widget_nav_menu .menu .menu-item:hover > a,
.widget.widget_pages .menu .menu-item:hover > a,
.widget.widget_nav_menu ul .page_item:hover > a,
.widget.widget_pages ul .page_item:hover > a,
.widget.widget_nav_menu .menu .page_item:hover > a,
.widget.widget_pages .menu .page_item:hover > a {
  color: #ababab;
}
.widget.widget_nav_menu ul .menu-item > a,
.widget.widget_pages ul .menu-item > a,
.widget.widget_nav_menu .menu .menu-item > a,
.widget.widget_pages .menu .menu-item > a,
.widget.widget_nav_menu ul .page_item > a,
.widget.widget_pages ul .page_item > a,
.widget.widget_nav_menu .menu .page_item > a,
.widget.widget_pages .menu .page_item > a {
  padding: 5px 25px 5px 15px;
  width: 100%;
  display: block;
  border-bottom: solid 1px #e6e6e6;
}
.widget.widget_nav_menu ul .menu-item.menu-item-has-children > a:after,
.widget.widget_pages ul .menu-item.menu-item-has-children > a:after,
.widget.widget_nav_menu .menu .menu-item.menu-item-has-children > a:after,
.widget.widget_pages .menu .menu-item.menu-item-has-children > a:after,
.widget.widget_nav_menu ul .page_item.menu-item-has-children > a:after,
.widget.widget_pages ul .page_item.menu-item-has-children > a:after,
.widget.widget_nav_menu .menu .page_item.menu-item-has-children > a:after,
.widget.widget_pages .menu .page_item.menu-item-has-children > a:after,
.widget.widget_nav_menu ul .menu-item.page_item_has_children > a:after,
.widget.widget_pages ul .menu-item.page_item_has_children > a:after,
.widget.widget_nav_menu .menu .menu-item.page_item_has_children > a:after,
.widget.widget_pages .menu .menu-item.page_item_has_children > a:after,
.widget.widget_nav_menu ul .page_item.page_item_has_children > a:after,
.widget.widget_pages ul .page_item.page_item_has_children > a:after,
.widget.widget_nav_menu .menu .page_item.page_item_has_children > a:after,
.widget.widget_pages .menu .page_item.page_item_has_children > a:after {
  content: '';
  font-size: 0;
  display: block;
  right: 10px;
  top: 16px;
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0;
  border-left: solid 5px #565a5c;
  border-bottom: solid 5px transparent;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.widget.widget_nav_menu ul .menu-item.menu-item-has-children.menu-expand > a:after,
.widget.widget_pages ul .menu-item.menu-item-has-children.menu-expand > a:after,
.widget.widget_nav_menu .menu .menu-item.menu-item-has-children.menu-expand > a:after,
.widget.widget_pages .menu .menu-item.menu-item-has-children.menu-expand > a:after,
.widget.widget_nav_menu ul .page_item.menu-item-has-children.menu-expand > a:after,
.widget.widget_pages ul .page_item.menu-item-has-children.menu-expand > a:after,
.widget.widget_nav_menu .menu .page_item.menu-item-has-children.menu-expand > a:after,
.widget.widget_pages .menu .page_item.menu-item-has-children.menu-expand > a:after,
.widget.widget_nav_menu ul .menu-item.page_item_has_children.menu-expand > a:after,
.widget.widget_pages ul .menu-item.page_item_has_children.menu-expand > a:after,
.widget.widget_nav_menu .menu .menu-item.page_item_has_children.menu-expand > a:after,
.widget.widget_pages .menu .menu-item.page_item_has_children.menu-expand > a:after,
.widget.widget_nav_menu ul .page_item.page_item_has_children.menu-expand > a:after,
.widget.widget_pages ul .page_item.page_item_has_children.menu-expand > a:after,
.widget.widget_nav_menu .menu .page_item.page_item_has_children.menu-expand > a:after,
.widget.widget_pages .menu .page_item.page_item_has_children.menu-expand > a:after {
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
}
.widget.widget_nav_menu ul .menu-item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_pages ul .menu-item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_nav_menu .menu .menu-item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_pages .menu .menu-item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_nav_menu ul .page_item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_pages ul .page_item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_nav_menu .menu .page_item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_pages .menu .page_item.menu-item-has-children.menu-expand > .sub-menu,
.widget.widget_nav_menu ul .menu-item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_pages ul .menu-item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_nav_menu .menu .menu-item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_pages .menu .menu-item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_nav_menu ul .page_item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_pages ul .page_item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_nav_menu .menu .page_item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_pages .menu .page_item.page_item_has_children.menu-expand > .sub-menu,
.widget.widget_nav_menu ul .menu-item.menu-item-has-children.menu-expand > .children,
.widget.widget_pages ul .menu-item.menu-item-has-children.menu-expand > .children,
.widget.widget_nav_menu .menu .menu-item.menu-item-has-children.menu-expand > .children,
.widget.widget_pages .menu .menu-item.menu-item-has-children.menu-expand > .children,
.widget.widget_nav_menu ul .page_item.menu-item-has-children.menu-expand > .children,
.widget.widget_pages ul .page_item.menu-item-has-children.menu-expand > .children,
.widget.widget_nav_menu .menu .page_item.menu-item-has-children.menu-expand > .children,
.widget.widget_pages .menu .page_item.menu-item-has-children.menu-expand > .children,
.widget.widget_nav_menu ul .menu-item.page_item_has_children.menu-expand > .children,
.widget.widget_pages ul .menu-item.page_item_has_children.menu-expand > .children,
.widget.widget_nav_menu .menu .menu-item.page_item_has_children.menu-expand > .children,
.widget.widget_pages .menu .menu-item.page_item_has_children.menu-expand > .children,
.widget.widget_nav_menu ul .page_item.page_item_has_children.menu-expand > .children,
.widget.widget_pages ul .page_item.page_item_has_children.menu-expand > .children,
.widget.widget_nav_menu .menu .page_item.page_item_has_children.menu-expand > .children,
.widget.widget_pages .menu .page_item.page_item_has_children.menu-expand > .children {
  display: block;
}
.widget.woocommerce li:before {
  display: none;
  width: 0;
  height: 0;
  position: relative;
}
/*-----------------------------------------------------------------------------
 6.2 Post Tab Widget
 -----------------------------------------------------------------------------*/
.tab-content {
  overflow: hidden;
}
.tab-content,
.tab-content .tab-pane {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tab-content.fade,
.tab-content .tab-pane.fade {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.tab-content.fade.active,
.tab-content .tab-pane.fade.active {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tab-content.fade.active.in,
.tab-content .tab-pane.fade.active.in {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tab-content.vertical.fade,
.tab-content .tab-pane.vertical.fade {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.tab-content.vertical.fade.active,
.tab-content .tab-pane.vertical.fade.active {
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.tab-content.vertical.fade.active.in,
.tab-content .tab-pane.vertical.fade.active.in {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.tab-content.horizontal.fade,
.tab-content .tab-pane.horizontal.fade {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tab-content.horizontal.fade.active,
.tab-content .tab-pane.horizontal.fade.active {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.tab-content.horizontal.fade.active.in,
.tab-content .tab-pane.horizontal.fade.active.in {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tab-content.scale.fade,
.tab-content .tab-pane.scale.fade {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}
.tab-content.scale.fade.active.in,
.tab-content .tab-pane.scale.fade.active.in {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tab-content.slide_rotate_x.fade,
.tab-content .tab-pane.slide_rotate_x.fade {
  opacity: 0;
  -webkit-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
.tab-content.slide_rotate_x.fade.active.in,
.tab-content .tab-pane.slide_rotate_x.fade.active.in {
  opacity: 1;
  -webkit-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -o-transform: rotateX(0);
  transform: rotateX(0);
}
.tab-content.slide_rotate_y.fade,
.tab-content .tab-pane.slide_rotate_y.fade {
  opacity: 0;
  -webkit-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -o-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.tab-content.slide_rotate_y.fade.active.in,
.tab-content .tab-pane.slide_rotate_y.fade.active.in {
  opacity: 1;
  -webkit-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
}
.tab-content.slide_rotate_z.fade,
.tab-content .tab-pane.slide_rotate_z.fade {
  opacity: 0;
  -webkit-transform: rotateZ(-90deg);
  -ms-transform: rotateZ(-90deg);
  -o-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
}
.tab-content.slide_rotate_z.fade.active.in,
.tab-content .tab-pane.slide_rotate_z.fade.active.in {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  transform: rotateZ(0);
}
@-webkit-keyframes BackgroundZoom {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 50% 60%;
  }
}
@keyframes BackgroundZoom {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 50% 60%;
  }
}
/*-----------------------------------------------------------------------------
 6.3 Social Icon Plus Widget
 -----------------------------------------------------------------------------*/
.social-count-plus ul li:before {
  display: none;
}
.widget_seguesocialcountplus .social-count-plus li .icon,
.segue .social-count-plus li .icon {
  background: none !important;
}
.widget_seguesocialcountplus .social-count-plus li .icon:before,
.segue .social-count-plus li .icon:before {
  font-family: FontAwesome;
  text-rendering: auto;
  font-size: 23px;
}
.widget_seguesocialcountplus .social-count-plus li .count,
.segue .social-count-plus li .count {
  margin-top: 0;
}
.widget_seguesocialcountplus .social-count-plus li.count-twitter .icon:before,
.segue .social-count-plus li.count-twitter .icon:before {
  content: "\f099";
}
.widget_seguesocialcountplus .social-count-plus li.count-twitch .icon:before,
.segue .social-count-plus li.count-twitch .icon:before {
  content: "\f1e8";
}
.widget_seguesocialcountplus .social-count-plus li.count-facebook .icon:before,
.segue .social-count-plus li.count-facebook .icon:before {
  content: "\f082";
}
.widget_seguesocialcountplus .social-count-plus li.count-tumblr .icon:before,
.segue .social-count-plus li.count-tumblr .icon:before {
  content: "\f173";
}
.widget_seguesocialcountplus .social-count-plus li.count-steam .icon:before,
.segue .social-count-plus li.count-steam .icon:before {
  content: "\f1b7";
}
.widget_seguesocialcountplus .social-count-plus li.count-vimeo .icon:before,
.segue .social-count-plus li.count-vimeo .icon:before {
  content: "\f194";
}
.widget_seguesocialcountplus .social-count-plus li.count-github .icon:before,
.segue .social-count-plus li.count-github .icon:before {
  content: "\f09b";
}
.widget_seguesocialcountplus .social-count-plus li.count-youtube .icon:before,
.segue .social-count-plus li.count-youtube .icon:before {
  content: "\f16a";
}
.widget_seguesocialcountplus .social-count-plus li.count-soundcloud .icon:before,
.segue .social-count-plus li.count-soundcloud .icon:before {
  content: "\f1be";
}
.widget_seguesocialcountplus .social-count-plus li.count-pinterest .icon:before,
.segue .social-count-plus li.count-pinterest .icon:before {
  content: "\f0d2";
}
.widget_seguesocialcountplus .social-count-plus li.count-linkedin .icon:before,
.segue .social-count-plus li.count-linkedin .icon:before {
  content: "\f0e1";
}
.widget_seguesocialcountplus .social-count-plus li.count-instagram .icon:before,
.segue .social-count-plus li.count-instagram .icon:before {
  content: "\f16d";
}
.widget_seguesocialcountplus .social-count-plus li.count-googleplus .icon:before,
.segue .social-count-plus li.count-googleplus .icon:before {
  content: "\f0d4";
}
.widget_seguesocialcountplus .social-count-plus li.count-comments .icon:before,
.segue .social-count-plus li.count-comments .icon:before {
  content: "\f075";
}
.widget_seguesocialcountplus .social-count-plus li.count-users .icon:before,
.segue .social-count-plus li.count-users .icon:before {
  content: "\f007";
}
.widget_seguesocialcountplus .social-count-plus li.count-posts .icon:before,
.segue .social-count-plus li.count-posts .icon:before {
  content: "\f14b";
}
/*-----------------------------------------------------------------------------
 6.4 Sidebar
 -----------------------------------------------------------------------------*/
.sidebar .widget {
  border-bottom: solid 1px #e6e6e6;
}
.sidebar .widget.widget_categories,
.sidebar .widget.widget_search,
.sidebar .widget.widget_recent_entries,
.sidebar .widget.widget_recent_comments,
.sidebar .widget.widget_archive,
.sidebar .widget.widget_meta,
.sidebar .widget.widget_text,
.sidebar .widget.widget_segue_comment,
.sidebar .widget.segue_widget_instagram,
.sidebar .widget.widget_tag_cloud,
.sidebar .widget.segue_post,
.sidebar .widget.widget_rss,
.sidebar .widget.widget_nav_menu,
.sidebar .widget.widget_pages,
.sidebar .widget.segue_categories,
.sidebar .widget.woocommerce {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 480px) {
  .sidebar .widget.widget_categories,
  .sidebar .widget.widget_search,
  .sidebar .widget.widget_recent_entries,
  .sidebar .widget.widget_recent_comments,
  .sidebar .widget.widget_archive,
  .sidebar .widget.widget_meta,
  .sidebar .widget.widget_text,
  .sidebar .widget.widget_segue_comment,
  .sidebar .widget.segue_widget_instagram,
  .sidebar .widget.widget_tag_cloud,
  .sidebar .widget.segue_post,
  .sidebar .widget.widget_rss,
  .sidebar .widget.widget_nav_menu,
  .sidebar .widget.widget_pages,
  .sidebar .widget.segue_categories,
  .sidebar .widget.woocommerce {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.sidebar .widget:last-child {
  border-bottom: none;
}
.sidebar .widget-title,
.sidebar .widgettitle {
  text-align: center;
}
.slide-sidebar-wrap .widget {
  padding-top: 0;
}
/*-----------------------------------------------------------------------------
 7.0 Footer
 -----------------------------------------------------------------------------*/
.socials-feeds,
.footer-widget,
.footer-copyright {
  position: relative;
}
.socials-feeds,
.footer-widget {
  background: #ffffff;
}
.footer-widget {
  padding: 40px 0;
  border-top: solid 3px #f9f9f9;
}
.footer-copyright {
  background-color: #055EA4;
  min-height: 78px;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  align-items: center;
  font-size: 13px;
}
.footer-copyright,
.footer-copyright a {
  color: #ffffff;
}
.footer-copyright hr {
  border-top-color: #e6e6e6;
}
/*-----------------------------------------------------------------------------
 8.0 Typhography
 ----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
 8.1 Heading Markup
 ----------------------------------------------------------------------------*/
body {
  background: #f9f9f9;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.55px;
  line-height: 1.71;
  color: #565a5c;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.1px;
  line-height: 1.35;
}
h1,
.h1 {
  font-size: 48px;
}
h2,
.h2 {
  font-size: 34px;
}
h3,
.h3 {
  font-size: 28px;
}
h4,
.h4 {
  font-size: 24px;
}
h5,
.h5 {
  font-size: 18px;
}
h6,
.h6 {
  font-size: 16px;
}
@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 32px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
}
.heading {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
/*-----------------------------------------------------------------------------
 8.2 Placeholder Style
 ----------------------------------------------------------------------------*/
input,
textarea,
.button {
  box-shadow: none;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  padding: 5px 20px;
  background-color: #ffffff;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
.button::-moz-placeholder {
  color: #ababab;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.button:-ms-input-placeholder {
  color: #ababab;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.button::-webkit-input-placeholder {
  color: #ababab;
}
/*-----------------------------------------------------------------------------
 8.3 Blockquote
 ----------------------------------------------------------------------------*/
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.35;
  text-align: right;
  border: dashed 1px #e6e6e6;
  border-left-width: 0;
  border-right-width: 0;
  padding: 30px 0 30px 30px;
  margin: 25px 0;
  letter-spacing: 0.8px;
  position: relative;
  overflow: auto;
}
blockquote:before {
  display: block;
  content: '\f10e';
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  color: #ababab;
  position: absolute;
  left: 0;
  top: 25px;
}
@media (min-width: 480px) {
  blockquote {
    padding: 40px 80px;
    text-align: center;
  }
  blockquote:before {
    font-size: 36px;
    left: 15px;
    top: 12px;
  }
}
/*-----------------------------------------------------------------------------
 8.4 Images
 ----------------------------------------------------------------------------*/
img,
.img {
  max-width: 100%;
  height: auto;
}
img.rounded,
.img.rounded {
  border-radius: 3px;
}
/*-----------------------------------------------------------------------------
 8.5 Button
 ----------------------------------------------------------------------------*/
.btn {
  border-radius: 100px;
  padding: 5px 20px;
  font-weight: normal;
}
.btn-lg {
  letter-spacing: 2.5px;
}
.btn-sm {
  letter-spacing: 1.9px;
}
.btn-xs {
  letter-spacing: 1px;
}
/*-----------------------------------------------------------------------------
 8.6 Flex Video
 ----------------------------------------------------------------------------*/
.flex-video {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 55%;
  height: 0;
  margin: 0;
}
.flex-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.flex-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video video {
  width: 100%;
  position: relative;
  left: 0;
}
.flex-video[data-twttr-id*=twttr] {
  height: auto;
  padding: 0;
}
[class^="wp-image-"].aligncenter,
[class*=" wp-image-"].aligncenter {
  margin-top: 30px;
  margin-bottom: 30px;
}
/*-----------------------------------------------------------------------------
 8.7 WP Caption
 ----------------------------------------------------------------------------*/
.wp-caption-text {
  font-size: 12px;
  color: #ababab;
}
.wp-caption-text .caption-wrapper {
  margin: 0 auto;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
  padding: 5px 15px;
}
.wp-caption-text .caption-wrapper:before,
.wp-caption-text .caption-wrapper:after {
  display: block;
  content: '';
  color: inherit;
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 1px;
  background: #ababab;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wp-caption-text .caption-wrapper:after {
  right: 0;
  left: auto;
}
.wp-caption-text a {
  color: #565a5c;
}
/*-----------------------------------------------------------------------------
 8.8 Table
 ----------------------------------------------------------------------------*/
table {
  width: 100%;
}
table td,
table th {
  padding: 12px 8px;
  border: solid 1px #e6e6e6;
}
table td {
  vertical-align: top;
}
table caption {
  text-align: center;
}
address {
  font-style: italic;
}
pre {
  font-color: #565a5c;
  border-color: #ababab;
  background-color: #e6e6e6;
}
.lightboxOverlay {
  opacity: 0.9;
}
.lb-details .lb-title {
  color: #2cc09f;
}
/*-----------------------------------------------------------------------------
 8.9 Nuno Carousel
 ----------------------------------------------------------------------------*/
.owl-carousel-container {
  position: relative;
  margin: 40px;
}
.owl-carousel-container .owl-custom-pagination.navigation {
  margin-top: 0;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl {
  width: 30px;
  height: 75px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl:hover span:after,
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl:hover span:before {
  background-color: #565a5c;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:after,
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:before {
  display: block;
  content: '';
  height: 50%;
  width: 3px;
  background: #e6e6e6;
  position: absolute;
  border-radius: 2px 2px 5px 5px;
  top: 3px;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:before {
  left: 0;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:after {
  left: 1px;
  -webkit-transform: rotate(27deg);
  -ms-transform: rotate(27deg);
  -o-transform: rotate(27deg);
  transform: rotate(27deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:last-child:before {
  top: unset;
  bottom: 3px;
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  -o-transform: rotate(150deg);
  transform: rotate(150deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl span:last-child:after {
  top: unset;
  bottom: 3px;
  -webkit-transform: rotate(153deg);
  -ms-transform: rotate(153deg);
  -o-transform: rotate(153deg);
  transform: rotate(153deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.prev {
  left: -40px;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.next {
  right: -40px;
  left: unset;
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.next span:before {
  left: unset;
  right: 0;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.next span:after {
  right: 1px;
  left: unset;
  -webkit-transform: rotate(-27deg);
  -ms-transform: rotate(-27deg);
  -o-transform: rotate(-27deg);
  transform: rotate(-27deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.next span:last-child:before {
  top: unset;
  bottom: 3px;
  -webkit-transform: rotate(-150deg);
  -ms-transform: rotate(-150deg);
  -o-transform: rotate(-150deg);
  transform: rotate(-150deg);
}
.owl-carousel-container .owl-custom-pagination.navigation .btn-owl.next span:last-child:after {
  top: unset;
  bottom: 3px;
  -webkit-transform: rotate(-153deg);
  -ms-transform: rotate(-153deg);
  -o-transform: rotate(-153deg);
  transform: rotate(-153deg);
}
.el-btn .btn {
  letter-spacing: 2.7px;
  font-size: 11px;
}
.el-btn .btn.btn-sm {
  padding: 8px 20px;
}
.el-btn .btn.btn-xs {
  padding: 5px 20px;
}
.el-btn .btn.btn-lg {
  padding: 16px 20px;
}
.el-btn .btn.btn-skin-default,
.el-btn .btn.btn-skin-primary {
  color: #ffffff;
  background-color: #565a5c;
  border-color: #565a5c;
}
.el-btn .btn.btn-skin-default:hover,
.el-btn .btn.btn-skin-primary:hover,
.el-btn .btn.btn-skin-default:focus,
.el-btn .btn.btn-skin-primary:focus {
  color: #565a5c;
  background-color: #ffffff;
}
.el-btn .btn.btn-skin-default-ghost,
.el-btn .btn.btn-skin-primary-ghost {
  color: #565a5c;
  background-color: #ffffff;
  border-color: #e6e6e6;
}
.el-btn .btn.btn-skin-default-ghost:hover,
.el-btn .btn.btn-skin-primary-ghost:hover,
.el-btn .btn.btn-skin-default-ghost:focus,
.el-btn .btn.btn-skin-primary-ghost:focus {
  color: #ffffff;
  background-color: #565a5c;
  border-color: #565a5c;
}
.el-btn .btn.btn-skin-secondary {
  color: #ffffff;
  background-color: #ababab;
  border-color: #ababab;
}
.el-btn .btn.btn-skin-secondary:hover,
.el-btn .btn.btn-skin-secondary:focus {
  color: #ababab;
  background-color: #ffffff;
}
.el-btn .btn.btn-skin-secondary-ghost {
  color: #ababab;
  background-color: #ffffff;
  border-color: #e6e6e6;
}
.el-btn .btn.btn-skin-secondary-ghost:hover,
.el-btn .btn.btn-skin-secondary-ghost:focus {
  color: #ffffff;
  background-color: #ababab;
  border-color: #ababab;
}
.el-btn .btn.btn-skin-readmore {
  color: #ffffff;
  background-color: #2cc09f;
  border-color: #2cc09f;
}
.el-btn .btn.btn-skin-readmore:hover,
.el-btn .btn.btn-skin-readmore:focus {
  color: #2cc09f;
  background-color: #ffffff;
}
.el-btn .btn.btn-skin-readmore-ghost {
  color: #2cc09f;
  background-color: #ffffff;
  border-color: #e6e6e6;
}
.el-btn .btn.btn-skin-readmore-ghost:hover,
.el-btn .btn.btn-skin-readmore-ghost:focus {
  color: #ffffff;
  background-color: #2cc09f;
  border-color: #2cc09f;
}
/*-----------------------------------------------------------------------------
 8.10 Post Slider
 ----------------------------------------------------------------------------*/
.segue-post-slider {
  position: relative;
  clear: both;
  background: #ffffff;
}
.segue-post-slider:not(.owl-carousel) {
  height: 660px;
}
.segue-post-slider .owl-item {
  height: 75vw;
  padding-bottom: 80px;
  background: #ffffff;
}
.segue-post-slider .owl-item.previous {
  position: absolute;
  right: 100%;
}
@media (min-width: 992px) {
  .segue-post-slider .owl-item {
    height: 780px;
    padding-bottom: 120px;
  }
}
.segue-post-slider .slide-item {
  height: 100%;
  position: relative;
}
.segue-post-slider .slide-item .slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.segue-post-slider .slide-item .slide-image img {
  position: absolute;
  height: auto;
  left: 50%;
  top: 50%;
  width: auto;
  max-width: 200%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.segue-post-slider .slide-item .slide-title {
  margin-top: 10px;
  margin-bottom: 5px;
}
.segue-post-slider .slide-item .slide-content {
  padding: 30px 50px;
  background: #ffffff;
  min-height: 240px;
  width: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-delay: 0.8s;
}
.segue-post-slider .slide-item .slide-content-excerpt {
  max-height: 30px;
  overflow: hidden;
}
.segue-post-slider .slide-item .read-more {
  color: #ffffff;
  background-color: #2cc09f;
  border-color: #2cc09f;
  text-transform: uppercase;
  clear: both;
  margin-top: 20px;
}
.segue-post-slider .slide-item .read-more:focus,
.segue-post-slider .slide-item .read-more.focus {
  color: #ffffff;
  background-color: #22977d;
  border-color: #145849;
}
.segue-post-slider .slide-item .read-more:hover {
  color: #ffffff;
  background-color: #22977d;
  border-color: #218e76;
}
.segue-post-slider .slide-item .read-more:active,
.segue-post-slider .slide-item .read-more.active,
.open > .dropdown-toggle.segue-post-slider .slide-item .read-more {
  color: #ffffff;
  background-color: #22977d;
  border-color: #218e76;
}
.segue-post-slider .slide-item .read-more:active:hover,
.segue-post-slider .slide-item .read-more.active:hover,
.open > .dropdown-toggle.segue-post-slider .slide-item .read-more:hover,
.segue-post-slider .slide-item .read-more:active:focus,
.segue-post-slider .slide-item .read-more.active:focus,
.open > .dropdown-toggle.segue-post-slider .slide-item .read-more:focus,
.segue-post-slider .slide-item .read-more:active.focus,
.segue-post-slider .slide-item .read-more.active.focus,
.open > .dropdown-toggle.segue-post-slider .slide-item .read-more.focus {
  color: #ffffff;
  background-color: #1c7965;
  border-color: #145849;
}
.segue-post-slider .slide-item .read-more:active,
.segue-post-slider .slide-item .read-more.active,
.open > .dropdown-toggle.segue-post-slider .slide-item .read-more {
  background-image: none;
}
.segue-post-slider .slide-item .read-more.disabled:hover,
.segue-post-slider .slide-item .read-more[disabled]:hover,
fieldset[disabled] .segue-post-slider .slide-item .read-more:hover,
.segue-post-slider .slide-item .read-more.disabled:focus,
.segue-post-slider .slide-item .read-more[disabled]:focus,
fieldset[disabled] .segue-post-slider .slide-item .read-more:focus,
.segue-post-slider .slide-item .read-more.disabled.focus,
.segue-post-slider .slide-item .read-more[disabled].focus,
fieldset[disabled] .segue-post-slider .slide-item .read-more.focus {
  background-color: #2cc09f;
  border-color: #2cc09f;
}
.segue-post-slider .slide-item .read-more .badge {
  color: #2cc09f;
  background-color: #ffffff;
}
.segue-post-slider .slide-item .read-more:hover,
.segue-post-slider .slide-item .read-more:focus {
  color: #2cc09f;
  background: #ffffff;
}
.segue-post-slider .slide-item .slide-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
.segue-post-slider .slide-item .slide-category,
.segue-post-slider .slide-item .slide-category a {
  color: #ababab;
}
.segue-post-slider .owl-item .slide-content {
  position: absolute;
  top: -100%;
}
.segue-post-slider .owl-item.active .slide-content {
  top: 0;
}
.segue-post-slider.position-bottom .slide-content {
  position: absolute;
  bottom: -120px;
}
.segue-post-slider.position-bottom .owl-item .slide-content {
  top: unset;
  bottom: -100%;
}
.segue-post-slider.position-bottom .owl-item.active .slide-content {
  bottom: -120px;
}
.segue-post-slider.align-center {
  text-align: center;
}
.segue-post-slider.align-center .slide-content {
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}
.segue-post-slider.align-center.position-bottom .slide-content,
.segue-post-slider.align-center .owl-item .slide-content {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.segue-post-slider.align-right {
  text-align: right;
}
.segue-post-slider.align-right .slide-content {
  margin-left: auto;
  margin-right: 0;
}
.segue-post-slider.align-right.position-bottom .slide-content,
.segue-post-slider.align-right .owl-item .slide-content {
  right: 0;
}
.segue-post-slider .navigation {
  position: absolute;
  top: calc(50% - 40px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
@media (min-width: 1219px) {
  .segue-post-slider .navigation {
    top: calc(50% - 60px);
  }
}
.segue-post-slider .navigation .nav-btn {
  width: 27px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  color: #565a5c;
  font-size: 24px;
  display: block;
  position: relative;
  float: left;
  cursor: pointer;
}
.segue-post-slider .navigation .nav-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.segue-post-slider .navigation .nav-btn.next {
  float: right;
  margin-left: auto;
}
@media (max-width: 768px) {
  .segue-post-slider .slide-item .slide-content {
    padding: 20px;
    width: calc(100% - 100px);
    min-height: 200px;
  }
  .segue-post-slider .slide-item .slide-content .slide-title {
    max-height: 64px;
    font-size: 24px;
    margin: 0;
  }
  .segue-post-slider .slide-content-excerpt {
    display: none;
  }
}
@media (min-width: 768px) {
  .segue-post-slider-wrapper.style-2 {
    width: 100%;
    overflow: hidden;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel {
    width: 50%;
    margin: 0 auto;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .owl-wrapper-outer {
    overflow: visible;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .owl-wrapper-outer .masking {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 0.3);
    left: 100%;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .owl-wrapper-outer .masking.masking-before {
    right: 100%;
    left: unset;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .owl-item .slide-content {
    width: 100%;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .owl-item.active {
    border: solid 5px #ffffff;
    border-width: 0 5px 0 5px;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .navigation .nav-btn.prev {
    margin-left: -27px;
  }
  .segue-post-slider-wrapper.style-2 .segue-post-slider.owl-carousel .navigation .nav-btn.next {
    margin-right: -27px;
    margin-left: unset;
  }
  .segue-post-slider-wrapper.style-3 {
    width: 100%;
    overflow: hidden;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel {
    width: 50%;
    margin: 0 auto 0 0;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .owl-wrapper-outer {
    overflow: visible;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .owl-wrapper-outer .masking {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 0.3);
    left: 100%;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .owl-wrapper-outer .masking.masking-before {
    right: 100%;
    left: unset;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .owl-item .slide-content {
    width: 100%;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .owl-item.active {
    border: solid 5px #ffffff;
    border-width: 0 5px 0 5px;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .navigation {
    width: 200%;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .navigation .nav-btn.prev {
    margin-left: 0px;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel .navigation .nav-btn.next {
    margin-right: 0px;
    margin-left: unset;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel.align-center {
    text-align: left;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel.align-right {
    margin: 0 0 0 auto;
  }
  .segue-post-slider-wrapper.style-3 .segue-post-slider.owl-carousel.align-right .navigation {
    right: 0;
  }
}
.single-post .owl-item {
  padding-bottom: 0;
}
.single-post .section-heading {
  padding-bottom: 0;
}
@media (min-width: 1219px) {
  .single-post .owl-item {
    height: 660px;
    padding-bottom: 0;
  }
  .single-post .section-heading .wp-custom-header {
    height: 660px;
  }
}
.single-post .soundcloud-media {
  width: 100%;
  max-width: 1219px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.single-post .soundcloud-media iframe {
  width: 100%;
  border-color: transparent !important;
}
@-webkit-keyframes zoom-in-out {
  0% {
    height: 100%;
  }
  30% {
    height: 120%;
  }
  100% {
    height: 100%;
  }
}
@-moz-keyframes zoom-in-out {
  0% {
    height: 100%;
  }
  30% {
    height: 120%;
  }
  100% {
    height: 100%;
  }
}
@keyframes zoom-in-out {
  0% {
    height: 100%;
  }
  30% {
    height: 120%;
  }
  100% {
    height: 100%;
  }
}
/*-----------------------------------------------------------------------------
 8.11 Instagram Gallery
 ----------------------------------------------------------------------------*/
.instagram-gallery {
  position: relative;
}
.instagram-gallery ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.instagram-gallery ul .instagram-image {
  display: inline-block;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  min-height: 33.3333vw;
  overflow: hidden;
}
.instagram-gallery ul .instagram-image:nth-child(n+4) {
  display: none;
}
.instagram-gallery ul .instagram-image a {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.instagram-gallery ul .instagram-image img {
  min-width: 100%;
  max-width: 200%;
  height: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  -moz-transform: translate(-50%, -50%) scale(1.5);
  -ms-transform: translate(-50%, -50%) scale(1.5);
  transform: translate(-50%, -50%) scale(1.5);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0.3, 0.8, 1);
  -o-transition: all 0.2s cubic-bezier(0.5, 0.3, 0.8, 1);
  transition: all 0.2s cubic-bezier(0.5, 0.3, 0.8, 1);
}
.instagram-gallery ul .instagram-image:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.instagram-gallery .gallery-title {
  padding: 20px 25px;
  text-align: center;
  vertical-align: middle;
  background: #ffffff;
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .instagram-gallery ul .instagram-image {
    min-height: 25vw;
  }
  .instagram-gallery ul .instagram-image:nth-child(4) {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .instagram-gallery ul .instagram-image {
    min-height: 20vw;
  }
  .instagram-gallery ul .instagram-image:nth-child(5) {
    display: inline-block;
  }
}
@media (min-width: 1219px) {
  .instagram-gallery ul .instagram-image {
    min-height: 250px;
  }
  .instagram-gallery ul .instagram-image:nth-child(6) {
    display: inline-block;
  }
}
/*-----------------------------------------------------------------------------
 8.12 Social Links
 ----------------------------------------------------------------------------*/
.socials-link {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  text-align: center;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-around;
}
.socials-link li {
  display: inline-block;
}
.socials-link li i {
  font-size: 17px;
}
.socials-link li span {
  text-transform: capitalize;
  font-size: 16px;
  margin-left: 5px;
}
@media (max-width: 480px) {
  .socials-link li span {
    display: none;
  }
}
.module-iconboxes .box i {
  font-size: 47px;
  color: #2cc09f;
}
.module-iconboxes .box-heading {
  font-size: 20px;
}
.module-iconboxes.style-2 .iconboxes-wrap {
  position: relative;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.module-iconboxes.style-2 .iconboxes-wrap .box,
.module-iconboxes.style-2 .iconboxes-wrap .text-wrap {
  width: auto;
}
.module-iconboxes.style-2 .iconboxes-wrap .box {
  padding-right: 35px;
}
.segue-blog.post-lists {
  padding-top: 0;
}
/*-----------------------------------------------------------------------------
 9.0 Woocommerce Shop
 ----------------------------------------------------------------------------*/
.woocommerce input {
  padding-left: 0;
  padding-right: 0;
}



 
 

/*-----------------------------------------------------------------------------  
IWS - JY
----------------------------------------------------------------------------*/
body { background: #fff }
body, body p { font-size: 17px }
h1, h2, h3, h4, h5, h6 { color: #6d2771; font-family: 'Raleway', sans-serif }

a, .el_text p a { color: #6d2771 }
.donate-btn  { color: #fff!important }
.custom-logo { min-width: 230px; max-width: 100%; height: auto }
.top-bar.affix #logo img.custom-logo { max-width: 230px!important; height: auto }
.top-bar #logo { padding: 10px 50px 5px }

.main-container { width: 100%; max-width: 1500px }
body.archive .main-content, body.category .main-content, body.error404 .main-content, body.search .main-content, body.favorite-posts .main-content, body.page-template-blog .main-content, body.page-template-default .main-content
{ padding-top: 0 }
.top-bar .main-menu .page_item, .top-bar .main-menu .menu-item { font-size: 14px; letter-spacing: 0 }
.top-bar .main-menu .menu-item { font-weight: bold }
.menu-item.pinterer { display: none!important }

.main-menu #menu-item-95 { background: #055EA4!important; color: #fff!important; margin-left: 10px }
.main-menu #menu-item-95:hover { background: #444!important }
.main-menu #menu-item-95  a { color: #fff }
.top-bar .main-menu .sub-menu-container { width: 220px }

/* hp slider */
.nivo-caption { background: transparent!important; margin-bottom: 20px; text-align: center }
.nivo-caption h2 { background: #6d2771!important; color: #fff;  display: inline-block; font-size: 48px; padding: 6px 16px; text-transform: uppercase; text-align: center }
@media(max-width: 1368px){
	.nivo-caption { margin-bottom: 80px }
	.nivo-caption h2 { font-size: 225% }
}
@media(max-width: 1140px){
	.nivo-caption { margin-bottom: 20px }
	.nivo-caption h2 { font-size: 150% }
 
}
@media(max-width: 800px){
	.nivo-caption { margin-bottom: 0 }
	.nivo-caption h2 { font-size: 70% } 
	.intro-section .el_text { margin: 0 auto!important; padding: 0; width: 90% }
}
/* owl carousel */ 
.el_image .image-align-center img { width: 100%; height: auto }
.owl-carousel-container { margin: 20px 0 }
.footer-copyright { background-color: #055EA4 }

/* content */
 

/* sections */ 
/* intro section */
.intro-section h1 { font-weight: 700 }
.intro-section p  { color: #333333; font-family: Lato; font-size: 18px; font-weight: 400; line-height: 1.71 }


/* quote section */
.quote-section { width: 80%; margin: 0 auto; padding: 40px 0 0 } 
 
.quote-text { color: #2c2b2b; font-family: DIN-Medium; font-size: 24px; font-weight: 500; line-height: 1.4; padding: 40px 0 }
.quote-name { display: block; font-size: 16px; font-weight: 500; margin: 12px 0 30px; text-align: right; width: 100% }
 
.sidebar-right .quote-section { border-bottom: 2px dashed #d4d4d4; border-top: 2px dashed #d4d4d4; margin: 40px auto; padding: 20px 0 0 }
.sidebar-right .quote-text { font-size: 17px; padding: 20px 0 }  
.sidebar-right .quote-name { color: #2c2b2b }

.quote i.fa.fa-quote-left, .quote i.fa.fa-quote-right { display: inline-block; font-size: 36px; position: absolute }
.quote i.fa.fa-quote-left { margin-left: -50px; margin-top: 0 }
.quote i.fa.fa-quote-right { margin-left: 15px; margin-top: 4px }
@media(max-width: 767px) {
	.quote-section .inner-row { width: 100%; padding: 30px 0!important }
	.el_text.quote { width: 70%;  margin: 0 auto }
	.quote-text { font-size: 16px }
	.quote i.fa.fa-quote-left, .quote i.fa.fa-quote-right { font-size: 26px }
	.quote i.fa.fa-quote-left { margin-left: -32px }
	.quote i.fa.fa-quote-right { margin-right: 32px }
} 

/* teaser section */
.hp-teasers { padding: 30px 0; width: 80%; margin: 0 auto }
.hp-teasers .hover-box-inner { padding: 25% 0; text-align: center  }
.hp-teaser h3 { color: #ffffff; font-family: Raleway; font-size: 32px; line-height: 1.2; font-weight: 600; margin: 0 auto 12px; padding: 0 }
.hp-teaser .read-more-button--blue { color: #ffffff; background-color: #055EA4; border: 0; display: inline-block; font-size: 11px; font-weight: normal; padding: 8px 30px!important; -moz-border-radius: 16px; border-radius: 16px;
 letter-spacing: 2.7px } 

@media(max-width: 767px) {
	.hp-teasers .el_hover_box { display: block; margin: 20px auto; width: 100%  } 
}


/* featured content section */
.featured-content-section { padding: 30px 0 }
.featured-content-section .el_text { color: #666666; font-family: Lato; font-size: 14px; font-weight: 400; padding:  0 20px }
.featured-content-section .el_text h3 {  font-family: DIN-Medium; font-size: 20px; }
.featured-content-section .el_text h3 a { color: #6d2771 }
.owl-carousel-container.featured-content-section .owl-custom-pagination.navigation .btn-owl.prev { left: -35px }
.owl-carousel-container.featured-content-section .owl-custom-pagination.navigation .btn-owl.next { right: -35px }
.featured-content-section .owl-slide { border: 1px solid #ebebeb }


/* icons */
.icon--purple { color: #6d2771 }

/* social links */
.socials-feeds { margin: 0 auto; width: 400px; } 
a:hover i { color: #055EA4 }


/* buttons */
.el-btn.blue-button { padding: 12px 0 }
.el-btn.blue-button .btn { color: #ffffff; background-color: #055EA4; border: 0; display: inline-block; padding: 8px 30px; -moz-border-radius: 0!important; border-radius: 0!important }
.read-more-button--blue { -moz-border-radius: 0!important; border-radius: 0!important }
.el-btn.blue-button .btn:hover, .read-more-button--blue:hover{ background: #444; color: #fff }
/* footer */
.address-info { background: #f0f0f0; color: #676766; font-family: Raleway; font-size: 16px; font-weight: 700; line-height: 1.4; padding: 30px 0; text-align: center }
 
 
/* widgets */
.popular-post-title.h6 { color: #6d2771; font-family: Raleway; font-size: 16px; font-weight: 700 }
.main-content  { border-bottom: 2px dashed #d4d4d4 }

.callout-buttons { list-style: none; margin: 0 auto; padding: 20px 0; text-align: center }
.callout-buttons li { display: block; line-height: 112px; margin: 16px auto }
.callout-buttons li a { background: #fff; color: #6d2771; display: inline-block; font-family: Raleway; font-size: 14px; font-weight: 700; line-height: 1; width: 95px; padding: 14px 0; text-transform: uppercase;   }
.callout-buttons li:hover { opacity: 0.9 }

/* related resources */
.related-resources-section { font-size: 16px; margin: 100px auto; max-width: 80%; word-break: break-word } 
.related-resources-section a { font-size: 16px } 
.related-resources-section a:hover { color: #6d2771 }
.related-resources-section p { line-height: 1.2;  margin: 6px 0 }
.related-resources-section [class*="btn--"]:hover { color:#fff }
/* contact page */
.bg-gray  { background: #f0f0f0 }
.gform_wrapper ul li.gfield { margin-top: 4px }
body .gform_wrapper .top_label div.ginput_container { margin-top: 0 } 
.info-box--contact { padding: 0 24px 24px; width: 50% }

@media ( max-width: 767px){
 .main-content { padding-top: 0 }
 .section-heading , .section-heading .wp-custom-header { min-height 140px!important; max-height: 200px  }
}


.section-heading { background: none; padding-bottom: 0 }
.header-title-overlay { background: #6d2771!important; color: #fff;  display: inline-block; font-size: 28px; padding: 0 16px 6px; text-transform: uppercase; text-align: center;
position: absolute; margin: 0; bottom: 0; left: 0; z-index: 1; text-align: center; width: 100% }
.header-title-overlay h1 { color: #fff; font-size: 28px; line-height: 1 }

@media ( max-width: 767px){
 .header-title-overlay h1 { font-size: 15px; line-height: 1.4 }
} 

/* staff bios */
.member-bio { margin: 20px auto }
.member-bio--title h4 { color: #6d2771; font-family: inherit }
.member-bio .read-bio { color: #6d2771; cursor: pointer }


/* hp carousel alterations */
.home .owl-slide a img { min-height: 200px; width: auto } 
@media ( max-width: 767px ) {
/* hp carousel alterations */
 .home .owl-slide a img { min-height: 0; width: 100% }
}
/* book resources */
.quote-slide { width: 100% } 
.quote-slide .quote-name { padding-right: 75px }
.quote-slide .quote-text { width: 86%; margin: 0 auto }

@media ( min-width: 1368px){
 .quote-slide .quote-text { width: 82%; margin: 0 auto }
}
@media ( max-width: 1200px){
 .quote-slide .quote-text { width: 80%; margin: 0 auto }
}
@media ( max-width: 767px){
	.quote-section { padding: 20px 0; width: 100%; margin: 0 auto }
	.quote-slide .quote-text { width: 70%; font-size: 16px }
}


/* donate page */
.donate-btn { background: #055EA4; color: #fff; font-size: 30px; padding: 6px 24px 10px }
.donate-btn:hover { background: #6d2771; color:#fff }
.btn--medium { font-size: 24px }
.btn--medium:hover { color:#fff }
@media( max-width: 1040px ) {
	.donate-btn { display: block; width: 100%; font-size: 90%; margin: 12px auto; text-align: center }
}

/* course page */
#gform_submit_button_2 { background-color: #055EA4; color: #fff }
 

@media ( min-width: 767px) and (max-width: 1900px) { 
 #featured-content-section #carousel39 .owl-wrapper, 
 #featured-content-section #carousel58 .owl-wrapper { width: auto!important }
}
  
.impact-navigation { border-bottom: 2px solid #d2d2d2; margin: 10px auto 0 }
.impact-navigation ul { text-align: center }
.impact-navigation ul li { border-left: 1px solid #d2d2d2; display: inline-block; list-style: none; margin: 0; padding: 0 10px; text-align: center }
.impact-navigation ul li:first-child { border-left: 0 }
.impact-navigation ul li a { color: #6d2771; font-size: 12px }
.impact-navigation ul li a:hover { text-decoration: underline }


@media ( max-width: 1140px){
	.hp-teasers { padding: 0 }
	.hp-teasers .el_hover_box { margin: 20px  auto } 
	button#responsive-menu-button .responsive-menu-box { top: -2px!important }
}

.featured-content-section .owl-slide .el_text p:first-child  { height: 200px!important }
.featured-content-section .owl-slide .el_text img { vertical-align: bottom }
  
	
@media ( max-device-width: 1040px ) {
	body .top-bar.affix, body.admin-bar .top-bar.affix { top:-125px!important }
}
/* iframes */
@media ( max-width: 1040px ) { 
 iframe { max-width: 90% }
} 
@media ( max-width: 800px ) {
 iframe { max-width: 100%; height: 260px }
}

@media ( max-width: 767px ) {
 iframe { max-width: 100%; height: 200px } 
}	
	

/* ----------- iPad 3 and 4 ----------- */
/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1140px) 
  and (-webkit-min-device-pixel-ratio: 2) {
  /* header */
	#top-bar { display: none } 
  /* btn */
  .donate-btn { display: block; max-width: 100%; font-size: 90%; margin: 12px auto; text-align: center } 
 
}

/* mobile menu upgrades */ 
@media (max-width: 1140px) {
  #mobile-logo {
    min-height:0!important;
		max-width: 100px!important
   }  
}
 
@media (max-width: 767px) {	
	/* header */
	#top-bar { display: none } 
	/* footer */ 
	.socials-feeds { max-width: 100% }
	.footer-copyright p { font-size: 13px }  
	/* content */
	.el_text { margin: 0 auto!important; max-width: 90% } 
}	
	 
.main-container { padding-top: 94px } 
.top-bar { position: fixed; width: 1500px; max-width: 100%; top: 0 }
/* mobile menu upgrades */ 
@media (max-width: 1140px) { 
	.main-container { padding-top: 0 } 
}

 
