/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
@charset "UTF-8";
/* General Styles */
/* -------------------------------------------------- */
/* Typography */
/* -------------------------------------------------- */
/****************
Custom Grid
*****************/
/*
@media (max-width: 600px){
	*[data-bears-masonryhybrid]{
		.grid-sizer,
		.grid-item{
			width: 100% !important;
		}
	}
}
*/
/***************
 * Button
 ***************/
/******************
 * Bearsthemes Grid
 ******************/
/* button style default */
/***************
 * section
 ***************/
/*******************
name: about us style lemonspa
html:
  <div class="aboutus-html-style-1">
    <img src="http://localhost/wordpress/lemonspa/wp-content/uploads/2016/11/image-4.jpg" alt="">
    <p>id est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitae.</p>
    <a href="#" class="bt-btn">READ MORE</a>
  </div>
********************/
/****************************
fw-shortcode-calendar-wrapper
****************************/
/**
 * $fw-top-menu-color - lvl 1
 * $fw-top-menu-line-color - lvl 1 hover
 * $fw-sub-menu-color
 */
/* hidden menu title */
/* wp-caption */
/* Portfolio Short By Category */
/* listing */
/* navigation style default */
/* WP Widgets Layout */
/* -------------------------------------------------- */
/* Widget Facebook */
/* Widget Twitter Feed */
/* Widget Flickr */
/* Widget Posts with image */
/* Widget Search */
/* Recent Entries */
/* Widget Categories, Nav Menu, Meta, Pages */
/* widget calendar */
/* Widget TagCloud */
/* RSS */
/* Widget Text */
/* Widget Login */
/* Widget Text */
/* Footer Widget */
/*@import "lemonspa/style"*/
@keyframes add_to_cart_loading_ani {
  from {
    transform: rotate(0); }

  to {
    transform: rotate(360deg); } }

@-webkit-keyframes add_to_cart_loading_ani {
  from {
    -webkit-transform: rotate(0); }

  to {
    -webkit-transform: rotate(360deg); } }

.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animatedFast {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }

  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }

  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }

  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes growIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes growIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7); }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.growIn {
  -webkit-animation-name: growIn;
  animation-name: growIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes growOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7); } }

@keyframes growOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7); } }

.growOut {
  -webkit-animation-name: growOut;
  animation-name: growOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateX(100px);
    transform: translateX(100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateY(100px);
    transform: translateY(100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  20% {
    opacity: 1;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDownSmall {
  -webkit-animation-name: fadeInDownSmall;
  animation-name: fadeInDownSmall; }

@-webkit-keyframes fadeInDownSmall40 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDownSmall40 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInDownSmall40 {
  -webkit-animation-name: fadeInDownSmall40;
  animation-name: fadeInDownSmall40; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes fadeOutUpSmall {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }

@keyframes fadeOutUpSmall {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); } }

.fadeOutUpSmall {
  -webkit-animation-name: fadeOutUpSmall;
  animation-name: fadeOutUpSmall; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

.container-fully {
  width: 1600px;
  max-width: 100%; }

.fw-section-height-sm {
  height: 240px; }

.fw-section-height-md {
  height: 300px; }

.fw-section-height-lg {
  height: 440px; }

.fw-section-height-custom, .fw-column-height-custom {
  overflow: hidden;
  /*
.fw-section-space {
  &:not(.page-template-visual-builder-template) {
    .fw-main-row-custom,
    .fw-main-row {
      .fw-container,
      .fw-container-fluid {
        padding-top: $fw-section-padding;
        padding-bottom: $fw-section-padding;
      }
    }
  }
}
*/ }

.bt-section-space {
  padding-top: 100px;
  padding-bottom: 100px; }

@media (max-width: 991px) {
  .fw-content-overlay-sm {
    margin-bottom: -20px; }

  .fw-content-overlay-md {
    margin-bottom: -40px; }

  .fw-content-overlay-lg {
    margin-bottom: -60px; } }

@media (max-width: 767px) {
  .fw-section-height-lg {
    height: 300px; } }

.fw_theme_bg_color_1 {
  background-color: #24ca24 !important; }

.fw_theme_hover_bg_color_1 {
  background-color: #24ca24 !important; }

.fw_theme_bg_color_2 {
  background-color: #39bcdd !important; }

.fw_theme_hover_bg_color_2 {
  background-color: #39bcdd !important; }

.fw_theme_bg_color_3 {
  background-color: #1f1f1f !important; }

.fw_theme_hover_bg_color_3 {
  background-color: #1f1f1f !important; }

.fw_theme_bg_color_4 {
  background-color: #808080 !important; }

.fw_theme_hover_bg_color_4 {
  background-color: #808080 !important; }

.fw_theme_bg_color_5 {
  background-color: #ebebeb !important; }

.fw_theme_hover_bg_color_5 {
  background-color: #ebebeb !important; }

.fw_theme_text_color_1 {
  color: #24ca24 !important; }

.fw_theme_text_color_2 {
  color: #39bcdd !important; }

.fw_theme_text_color_3 {
  color: #1f1f1f !important; }

.fw_theme_text_color_4 {
  color: #808080 !important; }

.fw_theme_text_color_5 {
  color: #ebebeb !important; }

.fw_theme_border_color_1 {
  border: 1px solid #24ca24 !important; }

.fw_theme_border_color_2 {
  border: 1px solid #39bcdd !important; }

.fw_theme_border_color_3 {
  border: 1px solid #1f1f1f !important; }

.fw_theme_border_color_4 {
  border: 1px solid #808080 !important; }

.fw_theme_border_color_5 {
  border: 1px solid #ebebeb !important; }

.fw_theme_border_only_color_1 {
  border-color: #24ca24 !important; }

.fw_theme_border_only_color_2 {
  border-color: #39bcdd !important; }

.fw_theme_border_only_color_3 {
  border-color: #1f1f1f !important; }

.fw_theme_border_only_color_4 {
  border-color: #808080 !important; }

.fw_theme_border_only_color_5 {
  border-color: #ebebeb !important; }

.fw_hover_bg_color_1:hover {
  background-color: #24ca24 !important; }

.fw_hover_bg_color_2:hover {
  background-color: #39bcdd !important; }

.fw_hover_bg_color_3:hover {
  background-color: #1f1f1f !important; }

.fw_hover_bg_color_4:hover {
  background-color: #808080 !important; }

.fw_hover_bg_color_5:hover {
  background-color: #ebebeb !important;
  /* page 404 */ }

.error404 {
  background: url('../images/background-page-404.jpg') center center / cover;
  background-attachment: fixed; }
  .error404 footer.bt-footer {
    display: none; }

.bt-404-page {
  padding: 170px 0 170px;
  background-attachment: fixed; }
  .bt-404-page .wrap-entry-404 .fw-title-404 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 28px;
    color: #fff; }
    .bt-404-page .wrap-entry-404 .fw-title-404-sub {
      font-size: 30px;
      font-weight: normal;
      color: #fff; }
    .bt-404-page .wrap-entry-404 .page-content {
      color: #fff; }
      .bt-404-page .wrap-entry-404 .page-content a {
        text-decoration: underline;
        -webkit-transition: 0.3s;
        transition: 0.3s; }
        .bt-404-page .wrap-entry-404 .page-content a:hover {
          color: #43de43; }
      .bt-404-page .wrap-entry-404 .page-content .search-form {
        position: relative;
        display: inline-block;
        max-width: 100%;
        width: 450px;
        margin: 20px auto; }
        .bt-404-page .wrap-entry-404 .page-content .search-form label {
          display: block;
          position: relative;
          width: 100%; }
          .bt-404-page .wrap-entry-404 .page-content .search-form label .screen-reader-text {
            display: none; }
          .bt-404-page .wrap-entry-404 .page-content .search-form label input.search-field {
            width: 100%;
            height: 50px !important;
            border-radius: 100px !important;
            padding-left: 24px !important;
            padding-right: 130px !important;
            color: #333;
            font-weight: normal; }
          .bt-404-page .wrap-entry-404 .page-content .search-form label:after {
            content: "";
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            display: inline-block;
            font-family: "Ionicons";
            font-style: normal;
            font-variant: normal;
            font-weight: normal;
            line-height: 1;
            text-rendering: auto;
            text-transform: none;
            font-size: 24px;
            color: #24ca24; }
        .bt-404-page .wrap-entry-404 .page-content .search-form input.search-submit {
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          background: none;
          font-size: 0;
          display: none; }
      .bt-404-page .wrap-entry-404 .page-content .go-to-homepage {
        margin-top: 10px;
        font-size: 18px;
        font-weight: bold; }
        .bt-404-page .wrap-entry-404 .page-content .go-to-homepage a {
          -webkit-transition: 0.3s;
          transition: 0.3s;
          text-decoration: none; }
        .bt-404-page .wrap-entry-404 .page-content .go-to-homepage:hover a {
          color: #2eda2e; }

.gallery.gallery-columns-1:after {
  content: "";
  display: block;
  clear: both; }
  .gallery.gallery-columns-1 .gallery-item {
    width: calc(100% / 1);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-1 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-1 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-2:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-2 .gallery-item {
    width: calc(100% / 2);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-2 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-2 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-3:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-3 .gallery-item {
    width: calc(100% / 3);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-3 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-3 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-4:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-4 .gallery-item {
    width: calc(100% / 4);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-4 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-4 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-5:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-5 .gallery-item {
    width: calc(100% / 5);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-5 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-5 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-6:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-6 .gallery-item {
    width: calc(100% / 6);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-6 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-6 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-7:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-7 .gallery-item {
    width: calc(100% / 7);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-7 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-7 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-8:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-8 .gallery-item {
    width: calc(100% / 8);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-8 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-8 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-9:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-9 .gallery-item {
    width: calc(100% / 9);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-9 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-9 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-10:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-10 .gallery-item {
    width: calc(100% / 10);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-10 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-10 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-11:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-11 .gallery-item {
    width: calc(100% / 11);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-11 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-11 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }
  .gallery.gallery-columns-12:after {
    content: "";
    display: block;
    clear: both; }
  .gallery.gallery-columns-12 .gallery-item {
    width: calc(100% / 12);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px; }
    .gallery.gallery-columns-12 .gallery-item img {
      max-width: 100%;
      height: auto; }
    .gallery.gallery-columns-12 .gallery-item .gallery-caption {
      margin-top: 8px;
      font-family: caption;
      font-style: italic; }

.post-password-form {
  /* table styling */ }
  .post-password-form input[name="post_password"] {
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    line-height: 34px;
    padding: 0 20px; }
  .post-password-form input[type="submit"] {
    background: #24ca24;
    border: medium none;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    padding: 3px 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-password-form input[type="submit"]:hover {
    background: #20b420; }

table {
  border-collapse: collapse; }

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

th, td {
  padding: 10px; }

article.post.sticky {
  position: relative; }
  article.post.sticky .post-inner {
    border: 1px solid rgba(36, 202, 36, 0.5); }

article.post.sticky:after {
  content: "\f0e7";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  width: 30px;
  height: 30px;
  background: #24ca24;
  right: 0px;
  top: 0px;
  z-index: 3;
  color: #fff;
  text-align: center; }

.title-bar-default {
  padding: 100px 0;
  background: url('../images/titlebar-background.jpg') no-repeat center center / cover;
  background-attachment: fixed; }

.title-bar-default .title-bar-text {
  font-size: 32px;
  line-height: 42px;
  margin: 0;
  font-weight: bold; }

.bypostauthor {
  border: none; }

.aligncenter {
  text-align: center;
  /* sweetalert JS */ }

.sweet-alert h2 {
  font-size: 22px;
  letter-spacing: -1px;
  margin-top: 0; }
  .sweet-alert .sa-button-container button, .sweet-alert .sa-confirm-button-container button {
    border-radius: 3px;
    font-size: 14px;
    padding: 7px 33px;
    border: none;
    box-shadow: none !important;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase; }
    .sweet-alert .sa-button-container button.confirm, .sweet-alert .sa-confirm-button-container button.confirm {
      background: #24ca24 !important;
      color: #fff;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
      .sweet-alert .sa-button-container button.confirm:hover, .sweet-alert .sa-confirm-button-container button.confirm:hover {
        background: #1c9f1c !important; }

@keyframes ajaxLoadingAnimate {
  from {
    transform: rotate(0); }

  to {
    transform: rotate(360deg); } }

@-webkit-keyframes ajaxLoadingAnimate {
  from {
    -webkit-transform: rotate(0); }

  to {
    -webkit-transform: rotate(360deg); } }

._ajax-loading-animate {
  position: relative;
  pointer-events: none; }
  ._ajax-loading-animate:after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    z-index: 999;
    border: solid 8px #555;
    border-left-color: #24ca24;
    border-radius: 100px;
    animation: ajaxLoadingAnimate 1s infinite linear;
    -webkit-animation: ajaxLoadingAnimate 1s infinite linear; }
  ._ajax-loading-animate > * {
    opacity: 0.3; }

html {
  overflow-x: hidden;
  /* background image for body */ }

body {
  background-color: #fff;
  background-image: url();
  background-repeat: ;
  /* wrapper for all sections */ }
  body.bt-side-boxed {
    background-color: #fff;
    background: url();
    background-repeat: ;
    background-attachment: fixed; }
  body.bt-side-boxed #page {
    max-width: 1170px;
    margin:  auto;
    background: ;
    box-shadow: 0 0 24px 1px rgba(0, 0, 0, 0.1); }

.fw-side-boxed .site-main {
  background-color: ; }
  .fw-side-boxed .site-main .fw-main-row > .fw-container {
    background-color: ; }

.fw-full .site, .fw-side-boxed .site {
  margin-top: ;
  margin-bottom: ; }

::-moz-selection {
  background: rgba(36, 202, 36, 0.1); }

::selection {
  background: rgba(36, 202, 36, 0.1);
  /* Scroll To Top Button */ }

.scroll-to-top i {
  color: ; }
  .scroll-to-top:hover {
    border-color: ; }

#page input[type="text"], #page input[type="password"], #page input[type="number"], #page input[type="email"], #page input[type="date"], #page input[type="color"], #page input[type="tel"], #page input[type="search"], #page textarea, #page select {
  border-radius: 1px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%; }
  #page input[type="text"]:focus, #page input[type="password"]:focus, #page input[type="number"]:focus, #page input[type="email"]:focus, #page input[type="date"]:focus, #page input[type="color"]:focus, #page input[type="tel"]:focus, #page input[type="search"]:focus, #page textarea:focus, #page select:focus {
    border: 1px solid rgba(36, 202, 36, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    -moz-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    box-shadow: none;
    outline: none; }
  #page input[type="submit"] {
    border-radius: 3px;
    border: none;
    background: #24ca24;
    color: #fff;
    padding: 8px 12px;
    vertical-align: top;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  #page input[type="submit"]:hover {
    background: #1c9f1c; }
  #page input.search-field {
    border-radius: 3px;
    height: 38px;
    padding: 0 10px; }
  #page input.search-submit {
    height: 38px;
    padding: 0 12px; }

.fw-content-align-left {
  text-align: left; }

.fw-content-align-center {
  text-align: center; }

.fw-content-align-right {
  text-align: right; }

.bt-itable {
  display: table;
  width: 100%; }
  .bt-itable .bt-icell {
    display: table-cell; }
  .bt-itable .bt-icell.bt-icell-align-middle {
    vertical-align: middle; }

.alignleft {
  float: left;
  padding-right: 10px; }

.alignright {
  float: right;
  padding-left: 10px; }

table {
  width: 100%; }

#scroll-to-top-button {
  position: fixed;
  cursor: pointer;
  opacity: 0.5;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 99;
  border-radius: 3px;
  background: #24ca24;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(150px);
  -webkit-transform: translateY(150px);
  /* custom-select-ui */ }
  #scroll-to-top-button.is-display {
    visibility: visible;
    opacity: 0.5;
    transform: translateY(0);
    -webkit-transform: translateY(0); }
  #scroll-to-top-button span {
    position: absolute;
    left: 50%;
    top: 55%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    border: solid #fff;
    border-width: 1px 1px 0 0; }
  #scroll-to-top-button:hover {
    opacity: 1; }

#page .custom-select-ui {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* ui select2 - jquery render */ }
  #page .custom-select-ui:hover {
    border: 1px solid rgba(36, 202, 36, 0.5); }
  #page .custom-select-ui:after {
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    opacity: 0.5; }
  #page .custom-select-ui > select {
    cursor: pointer;
    width: calc(100% + 17px);
    border-color: transparent;
    background: transparent;
    margin: 0;
    max-width: none;
    position: relative;
    z-index: 3;
    outline: none; }
  #page .custom-select-ui > select option {
    width: calc(100% + 17px);
    max-width: none;
    outline: none; }

#page .select2-container > a.select2-default {
  height: 36px;
  line-height: 36px;
  background: #fff;
  background-color: #fff;
  border-radius: 3px;
  border-color: rgba(53, 53, 53, 0.1);
  box-shadow: none; }
  #page .select2-container > a.select2-default .select2-arrow {
    background: transparent;
    border: none; }
    #page .select2-container > a.select2-default .select2-arrow:after {
      border-color: none;
      border-color: #333;
      border-image: none;
      border-style: solid;
      border-width: 1px 1px 0 0;
      content: "";
      height: 5px;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%) rotate(135deg);
      -webkit-transform: translateY(-50%) rotate(135deg);
      width: 5px;
      z-index: 1; }
    #page .select2-container > a.select2-default .select2-arrow b {
      display: none; }

body #select2-drop {
  border-color: rgba(53, 53, 53, 0.1); }
  body #select2-drop .select2-search {
    position: relative; }
  body #select2-drop .select2-search input {
    background: none !important;
    border-radius: 3px !important;
    box-shadow: none !important; }
  body #select2-drop .select2-search:after {
    content: "\f002";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 11px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }
  body #select2-drop .select2-result-sub .select2-highlighted {
    background: rgba(36, 202, 36, 0.9);
    color: #fff;
    border-radius: 3px; }

.svg_bleeding_stock_wrap {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0; }

@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000; } }

.head-color > b {
  color: #24ca24; }

.wpb_single_image.bt-circle figure {
  margin: 0px auto;
  overflow: hidden;
  width: 222px;
  height: 222px; }
  .wpb_single_image.bt-circle figure a {
    width: 100%;
    height: 100%;
    padding-top: 20px;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .wpb_single_image.bt-circle figure a > svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
    stroke: #24ca24; }
    .wpb_single_image.bt-circle figure a > svg rect {
      height: 220px;
      width: calc(100% - 2px);
      x: 1px;
      y: 1px; }
  .wpb_single_image.bt-circle figure a img {
    width: 180px; }
  .wpb_single_image.bt-circle figure a:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
    .wpb_single_image.bt-circle figure a:hover > svg {
      animation-play-state: running;
      stroke: #24ca24; }

.vc_btn3-container.bt-but-lemon.cc {
  margin-bottom: 0px;
  overflow: hidden; }
  .vc_btn3-container.bt-but-lemon.cc a {
    font-weight: 600;
    font-size: 15px !important;
    text-transform: uppercase;
    padding: 0px 35px !important;
    height: 56px;
    line-height: 56px !important;
    background-image: none !important;
    background-color: #24ca24 !important;
    color: #fff !important;
    background-image: none !important;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .vc_btn3-container.bt-but-lemon.cc a > svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
    stroke: #fff; }
    .vc_btn3-container.bt-but-lemon.cc a > svg rect {
      height: 46px;
      width: calc(100% - 10px);
      x: 5px;
      y: 5px; }
  .vc_btn3-container.bt-but-lemon.cc a:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
    .vc_btn3-container.bt-but-lemon.cc a:hover > svg {
      animation-play-state: running;
      stroke: #fff; }

.bt-appointment.cc {
  margin-bottom: 0px;
  overflow: hidden; }
  .bt-appointment.cc a {
    font-weight: 600;
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 0px 30px !important;
    height: 50px;
    border-radius: 30px;
    line-height: 50px !important;
    background-image: none !important;
    background-color: #24ca24 !important;
    color: #fff !important;
    background-image: none !important;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .bt-appointment.cc a > svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
    stroke: #fff; }
    .bt-appointment.cc a > svg rect {
      height: 40px;
      width: calc(100% - 10px);
      x: 5px;
      y: 5px; }
  .bt-appointment.cc a:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
    .bt-appointment.cc a:hover > svg {
      animation-play-state: running;
      stroke: #fff; }
  .bt-appointment.cc a span {
    color: #fff !important; }

.book-cc span.timeslot-people {
  margin-bottom: 0px;
  overflow: hidden; }
  .book-cc span.timeslot-people button.new-appt.button {
    font-weight: 600;
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 0px 30px !important;
    height: 42px;
    border-radius: 30px;
    line-height: 42px !important;
    background-image: none !important;
    background-color: #24ca24 !important;
    color: #fff !important;
    background-image: none !important;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .book-cc span.timeslot-people button.new-appt.button > svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
    stroke: #fff; }
    .book-cc span.timeslot-people button.new-appt.button > svg rect {
      height: 38px;
      width: calc(100% - 2px);
      x: 1px;
      y: 1px; }
  .book-cc span.timeslot-people button.new-appt.button:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
    .book-cc span.timeslot-people button.new-appt.button:hover > svg {
      animation-play-state: running;
      stroke: #fff; }
  .book-cc span.timeslot-people button.new-appt.button span {
    color: #fff !important; }

section.vc_section.section-visible {
  overflow: visible;
  z-index: 1; }

.main-color b {
  color: #24ca24; }

.main-color.cc b {
  font-weight: 400 !important; }

.img-over {
  overflow: hidden; }

.img-tattoo-svg {
  width: 70px;
  margin: 0 auto; }

.img-tattoo-svg-space {
  width: 30px;
  margin: 0 auto; }

.tattoo-count > .vc_column-inner {
  background-size: auto 70px;
  background-repeat: no-repeat;
  background-position-y: 43px; }

.tattoo-count1 > .vc_column-inner {
  background-size: auto 60px;
  background-repeat: no-repeat;
  background-position-y: 47px; }

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }

.ic-vd > .vc_icon_element-inner:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: #24ca24 repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite; }

.ic-vd > .vc_icon_element-inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms; }

#page .newletter-tattoo form.tnp-form {
  position: relative; }
  #page .newletter-tattoo form.tnp-form input.tnp-email {
    width: calc(100%);
    display: inline-block;
    background-color: rgba(59, 59, 59, 0.7);
    border-radius: 30px;
    height: 60px;
    line-height: 60px;
    padding: 0px 65px 0px 30px; }
  #page .newletter-tattoo form.tnp-form input.tnp-submit {
    width: 60px;
    opacity: 0;
    position: absolute;
    right: 0;
    z-index: 99;
    height: 60px; }
  #page .newletter-tattoo form.tnp-form:after {
    content: "\f2b7";
    font-family: FontAwesome;
    font-size: 22px;
    background: #24ca24;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%; }

.ui.selection.dropdown > .delete.icon, .ui.selection.dropdown > .dropdown.icon, .ui.selection.dropdown > .search.icon {
  line-height: 1.55em; }

.ui.selection.active.dropdown, .ui.selection.active.dropdown .menu, .ui.selection.active.dropdown:hover, .ui.selection.active.dropdown:hover .menu, .ui.selection.dropdown:focus, .ui.selection.dropdown:focus .menu {
  border-color: #24ca24; }

body {
  font-family: 'Open Sans';
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  color: #1f1f1f; }

a {
  color: #24ca24; }
  a:hover {
    color: #39bcdd; }
  a:focus, a:active {
    color: #24ca24; }

h1, .h1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-size: 55px;
  line-height: 65px;
  letter-spacing: 0px;
  color: #1f1f1f; }

h2, .h2 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #1f1f1f; }

h3, .h3 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #1f1f1f; }

h4, .h4 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #1f1f1f; }

h5, .h5 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #1f1f1f; }

h6, .h6 {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #1f1f1f; }

hr {
  margin: 22.5px auto; }

blockquote {
  color: #1f1f1f;
  font-family: 'Open Sans';
  font-weight: 400;
  /*Responsive*/
  /*Screen 568px*/ }
  blockquote .fw-symbols-quote {
    color: #1f1f1f; }
  blockquote cite {
    color: #1f1f1f;
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 15px; }

@media (max-width: 767px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    letter-spacing: 0 !important; } }

body #cs-content .x-container.width {
  width: calc(100% - 30px);
  /* Small devices Tablets (≥768px)  */ }

@media (min-width: 768px) {
  /* Medium devices Desktops (≥992px)  */
    body #cs-content .x-container.max {
      max-width: 720px; } }

@media (min-width: 992px) {
  /* Large devices Desktops (≥1200px) */
    body #cs-content .x-container.max {
      max-width: 940px; } }

@media (min-width: 1200px) {
  /* fix builder ui */
    body #cs-content .x-container.max {
      max-width: 1140px; } }

.bt-row > .cs-preview-element-wrapper {
  display: inline;
  /* booking form restaurant */ }

#cs-content .cs-preview-element-wrapper .rtb-booking-form form label {
  display: block;
  width: 100%; }

#cs-content .cs-preview-element-wrapper .rtb-booking-form form {
  /* fix button element inline */ }
  #cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="text"], #cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="tel"], #cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="email"], #cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="date"], #cs-content .cs-preview-element-wrapper .rtb-booking-form form select, #cs-content .cs-preview-element-wrapper .rtb-booking-form form textarea {
    display: block;
    width: 100%; }

.cs-preview-element-wrapper[data-element="bears-button-element"] {
  display: inline-block;
  /* fix carousel + hyperMasonry element */ }

.cs-preview-element-wrapper .bearsthemes-team-element + .cs-empty-element, .cs-preview-element-wrapper .bearsthemes-testimonals-element + .cs-empty-element, .cs-preview-element-wrapper .bearsthemes-countdown-element + .cs-empty-element {
  display: none !important; }

.cs-preview-element-wrapper .bearsthemes-team-element ~ .cs-empty-element, .cs-preview-element-wrapper .bearsthemes-testimonals-element ~ .cs-empty-element, .cs-preview-element-wrapper .bearsthemes-countdown-element ~ .cs-empty-element {
  display: none !important;
  /* hidden button handle hyperMasonry */ }

.cs-preview-element-wrapper .bearsthemes-gallery-element {
  /* overide color skillbar */ }
  .cs-preview-element-wrapper .bearsthemes-gallery-element button.save-grid-js, .cs-preview-element-wrapper .bearsthemes-gallery-element div.ui-resizable-se {
    display: none !important; }

body #cs-content .x-skill-bar .bar {
  background: #24ca24; }

body #cs-content .x-accordion-heading .x-accordion-toggle.collapsed:hover, body #cs-content .x-accordion-heading .x-accordion-toggle, body #cs-content .x-nav-tabs > li > a:hover, body #cs-content .x-nav-tabs > .active > a, body #cs-content .x-nav-tabs > .active > a:hover, body #cs-content .x-recent-posts a:hover .h-recent-posts {
  color: #24ca24;
  /********
x-accordion
*********/ }

body #cs-content .x-accordion-heading .x-accordion-toggle.collapsed:hover, body #cs-content .x-accordion-heading .x-accordion-toggle {
  color: #24ca24;
  font-size: 16px;
  line-height: 26px;
  font-weight: bold; }

body #cs-content .x-accordion-group {
  box-shadow: none;
  border-radius: 2px;
  margin-bottom: 20px; }

body #cs-content .x-accordion-inner {
  padding: 20px; }

#cs-content .cs-preview-element-wrapper .x-text iframe {
  padding-bottom: 30px !important;
  /*************
x-recent-posts
*************/ }

body #cs-content .x-recent-posts {
  /**
x-pricing-table
***/ }
  body #cs-content .x-recent-posts > a {
    background: #fff;
    box-shadow: none;
    border-color: #eaeaea;
    border-radius: 1px;
    padding: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  body #cs-content .x-recent-posts > a .x-recent-posts-content .h-recent-posts {
    margin-top: 15px; }
    body #cs-content .x-recent-posts > a .x-recent-posts-content .x-recent-posts-date {
      color: #afafaf;
      font-size: 13px;
      text-transform: none; }
  body #cs-content .x-recent-posts > a:hover {
    border-color: #24ca24; }
    body #cs-content .x-recent-posts > a:hover .x-recent-posts-content .h-recent-posts {
      color: #24ca24; }

body #cs-content .x-dropcap, body #cs-content .x-highlight, body #cs-content .x-pricing-column.featured h2, body #cs-content .x-recent-posts .x-recent-posts-img::after {
  background-color: #24ca24; }

body .x-pricing-table {
  /*
x-button
*/ }
  body .x-pricing-table .x-pricing-column > .x-pricing-column-info ul {
    padding: 0;
    margin: 0; }
    body .x-pricing-table .x-pricing-column > .x-pricing-column-info ul li {
      list-style: none;
      padding: 12px 40px; }
  body .x-pricing-table .x-pricing-column:first-child > h2 {
    border-radius: 4px 0 0 0; }
  body .x-pricing-table .x-pricing-column:first-child > .x-pricing-column-info {
    border-radius: 0 0 0 4px; }
  body .x-pricing-table .x-pricing-column:last-child > h2 {
    border-radius: 0 4px 0 0; }
  body .x-pricing-table .x-pricing-column:last-child > .x-pricing-column-info {
    border-radius: 0 0 4px 0; }
  body .x-pricing-table .x-pricing-column.featured {
    box-shadow: 0 0 29px -8px rgba(1, 1, 1, 0.3); }
  body .x-pricing-table .x-pricing-column.featured > h2 {
    border-radius: 4px 4px 0 0; }
  body .x-pricing-table .x-pricing-column.featured > .x-pricing-column-info {
    border-radius: 0 0 4px 4px; }
  body .x-pricing-table .x-btn {
    display: inline-block;
    font-size: 12px !important;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 13px 23px !important;
    text-transform: uppercase; }

body #cs-content .x-btn {
  background-color: #24ca24;
  box-shadow: none !important;
  text-shadow: none !important;
  border: none !important; }
  body #cs-content .x-btn:hover {
    background-color: #20b420 !important; }

#page .wpb_images_carousel .vc_item .vc_inner img {
  max-width: 100%;
  height: auto; }

#page {
  /* remove border gray map element */ }
  #page .vc_btn3 {
    border: 0;
    /* post slider */ }
  #page .vc_btn3.vc_btn3-style-custom {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #page .vc_btn3.vc_btn3-style-custom:hover {
      opacity: 0.85; }
  #page .wpb_posts_slider .wpb_gallery_slides {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none; }
    #page .wpb_posts_slider .wpb_gallery_slides ul.slides > li img {
      max-width: 100%;
      height: auto; }
      #page .wpb_posts_slider .wpb_gallery_slides ul.slides > li .link_image > img {
        border-radius: 3px; }
      #page .wpb_posts_slider .wpb_gallery_slides ul.slides > li .flex-caption {
        background: none;
        padding: 20px 0 0; }
        #page .wpb_posts_slider .wpb_gallery_slides ul.slides > li .flex-caption .post-title {
          font-size: 22px;
          letter-spacing: -1.2px;
          line-height: 26px; }
  #page .vc_tta-container .vc_tta-tabs {
    /* vc accordion */ }
    #page .vc_tta-container .vc_tta-tabs h4.vc_tta-panel-title {
      font-family: 'Open Sans';
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      font-style: normal;
      letter-spacing: 0px; }
    #page .vc_tta-container .vc_tta-tabs .vc_tta-tab a > * {
      vertical-align: middle; }
  #page .vc_tta-container .vc_tta-accordion .vc_tta-panel-title {
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px; }
    #page .vc_tta-container .vc_tta-accordion .vc_tta-panel-title a > * {
      vertical-align: middle; }
  #page .vc_progress_bar {
    /* custom element */ }
  #page .vc_progress_bar .vc-custom-ui-round-slender {
    border-radius: 50px; }
    #page .vc_progress_bar .vc-custom-ui-round-slender:not(:last-child) {
      margin-bottom: 15px; }
    #page .vc_progress_bar .vc-custom-ui-round-slender .vc_label {
      padding: 4px 10px;
      line-height: normal;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase; }
    #page .vc_progress_bar .vc-custom-ui-round-slender .vc_bar {
      border-radius: 50px; }
  #page .vc_progress_bar .vc-custom-ui-square-slender {
    border-radius: 1px; }
    #page .vc_progress_bar .vc-custom-ui-square-slender:not(:last-child) {
      margin-bottom: 15px; }
    #page .vc_progress_bar .vc-custom-ui-square-slender .vc_label {
      padding: 4px 10px;
      line-height: normal;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase; }
    #page .vc_progress_bar .vc-custom-ui-square-slender .vc_bar {
      border-radius: 1px; }
  #page .vc_progress_bar .vc-custom-ui-slender-line {
    border-radius: 0;
    background: transparent;
    box-shadow: none; }
    #page .vc_progress_bar .vc-custom-ui-slender-line .vc_label {
      padding: 4px 0px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase; }
    #page .vc_progress_bar .vc-custom-ui-slender-line .vc_bar {
      height: 2px;
      border-radius: 2px;
      top: auto;
      bottom: 0; }
  #page .wpb_theme_custom_element.wpb_portfolio_grid {
    /* wpb_text_table */ }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap {
      margin-bottom: 30px;
      text-align: center; }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav {
      display: inline-block;
      background: #fafafa;
      border-radius: 150px; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item {
        float: left;
        padding: 12px 15px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        min-width: 150px;
        -webkit-transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
        transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
        text-decoration: none;
        border-radius: 150px;
        background: #fafafa; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item.is-active {
          z-index: 3;
          background: #24ca24;
          color: #fff;
          transform: scale(1.1);
          -webkit-transform: scale(1.1); }
    @media (max-width: 644px) {
      #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap {
        text-align: left; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav {
          background: none; }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item {
            background: none !important;
            color: #333 !important;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: -1.2px;
            min-width: auto;
            padding: 5px 0;
            text-transform: none; }
            #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item:not(:last-child):after {
              content: "/";
              margin: 0 20px;
              color: #333 !important; }
            #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item.is-active {
              color: #24ca24 !important;
              transform: scale(1) !important;
              -webkit-transform: scale(1) !important; } }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default {
      overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner {
        overflow: hidden;
        position: relative; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail {
          position: relative; }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            -webkit-transition: 0.3s ease;
            transition: 0.3s ease; }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail img {
            width: 100%;
            height: auto;
            -webkit-transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
            transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99); }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          z-index: 3;
          padding: 30px;
          text-align: left;
          -webkit-transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
          transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99); }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta {
            position: relative;
            color: #fff;
            padding-left: 35px; }
            #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta:after {
              content: "";
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              border-top: solid 1px;
              width: 30px; }
            #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta a {
              color: #fff;
              font-size: 11px;
              text-transform: uppercase;
              letter-spacing: 2px;
              text-decoration: none; }
              #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta a:hover {
                color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .title-link {
            text-decoration: none; }
            #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .title-link .title {
              color: #fff;
              font-size: 20px;
              letter-spacing: -1.2px;
              line-height: 24px;
              margin: 0;
              text-decoration: underline; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .readmore {
          position: absolute;
          width: 80px;
          height: 80px;
          z-index: 4;
          left: calc(50% - 40px);
          top: calc(50% - 40px);
          border-radius: 100%;
          background: #fff;
          line-height: 80px;
          text-align: center;
          box-shadow: 0 0 36px -6px rgba(0, 0, 0, .5);
          color: #333;
          opacity: 0;
          visibility: 0;
          transform: scale(0.6);
          -webkit-transform: scale(0.6);
          font-size: 30px;
          -webkit-transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
          transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99); }
          #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .readmore:hover {
            background: #24ca24;
            color: #fff; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .portfolio-thumbnail:after {
        opacity: 0; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .portfolio-thumbnail img {
          transform: scale(1.05);
          -webkit-transform: scale(1.05); }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .entry-content {
          transform: translateY(100%);
          -webkit-transform: translateY(100%);
          opacity: 0; }
        #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .readmore {
          visibility: visible;
          opacity: 1;
          transform: scale(1);
          -webkit-transform: scale(1); }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner {
      text-align: center;
      max-width: 340px;
      margin: 0 auto 40px;
      margin-bottom: 0;
      overflow: hidden;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .portfolio-thumbnail {
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
        width: 60%;
        padding-top: 60%;
        border-radius: 100%;
        margin: 0 auto;
        z-index: 9;
        background-position: center center;
        background-size: cover;
        top: 70px; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .cat-meta {
        position: absolute;
        z-index: 9;
        border-radius: 100%;
        overflow: hidden;
        width: 100px;
        height: 100px;
        margin-top: 10px;
        left: calc(50% - 50px);
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .cat-meta img {
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .entry-content {
        position: relative;
        background: #fefcfb;
        top: -40px;
        z-index: 0;
        padding: 150px 25px 35px 25px;
        z-index: 8;
        margin: 0 10px;
        border-radius: 110px 110px 20px 20px;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .entry-content a {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .entry-content a h2.title {
        font-size: 25px;
        margin-bottom: 0; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner .entry-content .bt-excerpt {
        color: #666; }
      #page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-block-image .item-inner:hover .cat-meta {
        -webkit-animation-delay: 0s, 0.3s;
        animation-delay: 0s, 0.3s;
        -webkit-animation-direction: normal, alternate;
        animation-direction: normal, alternate;
        -webkit-animation-duration: 0.3s, 1.5s;
        animation-duration: 0.3s, 1.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-iteration-count: 1, infinite;
        animation-iteration-count: 1, infinite;
        -webkit-animation-name: hvr-bob-float, hvr-bob;
        animation-name: hvr-bob-float, hvr-bob;
        -webkit-animation-timing-function: ease-out, ease-in-out;
        animation-timing-function: ease-out, ease-in-out; }
  #page .wpb_theme_custom_element.wpb_text_table {
    width: 100%;
    /* wpb_posts_listing */ }
    #page .wpb_theme_custom_element.wpb_text_table .text-table-item:first-child .text-table-item-inner .bt-content-text-table .bt-item-text {
      font-size: 22px;
      font-weight: 700;
      color: #24ca24;
      text-transform: uppercase; }
      @media only screen and (max-width: 480px) {
            #page .wpb_theme_custom_element.wpb_text_table .text-table-item:first-child .text-table-item-inner .bt-content-text-table .bt-item-text {
              font-size: 19px; } }
    #page .wpb_theme_custom_element.wpb_text_table .text-table-item:last-child .text-table-item-inner .bt-content-text-table {
      border: none; }
    #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table {
      display: flex;
      color: #fff;
      width: 100%;
      height: 58px;
      border-bottom: 1px solid #3d3d3d;
      box-sizing: border-box; }
      #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table .bt-item-text {
        height: 100%;
        box-sizing: border-box;
        font-size: 18px;
        line-height: 58px;
        letter-spacing: 0.32px; }
      #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table .bt-item-text:first-child {
        width: 35%; }
      @media only screen and (max-width: 480px) {
          #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table .bt-item-text:first-child {
            width: 50%; } }
      #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table .bt-item-text:last-child {
        width: 65%;
        border-left: 1px solid #3d3d3d;
        padding-left: 40px; }
      @media only screen and (max-width: 480px) {
          #page .wpb_theme_custom_element.wpb_text_table .text-table-item .text-table-item-inner .bt-content-text-table .bt-item-text:last-child {
            padding-left: 15px;
            width: 50%; } }
  #page .wpb_theme_custom_element.wpb_posts_listing {
    /*review*/ }
    #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-default, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-style-1 {
      margin-bottom: 90px; }
      @media (max-width: 1199px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-default, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-style-1 {
          margin-bottom: 60px; } }
      @media (max-width: 536px) {
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-defaulft, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:not(:last-child) .layout-style-1 {
        margin-bottom: 30px; } }
    #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(odd) .item-inner.layout-default > * {
      float: left; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(odd) .item-inner.layout-default .event-featured-image-wrap:before {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(odd) .item-inner.layout-default .content-entry:after {
        content: "";
        position: absolute;
        z-index: -1 !important;
        width: calc(100% + 60px);
        height: calc(100% + 100px);
        left: -60px;
        top: -50px !important;
        border: #ebebeb solid 7px !important; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(odd) .item-inner.layout-style-1 > * {
        float: left; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(odd) .item-inner.layout-style-1 .event-featured-image-wrap:before {
        display: none; }
    #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-default > * {
      float: right; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-default .event-featured-image-wrap:after {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-default .content-entry:after {
        content: "";
        position: absolute;
        z-index: -1 !important;
        width: calc(100% + 60px);
        height: calc(100% + 100px);
        left: 0px;
        top: -50px !important;
        border: #ebebeb solid 7px !important; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 > * {
        float: right; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .event-featured-image-wrap:after {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry {
        text-align: right; }
      @media (max-width: 991px) {
            #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry {
              padding: 6px 40px 6px 0px; } }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry .bt-public {
        justify-content: flex-end; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry .bt-public .date-first {
          margin-right: 0px; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry .bt-public:before {
          right: -165px;
          left: inherit; }
          @media (max-width: 991px) {
            #page .wpb_theme_custom_element.wpb_posts_listing .post_recent:nth-child(even) .item-inner.layout-style-1 .content-entry .bt-public:before {
              right: -32%; } }
    #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default {
      position: relative; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default:after {
        content: "";
        display: block;
        clear: both; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap {
        z-index: 3;
        width: 50%;
        text-align: center;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap .event-thumbnail {
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap .event-thumbnail img {
        -webkit-transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        max-width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry {
        width: 50%;
        padding: 45px 65px;
        position: relative !important;
        text-align: center;
        z-index: 1 !important; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-public {
        font-size: 12px;
        line-height: 28px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: #fff;
        background: #24ca24;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        display: inline-block;
        padding: 5px 30px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-title {
        position: relative;
        margin-bottom: 10px;
        padding-top: 28px;
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-title a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: #303030;
        display: block;
        text-decoration: none;
        height: 50px;
        overflow: hidden;
        text-overflow: ellipsis; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-title a .entry-title-primary:hover {
          color: #24ca24;
          text-decoration: none; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-title a .entry-subtitle {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          font-family: 'Montserrat';
          font-size: 20px;
          font-weight: 400;
          line-height: 24px;
          letter-spacing: 0.03em;
          color: #24ca24; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-title a:hover {
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 11px;
        font-style: italic;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #555;
        margin-right: 15px; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-meta > li a {
          color: #24ca24; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-meta > li i {
          color: #b0b0b0; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-meta > li:last-child {
          margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-excerpt {
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #555;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-readmore {
        font-size: 11px;
        line-height: 24px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #000;
        display: inline-block;
        background: #ebebeb;
        margin-top: 15px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        display: inline-block;
        padding: 5px 30px;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-readmore > i {
        margin-left: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .bt-readmore:hover {
        color: #fff;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default:hover .event-featured-image-wrap .event-thumbnail img {
        transform: scale(1.1);
        -webkit-transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default:hover .title-link .title {
        background-position: -99.99% 0;
        color: #fff; }
      @media (max-width: 991px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry {
          padding: 6px 0px 6px 40px; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .title-link .title {
            font-size: 1.4em;
            line-height: 1.4em; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .event-start-time {
            font-size: 11px;
            line-height: 18px; } }
      @media (max-width: 536px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry {
          float: none;
          width: 100%; }

        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap {
          border-radius: 4px;
          overflow: hidden; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap:after, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .event-featured-image-wrap:before {
            display: none; }

        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry {
          padding: 30px 0 0 0; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry .event-start-time {
            margin-top: 10px; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-default .content-entry:after {
            content: none !important; } }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1:after {
        content: "";
        display: block;
        clear: both; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap {
        z-index: 3;
        width: 50%;
        text-align: center;
        position: relative;
        min-height: 420px;
        overflow: hidden;
        max-width: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap .event-thumbnail {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84); }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry {
        width: 50%;
        padding: 28px 100px 28px 100px;
        position: relative !important;
        text-align: left;
        z-index: 9 !important; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public {
        color: #fff;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public > p {
        margin: 0px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public .date-first {
        font-size: 70px;
        line-height: 80px;
        color: #24ca24;
        font-weight: 600;
        margin-right: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public .date-last {
        font-size: 17px;
        line-height: 27px;
        font-weight: 500;
        color: #999;
        max-width: 50px;
        margin-top: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public:before {
        position: absolute;
        content: " ";
        width: 140px;
        height: 7px;
        background-color: #24ca24;
        top: 50%;
        transform: translateY(-50%);
        left: -165px; }
        @media (max-width: 991px) {
            #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-public:before {
              width: 30%;
              left: -32%; } }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-title {
        position: relative;
        padding-top: 28px;
        margin: 0px 0px 15px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-title > a {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 26px;
        font-weight: 800;
        line-height: 36px;
        letter-spacing: 0.01em;
        color: #39bcdd;
        display: block;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-title > a:hover {
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 11px;
        font-style: italic;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #555;
        margin-right: 15px; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-meta > li a {
          color: #24ca24; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-meta > li i {
          color: #b0b0b0; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-meta > li:last-child {
          margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-excerpt {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0;
        color: #1f1f1f;
        margin-bottom: 40px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.48px;
        color: #39bcdd;
        display: inline-block;
        background: transparent;
        display: inline-block;
        font-weight: 500;
        position: relative;
        padding: 14.5px 15px;
        box-sizing: border-box; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:before, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:after {
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        transition: all 0.2s linear;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:before {
        right: 0;
        top: 0;
        transition-delay: 0.2s; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:after {
        left: 0;
        bottom: 0;
        transition-delay: 0.6s; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover {
        text-decoration: none; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover:before, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover:after {
          width: 100%; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover:before {
          transition-delay: 0.4s; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover:after {
          transition-delay: 0s; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover > span.item:before, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover > span.item:after {
          height: 100%; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover > span.item:after {
          transition-delay: 0.2s; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore:hover > span.item:before {
          transition-delay: 0.6s; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore > i {
        margin-left: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore > span.item:before, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore > span.item:after {
        content: "";
        width: 2px;
        height: 0;
        position: absolute;
        transition: all 0.2s linear;
        background: #24ca24; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore > span.item:before {
          transition-delay: 0s;
          left: 0;
          top: 0; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .bt-readmore > span.item:after {
          transition-delay: 0.4s;
          right: 0;
          bottom: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1:hover .event-featured-image-wrap .event-thumbnail {
        transform: scale(1.1);
        -webkit-transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1:hover .title-link .title {
        background-position: -99.99% 0;
        color: #fff; }
      @media (max-width: 991px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry {
          padding: 6px 30px; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry .title-link .title {
            font-size: 1.4em;
            line-height: 1.4em; } }
      @media (max-width: 767px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry {
          padding: 6px 0px 6px 30px; } }
      @media (max-width: 640px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry {
          padding: 6px 0px; } }
      @media (max-width: 536px) {
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .content-entry {
          float: none;
          width: 100%; }

        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap {
          border-radius: 4px;
          overflow: hidden; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap:after, #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .item-inner.layout-style-1 .event-featured-image-wrap:before {
            display: none; } }
    #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image {
      position: relative;
      background: rgba(255, 255, 255, 0.8);
      padding: 30px 80px;
      margin-bottom: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-public {
        float: left;
        font-family: Montserrat;
        line-height: 28px;
        letter-spacing: 0.03em;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        background: #24ca24;
        width: 95px;
        height: 95px;
        padding-top: 20px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-public .bt-day {
        font-size: 26px;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-public .bt-month {
        font-size: 12px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content {
        padding: 0 180px 0 130px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-title {
        position: relative;
        margin-bottom: 10px;
        padding-top: 28px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-title a {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-title a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 25px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: #151515;
        display: block; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-title a .entry-subtitle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-meta {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 13px;
        font-style: italic;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #24ca24;
        margin-right: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-readmore {
        position: absolute;
        top: 50%;
        right: 50px;
        font-family: Montserrat;
        font-size: 13px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0.01em;
        text-align: center;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-readmore span {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        display: inline-block;
        color: #24ca24;
        padding: 18px 30px;
        border: 1px solid #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-readmore:hover span {
        color: #fff;
        background: #24ca24; }
      @media (max-width: 991px) {
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image {
        padding: 30px; } }
      @media (max-width: 767px) {
      #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image {
        padding: 30px 15px; }
        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-public {
          float: none; }

        #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content {
          display: inline-block;
          padding: 5px 0px 0 0px; }
          #page .wpb_theme_custom_element.wpb_posts_listing .post_recent .layout-block-image .bt-content .bt-readmore {
            top: 77px;
            right: 15px; } }
  #page .wpb_theme_custom_element.wpb_client_review {
    /*testimonial*/ }
    #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-stage-outer .owl-stage .owl-item .bt-content .bt-excerpt {
      font-style: italic;
      margin-bottom: 30px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-stage-outer .owl-stage .owl-item .bt-content .bt-excerpt i.fa.fa-quote-left {
        font-size: 30px;
        font-style: italic;
        margin-right: 20px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-stage-outer .owl-stage .owl-item .bt-content .bt-excerpt i.fa.fa-quote-right {
        font-size: 30px;
        font-style: italic;
        margin-left: 20px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-stage-outer .owl-stage .owl-item .bt-content h3.bt-title {
        font-size: 28px;
        text-transform: uppercase;
        display: inline-block;
        margin-right: 10px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-stage-outer .owl-stage .owl-item .bt-content .bt-position {
        display: inline-block;
        font-family: 'Oswald';
        color: #fff;
        font-size: 18px; }
    #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav {
      display: block; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-next, #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-prev {
        width: 30px;
        height: 30px;
        text-align: center;
        border-radius: 3px;
        position: absolute;
        bottom: -25px;
        background: #1b1b1b;
        color: #fff;
        line-height: 29px;
        border: 1px solid #fff; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-prev {
        right: 65px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-prev:hover {
        background: #d19d64; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-next {
        right: 30px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync1 .owl-nav .owl-next:hover {
        background: #d19d64; }
    #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme {
      position: relative;
      padding: 0 30px 30px 30px;
      margin-top: 30px; }
    #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer {
      padding: 10px;
      background: #fff;
      border-radius: 5px; }
      #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer .owl-item .bt-thumb {
        border-radius: 4px;
        overflow: hidden;
        margin: 0 2px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer .owl-item .bt-thumb:before {
        background: rgba(209, 157, 100, 0.7);
        content: "";
        width: 100%;
        position: absolute;
        height: 100%;
        z-index: 99;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer .owl-item .bt-thumb:hover:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer .owl-item .bt-thumb:hover {
        cursor: pointer; }
      #page .wpb_theme_custom_element.wpb_client_review #sync2.owl-theme .owl-stage-outer .owl-item.current .bt-thumb:before {
        opacity: 1; }
  #page .wpb_theme_custom_element.wpb_base_testimonial {
    margin-bottom: 30px;
    /* wpb_events_listing */ }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item {
      display: table; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article {
        position: relative;
        padding: 0 15px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article .bt-thumb {
        float: left;
        width: 100px;
        height: 100px;
        margin-top: 33px;
        border-radius: 100%;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article .bt-content {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        margin-left: 30px;
        padding: 10px 30px 10px 85px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article .bt-content .bt-excerpt {
        font-size: 14px;
        font-style: italic;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #e7e7e7;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article .bt-content .bt-title {
        position: relative;
        display: inline-block;
        margin-bottom: 0;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #fff;
        display: block; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-default article .bt-content .bt-position {
        display: inline-block;
        margin-left: 0px;
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article {
        position: relative;
        padding: 0 15px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-thumb {
        display: inline-block;
        vertical-align: middle;
        width: 130px;
        height: 130px;
        border-radius: 100%;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 170px);
        padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content .bt-excerpt {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #e7e7e7;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content .bt-excerpt i.fa {
        color: #24ca24;
        font-size: 40px;
        display: block; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content .bt-author .bt-title {
        position: relative;
        display: inline-block;
        margin-bottom: 0;
        font-size: 26px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content .bt-author .bt-position {
        display: inline-block;
        margin-left: 20px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #24ca24; }
      @media (max-width: 768px) {
          #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content {
            width: 100%;
            padding-left: 0px; }
            #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-1 article .bt-content .bt-author .bt-position {
              margin-left: 15px; } }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article {
        position: relative;
        padding: 0 15px;
        max-width: 600px;
        margin: 0 auto; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .top-thumb {
        text-align: center;
        margin-bottom: 30px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .top-thumb .bt-thumb {
        display: inline-block;
        vertical-align: middle;
        width: 90px;
        height: 90px;
        border-radius: 100%;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .top-thumb .bt-author {
        display: inline-block;
        display: inline-block;
        vertical-align: middle;
        padding-left: 20px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .top-thumb .bt-author .bt-title {
        position: relative;
        margin-bottom: 0;
        font-size: 26px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .top-thumb .bt-author .bt-position {
        text-align: left;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 400;
        line-height: 34px;
        letter-spacing: 0.03em;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .bt-content {
        display: inline-block;
        vertical-align: middle;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .bt-content .bt-excerpt {
        text-align: center;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #e7e7e7;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .bt-content .bt-excerpt i.fa {
        color: #24ca24;
        font-size: 50px;
        display: block;
        margin-top: 15px; }
      @media (max-width: 768px) {
          #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .bt-content {
            width: 100%;
            padding-left: 0px; }
            #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-2 article .bt-content .bt-author .bt-position {
              margin-left: 15px; } }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-3 article {
        position: relative;
        padding: 10px 15px;
        border: 1px dotted #e81c4f;
        border-radius: 60px;
        margin-left: 3px;
        overflow: hidden;
        max-width: 300px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-3 article .bt-thumb {
        width: 80px;
        height: 80px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 100%;
        overflow: hidden;
        margin-right: 10px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-3 article .bt-content {
        display: inline-block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-3 article .bt-content .bt-title {
        position: relative;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 20px;
        line-height: 28px;
        color: #333;
        display: block;
        font-weight: bold; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-3 article .bt-content .bt-position {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article {
        position: relative;
        padding: 10px 15px;
        background: #fff;
        border-radius: 3px;
        margin: 0 50px 30px 50px;
        margin-top: 60px;
        text-align: center;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-thumb {
        width: 130px;
        height: 130px;
        display: inline-block;
        position: relative;
        top: -50px;
        border: 1px dashed #24ca24;
        border-radius: 100%;
        overflow: hidden;
        padding: 10px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-content {
        display: inline-block;
        position: relative;
        top: -25px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-content .bt-excerpt {
        margin-bottom: 20px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-content .bt-excerpt i.fa {
        color: #24ca24;
        margin: 0 5px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-content .bt-title {
        position: relative;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 20px;
        line-height: 28px;
        color: #333;
        display: block;
        font-weight: bold; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-4 article .bt-content .bt-position {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article {
        position: relative;
        padding: 0px;
        background: #fff;
        border-radius: 3px;
        margin: 0px;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-excerpt {
        text-align: center;
        padding: 0px 50px;
        padding: 0px 44px;
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        color: #888; }
      @media only screen and (max-width: 480px) {
              #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-excerpt {
                padding: 0px 0px; } }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-excerpt > img {
        max-width: 50px;
        margin: 0 auto; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-excerpt > p {
        margin: 30px 0px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content {
        display: inline-block;
        position: relative;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-thumb {
        width: 100px;
        height: 100px;
        position: relative;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-thumb > img {
        border-radius: 50%;
        width: 65px;
        height: 65px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-thumb > svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%);
        pointer-events: none;
        stroke-width: 2;
        stroke-dasharray: 5, 5;
        stroke-dashoffset: 10;
        stroke-linecap: round;
        fill: none;
        stroke: #24ca24;
        animation: 20s linear 0s infinite normal both paused dashed_border_running;
        transition: all 0.4s ease 0s;
        z-index: 99; }
        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-thumb > svg > rect {
          width: 80px;
          height: 80px;
          x: 9.5px;
          y: 11px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-title {
        position: relative;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 22px;
        line-height: 32px;
        color: #2f2f2f;
        display: block;
        font-weight: bold;
        margin: 20px 0px 5px 0px; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article .bt-content .bt-position {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-item .item.layout-style-5 article:hover .bt-content .bt-thumb > svg {
        animation-play-state: running; }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-dots {
      position: absolute;
      bottom: -40px;
      width: 100%; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-dots .owl-dot {
        width: 12px !important;
        height: 12px !important;
        margin: 10px 2px !important; }
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial .owl-dots .owl-dot.active {
        transform: none;
        -webkit-transform: none;
        background: #24ca24; }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-stage-outer {
      position: relative;
      z-index: 2; }
      @media (min-width: 768px) {
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-nav {
        opacity: 1; }
        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-nav .owl-prev {
          opacity: 1;
          margin-top: -60px !important;
          width: 80px;
          height: 80px;
          z-index: 1;
          left: 42px !important;
          line-height: 40px !important; }
          #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-nav .owl-prev i:before {
            content: "\f3d8"; }

        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-nav .owl-next {
          opacity: 1;
          margin-top: 60px !important;
          width: 80px;
          height: 80px;
          z-index: 1;
          left: 42px !important;
          line-height: 125px !important; }
          #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-1 .owl-nav .owl-next i:before {
            content: "\f3d0"; } }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-2 .owl-stage-outer {
      position: relative;
      z-index: 2; }
      @media (min-width: 768px) {
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-2 .owl-nav {
        opacity: 1; }
        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-2 .owl-nav .owl-prev {
          opacity: 1;
          margin-top: -60px !important; }

        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-2 .owl-nav .owl-next {
          opacity: 1;
          margin-top: -60px !important; } }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-3 .owl-stage-outer {
      position: relative;
      z-index: 2; }
      @media (min-width: 768px) {
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-3 .owl-nav {
        opacity: 1;
        display: block; }
        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-3 .owl-nav .owl-prev {
          opacity: 1;
          margin-left: -55px !important;
          width: 40px;
          height: 40px;
          line-height: 40px; }

        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-3 .owl-nav .owl-next {
          opacity: 1;
          margin-right: -55px !important;
          width: 40px;
          height: 40px;
          line-height: 40px; } }
    #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-4 .owl-stage-outer {
      position: relative;
      z-index: 2; }
      @media (min-width: 768px) {
      #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-4 .owl-nav {
        opacity: 1;
        display: block; }
        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-4 .owl-nav .owl-prev {
          opacity: 1;
          margin-left: -55px !important;
          width: 40px;
          height: 40px;
          line-height: 40px; }

        #page .wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.testimonial.style-4 .owl-nav .owl-next {
          opacity: 1;
          margin-right: -55px !important;
          width: 40px;
          height: 40px;
          line-height: 40px; } }
  #page .wpb_theme_custom_element.wpb_events_listing {
    /* wpb_products_slider_full_width */ }
    #page .wpb_theme_custom_element.wpb_events_listing .post-event-item:not(:last-child) .layout-default {
      margin-bottom: 80px; }
    #page .wpb_theme_custom_element.wpb_events_listing .post-event-item:nth-child(odd) .item-inner.layout-default > * {
      float: left; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item:nth-child(odd) .item-inner.layout-default .event-featured-image-wrap:before {
        display: none; }
    #page .wpb_theme_custom_element.wpb_events_listing .post-event-item:nth-child(even) .item-inner.layout-default > * {
      float: right; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item:nth-child(even) .item-inner.layout-default .event-featured-image-wrap:after {
        display: none; }
    #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify {
      margin-bottom: 30px;
      display: table;
      width: 100%; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify > * {
        display: table-cell;
        vertical-align: top; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date .date-entry {
        width: 200px;
        width: 98px;
        height: 108px;
        position: relative;
        background: #24ca24;
        color: #fff;
        border-radius: 2px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date .date-entry .date-entry-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date .date-entry .date-entry-inner .d-d {
        font-weight: bold;
        font-size: 22px;
        line-height: 24px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date .date-entry .date-entry-inner .d-my {
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 11px;
        line-height: 16px;
        margin: 3px 0; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .event-start-date .date-entry .date-entry-inner .d-t {
        display: inline-block;
        font-size: 12px;
        line-height: normal;
        padding: 5px 10px;
        border-radius: 20px;
        background: #20b420; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry {
        padding-left: 20px;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .title-link .title {
        font-weight: bold;
        font-size: 20px;
        line-height: 24px;
        color: #333;
        text-decoration: underline;
        margin-bottom: 10px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .title-link:hover .title {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .venue-empty {
        color: #888; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .readmore-link {
        color: #333;
        font-size: 14px;
        letter-spacing: -0.6px;
        display: inline-block;
        margin-top: 7px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .readmore-link span {
        margin-left: 4px;
        font-size: 20px;
        vertical-align: middle;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-simplify .content-entry .readmore-link:hover span {
        margin-left: 8px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default:after {
        content: "";
        display: block;
        clear: both; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap {
        z-index: 3;
        width: 50%;
        text-align: center;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap .event-thumbnail {
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap .event-thumbnail img {
        -webkit-transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        transition: 1s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        max-width: 100%; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:after, #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:before {
        content: "";
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        opacity: 0.8; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:after {
        background: #13cfc8;
        right: -15px;
        bottom: -15px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:before {
        background: #7e00ff;
        left: -15px;
        top: -15px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap .readmore-link {
        position: absolute;
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
        background: #fff;
        color: #333;
        border-radius: 60px;
        z-index: 3;
        -webkit-transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.3);
        -webkit-transform: scale(0.3); }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap .readmore-link span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 1;
        font-size: 24px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap .readmore-link:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry {
        width: 50%;
        padding: 40px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .event-term-list {
        background: #111 none repeat scroll 0 0;
        border-radius: 30px;
        display: inline-block;
        line-height: normal;
        padding: 8px 16px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .event-term-list a {
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 11px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .title-link {
        text-decoration: none;
        display: block;
        margin-top: 18px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .title-link .title {
        font-size: 36px;
        line-height: 40px;
        text-decoration: underline;
        color: #333;
        letter-spacing: -1px;
        /*  */
        font-weight: 300;
        display: inline;
        background-position: 0 0;
        background-size: 200.22% auto;
        background-image: linear-gradient(to right, rgba(1, 1, 1, 0) 50%, #010101 50%);
        transition: background-position 0.5s ease-out 0s, color 0.3s ease-in-out 0s; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .event-start-time {
        margin-top: 30px;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 13px; }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default:hover .event-featured-image-wrap .event-thumbnail img {
        transform: scale(1.1);
        -webkit-transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default:hover .event-featured-image-wrap .readmore-link {
        top: calc(50% - 40px);
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1); }
      #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default:hover .title-link .title {
        background-position: -99.99% 0;
        color: #fff; }
      @media (max-width: 991px) {
        #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry {
          padding: 6px 30px; }
          #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .title-link .title {
            font-size: 1.4em;
            line-height: 1.4em; }
          #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .event-start-time {
            font-size: 11px;
            line-height: 18px; } }
      @media (max-width: 536px) {
        #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap, #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry {
          float: none;
          width: 100%; }

        #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap {
          border-radius: 4px;
          overflow: hidden; }
          #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:after, #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .event-featured-image-wrap:before {
            display: none; }

        #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry {
          padding: 30px 0 0 0; }
          #page .wpb_theme_custom_element.wpb_events_listing .post-event-item .item-inner.layout-default .content-entry .event-start-time {
            margin-top: 10px; } }
  #page .wpb_theme_custom_element.wpb_products_slider_full_width {
    /* wpb_products_slider */ }
    #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product {
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product {
        overflow: hidden;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay .bt-content-overlay .bt-but-cart, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay .bt-content-overlay a.readmore {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-content-product {
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay {
        background-color: rgba(255, 255, 255, 0.77);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 9;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore {
        width: 190px;
        height: 56px;
        line-height: 56px;
        padding: 0;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        border-radius: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart {
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -o-transform: translateX(300px);
        -ms-transform: translateX(300px);
        transform: translateX(300px);
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        margin-bottom: 5px; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a {
          font-size: 16px;
          font-weight: 700;
          font-family: 'Open Sans';
          background-color: #24ca24;
          position: relative;
          overflow: hidden; }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading:hover {
            background-color: transparent;
            border: 3px solid #1f1f1f;
            color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading {
            opacity: 1; }
            #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading:after {
              color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):after {
            width: 100%;
            height: 100%;
            z-index: 3;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            box-sizing: border-box;
            -webkit-transform: scale(0);
            transition: 0.5s;
            -webkit-transform-origin: 100% 0%; }
            #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):before {
              border-bottom: 3px solid #1e3760;
              border-left: 3px solid #1e3760;
              -webkit-transform-origin: 100% 0%; }
            #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):after {
              border-top: 3px solid #1e3760;
              border-right: 3px solid #1e3760;
              -webkit-transform-origin: 0% 100%; }
            #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover {
              color: #24ca24; }
              #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover:after {
                -webkit-transform: scale(1); }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:hover {
            background-color: transparent;
            text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore {
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
        -o-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
        background-color: #2a2a2a;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        margin-top: 5px; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore > span.ion-ios-eye {
          font-size: 35px;
          line-height: 56px; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore:hover {
          background-color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-featured {
        padding: 132px 0px;
        position: relative;
        overflow: hidden;
        z-index: 8; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 0px;
        background-color: #24ca24;
        color: #fff;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0;
        padding: 10px 24px;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Open Sans'; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product {
        width: 100%;
        height: auto;
        overflow: hidden;
        margin: 0;
        background-color: #fff;
        padding: 0px 0px 15px 20px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .post-term-list > a:hover, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .post-term-list > a {
        font-size: 16px;
        line-height: 26px;
        color: #666;
        font-family: 'Open Sans'; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-rating {
        display: inline-block;
        overflow: hidden;
        margin: 10px 0px -5px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-rating > .star-rating span:before {
        color: #f1b71a; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title {
        margin: 0px 0px 10px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a {
        font-family: 'Montserrat';
        font-weight: 700;
        font-size: 22px;
        line-height: 22px;
        color: #1f1f1f; }
        @media only screen and (max-width: 991px) {
                #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a {
                  font-size: 20px;
                  line-height: 30px; } }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: baseline; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price > span.woocommerce-Price-amount {
        font-family: 'Open Sans';
        line-height: 30px;
        font-weight: 500;
        font-size: 20px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del span, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins span {
        font-family: 'Open Sans';
        line-height: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del {
        margin-left: 3px; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del span.woocommerce-Price-amount {
          font-weight: 400;
          color: #666;
          font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins {
        margin-right: 3px;
        text-decoration: none !important; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins span.woocommerce-Price-amount {
          font-weight: 500;
          font-size: 20px;
          color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-featured {
        position: relative;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #24ca24;
        color: #fff;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
        padding: 2px 12px;
        text-transform: uppercase;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product {
        padding: 0 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay {
        background: #1d1d1d;
        text-align: center;
        padding: 13px 10px;
        margin-top: -30px;
        z-index: 9;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart {
        display: inline-block;
        width: 60%;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart a {
        background: transparent;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        padding: 10px !important;
        line-height: 12px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart a.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-price {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        border-left: 1px solid #fff; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-price del {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-overlay:hover {
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-rating {
        display: block;
        text-align: center;
        overflow: hidden;
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-rating .star-rating {
        float: none;
        margin: 0 auto;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-rating .star-rating span {
        color: #fdba0a; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-title {
        text-align: center;
        line-height: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .bt-title a {
        text-align: center;
        margin-bottom: 5px;
        font-size: 20px;
        color: #333 !important;
        font-weight: bold;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .post-term-list {
        text-align: center;
        font-size: 15px;
        line-height: 25px;
        font-style: italic; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .post-term-list a {
        color: #999 !important; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style4 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured {
        position: relative;
        overflow: hidden;
        min-height: 360px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 0px;
        background-color: #24ca24;
        color: #fff;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0;
        padding: 10px 24px;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Montserrat'; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.35);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        z-index: 9; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay > a {
          -webkit-transform: translateX(0px);
          -moz-transform: translateX(0px);
          -o-transform: translateX(0px);
          -ms-transform: translateX(0px);
          transform: translateX(0px);
          opacity: 1 !important; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .bt-readmore.item-overlay a.button {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        display: flex;
        justify-content: space-between; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        width: 48%;
        text-align: center;
        z-index: 0;
        max-height: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        background-color: #24ca24;
        color: #fff;
        box-sizing: border-box;
        position: relative;
        z-index: 99;
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        opacity: 0; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover {
          background-color: #39bcdd; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart > a {
        font-size: 0px;
        padding: 0px;
        font-weight: 700;
        -webkit-transform: translateX(75px);
        -moz-transform: translateX(75px);
        -o-transform: translateX(75px);
        -ms-transform: translateX(75px);
        transform: translateX(75px); }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart > a:before {
          position: absolute;
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          top: 50%;
          left: 50%;
          color: #fff;
          font-size: 16px;
          transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.add_to_cart_button.button:before {
        content: "\f07a";
        padding-right: 3px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart:before {
        content: "\f00c"; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading {
        opacity: 1; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading:before {
          content: none; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading:after {
          font-size: 17px;
          top: 17px;
          right: 17px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        font-size: 22px;
        line-height: 22px;
        -webkit-transform: translateX(-67px);
        -moz-transform: translateX(-67px);
        -o-transform: translateX(-67px);
        -ms-transform: translateX(-67px);
        transform: translateX(-67px); }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button .ion-ios-eye:before {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product {
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta {
        display: flex;
        margin-top: 10px;
        justify-content: space-between;
        vertical-align: middle;
        align-items: center; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price {
        text-align: left;
        display: flex;
        flex-direction: row-reverse; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price span {
        font-family: 'Montserrat';
        font-weight: 300;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price ins {
        text-decoration: none;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price ins span {
        font-size: 20px;
        color: #24ca24;
        line-height: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price del span {
        font-size: 13px;
        line-height: 23px;
        color: #ebebeb; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .star-rating {
        color: #b6eb14; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-meta .star-rating :before {
        color: #b6eb14; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-title {
        margin-bottom: 5px;
        font-size: 20px;
        line-height: 28px;
        margin: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .post-term-list {
        text-align: left;
        font-size: 15px;
        line-height: 25px;
        font-weight: 400; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .post-term-list > a {
        color: #ebebeb; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style3 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured {
        position: relative;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #24ca24;
        color: #fff;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
        padding: 2px 12px;
        text-transform: uppercase;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.35);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
        z-index: 9; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        bottom: 0px;
        left: 0px;
        display: flex;
        justify-content: space-between; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        width: 48%;
        text-align: center;
        z-index: 0;
        -webkit-transform: translateX(80px);
        -moz-transform: translateX(80px);
        -o-transform: translateX(80px);
        -ms-transform: translateX(80px);
        transform: translateY(80px); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart {
        max-width: 132px;
        max-height: 50px;
        background-color: #24ca24;
        width: 100%;
        color: #fff;
        box-sizing: border-box;
        position: relative;
        transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1) !important;
        z-index: 9; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:after, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:after {
          content: '';
          position: absolute;
          transition: inherit;
          z-index: -1; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:before {
          top: 0;
          left: 50%;
          height: 100%;
          width: 0;
          border: 2px solid #000;
          border-left: 0;
          border-right: 0; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:after, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:after {
          bottom: 0;
          left: 0;
          height: 0;
          width: 100%;
          background: #000; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover {
          transition-delay: 0.6s; }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover:before {
            transition-delay: 0s;
            left: 0;
            width: 100%; }
          #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover:after, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover:after {
            top: 0;
            height: 100%;
            transition-delay: 0.4s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart {
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart.wc-forward {
        text-transform: uppercase;
        font-size: 14px;
        line-height: 24px;
        padding: 12px 0px 0px 0px;
        height: 100%;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading {
        padding: 12px 20px 0px 0px;
        opacity: 1;
        transition: none !important; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:after {
          right: 12px;
          top: 12px;
          color: #fff;
          content: "\e01c";
          bottom: initial;
          left: initial;
          width: initial;
          height: initial;
          background: transparent; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:before {
          content: none; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:hover:after {
          background: transparent;
          top: initial;
          height: initial; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore {
        -wekbit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        -o-transition: all 0.8s;
        transition: all 0.8s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        font-size: 22px;
        line-height: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product {
        margin-top: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-price {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-price > span {
        line-height: 54px;
        font-size: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-price ins span {
        font-weight: 700;
        font-size: 22px;
        color: #24ca24;
        line-height: 54px;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-price del span {
        font-weight: 400;
        font-size: 16px;
        line-height: 54px;
        color: #999; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-title {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 5px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .post-term-list {
        text-align: center;
        font-size: 15px;
        line-height: 25px;
        text-transform: uppercase;
        min-height: 50px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style2 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.8);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
        z-index: 9; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay {
        display: flex;
        justify-content: flex-end;
        vertical-align: middle;
        align-items: center;
        padding: 20px 15px 0px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        z-index: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart {
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        transform: translateX(-100px);
        padding: 11px 18px 9px 18px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:before, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:after {
        content: " ";
        position: absolute;
        z-index: -1;
        width: 0%;
        height: 1px;
        background: #24ca24;
        box-shadow: inset 0px 0px 0px #24ca24;
        display: block;
        -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
        transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:before {
        left: 0px;
        bottom: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:after {
        right: 0px;
        top: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover {
        border-left: 1px solid #24ca24;
        border-right: 1px solid #24ca24; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover:after, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover:before {
          width: 100%; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button, #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart.wc-forward {
        background-color: transparent;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 24px;
        color: #24ca24;
        font-weight: 700;
        padding: 0px;
        -wekbit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        box-sizing: border-box; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading {
        padding: 0px 15px 0px 0px; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:after {
          right: -4px;
          top: -2px;
          color: #000; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore {
        width: 80px;
        height: 80px;
        text-align: center;
        padding-top: 10px;
        background-color: rgba(220, 220, 220, 0.1);
        border-radius: 50%;
        -webkit-transform: translateX(150px);
        -moz-transform: translateX(150px);
        -o-transform: translateX(120px);
        -ms-transform: translateX(150px);
        transform: translateX(100px); }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        background-color: #fff;
        width: 57px;
        height: 57px;
        padding: 13px 0px 0px 0px;
        text-align: center;
        border-radius: 50%; }
        #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button span.ion-ios-eye {
          color: #2d2d2d;
          font-size: 25px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-content-product {
        margin-top: 40px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-content-product .bt-price ins span {
        font-weight: 700;
        font-size: 20px;
        color: #24ca24;
        line-height: 28px;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-content-product .bt-price del span {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #999; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-style1 .bt-content-product .bt-title {
        font-size: 22px;
        line-height: 30px;
        color: #444; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default {
        text-align: center;
        margin: 0 80px;
        overflow: hidden;
        background: url('../images/bg-product-d.png') no-repeat center center;
        background-size: cover; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-featured {
        padding: 70px 60px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-featured img {
        max-width: 350px;
        margin: 0 auto; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content {
        padding: 50px 60px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content h3.bt-title span {
        font-family: 'Montserrat';
        color: #161616;
        font-size: 24px;
        display: block; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content h3.bt-title a {
        font-size: 27px;
        color: #242424; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-price {
        color: #24ca24;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-price ins {
        font-size: 20px;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-price del span {
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-price span {
        font-size: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-excerpt {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box;
        margin: 15px 0; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-but-cart {
        margin-top: 20px;
        line-height: 50px; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-but-cart a {
        padding: 13px 35px !important;
        font-weight: 700;
        background: #24ca24;
        color: #fff;
        border-radius: 5px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-but-cart a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-rating {
        height: 30px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-rating .star-rating {
        position: absolute;
        left: calc(50% - 20px);
        top: 20px;
        z-index: 3;
        font-size: 13px;
        float: none; }
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default .bt-content .bt-rating .star-rating span {
        margin: 0 !important;
        font-size: 13px;
        color: #24ca24; }
      @media only screen and (max-width: 767px) {
      #page .wpb_theme_custom_element.wpb_products_slider_full_width .item .item-inner.layout-default {
        margin: 0px; } }
    #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav {
      opacity: 1 !important; }
    #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav .owl-prev {
      opacity: 1 !important; }
    #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav .owl-next {
      opacity: 1 !important; }
  #page .wpb_theme_custom_element.wpb_products_slider {
    /* wpb_class_slider */ }
    #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product {
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product {
        overflow: hidden;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay .bt-content-overlay .bt-but-cart, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-overlay .bt-content-overlay a.readmore {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product:hover .bt-content-product {
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay {
        background-color: rgba(255, 255, 255, 0.77);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 9; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore {
        width: 190px;
        height: 56px;
        line-height: 56px;
        padding: 0;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        border-radius: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart {
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -o-transform: translateX(300px);
        -ms-transform: translateX(300px);
        transform: translateX(300px);
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        margin-bottom: 5px; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a {
          font-size: 16px;
          font-weight: 700;
          font-family: 'Open Sans';
          background-color: #24ca24;
          position: relative;
          overflow: hidden; }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading:hover {
            background-color: transparent;
            border: 3px solid #1f1f1f;
            color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading {
            opacity: 1; }
            #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a.loading:after {
              color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):after {
            width: 100%;
            height: 100%;
            z-index: 3;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            box-sizing: border-box;
            -webkit-transform: scale(0);
            transition: 0.5s;
            -webkit-transform-origin: 100% 0%; }
            #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):before {
              border-bottom: 3px solid #1e3760;
              border-left: 3px solid #1e3760;
              -webkit-transform-origin: 100% 0%; }
            #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):after {
              border-top: 3px solid #1e3760;
              border-right: 3px solid #1e3760;
              -webkit-transform-origin: 0% 100%; }
            #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover {
              color: #24ca24; }
              #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:not(.loading):hover:after {
                -webkit-transform: scale(1); }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay .bt-but-cart > a:hover {
            background-color: transparent;
            text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore {
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
        -o-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
        background-color: #2a2a2a;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        margin-top: 5px; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore > span.ion-ios-eye {
          font-size: 35px;
          line-height: 56px; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-overlay .bt-content-overlay a.readmore:hover {
          background-color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-featured {
        padding: 132px 0px;
        position: relative;
        overflow: hidden;
        z-index: 8; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 0px;
        background-color: #24ca24;
        color: #fff;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0;
        padding: 10px 24px;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Open Sans'; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product {
        width: 100%;
        height: auto;
        overflow: hidden;
        margin: 0;
        background-color: #fff;
        padding: 0px 0px 15px 20px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .post-term-list > a:hover, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .post-term-list > a {
        font-size: 16px;
        line-height: 26px;
        color: #666;
        font-family: 'Open Sans'; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-rating {
        display: inline-block;
        overflow: hidden;
        margin: 10px 0px -5px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-rating > .star-rating span:before {
        color: #f1b71a; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title {
        margin: 0px 0px 10px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a {
        font-family: 'Montserrat';
        font-weight: 700;
        font-size: 22px;
        line-height: 22px;
        color: #1f1f1f; }
        @media only screen and (max-width: 991px) {
                #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-title > a {
                  font-size: 20px;
                  line-height: 30px; } }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: baseline; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price > span.woocommerce-Price-amount {
        font-family: 'Open Sans';
        line-height: 30px;
        font-weight: 500;
        font-size: 20px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del span, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins span {
        font-family: 'Open Sans';
        line-height: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del {
        margin-left: 3px; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price del span.woocommerce-Price-amount {
          font-weight: 400;
          color: #666;
          font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins {
        margin-right: 3px;
        text-decoration: none !important; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style5 .bt-contaier-product.bt-item-product .bt-content-product .bt-price ins span.woocommerce-Price-amount {
          font-weight: 500;
          font-size: 20px;
          color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-featured {
        position: relative;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #24ca24;
        color: #fff;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
        padding: 2px 12px;
        text-transform: uppercase;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product {
        padding: 0 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay {
        background: #1d1d1d;
        text-align: center;
        padding: 13px 10px;
        margin-top: -30px;
        z-index: 9;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart {
        display: inline-block;
        width: 60%;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart a {
        background: transparent;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        padding: 10px !important;
        line-height: 12px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-but-cart a.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-price {
        display: inline-block;
        vertical-align: middle;
        width: 40%;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        border-left: 1px solid #fff; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay .bt-price del {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-overlay:hover {
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-rating {
        display: block;
        text-align: center;
        overflow: hidden;
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-rating .star-rating {
        float: none;
        margin: 0 auto;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-rating .star-rating span {
        color: #fdba0a; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-title {
        text-align: center;
        line-height: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .bt-title a {
        text-align: center;
        margin-bottom: 5px;
        font-size: 20px;
        color: #333 !important;
        font-weight: bold;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .post-term-list {
        text-align: center;
        font-size: 15px;
        line-height: 25px;
        font-style: italic; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .post-term-list a {
        color: #999 !important; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style4 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured {
        position: relative;
        overflow: hidden;
        min-height: 360px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 0px;
        background-color: #24ca24;
        color: #fff;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0;
        padding: 10px 24px;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Montserrat'; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.35);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        z-index: 9; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay > a {
          -webkit-transform: translateX(0px);
          -moz-transform: translateX(0px);
          -o-transform: translateX(0px);
          -ms-transform: translateX(0px);
          transform: translateX(0px);
          opacity: 1 !important; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay:hover .bt-content-overlay .bt-readmore.item-overlay a.button {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        display: flex;
        justify-content: space-between; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        width: 48%;
        text-align: center;
        z-index: 0;
        max-height: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        background-color: #24ca24;
        color: #fff;
        box-sizing: border-box;
        position: relative;
        z-index: 99;
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        opacity: 0; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover {
          background-color: #39bcdd; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart > a {
        font-size: 0px;
        padding: 0px;
        font-weight: 700;
        -webkit-transform: translateX(75px);
        -moz-transform: translateX(75px);
        -o-transform: translateX(75px);
        -ms-transform: translateX(75px);
        transform: translateX(75px); }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart > a:before {
          position: absolute;
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          top: 50%;
          left: 50%;
          color: #fff;
          font-size: 16px;
          transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.add_to_cart_button.button:before {
        content: "\f07a";
        padding-right: 3px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart:before {
        content: "\f00c"; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading {
        opacity: 1; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading:before {
          content: none; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.add_to_cart_button.loading:after {
          font-size: 17px;
          top: 17px;
          right: 17px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        font-size: 22px;
        line-height: 22px;
        -webkit-transform: translateX(-67px);
        -moz-transform: translateX(-67px);
        -o-transform: translateX(-67px);
        -ms-transform: translateX(-67px);
        transform: translateX(-67px); }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button .ion-ios-eye:before {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product {
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta {
        display: flex;
        margin-top: 10px;
        justify-content: space-between;
        vertical-align: middle;
        align-items: center; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price {
        text-align: left;
        display: flex;
        flex-direction: row-reverse; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price span {
        font-family: 'Montserrat';
        font-weight: 300;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price ins {
        text-decoration: none;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price ins span {
        font-size: 20px;
        color: #24ca24;
        line-height: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .bt-price del span {
        font-size: 13px;
        line-height: 23px;
        color: #ebebeb; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .star-rating {
        color: #b6eb14; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-meta .star-rating :before {
        color: #b6eb14; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-title {
        margin-bottom: 5px;
        font-size: 20px;
        line-height: 28px;
        margin: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .post-term-list {
        text-align: left;
        font-size: 15px;
        line-height: 25px;
        font-weight: 400; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .post-term-list > a {
        color: #ebebeb; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style3 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured {
        position: relative;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .product-sale {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #24ca24;
        color: #fff;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
        padding: 2px 12px;
        text-transform: uppercase;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.35);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
        z-index: 9; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        bottom: 0px;
        left: 0px;
        display: flex;
        justify-content: space-between; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        width: 48%;
        text-align: center;
        z-index: 0;
        -webkit-transform: translateX(80px);
        -moz-transform: translateX(80px);
        -o-transform: translateX(80px);
        -ms-transform: translateX(80px);
        transform: translateY(80px); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart {
        max-width: 132px;
        max-height: 50px;
        background-color: #24ca24;
        width: 100%;
        color: #fff;
        box-sizing: border-box;
        position: relative;
        transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1) !important;
        z-index: 9; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:after, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:after {
          content: '';
          position: absolute;
          transition: inherit;
          z-index: -1; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:before {
          top: 0;
          left: 50%;
          height: 100%;
          width: 0;
          border: 2px solid #000;
          border-left: 0;
          border-right: 0; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:after, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:after {
          bottom: 0;
          left: 0;
          height: 0;
          width: 100%;
          background: #000; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover {
          transition-delay: 0.6s; }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover:before {
            transition-delay: 0s;
            left: 0;
            width: 100%; }
          #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.button:hover:after, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .item-overlay a.added_to_cart:hover:after {
            top: 0;
            height: 100%;
            transition-delay: 0.4s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart {
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart.wc-forward {
        text-transform: uppercase;
        font-size: 14px;
        line-height: 24px;
        padding: 12px 0px 0px 0px;
        height: 100%;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading {
        padding: 12px 20px 0px 0px;
        opacity: 1;
        transition: none !important; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:after {
          right: 12px;
          top: 12px;
          color: #fff;
          content: "\e01c";
          bottom: initial;
          left: initial;
          width: initial;
          height: initial;
          background: transparent; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:before {
          content: none; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:hover:after {
          background: transparent;
          top: initial;
          height: initial; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore {
        -wekbit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        -o-transition: all 0.8s;
        transition: all 0.8s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        font-size: 22px;
        line-height: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product {
        margin-top: 30px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-price {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-price > span {
        line-height: 54px;
        font-size: 22px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-price ins span {
        font-weight: 700;
        font-size: 22px;
        color: #24ca24;
        line-height: 54px;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-price del span {
        font-weight: 400;
        font-size: 16px;
        line-height: 54px;
        color: #999; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-title {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 5px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .post-term-list {
        text-align: center;
        font-size: 15px;
        line-height: 25px;
        text-transform: uppercase;
        min-height: 50px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style2 .bt-content-product .post-term-list > a:not(:first-child) {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.8);
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay:hover {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay:hover .bt-content-overlay .item-overlay {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
        z-index: 9; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay {
        display: flex;
        justify-content: flex-end;
        vertical-align: middle;
        align-items: center;
        padding: 20px 15px 0px 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .item-overlay {
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        z-index: 0; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart {
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        transform: translateX(-100px);
        padding: 11px 18px 9px 18px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:before, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:after {
        content: " ";
        position: absolute;
        z-index: -1;
        width: 0%;
        height: 1px;
        background: #24ca24;
        box-shadow: inset 0px 0px 0px #24ca24;
        display: block;
        -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
        transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:before {
        left: 0px;
        bottom: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:after {
        right: 0px;
        top: 0px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover {
        border-left: 1px solid #24ca24;
        border-right: 1px solid #24ca24; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover:after, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart:hover:before {
          width: 100%; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button, #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.added_to_cart.wc-forward {
        background-color: transparent;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 24px;
        color: #24ca24;
        font-weight: 700;
        padding: 0px;
        -wekbit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        box-sizing: border-box; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading {
        padding: 0px 15px 0px 0px; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.loading:after {
          right: -4px;
          top: -2px;
          color: #000; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-but-cart a.button.added {
        display: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore {
        width: 80px;
        height: 80px;
        text-align: center;
        padding-top: 10px;
        background-color: rgba(220, 220, 220, 0.1);
        border-radius: 50%;
        -webkit-transform: translateX(150px);
        -moz-transform: translateX(150px);
        -o-transform: translateX(120px);
        -ms-transform: translateX(150px);
        transform: translateX(100px); }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button {
        background-color: #fff;
        width: 57px;
        height: 57px;
        padding: 13px 0px 0px 0px;
        text-align: center;
        border-radius: 50%; }
        #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-featured .bt-overlay .bt-content-overlay .bt-readmore a.button span.ion-ios-eye {
          color: #2d2d2d;
          font-size: 25px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-content-product {
        margin-top: 40px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-content-product .bt-price ins span {
        font-weight: 700;
        font-size: 20px;
        color: #24ca24;
        line-height: 28px;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-content-product .bt-price del span {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #999; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-style1 .bt-content-product .bt-title {
        font-size: 22px;
        line-height: 30px;
        color: #444; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default {
        text-align: center;
        margin: 0 80px;
        overflow: hidden;
        background: url('../images/bg-product-d.png') no-repeat center center;
        background-size: cover; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-featured {
        padding: 70px 60px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-featured img {
        max-width: 350px;
        margin: 0 auto; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content {
        padding: 50px 60px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content h3.bt-title span {
        font-family: 'Montserrat';
        color: #161616;
        font-size: 24px;
        display: block; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content h3.bt-title a {
        font-size: 27px;
        color: #242424; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-price {
        color: #24ca24;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-price ins {
        font-size: 20px;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-price del span {
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-price span {
        font-size: 20px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-excerpt {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box;
        margin: 15px 0; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-but-cart {
        margin-top: 20px;
        line-height: 50px; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-but-cart a {
        padding: 13px 35px !important;
        font-weight: 700;
        background: #24ca24;
        color: #fff;
        border-radius: 5px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-but-cart a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-rating {
        height: 30px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-rating .star-rating {
        position: absolute;
        left: calc(50% - 20px);
        top: 20px;
        z-index: 3;
        font-size: 13px;
        float: none; }
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default .bt-content .bt-rating .star-rating span {
        margin: 0 !important;
        font-size: 13px;
        color: #24ca24; }
      @media only screen and (max-width: 767px) {
      #page .wpb_theme_custom_element.wpb_products_slider .item .item-inner.layout-default {
        margin: 0px; } }
    #page .wpb_theme_custom_element.wpb_products_slider .owl-nav {
      opacity: 1 !important; }
    #page .wpb_theme_custom_element.wpb_products_slider .owl-nav .owl-prev {
      opacity: 1 !important; }
    #page .wpb_theme_custom_element.wpb_products_slider .owl-nav .owl-next {
      opacity: 1 !important; }
  #page .wpb_theme_custom_element.wpb_classes_slider {
    margin-bottom: 30px;
    /* wpb_events_slider */ }
    #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default {
      text-align: center;
      max-width: 360px;
      margin: 0 auto;
      /* custom css vvv */ }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-media {
        margin-bottom: 20px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.01em;
        margin-bottom: 5px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-title > a {
        color: #444; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-title > a:hover {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-meta {
        font-size: 12px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #24ca24;
        margin-bottom: 15px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-social {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 0 1px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-social > li > a {
        display: inline-block;
        width: 42px;
        height: 42px;
        font-size: 12px;
        line-height: 42px;
        text-align: center;
        color: #555;
        background: #fafafa;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-default .bt-social > li > a:hover {
        color: #fff;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 {
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1:hover .bt-media {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1:hover .bt-media .bt-item-week {
        margin-right: 25px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media {
        min-height: 260px;
        position: relative;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week {
        font-size: 17px;
        line-height: 25px;
        color: #fff;
        font-weight: 700;
        background-color: #24ca24;
        text-transform: uppercase;
        width: 200px;
        padding: 10px 0px 8px 0px;
        text-align: center;
        border-radius: 0px 35px 35px 0px;
        position: absolute;
        z-index: 9;
        right: 20px;
        bottom: 20px;
        overflow: hidden;
        cursor: pointer;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week span {
        font-size: 13px;
        line-height: 20px;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:before, #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: 0.5s ease-in-out;
        z-index: -1;
        background-color: #111; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:before {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        border-radius: 0px 35px 0px 0px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:after {
        -webkit-transform: translateY(100%);
        transform: translateY(100%); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:hover:before {
        -webkit-transform: translateY(-45%);
        transform: translateY(-45%); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-media .bt-item-week:hover:after {
        -webkit-transform: translateY(45%);
        transform: translateY(45%); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-entry-content {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-entry-content .bt-title {
        font-size: 25px;
        color: #232323;
        margin: 40px 0px 15px 0px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-entry-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-excerpt {
        color: #666; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-meta {
        padding-top: 90px;
        position: relative;
        text-align: center;
        font-weight: 700;
        color: #24ca24;
        text-transform: uppercase; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style1 .bt-meta:before {
        content: " ";
        display: inline-block;
        width: 1px;
        height: 38px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 30px;
        background-color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 {
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media {
        min-height: 340px;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        opacity: 0;
        z-index: 99; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay .bt-content-overlay {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0%;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay .bt-content-overlay .item-icon-warp {
        -webkit-transform: translatey(-170px);
        -moz-transform: translatey(-170px);
        -o-transform: translatey(-170px);
        -ms-transform: translatey(-170px);
        transform: translatey(-170px);
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay .bt-content-overlay .item-icon-warp > a {
        font-size: 23px;
        color: #fff;
        width: 72px;
        height: 72px;
        line-height: 72px;
        background-color: #24ca24;
        display: inline-block;
        border-radius: 50%; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay .bt-content-overlay .item-icon-warp > svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 70px;
        height: 70px;
        transform: translate(-50%, -50%);
        pointer-events: none;
        stroke-width: 2;
        stroke-dasharray: 5, 5;
        stroke-dashoffset: 10;
        stroke-linecap: round;
        fill: none;
        stroke: #fff;
        animation: 20s linear 0s infinite normal both paused dashed_border_running;
        transition: all 0.4s ease 0s;
        z-index: 99; }
        #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-overlay .bt-content-overlay .item-icon-warp > svg rect {
          width: 49px;
          height: 49px;
          x: 10px;
          y: 10px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-content-meta-class {
        position: absolute;
        width: 100%;
        height: auto;
        bottom: 10px;
        left: 0px;
        background-color: #24ca24;
        z-index: 9;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-content-meta-class ul.bt-nav-meta {
        padding: 0px;
        margin-bottom: 0px;
        display: flex;
        min-height: 60px;
        vertical-align: middle;
        align-content: center;
        align-items: center; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-content-meta-class ul.bt-nav-meta > li {
        display: inline-block;
        color: #fff;
        font-family: 'Montserrat';
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        width: 50%; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-content-meta-class ul.bt-nav-meta > li > i {
        font-size: 20px;
        margin-right: 10px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media .bt-content-meta-class ul.bt-nav-meta > li:last-child {
        border-left: 1px solid #fff; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media:hover .bt-overlay .bt-content-overlay .item-icon-warp {
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -o-transform: translatey(0px);
        -ms-transform: translatey(0px); }
        #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media:hover .bt-overlay .bt-content-overlay .item-icon-warp > svg {
          animation-play-state: running; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-media:hover .bt-content-meta-class {
        opacity: 0;
        z-index: 0;
        -webkit-transform: translatey(100px);
        -moz-transform: translatey(100px);
        -o-transform: translatey(100px);
        -ms-transform: translatey(100px);
        transform: translatey(50px); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content {
        text-align: left; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content .bt-title {
        font-size: 24px;
        line-height: 34px;
        color: #39bcdd;
        margin: 20px 0px 5px 0px; }
      @media only screen and (max-width: 480px) {
            #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content .bt-title {
              font-size: 20px;
              line-height: 30px; } }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-style2 .bt-entry-content .bt-item-week {
        font-size: 18px;
        line-height: 28px;
        color: #1f1f1f; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image {
        text-align: center;
        max-width: 360px;
        margin: 0 auto; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-media {
        position: relative;
        margin-bottom: 25px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-media:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        border-bottom: 30px solid #fff;
        border-left: 180px solid transparent;
        border-right: 180px solid transparent;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-media .bt-coach-avatar {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 70px;
        height: 70px;
        overflow: hidden;
        z-index: 1;
        border: 5px solid #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-media .bt-coach-avatar img {
        width: 100%;
        height: auto;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-title {
        font-size: 17px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-title > a {
        color: #444; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-title > a:hover {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-meta {
        margin-bottom: 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 0.02em;
        color: #999;
        margin: 0 5px; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-meta > li.bt-coach {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-fee {
        font-size: 15px;
        font-weight: 700;
        line-height: 28px;
        letter-spacing: -0.03em;
        text-transform: uppercase;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_classes_slider .item .item-inner.layout-block-image .bt-fee .price {
        font-size: 14px;
        color: #666;
        display: inline-block;
        margin-right: 5px; }
  #page .wpb_theme_custom_element.wpb_events_slider {
    margin-bottom: 30px;
    /* wpb_liquid_button */ }
    #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default {
      overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap {
        display: block;
        height: 55vh;
        position: relative;
        overflow: hidden;
        border-radius: 3px; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-thumbnail-background {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-term-list {
        background: #24ca24;
        color: #fff;
        font-size: 11px;
        left: 10px;
        letter-spacing: 2px;
        position: absolute;
        text-transform: uppercase;
        top: 10px;
        z-index: 3;
        padding: 5px 10px;
        line-height: normal;
        border-radius: 100px; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-term-list a {
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry {
        filter: url('#svg_bleeding_stock');
        position: relative;
        padding: 0 20px 20px 20px;
        width: 450px;
        max-width: 100%;
        margin: 0 auto;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        text-align: center;
        z-index: 5; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .circle-overlay {
        background: #fff none repeat scroll 0 0;
        border-radius: 800px;
        height: 1600px;
        left: calc(50% - 800px);
        position: absolute;
        top: -45%;
        width: 1600px;
        z-index: -1; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .title-link {
        text-decoration: none;
        display: block;
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .title-link .title {
        text-decoration: underline;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -1px;
        overflow: hidden;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .event-start-time {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .event-start-time span {
        margin-right: 4px; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link {
        border-radius: 50%;
        color: #fff;
        height: 80px;
        left: calc(50% - 40px);
        position: absolute;
        top: 0;
        visibility: hidden;
        opacity: 0;
        background: #fff;
        width: 80px;
        z-index: 6;
        box-shadow: 0px 3px 8px 0px rgba(36, 202, 36, 0.4);
        -webkit-transition: 1.3s cubic-bezier(0.91, 0.27, 0.52, 0.84);
        transition: 1.3s cubic-bezier(0.91, 0.27, 0.52, 0.84);
        transform: scale(1);
        -webkit-transform: scale(1); }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link:hover {
        background: #20b420; }
      #page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default:hover .content-entry .readmore-link {
        top: calc(-100% - 80px);
        visibility: visible;
        opacity: 1;
        background: #24ca24;
        transform: scale(1);
        -webkit-transform: scale(1); }
  #page .wpb_theme_custom_element.wpb_liquid_button {
    /* give form slider */ }
    #page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap {
      display: inline-block;
      position: relative; }
    #page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap svg {
      max-width: 100%; }
    #page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap .liquid-button-text {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      z-index: 3;
      max-width: calc(100% - 20px); }
      #page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap .liquid-button-text p {
        margin: 0; }
  #page .wpb_theme_custom_element.wpb_give_forms_slider {
    /* grid resizable */ }
    #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 {
      position: relative;
      padding-top: 30px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .meta-donor {
        background: #333 none repeat scroll 0 0;
        color: #fff;
        font-size: 9px;
        left: 10px;
        letter-spacing: 2px;
        line-height: normal;
        padding: 7px 10px;
        position: absolute;
        text-transform: uppercase;
        top: 0;
        z-index: 3;
        border-radius: 2px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .meta-donor:after {
        content: "";
        border: solid 10px transparent;
        border-right-color: #333;
        position: absolute;
        left: 0px;
        bottom: -10px;
        z-index: -1; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .featured-image {
        border-radius: 3px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .featured-image img {
        width: 100%;
        height: auto;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content {
        padding-top: 30px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
        font-size: 16px;
        letter-spacing: -1px;
        color: #c5c5c5; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .income {
        font-size: 130%;
        color: #333; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .title-link {
        display: block;
        min-height: 56px;
        padding-right: 50px;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .title-link .title {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -1.2px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot {
        margin-top: 15px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta, #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn {
        display: inline-block;
        width: calc(100% - 134px);
        vertical-align: middle;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn {
        background: #24ca24;
        border-radius: 2px;
        color: #fff;
        padding: 5px 0;
        text-align: center;
        width: 130px;
        text-decoration: none;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn span {
        font-size: 20px;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn:hover {
        background: #20b420; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta {
        text-align: right; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta * {
        display: inline-block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2:hover .featured-image img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content, #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
        width: calc(100% / 2);
        display: inline-block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content {
        position: relative;
        min-height: 400px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 50px 30px;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .meta-donor {
        border-radius: 2px;
        color: #fff;
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        line-height: normal;
        padding: 7px 12px;
        text-transform: uppercase;
        background: #24ca24;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap {
        margin: 10px 0; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-goal-progress-bar {
        height: 10px;
        display: inline-block;
        vertical-align: middle;
        width: 70%; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
        font-weight: bold;
        letter-spacing: -1px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .income {
        font-size: 130%;
        color: #20b420; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .goal-text {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link .title {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: -1px;
        padding: 5px 0px;
        margin: 0 auto;
        max-width: 80%;
        color: #333;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link .title:hover {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .extra-meta {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 0;
        margin-bottom: 30px;
        color: #656565; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .extra-meta .meta-item {
        display: inline-block;
        vertical-align: top; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn {
        border-bottom: 1px solid;
        border-radius: 0px;
        color: #333;
        display: inline-block;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn span {
        margin-left: 4px;
        font-size: 20px;
        vertical-align: middle;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn:hover span {
        margin-left: 10px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image .readmore-link {
        position: absolute;
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
        background: #fff;
        color: #333;
        border-radius: 60px;
        z-index: 3;
        -webkit-transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.3);
        -webkit-transform: scale(0.3); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image .readmore-link span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 1;
        font-size: 24px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image .readmore-link {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image .readmore-link:hover {
        background: #24ca24;
        color: white; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image:after {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.2); }
      @media only screen and (max-width: 768px) {
        #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
          width: 100%;
          position: relative;
          left: auto;
          top: auto;
          height: 32vh; }

        #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content {
          width: 100%; }
          #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .title-link .title {
            max-width: 100% !important; } }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image {
        border-radius: 3px 3px 0 0;
        overflow: hidden;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image > img {
        width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.5);
        z-index: 1;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-goal-progress-wrap {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        width: 100%;
        padding: 20px;
        z-index: 3;
        opacity: 1;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        display: block; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-goal-progress-wrap > * {
        display: inline-block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-goal-progress-wrap .give-goal-progress-bar {
        width: 45px;
        height: 45px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-goal-progress-wrap .give-price-wrap {
        padding-left: 20px;
        color: #fff;
        font-size: 16px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-goal-progress-wrap .give-price-wrap .income {
        font-size: 130%; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-button-donate {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.4);
        -webkit-transform: translate(-50%, -50%) scale(0.4);
        z-index: 6;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-button-donate .give-form, #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-button-donate .give-btn {
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-button-donate .give-btn {
        width: 80px;
        height: 80px;
        font-size: 0;
        background: url('../images/heart-icon.png') no-repeat center center, transparent;
        background-size: 100%;
        -webkit-transition: 0.5s cubic-bezier(0.67, -0.25, 0.13, 1.29);
        transition: 0.5s cubic-bezier(0.67, -0.25, 0.13, 1.29);
        transform: scale(0.9);
        -webkit-transform: scale(0.9); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .give-button-donate .give-btn:hover {
        transform: scale(1.3);
        -webkit-transform: scale(1.3); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .readmore-btn {
        background: #fff none repeat scroll 0 0;
        border-radius: 50%;
        box-shadow: 0 0 13px -3px rgba(1, 1, 1, 0.2);
        color: #333;
        height: 80px;
        left: calc(50% - 40px);
        opacity: 0;
        position: absolute;
        top: calc(50% - 40px);
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        visibility: hidden;
        width: 80px;
        z-index: 6; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .readmore-btn span {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image .readmore-btn:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image:hover:after {
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image:hover .give-goal-progress-wrap {
        opacity: 0;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image:hover .give-button-donate {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .featured-image:hover .readmore-btn {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        -webkit-transform: scale(1); }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content {
        padding: 30px 20px 20px;
        background: #fafafa;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .meta-donor {
        border-radius: 2px;
        color: #fff;
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        line-height: normal;
        padding: 7px 12px;
        text-transform: uppercase;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .title-link .title {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -1px;
        padding: 5px 30px;
        margin-bottom: 0; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .extra-meta {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .extra-meta .meta-item {
        display: inline-block;
        vertical-align: top; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .readmore-btn {
        margin: 20px 0;
        letter-spacing: 2px;
        font-size: 12px;
        text-transform: uppercase;
        display: inline-block;
        font-weight: bold;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .readmore-btn span {
        font-size: 20px;
        vertical-align: middle;
        margin-left: 2px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-default .entry-content .readmore-btn:hover span {
        margin-left: 8px; }
  #page .wpb_theme_custom_element.wpb_posts_grid_resizable {
    /* pricing list */ }
    #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item .grid-item-inner {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item .ui-resizable-handle {
        background: #333; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .background-image-backend {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.1);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar {
        position: absolute;
        left: 0%;
        top: 0%;
        z-index: 3;
        text-align: center;
        width: 100%;
        padding: 20px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap {
        display: table;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap > * {
        display: table-cell;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-goal-progress-bar {
        width: 50px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-goal-progress-bar .progressbar__label {
        font-size: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-price-wrap {
        padding-left: 20px;
        color: #fff;
        font-size: 16px;
        text-align: left; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-price-wrap .income {
        font-size: 130%; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 20px;
        z-index: 4; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content:after {
        background: #fafafa;
        content: "";
        height: 500px;
        left: 50%;
        position: absolute;
        top: -45%;
        transform: translate(-50%, 0%) rotate(-8deg);
        -webkit-transform: translate(-50%, 0%) rotate(-8deg);
        width: 100vw;
        z-index: -1;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        transition-delay: 0.1s; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content:before {
        background: rgba(255, 255, 255, 0.9);
        content: "";
        height: 500px;
        left: 50%;
        position: absolute;
        top: 0%;
        transform: translate(-50%, 0%) rotate(10deg);
        -webkit-transform: translate(-50%, 0%) rotate(10deg);
        width: 100vw;
        z-index: -1;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content .title-link {
        display: block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content .title-link .title {
        margin: 0;
        font-size: 18px;
        line-height: 22px;
        color: #222;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: underline;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn {
        position: absolute;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
        width: 80px;
        height: 80px;
        background: #fff;
        color: #333;
        border-radius: 50%;
        box-shadow: 0 0 13px -3px rgba(1, 1, 1, 0.2);
        z-index: 6;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        transform: scale(0.3);
        -webkit-transform: scale(0.3); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .background-image-backend:after {
        background: rgba(0, 0, 0, 0.5); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .readmore-btn {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content:after, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content:before {
        top: 170%;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content .title {
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .background-image-backend {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .product-sale {
        border-radius: 2px;
        color: #fff;
        font-size: 13px;
        line-height: normal;
        padding: 2px 9px;
        position: absolute;
        right: 20px;
        text-align: center;
        top: 20px;
        z-index: 4;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 5;
        opacity: 0;
        text-align: center;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .added_to_cart {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .tooltip {
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin: 0 5px;
        background: #fff;
        box-shadow: 0 0 12px -2px rgba(1, 1, 1, 0.3);
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.readmore {
        transform: translateY(40px);
        -webkit-transform: translateY(40px); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        transition-delay: 0.05s;
        -webkit-transition-delay: 0.05s; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added > span, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading > span {
        opacity: 0;
        visibility: hidden; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:after, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:after {
          display: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:before, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
          content: "";
          position: absolute;
          left: calc(50% - 10px);
          top: calc(50% - 10px);
          width: 20px;
          height: 20px;
          text-align: center;
          line-height: 20px;
          z-index: 2;
          -moz-osx-font-smoothing: grayscale;
          display: inline-block;
          font-family: "Ionicons";
          font-style: normal;
          font-variant: normal;
          font-weight: normal;
          line-height: 1;
          text-rendering: auto;
          text-transform: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
        content: "";
        animation: add_to_cart_loading_ani 0.5s linear infinite;
        -webkit-animation: add_to_cart_loading_ani 0.5s linear infinite; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added {
        background: #24ca24;
        color: #fff;
        pointer-events: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:before {
          content: ""; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content {
        position: absolute;
        z-index: 2;
        left: 0%;
        bottom: 0%;
        padding: 15px 20px;
        background: #fafafa;
        width: 100%;
        display: table;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content > * {
        display: table-cell;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .p-price-wrap {
        white-space: nowrap;
        padding-left: 20px;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .p-price-wrap ins {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .title-link {
        width: 100%;
        margin: 0 auto;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .title-link .title {
        text-decoration: underline;
        font-size: 16px;
        line-height: 24px;
        margin: 0;
        display: block;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .star-rating {
        position: absolute;
        left: 20px;
        top: 20px;
        z-index: 3;
        font-size: 13px;
        float: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .star-rating span {
        margin: 0 !important;
        font-size: 13px;
        color: #fab400; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .background-image-backend {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-button {
        visibility: visible;
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-button .button {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-content {
        transform: translateY(100%);
        -webkit-transform: translateY(100%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .background-image-backend {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: calc(100% - 80px);
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .product-sale {
        border-radius: 2px;
        color: #fff;
        font-size: 13px;
        line-height: normal;
        padding: 2px 9px;
        position: absolute;
        right: 20px;
        text-align: center;
        top: 20px;
        z-index: 4;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button {
        position: absolute;
        left: 50%;
        top: calc(50% - 40px);
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 5;
        opacity: 0;
        text-align: center;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .added_to_cart {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .tooltip {
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button {
        width: 50px;
        height: 50px;
        border-radius: 3px;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin: 0 5px;
        background: #fff;
        box-shadow: 0 0 12px -2px rgba(1, 1, 1, 0.3);
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button span {
        position: absolute;
        font-size: 22px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.readmore {
        transform: translateY(40px);
        -webkit-transform: translateY(40px); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        transition-delay: 0.05s;
        -webkit-transition-delay: 0.05s;
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.added > span, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.loading > span {
        opacity: 0;
        visibility: hidden; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.added:after, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.loading:after {
          display: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.added:before, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
          content: "";
          position: absolute;
          left: calc(50% - 10px);
          top: calc(50% - 10px);
          width: 20px;
          height: 20px;
          text-align: center;
          line-height: 20px;
          z-index: 2;
          -moz-osx-font-smoothing: grayscale;
          display: inline-block;
          font-family: "Ionicons";
          font-style: normal;
          font-variant: normal;
          font-weight: normal;
          line-height: 1;
          text-rendering: auto;
          text-transform: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
        content: "";
        animation: add_to_cart_loading_ani 0.5s linear infinite;
        -webkit-animation: add_to_cart_loading_ani 0.5s linear infinite; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.added {
        background: #24ca24;
        color: #fff;
        pointer-events: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button.added:before {
          content: ""; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button.add_to_cart_button:hover {
        background: #fff;
        color: #515151; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-button .button:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content {
        position: absolute;
        z-index: 2;
        left: 0%;
        bottom: 0%;
        background: #fff;
        width: 100%;
        text-align: center;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content > * {
        display: block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap {
        white-space: nowrap;
        font-size: 15px;
        padding: 5px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap ins {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap ins span {
        color: #24ca24;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap del {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap span {
        color: #a0a0a0;
        font-size: 14px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap span.amount {
        color: #24ca24;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .p-price-wrap span.amount span {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .title-link {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        border-bottom: 1px solid #ddd;
        padding: 10px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .entry-content .title-link .title {
        font-size: 18px;
        line-height: 24px;
        margin: 0;
        display: block;
        width: 100%;
        color: #333; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .star-rating {
        position: absolute;
        left: 20px;
        top: 20px;
        z-index: 3;
        font-size: 13px;
        float: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner .star-rating span {
        margin: 0 !important;
        font-size: 13px;
        color: #fab400; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner:hover .background-image-backend {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner:hover .background-image-backend:after {
        background: rgba(0, 0, 0, 0.5); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner:hover .entry-button {
        visibility: visible;
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-block-image .grid-item-inner:hover .entry-button .button {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .background-image-backend {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: calc(100% - 80px);
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .product-sale {
        border-radius: 2px;
        color: #fff;
        font-size: 13px;
        line-height: normal;
        padding: 2px 9px;
        position: absolute;
        right: 20px;
        text-align: center;
        top: 20px;
        z-index: 4;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button {
        position: absolute;
        right: 15px;
        top: calc(50% - 20px);
        z-index: 5;
        opacity: 0;
        text-align: center;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .added_to_cart {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .tooltip {
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button {
        width: 50px;
        height: 50px;
        border-radius: 3px;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin: 0 5px;
        background: #222;
        color: #fff;
        box-shadow: 0 0 12px -2px rgba(1, 1, 1, 0.3);
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button span {
        position: absolute;
        font-size: 22px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.readmore {
        transform: translateY(40px);
        -webkit-transform: translateY(40px); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        transition-delay: 0.05s;
        -webkit-transition-delay: 0.05s;
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.added > span, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.loading > span {
        opacity: 0;
        visibility: hidden; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.added:after, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.loading:after {
          display: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.added:before, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
          content: "";
          position: absolute;
          left: calc(50% - 10px);
          top: calc(50% - 10px);
          width: 20px;
          height: 20px;
          text-align: center;
          line-height: 20px;
          z-index: 2;
          -moz-osx-font-smoothing: grayscale;
          display: inline-block;
          font-family: "Ionicons";
          font-style: normal;
          font-variant: normal;
          font-weight: normal;
          line-height: 1;
          text-rendering: auto;
          text-transform: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
        content: "";
        animation: add_to_cart_loading_ani 0.5s linear infinite;
        -webkit-animation: add_to_cart_loading_ani 0.5s linear infinite; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.added {
        background: #24ca24;
        color: #fff;
        pointer-events: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button.added:before {
          content: ""; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button.add_to_cart_button:hover {
        background: #fff;
        color: #515151; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-button .button:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content {
        position: absolute;
        z-index: 2;
        left: 0%;
        bottom: 0%;
        background: #fff;
        width: 100%;
        padding-top: 35px;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content > * {
        display: block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap {
        white-space: nowrap;
        font-size: 15px;
        padding: 5px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap ins {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap ins span {
        color: #24ca24;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap del {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap span {
        color: #a0a0a0;
        font-size: 14px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap span.amount {
        color: #24ca24;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .p-price-wrap span.amount span {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content a.button {
        position: absolute;
        top: -30px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        padding: 0;
        right: 15px;
        color: #fff;
        background: #222;
        font-size: 20px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content a.button.added span {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content a.button:after {
        margin-left: 0; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .title-link {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        padding: 10px 0px 0px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .entry-content .title-link .title {
        font-size: 18px;
        line-height: 24px;
        margin: 0;
        display: block;
        width: 100%;
        color: #333; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .star-rating {
        z-index: 3;
        font-size: 13px;
        float: none;
        position: absolute;
        top: 25px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner .star-rating span {
        margin: 0 !important;
        font-size: 13px;
        color: #fab400; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner:hover .entry-content a.button {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner:hover .entry-button {
        visibility: visible;
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-1 .grid-item-inner:hover .entry-button .button {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend {
        position: relative;
        height: 340px;
        max-height: 340px;
        z-index: 2;
        overflow: hidden;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend .bt-content-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend .bt-content-overlay .bt-rating {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 3;
        width: 100px;
        height: 30px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 30px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend .bt-content-overlay .bt-rating .star-rating {
        font-size: 13px;
        float: none;
        margin: 0px; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .background-image-backend .bt-content-overlay .bt-rating .star-rating span {
          margin: 0 !important;
          font-size: 13px;
          color: #fab400; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .product-sale {
        border-radius: 2px;
        color: #fff;
        font-size: 13px;
        line-height: normal;
        padding: 2px 9px;
        position: absolute;
        right: 20px;
        text-align: center;
        top: 20px;
        z-index: 4;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button {
        position: absolute;
        left: 50%;
        top: calc(50% - 40px);
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 5;
        opacity: 0;
        text-align: center;
        display: flex;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .added_to_cart {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .tooltip {
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button {
        width: 50px;
        height: 50px;
        border-radius: 3px;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin: 0 5px;
        background: #fff;
        box-shadow: 0 0 12px -2px rgba(1, 1, 1, 0.3);
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button span {
        position: absolute;
        font-size: 22px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.readmore {
        transform: translateY(40px);
        -webkit-transform: translateY(40px); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        transition-delay: 0.05s;
        -webkit-transition-delay: 0.05s;
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.added > span, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.loading > span {
        opacity: 0;
        visibility: hidden; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.added:after, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.loading:after {
          display: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.added:before, #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
          content: "";
          position: absolute;
          left: calc(50% - 10px);
          top: calc(50% - 10px);
          width: 20px;
          height: 20px;
          text-align: center;
          line-height: 20px;
          z-index: 2;
          -moz-osx-font-smoothing: grayscale;
          display: inline-block;
          font-family: "Ionicons";
          font-style: normal;
          font-variant: normal;
          font-weight: normal;
          line-height: 1;
          text-rendering: auto;
          text-transform: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
        content: "";
        animation: add_to_cart_loading_ani 0.5s linear infinite;
        -webkit-animation: add_to_cart_loading_ani 0.5s linear infinite; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.added {
        background: #24ca24;
        color: #fff;
        pointer-events: none; }
        #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button.added:before {
          content: ""; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button.add_to_cart_button:hover {
        background: #fff;
        color: #515151; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-button .button:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content {
        padding-top: 30px;
        background: #fff;
        width: 100%;
        text-align: left;
        display: inline-block;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .post-term-list a {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.16px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content > * {
        display: block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .p-price-wrap {
        white-space: nowrap;
        color: #24ca24;
        font-weight: 600;
        font-size: 22px;
        line-height: 32px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: flex-end; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .p-price-wrap ins {
        text-decoration: none;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .p-price-wrap ins span {
        color: #24ca24;
        font-weight: 600;
        font-size: 22px;
        line-height: 32px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .p-price-wrap del {
        display: inline-block; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .p-price-wrap del span {
        font-size: 16px;
        line-height: 26px;
        color: #b3b3b3;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .title-link {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        padding: 0px;
        text-transform: uppercase; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner .entry-content .title-link .title {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        margin: 5px 0px;
        display: block;
        width: 100%;
        color: #39bcdd; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner:hover .background-image-backend {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner:hover .background-image-backend:after {
        background: rgba(0, 0, 0, 0.5); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner:hover .entry-button {
        visibility: visible;
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-style-2 .grid-item-inner:hover .entry-button .button {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default {
        /* post default */ }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .image-item {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 4;
        visibility: hidden;
        opacity: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        background: #fff;
        color: #111;
        border-radius: 40px;
        box-shadow: 0 0 23px 3px rgba(1, 1, 1, .2);
        font-size: 30px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item:hover {
        background: #20b420;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item img {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner:hover .image-item {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner:hover .zoom-item {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .background-image-backend {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .background-image-backend:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.5);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content {
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        position: absolute;
        width: 100%;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        padding: 30px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .post-term-list {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .post-term-list a {
        color: #fff;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 5px 2px; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .title-link .title {
        color: #fff;
        text-decoration: underline;
        font-size: 20px;
        line-height: 25px;
        margin: 0;
        display: block;
        max-width: 100%;
        width: 400px;
        margin: 0 auto;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .readmore {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 4;
        visibility: hidden;
        opacity: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        background: #fff;
        color: #111;
        border-radius: 40px;
        box-shadow: 0 0 23px 3px rgba(1, 1, 1, .2); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .readmore:hover {
        background: #20b420;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .background-image-backend {
        transform: scale(1.05);
        -webkit-transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .background-image-backend:after {
        opacity: 0.8; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .entry-content {
        opacity: 0;
        visibility: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .readmore {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1); }
  #page .wpb_theme_custom_element.wpb_list_pricing {
    /* pricing table */ }
    #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing {
      padding: 5px 0; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-pricing {
        display: inline-block;
        vertical-align: middle;
        width: 90px;
        font-size: 22px;
        font-weight: 700;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 280px);
        border-left: #24ca24 solid 2px;
        padding-left: 20px;
        overflow: hidden;
        padding-right: 20px; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content h3.bt-title {
        font-size: 22px;
        line-height: 28px;
        margin: 0;
        margin-right: 10px;
        display: table-cell;
        white-space: nowrap; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content .dot {
        display: table-cell;
        width: 100%;
        overflow: hidden;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content .dot:after {
        content: "_____________________________________________________________________________________________________________________________";
        white-space: nowrap;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 10px;
        color: #d8d8d8; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content .bt-excerpt {
        font-size: 16px;
        line-height: 22px;
        color: #555; }
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-thumb {
        display: inline-block;
        vertical-align: middle;
        width: 190px;
        height: 80px;
        background-size: cover; }
      @media (max-width: 767px) {
      #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-pricing {
        width: 70px;
        font-size: 20px; }
        #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-content {
          width: calc(100% - 70px); }

        #page .wpb_theme_custom_element.wpb_list_pricing .bt-list-pricing .layout-default article.lemon-pricing .bt-thumb {
          display: none; } }
  #page .wpb_theme_custom_element.wpb_pricing_table {
    /* pricing grid system */
    margin-bottom: 30px;
    /* featured_box */ }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row {
      margin-left: -30px;
      transition-property: height, width;
      -webkit-transition-property: height, width;
      width: calc(100% + 30px);
      position: relative;
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */
      /* responsive */ }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row > *, #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row > *:before, #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row > *:after {
      box-sizing: border-box !important; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row:after {
      content: "";
      display: block;
      clear: both; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-1 {
      width: calc(100% / 1);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-1.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2 {
      width: calc(100% / 2);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
      width: calc(100% / 3);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
      width: calc(100% / 4);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
      width: calc(100% / 5);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
      width: calc(100% / 6);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
      width: calc(100% / 7);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
      width: calc(100% / 8);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
      width: calc(100% / 9);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
      width: calc(100% / 10);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
      width: calc(100% / 11);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11.pricing-col-align-middle {
        vertical-align: middle; }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
      width: calc(100% / 12);
      box-sizing: border-box;
      float: left;
      vertical-align: top;
      padding-left: 30px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12.pricing-col-align-middle {
        vertical-align: middle; }
    @media (min-width: 769px) and (max-width: 991px) {
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
        width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
          width: calc(100% / 2); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
          width: calc(100% / 2); } }
    @media (max-width: 768px) {
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2 {
        width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
          width: calc(100%); }
        #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
          width: calc(100%); } }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default {
      max-width: 360px;
      margin: 0 auto 50px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header {
        position: relative;
        -webkit-border-top-left-radius: 20px;
        -moz-border-top-left-radius: 20px;
        border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-top-right-radius: 20px;
        border-top-right-radius: 20px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-overlay {
        padding: 60px 18%;
        background: rgba(0, 0, 0, 0.7);
        -webkit-border-top-left-radius: 20px;
        -moz-border-top-left-radius: 20px;
        border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-top-right-radius: 20px;
        border-top-right-radius: 20px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-price {
        font-size: 45px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.02em;
        color: #fff;
        margin-bottom: 20px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-price .bt-unit {
        display: inline-block;
        vertical-align: super;
        font-size: 30px;
        color: #24ca24;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-pertime {
        font-size: 17px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: 0.02em;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-title {
        font-size: 15px;
        line-height: 26px;
        letter-spacing: 0.02em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-header .bt-icon {
        position: absolute;
        bottom: -48px;
        right: 50px;
        width: 96px;
        height: 96px;
        font-size: 36px;
        text-align: center;
        line-height: 76px;
        color: #fff;
        background: #24ca24;
        z-index: 1;
        border: 10px solid #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content {
        position: relative;
        background: #fafafa;
        padding: 70px 0;
        -webkit-border-bottom-left-radius: 20px;
        -moz-border-bottom-left-radius: 20px;
        border-bottom-left-radius: 20px;
        -webkit-border-bottom-right-radius: 20px;
        -moz-border-bottom-right-radius: 20px;
        border-bottom-right-radius: 20px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content ul {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content ul > li {
        list-style: none;
        font-size: 13px;
        font-style: italic;
        line-height: 26px;
        letter-spacing: 0.02em;
        color: #666;
        padding: 15px 18%;
        border-bottom: 1px solid #f1f1f1; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content ul > li:before {
        content: "\f00c";
        font-family: FontAwesome;
        font-style: normal;
        color: #24ca24;
        display: inline-block;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content ul > li.bt-close:before {
        content: "\f057";
        color: #22d76a; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content ul > li:last-child {
        border-bottom: none; }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content .pricing-table-button {
        position: absolute;
        left: 50%;
        bottom: -22px;
        font-size: 12px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        text-align: center;
        color: #fff;
        background: #24ca24;
        min-width: 185px;
        padding: 10px 20px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
      #page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .bt-content .pricing-table-button:hover {
        background: #2e96b1;
        text-decoration: none; }
  #page .wpb_theme_custom_element.wpb_featured_box {
    margin-bottom: 30px;
    /* team slider */ }
    #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-center {
      text-align: center; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-left {
        text-align: left; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-right {
        text-align: right; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-top .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-top .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-top .entry-box-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-top .entry-box-wrap {
        vertical-align: top; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-middle .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-middle .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-middle .entry-box-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-middle .entry-box-wrap {
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left {
        display: table;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .entry-box-wrap {
        display: table-cell; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .entry-box-wrap {
        padding-left: 20px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right {
        display: table;
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .icon-wrap, #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .entry-box-wrap {
        display: table-cell; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .entry-box-wrap {
        text-align: right;
        padding-right: 20px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap {
        display: inline-block;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-rounded {
        border-radius: 4px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-square {
        border-radius: 0px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-circle {
        border-radius: 100%; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon ._icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-image {
        text-align: center;
        margin-bottom: 8px; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-image img {
        max-width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap {
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
        margin-top: 0;
        line-height: 28px;
        letter-spacing: -1px;
        font-size: 22px !important; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title > a {
        color: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        letter-spacing: inherit !important;
        line-height: inherit !important; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-text {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        letter-spacing: -0.6px;
        font-family: 'Montserrat'; }
      #page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
        display: inline-block;
        margin-top: 20px;
        font-weight: bold;
        padding: 0 0 5px 0;
        border-bottom: solid 2px;
        font-size: 14px;
        line-height: normal;
        text-decoration: none;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
  #page .wpb_theme_custom_element.wpb_vc_team_silder {
    /* team */ }
    #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 {
      overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail {
        min-height: 440px;
        width: 100%;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team .bt-content-overlay {
        width: 100%;
        background-color: #000;
        position: absolute;
        bottom: 40px;
        left: -40px;
        padding: 20px 0px 25px 15px;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team .bt-content-overlay .post-title {
        line-height: 38px;
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team .bt-content-overlay .post-title > a {
        font-size: 28px;
        color: #fff;
        font-weight: 700;
        letter-spacing: 0.48px; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team .bt-content-overlay .post-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_style-1 .post-thumbnail .bt-overlay-team .bt-content-overlay .bt-position {
        font-weight: 500;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0.8px;
        color: #24ca24; }
    #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content {
      display: flex;
      justify-content: center;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content {
          display: inline-block; }
          #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .post-thumbnail, #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp {
            width: 100% !important; } }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .post-thumbnail {
        width: 40%; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp {
        width: 60%;
        padding-left: 100px; }
      @media only screen and (max-width: 991px) {
          #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp {
            padding-left: 30px; } }
      @media only screen and (max-width: 767px) {
          #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp {
            padding: 40px 0px !important; } }
      @media only screen and (max-width: 480px) {
          #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp {
            text-align: center; } }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .sub-title, #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .post-title > a {
        font-size: 40px;
        line-height: 50px; }
      @media only screen and (max-width: 991px) {
            #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .sub-title, #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .post-title > a {
              font-size: 35px;
              line-height: 45px; } }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .sub-title {
        color: #1f1f1f;
        letter-spacing: 0.16px;
        font-weight: 500;
        margin: 0px; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .post-title {
        margin: 5px 0px; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .post-title > a {
        color: #39bcdd;
        letter-spacing: 0.48px;
        font-weight: 700; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .post-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-position {
        color: #1f1f1f;
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
        letter-spacing: 0.16px; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-excerpt {
        font-size: 18px;
        line-height: 28px;
        margin: 15px 0px 40px 0px; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact {
        display: flex;
        align-items: center; }
      @media only screen and (max-width: 480px) {
            #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact {
              flex-direction: column-reverse; } }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us {
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.32px;
        width: 190px;
        height: 57px;
        line-height: 57px;
        text-align: center;
        background-color: #24ca24;
        color: #fff;
        position: relative;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:before, #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:after {
        content: "";
        width: 0%;
        height: 0%;
        position: absolute;
        visibility: hidden; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:before {
        border-top: 2px solid #24ca24;
        border-right: 2px solid #24ca24;
        transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
        top: 0;
        left: 0; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:after {
        border-left: 2px solid #24ca24;
        border-bottom: 2px solid #24ca24;
        bottom: 0;
        right: 0;
        transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:hover {
        background-color: #fff;
        color: #24ca24;
        -webkit-animation: btpulse 1s ease-out 0.4s;
        animation: btpulse 1s ease-out 0.4s;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:hover:before, #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:hover:after {
        width: 100%;
        height: 100%;
        visibility: visible; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:hover:before {
        transition: width 0.1s ease, height 0.1s ease 0.1s; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact > a.item-contact-us:hover:after {
        transition: width 0.1s ease 0.2s, height 0.1s ease 0.3s, visibility 0s 0.2s; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social {
        padding: 0px;
        margin: 0px 0px 0px 25px; }
      @media only screen and (max-width: 480px) {
              #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social {
                margin: 0px 0px 40px 0px; } }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social > li {
        display: inline-block; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social > li > a {
        width: 57px;
        height: 57px;
        background-color: #fff;
        border: 2px solid #1f1f1f;
        box-sizing: border-box;
        display: inline-block;
        line-height: 56px;
        text-align: center;
        color: #39bcdd;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
        #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social > li > a:hover {
          background-color: #1f1f1f;
          color: #fff; }
      #page .wpb_theme_custom_element.wpb_vc_team_silder .item .team_slider_template_default .bt-content .bt-content-warp .bt-contact .bt-social > li:not(:first-child) {
        margin-left: 5px; }
  #page .wpb_theme_custom_element.wpb_class_listing {
    /* team */ }
    #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item {
      margin-bottom: 30px; }
    #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured {
      min-height: 325px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb, #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb > .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb {
        cursor: pointer; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 80%;
        background-color: #24ca24;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0px;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -o-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px); }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay > i {
        font-size: 32px;
        line-height: 40px;
        width: 50px;
        text-align: right;
        margin-right: 5px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay .bt-content-date {
        width: calc(100% - 50px);
        margin-left: 5px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay .bt-content-date > p {
        font-family: 'Montserrat';
        margin-bottom: 0px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay .bt-content-date > p.open {
        font-weight: 700;
        font-size: 18px;
        line-height: 24px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb .bt-overlay > .bt-content-overlay .bt-content-date > p.time {
        font-weight: 400;
        font-size: 15px;
        line-height: 25px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt_class_item_featured .post_thumb:hover .bt-overlay .bt-content-overlay {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px); }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt-content-class-item .bt-title {
        margin: 25px 0px 5px 0px;
        line-height: 32px;
        min-height: 68px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt-content-class-item .bt-title > a {
        color: #1f1f1f;
        font-size: 26px;
        line-height: 3 2px;
        font-weight: 700;
        letter-spacing: 0.16px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt-content-class-item .bt-title > a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item.layout-styles1 .bt-content-class-item .bt-week-calss {
        font-weight: 300;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.16px; }
    #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured {
      overflow: hidden;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon {
        position: relative;
        display: block; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon img {
        width: 100%; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon:before {
        content: '\f196';
        font-family: 'FontAwesome';
        font-size: 3em;
        color: #fff;
        text-shadow: -4px 3px 0px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: 0;
        filter: alpha(opacity=0);
        margin-top: 100px;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        transition: all ease 0.3s; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon:hover:before {
        opacity: 1;
        filter: alpha(opacity=100);
        margin-top: 0;
        z-index: 1; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon:after {
        content: '';
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: black;
        opacity: 0;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_featured .hover_icon_link:hover:after {
        opacity: 0.4; }
    #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title {
      text-align: center;
      margin: 0;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      padding: 1.9em 5px 1.9em 5px;
      min-height: 4.9em;
      background: #554c86;
      overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2 {
        width: 50%;
        float: left;
        padding: 0 10px; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2 h4 {
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        line-height: 1.2em;
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2 h4 a {
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2 .days {
        font-size: 0.875em;
        font-weight: 700;
        display: block;
        text-transform: uppercase;
        text-align: left;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        o-text-overflow: ellipsis;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2 .time {
        font-size: 0.813em;
        font-weight: 600;
        display: block;
        text-align: left;
        margin-top: 0.3em;
        padding-bottom: 0.5em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_class_listing .bt_class_item .bt_class_item_title .column-1_2.end {
        border-left: 1px solid;
        border-color: rgba(222, 222, 222, 0.4); }
  #page .wpb_theme_custom_element.wpb_team_listing {
    overflow: hidden;
    /* team */ }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-thumb > img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-thumb .bt-overlay .bt-excerpt {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-thumb .bt-overlay .bt-excerpt a {
        display: none; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-position {
      font-family: 'Montserrat';
      font-size: 20px;
      font-weight: 400;
      line-height: 20px;
      letter-spacing: 0.03em;
      color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title {
        position: relative;
        margin-bottom: 15px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title > a .entry-subtitle {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        text-transform: none;
        color: #24ca24;
        display: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-social {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-social > li > a {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        color: #fff;
        background: #000;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default .bt-content .bt-social > li > a:hover {
        background: #24ca24; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default:hover .bt-thumb > img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-default:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px;
      margin-bottom: 0;
      padding-top: 40px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 75%;
      padding-top: 75%;
      border-radius: 100%;
      margin: 0 auto;
      z-index: 9;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66);
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content {
      position: relative;
      background: #f7f7f7;
      padding-top: 130px;
      top: -130px;
      z-index: 0;
      padding-bottom: 25px;
      z-index: 8;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-position {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.03em;
        color: #24ca24;
        margin-bottom: 20px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title {
        position: relative;
        margin-bottom: 5px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title > a .entry-subtitle {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        text-transform: none;
        color: #24ca24;
        display: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-social {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-social > li > a {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        color: #000;
        background: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-social > li > a > i {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify .bt-content .bt-social > li > a:hover {
        background: #24ca24;
        color: #fff; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify:hover .bt-thumb {
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-simplify:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px;
      margin-bottom: 0; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 100%;
      border-radius: 3px;
      margin: 0 auto;
      z-index: 9;
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s;
      min-height: 300px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content {
      position: relative;
      background: #fff;
      margin: 0 10px;
      padding: 15px;
      top: -50px;
      border-radius: 5px;
      z-index: 10;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share {
        position: relative; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .share-ic {
        width: 38px;
        height: 38px;
        position: absolute;
        top: -34px;
        border-radius: 4px;
        background: #24ca24;
        left: calc(50% - 19px);
        cursor: pointer; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .share-ic img.share-ic-p {
        height: 100%;
        padding: 11px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .share-ic:hover {
        -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .bt-social {
        display: none;
        margin: 0;
        padding: 0;
        padding-top: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .bt-social > li > a {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        color: #000;
        background: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-share .bt-social > li > a:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-position {
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0.03em;
        color: #24ca24;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-title {
        position: relative;
        margin-bottom: 5px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #303030;
        display: block;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #333;
        display: block;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image:hover .bt-thumb {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.05); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-block-image:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px;
      margin-bottom: 0;
      overflow: hidden; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 100%;
      border-radius: 3px;
      margin: 0 auto;
      z-index: 9;
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content {
      position: relative;
      background: #fff;
      width: 70%;
      padding-top: 70%;
      bottom: 88px;
      margin: 0 auto;
      border-radius: 50%;
      z-index: 10;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c {
        position: absolute;
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        padding: 25px;
        border-radius: 50%; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c svg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        animation: dashed_border_running 20s linear infinite both;
        animation-play-state: paused;
        stroke-width: 2;
        stroke-dasharray: 9, 5;
        stroke-dashoffset: 0;
        stroke-linecap: round;
        fill: none;
        transition: 0.4s;
        stroke: #cecece; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c svg rect {
        height: 214px;
        width: calc(100% - 2px);
        x: 1px;
        y: 1px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share {
        position: relative;
        padding-top: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .share-icc {
        width: 38px;
        height: 38px;
        border-radius: 4px;
        background: #24ca24;
        display: inline-block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .share-icc img.share-ic-p {
        height: 100%;
        padding: 11px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .share-icc:hover {
        -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .bt-social {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .bt-social > li > a {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        color: #000;
        background: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-share .bt-social > li > a:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-position {
        font-size: 18px;
        line-height: 20px;
        letter-spacing: 0.03em;
        color: #999;
        margin-bottom: 10px;
        font-family: 'Montserrat';
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-title {
        position: relative;
        margin-bottom: 5px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #303030;
        display: block;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #222;
        text-transform: uppercase;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1 .bt-content .bt-content-c .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1:hover .bt-thumb {
      -webkit-transform: scale(1.06);
      -moz-transform: scale(1.06);
      -o-transform: scale(1.06);
      -ms-transform: scale(1.06);
      transform: scale(1.06);
      border-radius: 3px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1:hover .bt-thumb .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-1:hover .bt-content-c svg {
        animation-play-state: running;
        stroke: #24ca24; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured {
      border-radius: 5px;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured:hover .bt-overlay .bt-content-overlay .bt-social li {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        top: 0px;
        left: 0px;
        opacity: 0;
        -wekbit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay {
        position: absolute;
        width: 100%;
        height: auto;
        left: 0px;
        bottom: 40px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social {
        padding-left: 0px;
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li {
        display: inline-block;
        padding: 2px 0px 0px 0px;
        border-radius: 50%;
        width: 35px;
        text-align: center;
        height: 35px;
        margin: 0px 2px;
        background-color: rgba(255, 255, 255, 0.2);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -o-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(-100px); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li a {
        color: #fff;
        line-height: 35px;
        font-size: 15px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li:nth-child(1) {
        -wekbit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li:nth-child(2) {
        -wekbit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li:nth-child(3) {
        -wekbit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li:nth-child(4) {
        -wekbit-transition: all 0.9s;
        -moz-transition: all 0.9s;
        -o-transition: all 0.9s;
        transition: all 0.9s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-featured .bt-overlay .bt-content-overlay .bt-social li:nth-child(5) {
        -wekbit-transition: all 1.1s;
        -moz-transition: all 1.1s;
        -o-transition: all 1.1s;
        transition: all 1.1s; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-content-team {
      text-align: center;
      color: #fff;
      margin-top: 35px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-content-team .bt-title {
        font-size: 30px;
        color: #fff;
        line-height: 38px;
        margin: 0px 0px;
        text-transform: uppercase; }
      @media only screen and (max-width: 991px) {
        #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-content-team .bt-title {
          font-size: 24px;
          line-height: 33px; } }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-content-team .bt-title a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-team-grid.layout-style-2 .bt-content-team .bt-position {
        font-size: 20px;
        line-height: 28px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3:hover .bt-thumb {
      -webkit-transform: scale(1.05);
      -moz-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-thumb .bt-overlay .bt-excerpt {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-thumb .bt-overlay .bt-excerpt a {
        display: none; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-position {
      font-family: 'Montserrat';
      font-size: 25px;
      font-weight: 400;
      line-height: 35px;
      letter-spacing: -0.5px;
      color: #24ca24; }
      @media only screen and (max-width: 480px) {
        #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-position {
          font-size: 25px; } }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title {
        position: relative;
        margin-bottom: 15px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title > a .entry-subtitle {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        text-transform: none;
        color: #24ca24;
        display: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-social {
        margin: 0;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-social > li {
        list-style: none;
        display: inline-block;
        margin: 5px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-social > li > a {
        display: inline-block;
        width: 32px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
        color: #fff;
        background: #000;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3 .bt-content .bt-social > li > a:hover {
        background: #24ca24; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3:hover .bt-thumb > img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-3:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 {
      text-align: center;
      margin-bottom: 30px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 100%;
      border-radius: 3px;
      margin: 0 auto;
      z-index: 9;
      padding: 175px 0px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        -wekbit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb .bt-overlay .bt-content-overlay {
        background-color: #fff;
        position: absolute;
        right: 0px;
        bottom: 35px;
        width: 80%;
        min-width: 50%;
        padding: 22px 0px 22px 30px;
        border-radius: 10px 0px 0px 10px;
        text-align: left;
        -wekbit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        -webkit-transform: translateX(120px);
        -moz-transform: translateX(120px);
        -o-transform: translateX(120px);
        -ms-transform: translateX(120px);
        transform: translateX(120px);
        z-index: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb .bt-overlay .bt-content-overlay .bt-title {
        margin: 0px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb .bt-overlay .bt-content-overlay .bt-title > a {
        color: #1f1f1f;
        font-size: 22px;
        line-height: 30px;
        font-weight: 700;
        text-transform: uppercase; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4 .bt-thumb .bt-overlay .bt-content-overlay .bt-position {
        font-size: 16px;
        line-height: 26px;
        color: #24ca24;
        font-weight: 500; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4:hover .bt-thumb .bt-overlay {
      opacity: 1; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-4:hover .bt-thumb .bt-overlay .bt-content-overlay {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
        z-index: 9; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 {
      background: #fff;
      border-radius: 3px;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      padding: 40px;
      margin-bottom: 15px;
      margin-top: 15px; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      display: inline-block;
      vertical-align: middle;
      margin-right: 15px;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social {
        bottom: calc(-100% + 35px);
        width: 100%;
        text-align: center;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social > i.fa {
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        z-index: 2;
        position: relative;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #24ca24;
        cursor: pointer; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social {
        padding: 0;
        list-style-type: none;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social li {
        display: inline-block;
        margin: 3px;
        line-height: 30px;
        position: relative;
        z-index: 2; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social li a {
        width: 30px;
        height: 30px;
        line-height: 26px;
        text-align: center;
        border-radius: 50%;
        -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
        display: inline-block;
        background: #fff;
        border: 1px solid #24ca24; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social li a i.fa {
        font-size: 13px;
        color: #333; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social.show-menu {
        opacity: 1;
        display: block;
        bottom: 100%;
        position: absolute;
        width: 140px;
        -wekbit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social.show-menu:before {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        background-color: rgba(0, 0, 0, 0.5);
        top: -60px;
        left: 0;
        border-radius: 50%;
        z-index: 0;
        -wekbit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-thumb .share-social ul.bt-social:before {
        content: "";
        -wekbit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-content {
      width: calc(100% - 155px);
      display: inline-block;
      vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-content h3.bt-title {
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-content h3.bt-title a {
        font-size: 28px;
        color: #333;
        text-transform: uppercase;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-content .bt-position {
        font-size: 16px;
        color: #24ca24;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5 .bt-content .bt-excerpt {
        font-size: 18px;
        line-height: 30px;
        font-weight: 300;
        color: #666;
        height: 60px;
        overflow: hidden; }
    #page .wpb_theme_custom_element.wpb_team_listing .bt-article.layout-style-5:hover {
      box-shadow: 0 0 6px 0 #24ca24 inset, 0 0 6px 3px #24ca24;
      -wekbit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s; }
  #page .wpb_theme_custom_element.wpb_service_listing {
    /* base_carousel */ }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-thumb {
      display: block;
      height: 200px;
      margin: 0 auto 30px;
      position: relative;
      width: 200px;
      border: 4px solid #24ca24;
      border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      transition: all 300ms linear 0s;
      -webkit-transition: all 300ms linear 0s;
      -moz-transition: all 300ms linear 0s;
      -ms-transition: all 300ms linear 0s;
      -o-transition: all 300ms linear 0s; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-thumb:after {
        background-image: url('../images/bg-service-image.png');
        background-repeat: no-repeat;
        background-position: center center;
        content: "";
        height: 70px;
        position: absolute;
        bottom: -12px;
        left: -14px;
        width: 220px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-position {
      font-family: 'Montserrat';
      font-size: 30px;
      font-weight: 400;
      line-height: 30px;
      letter-spacing: -0.5px;
      color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title {
        position: relative;
        margin-bottom: 15px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 0; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title > a .entry-subtitle {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        text-transform: none;
        color: #24ca24;
        display: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default .bt-content .bt-excerpt a {
        display: none; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default:hover .bt-thumb > img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-default:hover .bt-thumb .bt-overlay {
        opacity: 1;
        border-radius: 50%; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify {
      text-align: center;
      max-width: 320px;
      margin: 0 auto 40px;
      margin-bottom: 0;
      margin-top: 20px; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 75%;
      padding-top: 75%;
      border-radius: 100%;
      margin: 0 auto;
      z-index: 9;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.66); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-thumb > img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content {
      position: relative;
      background: #f7f7f7;
      padding-top: 130px;
      top: -130px;
      z-index: 0;
      padding-bottom: 25px;
      z-index: 8;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-position {
        font-family: 'Montserrat';
        font-size: 30px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.5px;
        color: #24ca24;
        margin-bottom: 20px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title {
        position: relative;
        margin-bottom: 5px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 20px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #303030;
        display: block; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title > a .entry-subtitle {
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        text-transform: none;
        color: #24ca24;
        display: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify .bt-content .bt-excerpt a {
        display: none; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify:hover .bt-thumb > img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-simplify:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image {
      text-align: center;
      max-width: 320px;
      margin: 40px auto 40px;
      margin-bottom: 0; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 100%;
      margin: 0 auto;
      z-index: 9;
      display: block;
      height: 230px;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content {
      position: relative;
      background: #fff;
      padding: 15px;
      z-index: 10;
      -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.3); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-position {
        font-family: 'Montserrat';
        font-size: 30px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.5px;
        color: #24ca24;
        margin-bottom: 20px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-title {
        position: relative;
        margin-bottom: 5px;
        line-height: 36px;
        letter-spacing: 0.16px;
        font-weight: 700;
        font-style: normal;
        color: #404040;
        font-size: 24px;
        margin-top: 5px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-title > a {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #303030;
        display: block;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-title > a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #333;
        display: block;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-title:hover > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-title:hover > a .entry-title-primary {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image .bt-content .bt-excerpt a {
        display: none; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image:hover .bt-thumb > img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-block-image:hover .bt-thumb .bt-overlay {
        opacity: 1; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 {
      background-color: rgba(255, 255, 255, 0.8);
      border: 1px solid #24ca24;
      border-top: 0.5px; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content {
      width: calc(100% - 110px);
      display: inline-block;
      vertical-align: middle;
      padding: 0 20px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content h3.bt-title {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
        font-size: 22px;
        padding-right: 15px;
        line-height: 10px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content h3.bt-title a {
        height: 30px;
        overflow: hidden;
        display: inline-block;
        line-height: 30px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content h3.bt-title a:hover {
        color: #333;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content h3.bt-title .bt-excerpt {
        font-size: 16px;
        font-weight: 100;
        color: #666;
        line-height: 25px;
        height: 25px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content .img-author {
        display: inline-block;
        vertical-align: middle; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content .img-author .bt-thumb {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-content .img-author .bt-position {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        font-weight: bold;
        color: #24ca24; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1 .bt-price {
      width: 110px;
      display: inline-block;
      vertical-align: middle;
      height: 100px;
      line-height: 100px;
      text-align: center;
      background: #f6f7eb;
      font-size: 22px;
      font-weight: bold;
      color: #24ca24;
      border-left: 1px solid #24ca24; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-1:hover {
      -wekbit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      transition: all 0.7s;
      background: #f3e6d4; }
    #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list {
      width: 100%;
      height: auto;
      padding: 10px 0px; }
    #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list:before {
        content: " ";
        width: 70%;
        height: 1px;
        background-color: #dcd8d8;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list .bt-item-left .bt-title {
        font-size: 16px;
        line-height: 28px;
        font-weight: 600;
        color: #808080;
        letter-spacing: 0.32px;
        text-transform: uppercase;
        margin: 0px;
        background-color: #fff;
        z-index: 9;
        padding-right: 15px; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list .bt-item-left .bt-title > a {
        color: inherit; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list .bt-item-right {
        text-align: right; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list .bt-item-right .bt-price {
        color: #24ca24;
        font-size: 18px;
        line-height: 28px;
        font-weight: 700;
        letter-spacing: 0.32px; }
      #page .wpb_theme_custom_element.wpb_service_listing .layout-block-list .bt-content-list .bt-item-right .bt-price span.bt-date {
        font-size: 14px;
        line-height: 28px;
        font-weight: 400; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 {
      padding: 20px 0;
      border-bottom: #dcdcdc dashed 1px !important;
      position: relative; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-content h3.bt-title {
      font-size: 22px;
      margin-top: 0;
      line-height: 32px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-content h3.bt-title a {
        color: #333;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-content h3.bt-title a:hover {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-content .bt-excerpt {
        font-size: 18px; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price {
      position: absolute;
      right: 10px;
      top: 20px;
      font-weight: 700;
      color: #fff;
      background: #24ca24;
      padding: 0px 20px;
      height: 32px;
      line-height: 32px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price:before {
        border-left: 10px solid #24ca24;
        border-bottom: 32px solid transparent;
        border-top: 0px solid transparent;
        content: "";
        position: absolute;
        right: -10px;
        z-index: 9;
        top: 0; }
    @media (max-width: 767px) {
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 {
        border-bottom: none !important; }
        #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price {
          position: relative;
          right: 0px;
          width: calc(100% - 10px); }
          #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price:before {
            right: -10px; } }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 {
      padding: 20px 0;
      position: relative; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-thumb {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      width: 100%;
      margin: 0 auto;
      z-index: 9;
      display: block;
      height: 230px;
      position: relative; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-thumb .bt-overlay {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0; }
    #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content {
      position: relative;
      background: #fff;
      top: -40px;
      padding: 20px;
      padding-bottom: 60px;
      margin-right: 20px;
      overflow: hidden;
      z-index: 9; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content h3.bt-title {
        font-size: 22px;
        margin-top: 0;
        line-height: 32px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content h3.bt-title a {
        color: #333;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content h3.bt-title a:hover {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content .bt-excerpt {
        font-size: 18px; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content .bt-position {
        position: absolute;
        display: inline-block;
        bottom: 0px;
        font-weight: 700;
        color: #fff;
        background: #24ca24;
        padding: 0px 20px;
        height: 35px;
        line-height: 35px;
        left: 0; }
      #page .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-3 .bt-content .bt-position:before {
        border-left: 10px solid #24ca24;
        border-bottom: 35px solid transparent;
        border-top: 0px solid transparent;
        content: "";
        position: absolute;
        right: -10px;
        z-index: 9;
        top: 0; }
    #page .wpb_theme_custom_element.wpb_base_carousel {
      margin-bottom: 30px;
      /* posts_slider_2 */ }
  #page .wpb_theme_custom_element.wpb_progressbar_svg {
    margin-bottom: 30px;
    /* posts_slider_2 */ }
    #page .wpb_theme_custom_element.wpb_progressbar_svg.shape-type-line {
      padding-top: 30px; }
  #page .wpb_theme_custom_element.wpb_posts_slider_2 {
    margin-bottom: 30px; }
    #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured {
      min-height: 520px;
      position: relative;
      -webkit-transition: 0.4s ease;
      transition: 0.4s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 15px;
        background-color: #000;
        padding: 24px 25px 25px 25px;
        text-align: left; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay .bt-date-post {
        background-color: #24ca24;
        height: 48px;
        font-size: 18px;
        line-height: 48px;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        width: 100%;
        max-width: 200px;
        position: absolute;
        top: -24px;
        left: 25px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta {
        padding: 0;
        list-style-type: none;
        position: relative;
        z-index: 1; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li {
          display: inline-block; }
          #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li > a {
            font-size: 16px;
            line-height: 26px;
            color: #24ca24;
            font-weight: 600;
            letter-spacing: 0.32px;
            text-decoration: none; }
            #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li > a > i {
              margin-right: 9px; }
          #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li.item-author {
            margin-right: 35px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay h3.bt-title {
        font-size: 22px;
        line-height: 28px;
        overflow: hidden;
        font-weight: 600;
        margin-top: 25px;
        text-transform: uppercase; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout-news .bt-featured .bt-overlay .bt-content-overlay h3.bt-title a {
          color: #fff;
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay {
        padding: 20px;
        padding-top: 75%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay {
        position: relative;
        background-color: #fff;
        padding: 0 20px 20px 20px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta {
        padding: 0;
        list-style-type: none;
        text-align: center;
        position: relative;
        z-index: 1; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li {
          display: inline-block; }
          #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li.item-date {
            margin-right: 15px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            color: #24ca24; }
          #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li.item-comment i.fa {
            position: relative;
            font-size: 30px;
            color: #24ca24;
            top: 3px; }
            #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li.item-comment i.fa span {
              position: absolute;
              left: 0px;
              top: 0px;
              z-index: 1;
              color: #fff;
              font-size: 14px;
              display: inline-block;
              width: 30px;
              height: 30px;
              line-height: 30px;
              text-align: center; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay h3.bt-title {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        height: 56px;
        overflow: hidden; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay h3.bt-title a {
          color: #333;
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_9 .bt-featured .bt-overlay .bt-content-overlay:before {
        content: "";
        position: absolute;
        left: 0;
        top: -35px;
        width: 100%;
        border-top: 70px solid #fff;
        transform: skewY(-6deg);
        z-index: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 {
        background: #fff;
        border-radius: 3px;
        padding: 30px;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        position: relative;
        margin-bottom: 30px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-meta {
        text-transform: uppercase;
        font-size: 20px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 20px;
        margin-top: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-title a {
        color: #222; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-title a .entry-title-primary {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        letter-spacing: 0px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-title a .entry-title-primary:hover {
        color: #24ca24;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-author {
        font-size: 18px;
        color: #24ca24;
        margin-top: 10px;
        margin-bottom: 25px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .bt-author span {
        color: #333; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .btn-post a {
        width: 50px;
        height: 50px;
        display: inline-block;
        border-radius: 5px;
        background: #fff;
        text-align: center;
        color: #24ca24;
        line-height: 50px;
        border: 1px dashed #ddd;
        position: absolute; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .btn-post a:hover {
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_8 .btn-post a:hover i.fa {
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 {
        /* custom css layout-6 vvv */ }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured {
        padding: 135px 0px;
        position: relative;
        border-radius: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured:hover .bt-overlay {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured:hover .bt-overlay .bt-content-overlay ul.bt-meta li {
        opacity: 1; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured:hover .bt-overlay .bt-content-overlay ul.bt-meta .item-date {
          -webkit-transform: translateX(0px);
          -moz-transform: translateX(0px);
          -o-transform: translateX(0px);
          -ms-transform: translateX(0px);
          transform: translateX(0px);
          z-index: 2; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured:hover .bt-overlay .bt-content-overlay ul.bt-meta .item-comment {
          -webkit-transform: translateY(0px);
          -moz-transform: translateY(0px);
          -o-transform: translateY(0px);
          -ms-transform: translateY(0px);
          transform: translateY(0px);
          z-index: 2; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay {
        position: absolute;
        bottom: 30px;
        left: 0px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta {
        padding: 0px;
        margin-bottom: 0px;
        display: flex; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li {
          display: inline-block;
          -wekbit-transition: all 0.7s;
          -moz-transition: all 0.7s;
          -o-transition: all 0.7s;
          transition: all 0.7s;
          position: relative;
          z-index: -1;
          overflow: hidden;
          opacity: 0; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li:before, #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li:after {
          -wekbit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s;
          content: '';
          position: absolute;
          z-index: -1; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li:after {
          height: 0;
          left: 50%;
          top: 50%;
          width: 0; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta li:hover:after {
          height: 100%;
          left: 0;
          top: 0;
          width: 100%; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-date {
          font-size: 13px;
          line-height: 23px;
          font-weight: 600;
          background-color: #24ca24;
          color: #fff;
          padding: 12px 31px;
          border-radius: 20px;
          -webkit-transform: translateX(-120px);
          -moz-transform: translateX(-120px);
          -o-transform: translateX(-120px);
          -ms-transform: translateX(-120px);
          transform: translateX(-120px); }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-date:before, #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-date:after {
          background: #000; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-comment {
          font-size: 0px;
          position: relative;
          border-radius: 50%;
          height: 47px;
          width: 47px;
          background-color: #000;
          -webkit-transform: translateY(-120px);
          -moz-transform: translateY(-120px);
          -o-transform: translateY(-120px);
          -ms-transform: translateY(-120px);
          transform: translateY(-80px); }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-comment:before, #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-comment:after {
          background: #24ca24; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-featured .bt-overlay .bt-content-overlay ul.bt-meta .item-comment a:before {
          content: "\f27b";
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          position: absolute;
          left: 50%;
          color: #fff;
          top: 50%;
          transform: translate(-50%, -50%); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content {
        text-align: center; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content .bt-title {
        margin: 40px 0px 15px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content .bt-title a {
        color: #1f1f1f; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content .bt-content-btn-post {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-top: 25px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content .bt-content-btn-post a.item-btn {
        color: #24ca24;
        font-size: 13px;
        line-height: 23px;
        font-weight: 700;
        position: relative; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_7 .bt-content .bt-content-btn-post a.item-btn:before {
        content: "\f105";
        position: absolute;
        display: inline-block;
        font: normal normal normal 18px/1 FontAwesome;
        top: 0px;
        right: -15px;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-media {
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-media:hover .bt-img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-media .bt-img {
        min-height: 245px;
        border-radius: 5px;
        overflow: hidden;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-content ul.bt-meta {
        padding-left: 0px;
        margin-top: 37px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-content ul.bt-meta li.item {
        display: inline-block;
        font-family: 'Josefin Sans';
        font-style: normal;
        font-weight: 700;
        color: #24ca24;
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 0;
        text-transform: uppercase; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-content ul.bt-meta li.item.bt-item-space {
        padding: 0px 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-content .bt-title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 28px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_6 .bt-content .bt-excerpt {
        color: #666; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-media {
        position: relative;
        min-height: 220px;
        overflow: hidden;
        border-radius: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-media:before {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-media .bt-img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content {
        position: relative;
        padding: 45px 0px 20px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.025em;
        margin-bottom: 25px;
        margin-top: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-title a {
        color: #3e3e3e; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-title a .entry-title-primary {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        letter-spacing: 0px; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-title a .entry-title-primary:hover {
          color: #24ca24;
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-excerpt {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #444;
        margin-bottom: 20px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: justify;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-excerpt a {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li {
        list-style: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li i {
        color: #b0b0b0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li:last-child {
        margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li.bt-public {
        color: #fff;
        background: #24ca24;
        font-weight: 600;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        text-align: center;
        position: absolute;
        top: -65px;
        right: 30px;
        font-size: 13px;
        padding-top: 30px; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li.bt-public span {
          display: block;
          font-size: 34px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li.bt-category {
        color: #24ca24;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5 .bt-content .bt-meta > li.bt-category i {
          color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5:hover .bt-media:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_5:hover .bt-media .bt-img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-media {
        position: relative;
        min-height: 240px;
        overflow: hidden;
        border-radius: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-media:before {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-media .bt-img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content {
        position: relative;
        padding: 20px 0px 20px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.025em;
        margin-bottom: 25px;
        margin-top: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-title a {
        color: #3e3e3e; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-title a .entry-title-primary:hover {
        color: #24ca24;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-excerpt {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #444;
        margin-bottom: 20px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-excerpt a {
        display: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 14px;
        line-height: 26px;
        font-weight: 400;
        color: #444; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta > li a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta > li i {
        color: #b0b0b0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta > li:last-child {
        margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta > li.bt-public {
        font-size: 20px;
        text-transform: uppercase;
        color: #24ca24;
        letter-spacing: -0.5px;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4 .bt-content .bt-meta li.bt-public:after {
        content: "-";
        display: inline-block;
        margin: 0 10px;
        color: #444;
        font-size: 14px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4:hover .bt-media:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_4:hover .bt-media .bt-img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-media {
        position: relative;
        min-height: 230px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-media:before {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-media .bt-img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content {
        position: relative;
        text-align: left;
        background: #fff;
        padding: 20px 0px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-title {
        font-size: 25px;
        font-weight: 700;
        line-height: 34px;
        letter-spacing: 0;
        text-transform: uppercase;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-title a {
        color: #444; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-title a .entry-title-primary:hover {
        color: #24ca24;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-excerpt {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #666;
        margin-bottom: 20px;
        margin-top: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-family: 'Montserrat';
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0;
        color: #444;
        font-weight: 400; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta > li a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta > li i {
        color: #b0b0b0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta > li:last-child {
        margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta li.bt-public:after {
        content: "/";
        display: inline-block;
        margin: 0 5px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-meta li.bt-category span {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-readmore {
        font-family: 'Montserrat';
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0;
        color: #444; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-readmore span {
        margin-left: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3 .bt-content .bt-readmore span i {
        background: #24ca24;
        width: 20px;
        height: 20px;
        text-align: center;
        border-radius: 100%;
        line-height: 19px;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3:hover .bt-media:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_3:hover .bt-media .bt-img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-media {
        position: relative;
        min-height: 280px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-media:before {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-media .bt-img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content {
        position: relative;
        text-align: center;
        background: #fff;
        padding: 20px 15px 20px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-category {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #888;
        margin-bottom: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-category > a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-title {
        font-size: 15px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0.025em;
        text-transform: uppercase;
        margin-bottom: 10px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-title a {
        color: #444; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-title a .entry-title-primary:hover {
        color: #24ca24;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-excerpt {
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #555;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-family: Poppins;
        font-size: 12px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #24ca24;
        font-weight: 600; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta > li a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta > li i {
        color: #b0b0b0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta > li:last-child {
        margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2 .bt-content .bt-meta li.bt-public:after {
        content: "-";
        display: inline-block;
        margin: 0 10px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2:hover .bt-media:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_2:hover .bt-media .bt-img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-media {
        position: relative;
        min-height: 280px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-media:before {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-media .bt-img {
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -o-transition: all 0.7s;
        transition: all 0.7s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content {
        position: relative;
        text-align: center;
        background: #fff;
        padding: 50px 40px 30px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-public {
        position: absolute;
        top: -25px;
        left: 50%;
        font-size: 12px;
        line-height: 28px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: #fff;
        background: #24ca24;
        min-width: 195px;
        padding: 10px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        z-index: 9;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-title {
        position: relative;
        margin-bottom: 10px;
        padding-top: 28px;
        margin: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-title a .entry-title-primary {
        -wekbit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: #303030;
        display: block;
        text-decoration: none;
        height: 50px;
        overflow: hidden;
        text-overflow: ellipsis; }
        #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-title a .entry-title-primary:hover {
          color: #24ca24;
          text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-title a .entry-subtitle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        font-family: 'Montserrat';
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-title a:hover {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-meta {
        margin: 0 0 10px;
        padding: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-meta > li {
        list-style: none;
        display: inline-block;
        font-size: 14px;
        font-style: italic;
        line-height: 24px;
        letter-spacing: 0.03em;
        color: #555;
        margin-right: 15px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-meta > li a {
        color: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-meta > li i {
        color: #b0b0b0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-meta > li:last-child {
        margin-right: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-excerpt {
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #555;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-readmore {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #24ca24;
        display: inline-block;
        padding: 12px 30px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-readmore > i {
        margin-left: 5px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1 .bt-content .bt-readmore:hover {
        color: #fff;
        background: #24ca24; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1:hover .bt-media:before {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_layout_1:hover .bt-media .bt-img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image {
        position: relative;
        border-radius: 0px;
        overflow: hidden; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail {
        position: relative;
        text-align: center;
        background: #444; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(85, 85, 85, 0.5);
        z-index: 1;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail > img {
        max-width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail .icon-readmore-post-link {
        position: absolute;
        left: calc(50% - 30px);
        top: calc(50% - 30px);
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        visibility: hidden;
        opacity: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 60px;
        text-align: center;
        background: #fff;
        color: #333;
        z-index: 5;
        box-shadow: 3px 0 10px -2px rgba(1, 1, 1, .3); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail .icon-readmore-post-link:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption {
        position: absolute;
        z-index: 3;
        bottom: 0;
        left: 0;
        padding: 0 20px 20px 20px;
        width: 100%;
        box-sizing: border-box;
        opacity: 1;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-term-list {
        margin: 20px 0 0 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-term-list a {
        color: #fff;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 5px 0;
        text-decoration: none;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-title-link .post-title {
        margin: 0;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-thumbnail:after {
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-thumbnail .icon-readmore-post-link {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1); }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-caption {
        visibility: hidden;
        bottom: -20%;
        opacity: 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail {
        position: relative;
        text-align: center;
        overflow: hidden;
        background: #444;
        border-radius: 0px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail img {
        max-width: 100%;
        height: auto; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail .post-view-detail {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        z-index: 3;
        background: #fff;
        color: #333;
        padding: 4px 18px;
        border-radius: 3px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail .post-view-detail span {
        font-size: 18px;
        margin-left: 4px;
        vertical-align: sub; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail .post-view-detail:hover {
        background: #24ca24;
        color: #fff; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-term-list {
        margin: 20px 0 5px 0; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-term-list a {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 5px 0;
        text-decoration: none;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-title-link {
        text-decoration: none; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-title-link .post-title {
        margin-top: 0;
        font-size: 22px;
        letter-spacing: -1.2px;
        line-height: 26px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-view-detail {
        background: #24ca24;
        border-radius: 3px;
        color: #fff;
        font-size: 11px;
        letter-spacing: 2px;
        margin-top: 20px;
        padding: 4px 16px;
        text-transform: uppercase;
        display: inline-block;
        text-decoration: none;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-view-detail span {
        display: none;
        font-size: 20px;
        vertical-align: sub;
        margin-left: 4px; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-view-detail:hover {
        background: #20b420; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default:hover .post-thumbnail:after {
        opacity: 1; }
      #page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default:hover .post-thumbnail .post-view-detail {
        visibility: visible;
        opacity: 1; }

#page {
  /* Start fix vc row - gap */ }
  #page .wpb_gmaps_widget .wpb_wrapper {
    padding: 0; }

#page .vc_row.vc_column-gap-1 {
  margin-left: -15.5px;
  margin-right: -15.5px; }
  #page .vc_row.vc_column-gap-1 > .vc_column_container {
    padding: 0 0.5px; }
  #page .vc_row.vc_column-gap-2 {
    margin-left: -16px;
    margin-right: -16px; }
  #page .vc_row.vc_column-gap-2 > .vc_column_container {
    padding: 0 1px; }
  #page .vc_row.vc_column-gap-3 {
    margin-left: -16.5px;
    margin-right: -16.5px; }
  #page .vc_row.vc_column-gap-3 > .vc_column_container {
    padding: 0 1.5px; }
  #page .vc_row.vc_column-gap-4 {
    margin-left: -17px;
    margin-right: -17px; }
  #page .vc_row.vc_column-gap-4 > .vc_column_container {
    padding: 0 2px; }
  #page .vc_row.vc_column-gap-5 {
    margin-left: -17.5px;
    margin-right: -17.5px; }
  #page .vc_row.vc_column-gap-5 > .vc_column_container {
    padding: 0 2.5px; }
  #page .vc_row.vc_column-gap-10 {
    margin-left: -20px;
    margin-right: -20px; }
  #page .vc_row.vc_column-gap-10 > .vc_column_container {
    padding: 0 5px; }
  #page .vc_row.vc_column-gap-15 {
    margin-left: -22.5px;
    margin-right: -22.5px; }
  #page .vc_row.vc_column-gap-15 > .vc_column_container {
    padding: 0 7.5px; }
  #page .vc_row.vc_column-gap-20 {
    margin-left: -25px;
    margin-right: -25px; }
  #page .vc_row.vc_column-gap-20 > .vc_column_container {
    padding: 0 10px; }
  #page .vc_row.vc_column-gap-25 {
    margin-left: -27.5px;
    margin-right: -27.5px; }
  #page .vc_row.vc_column-gap-25 > .vc_column_container {
    padding: 0 12.5px; }
  #page .vc_row.vc_column-gap-30 {
    margin-left: -30px;
    margin-right: -30px; }
  #page .vc_row.vc_column-gap-30 > .vc_column_container {
    padding: 0 15px; }
  #page .vc_row.vc_column-gap-35 {
    margin-left: -32.5px;
    margin-right: -32.5px; }
  #page .vc_row.vc_column-gap-35 > .vc_column_container {
    padding: 0 17.5px; }

body {
  /* End fix vc row - gap  */ }
  body.compose-mode #page .vc_row.vc_column-gap-1 {
    padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-2 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-3 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-4 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-5 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-10 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-15 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-20 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-25 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-30 {
      padding: 0 15px; }
    body.compose-mode #page .vc_row.vc_column-gap-35 {
      padding: 0 15px; }
  body:not(.compose-mode) #page .vc_row.vc_column-gap-1 {
    padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-2 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-3 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-4 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-5 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-10 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-15 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-20 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-25 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-30 {
      padding: 0 30px; }
    body:not(.compose-mode) #page .vc_row.vc_column-gap-35 {
      padding: 0 30px; }

.style-ninja-form-inner-custom-ui * {
  text-align: center;
  margin-left: auto;
  margin-right: auto; }
  .style-ninja-form-inner-custom-ui .wpb_wrapper {
    width: 100%; }
  .style-ninja-form-inner-custom-ui label {
    font-weight: 300 !important; }
  .style-ninja-form-inner-custom-ui .ninja-forms-field {
    border-width: 0 0 1px 0 !important;
    background: transparent; }
  .style-ninja-form-inner-custom-ui textarea.ninja-forms-field {
    height: 100px; }
  .style-ninja-form-inner-custom-ui input[type="button"] {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: 30px; }

#page #bbpress-forums a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none; }
  #page #bbpress-forums a.subscription-toggle {
    margin-left: 5px; }
  #page #bbpress-forums input[type="text"], #page #bbpress-forums input[type="password"], #page #bbpress-forums input[type="number"], #page #bbpress-forums input[type="email"], #page #bbpress-forums input[type="date"], #page #bbpress-forums input[type="color"], #page #bbpress-forums input[type="tel"], #page #bbpress-forums input[type="search"], #page #bbpress-forums textarea, #page #bbpress-forums select {
    border-radius: 1px;
    border: 1px solid rgba(53, 53, 53, 0.1);
    padding: 5px 10px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  #page #bbpress-forums input[type="text"]:focus, #page #bbpress-forums input[type="password"]:focus, #page #bbpress-forums input[type="number"]:focus, #page #bbpress-forums input[type="email"]:focus, #page #bbpress-forums input[type="date"]:focus, #page #bbpress-forums input[type="color"]:focus, #page #bbpress-forums input[type="tel"]:focus, #page #bbpress-forums input[type="search"]:focus, #page #bbpress-forums textarea:focus, #page #bbpress-forums select:focus {
    border: 1px solid rgba(36, 202, 36, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    -moz-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    outline: none; }
  #page #bbpress-forums input[type="submit"], #page #bbpress-forums button.submit {
    border-radius: 3px;
    border: none;
    background: #24ca24;
    color: #fff;
    padding: 12px 20px;
    vertical-align: top;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  #page #bbpress-forums input[type="submit"]:hover, #page #bbpress-forums button.submit:hover {
    background: #1c9f1c; }
  #page #bbpress-forums .bbp-pagination .bbp-pagination-links .page-numbers {
    border: none;
    min-width: 30px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none; }
    #page #bbpress-forums, #page #bbpress-forums ul.bbp-lead-topic, #page #bbpress-forums ul.bbp-topics, #page #bbpress-forums ul.bbp-forums, #page #bbpress-forums ul.bbp-replies, #page #bbpress-forums ul.bbp-search-results, #page #bbpress-forums .bbp-forum-info .bbp-forum-content, #page #bbpress-forums p.bbp-topic-meta, #page div.bbp-breadcrumb, #page div.bbp-topic-tags {
      font-family: 'Open Sans';
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      font-style: normal;
      letter-spacing: 0px;
      color: #1f1f1f; }
  #page #bbpress-forums p.bbp-topic-meta img.avatar, #page #bbpress-forums ul.bbp-reply-revision-log img.avatar, #page #bbpress-forums ul.bbp-topic-revision-log img.avatar, #page #bbpress-forums div.bbp-template-notice img.avatar, #page #bbpress-forums .widget_display_topics img.avatar, #page #bbpress-forums .widget_display_replies img.avatar {
    margin: 0; }
  #page #bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 5px;
    min-height: 26px;
    padding: 5px; }
  #page #bbpress-forums div.bbp-search-form, #page #bbpress-forums div.bbp-breadcrumb {
    margin-bottom: 20px; }
  #page #bbpress-forums .bbp-forums-list li {
    font-size: 14px;
    line-height: 24px; }
  #page a.bbp-forum-title {
    font-weight: bold; }
  #page #bbpress-forums ul.bbp-lead-topic, #page #bbpress-forums ul.bbp-topics, #page #bbpress-forums ul.bbp-forums, #page #bbpress-forums ul.bbp-replies, #page #bbpress-forums ul.bbp-search-results {
    border: none; }
  #page #bbpress-forums li.bbp-body ul.forum, #page #bbpress-forums li.bbp-body ul.topic {
    border-top: none; }
  #page #bbpress-forums div.even, #page #bbpress-forums ul.even {
    background: #f8f7f7; }
  #page #bbpress-forums fieldset.bbp-form legend {
    border: medium none;
    margin: 0;
    padding: 0 20px;
    width: auto; }
  #page ul.bbp-replies div.bbp-forum-header, #page ul.bbp-topics div.bbp-forum-header, #page ul.bbp-forums div.bbp-forum-header, #page ul.bbp-replies div.bbp-topic-header, #page ul.bbp-topics div.bbp-topic-header, #page ul.bbp-forums div.bbp-topic-header, #page ul.bbp-replies li.bbp-body div.hentry, #page ul.bbp-topics li.bbp-body div.hentry, #page ul.bbp-forums li.bbp-body div.hentry, #page ul.bbp-replies .bbp-body ul.forum, #page ul.bbp-topics .bbp-body ul.forum, #page ul.bbp-forums .bbp-body ul.forum, #page ul.bbp-replies .bbp-body ul.topic, #page ul.bbp-topics .bbp-body ul.topic, #page ul.bbp-forums .bbp-body ul.topic, #page ul.bbp-replies .bbp-footer, #page ul.bbp-topics .bbp-footer, #page ul.bbp-forums .bbp-footer {
    padding: 30px 20px; }
  #page ul.bbp-replies div.bbp-reply-header, #page ul.bbp-topics div.bbp-reply-header, #page ul.bbp-forums div.bbp-reply-header {
    padding: 20px; }
  #page ul.bbp-replies .bbp-header, #page ul.bbp-topics .bbp-header, #page ul.bbp-forums .bbp-header {
    background: #24ca24;
    border: none;
    color: #fff;
    padding: 15px 20px;
    border-radius: 2px 2px 0 0; }
  #page ul.bbp-replies .bbp-body li.bbp-topic-title img, #page ul.bbp-topics .bbp-body li.bbp-topic-title img, #page ul.bbp-forums .bbp-body li.bbp-topic-title img {
    margin: 0; }
  #page ul.bbp-replies .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img, #page ul.bbp-topics .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img, #page ul.bbp-forums .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img, #page ul.bbp-replies .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img, #page ul.bbp-topics .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img, #page ul.bbp-forums .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img {
    margin: 0; }
  #page ul.bbp-replies .bbp-footer, #page ul.bbp-topics .bbp-footer, #page ul.bbp-forums .bbp-footer {
    background: transparent; }
  #page ul.bbp-replies .bbp-header a {
    color: #fff; }
  #page span.bbp-admin-links {
    color: transparent; }
  #page span.bbp-admin-links:after {
    content: "";
    display: block;
    clear: both; }
  #page span.bbp-admin-links a {
    margin-top: 4px;
    background: #24ca24;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: 11px;
    line-height: 15px;
    padding: 2px 7px;
    text-transform: none;
    margin-right: 5px; }
  #page span.bbp-admin-links a:hover {
    background: #1c9f1c; }

.rtb-booking-form fieldset:not(:first-child) {
  margin-top: 30px; }
  .rtb-booking-form legend {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: #1f1f1f;
    border-bottom: 0 none;
    font-size: 16px;
    padding: 0 0 0 30px !important;
    position: relative;
    margin-bottom: 0; }
  .rtb-booking-form legend:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    border-bottom: 1px solid; }
  .rtb-booking-form input[type="text"], .rtb-booking-form input[type="email"], .rtb-booking-form input[type="number"], .rtb-booking-form input[type="tel"], .rtb-booking-form input[type="date"], .rtb-booking-form select, .rtb-booking-form textarea {
    padding: 9px 10px;
    border-radius: 3px !important; }
  .rtb-booking-form select {
    padding: 10px;
    min-width: 150px;
    height: 44px; }
  .rtb-booking-form input[type="submit"], .rtb-booking-form button {
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    background: #24ca24;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .rtb-booking-form input[type="submit"]:hover, .rtb-booking-form button:hover {
    background: #20b420; }

.rtb-message p {
  border: 1px solid rgba(1, 1, 1, 0.1);
  font-family: caption;
  font-size: 30px;
  font-style: italic;
  line-height: 34px;
  margin: 0 auto;
  max-width: 650px;
  padding: 30px;
  text-align: center; }

.booking-form-style-3-cols .rtb-booking-form fieldset {
  position: relative;
  width: calc(100% + 30px);
  margin-left: -30px;
  display: block; }
  .booking-form-style-3-cols .rtb-booking-form fieldset:after {
    content: "";
    display: block;
    clear: both; }
  .booking-form-style-3-cols .rtb-booking-form fieldset select {
    width: 100%; }
  .booking-form-style-3-cols .rtb-booking-form fieldset > legend {
    margin-left: 30px; }
  .booking-form-style-3-cols .rtb-booking-form fieldset > div {
    float: left;
    margin-left: 30px;
    width: calc((100% / 3) - 30px); }
  .booking-form-style-3-cols .rtb-booking-form fieldset .rtb-textarea.message-open {
    width: calc(100% - 30px); }
  @media (max-width: 600px) {
  .booking-form-style-3-cols .rtb-booking-form fieldset {
    width: 100%;
    margin-left: 0; }
    .booking-form-style-3-cols .rtb-booking-form fieldset > legend {
      margin-left: 0; }

    .booking-form-style-3-cols .rtb-booking-form fieldset > div {
      float: none;
      margin-left: 0;
      width: 100%; }

    .booking-form-style-3-cols .rtb-booking-form fieldset .rtb-textarea.message-open {
      width: 100%; } }

.fdm-menu-content {
  margin-bottom: 30px; }

.fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header {
  border: none; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0px;
    color: #1f1f1f;
    font-size: 22px;
    position: relative;
    padding-left: calc(80px + 30px);
    margin-bottom: 40px; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header h3:before {
    content: "";
    position: absolute;
    left: 80px;
    top: 50%;
    width: 20px;
    border-bottom: solid 1px; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-image {
    border-radius: 50%;
    width: 80px;
    border: solid 3px #fff;
    box-shadow: 0 0 9px -3px rgba(0, 0, 0, .3); }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel p.fdm-item-title {
    padding-left: calc(80px + 30px);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: #1f1f1f;
    text-decoration: underline; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content {
    padding-left: calc(80px + 30px); }
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content p {
      padding: 0 130px 0 0; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-price-wrapper {
    width: 130px; }
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-price-wrapper .fdm-item-price {
    font-family: 'Montserrat';
    font-weight: bold;
    display: inline-block;
    color: #24ca24;
    font-size: 20px; }
  @media (max-width: 450px) {
  .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-image {
    margin-bottom: 20px; }
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-title, .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-content, .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-content > p {
      padding: 0 !important; } }

.fdm-custom-class-style-custom_theme .fdm-section-header {
  border: none; }
  .fdm-custom-class-style-custom_theme .fdm-section-header h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0px;
    color: #1f1f1f;
    font-size: 22px;
    position: relative;
    padding-left: 30px; }
  .fdm-custom-class-style-custom_theme .fdm-section-header h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    border-bottom: solid 1px; }
  .fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-image {
    width: 22%; }
  .fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel p.fdm-item-title {
    padding-left: calc(22% + 30px);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: #1f1f1f; }
  .fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content {
    padding-left: calc(22% + 30px); }
    .fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content p {
      padding: 0 20% 0 0; }
  .fdm-custom-class-style-custom_theme .fdm-item .fdm-item-price {
    display: inline-block;
    line-height: normal;
    padding: 5px 13px;
    background: #24ca24;
    color: #fff;
    border-radius: 20px;
    line-height: normal;
    font-size: 13px; }

*[data-bears-masonryhybrid] .save-grid-js {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 20;
  border: none;
  background: #88c000;
  color: #fff;
  line-height: normal;
  border-radius: 3px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden; }
  *[data-bears-masonryhybrid] .save-grid-js i {
    margin-right: 5px;
    display: none; }
  *[data-bears-masonryhybrid] .save-grid-js:hover {
    background: #76a700;
    opacity: 1 !important; }
  *[data-bears-masonryhybrid] .save-grid-js.ajax-loading {
    visibility: visible;
    opacity: 1;
    pointer-events: none; }
  *[data-bears-masonryhybrid] .save-grid-js.ajax-loading i {
    display: inline-block; }
  *[data-bears-masonryhybrid]:hover .save-grid-js {
    visibility: visible;
    opacity: 0.7; }
  *[data-bears-masonryhybrid] .screen-size {
    z-index: 9;
    background: #fff;
    border-radius: 3px;
    transform: translateY(-18px);
    -webkit-transform: translateY(-18px);
    line-height: normal; }
  *[data-bears-masonryhybrid] .ui-resizable-se {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: #d9d9d9;
    cursor: se-resize; }
  *[data-bears-masonryhybrid] .ui-resizable-se:after {
    content: "\f065";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 11px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit; }

.carousel-slider .owl-dots .owl-dot > span {
  border-radius: 50px; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .onsale {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 1px;
    width: auto;
    height: auto;
    padding: 2px 3px; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 3;
    margin: 0;
    width: 4em; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating:before {
      font-size: 12px; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating > * {
      padding: 0; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating .rating {
      color: transparent; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating > span:before {
      font-size: 12px; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price {
    margin-top: 0;
    margin-left: 20px; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price del {
      opacity: 0.8;
      margin-right: 5px; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price ins {
      text-decoration: none; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product a {
    text-decoration: none; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product h3 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 24px;
    padding-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product h3:hover {
      opacity: 0.8; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .button, .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .added_to_cart {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 1px;
    padding: 14px 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .button:hover, .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .added_to_cart:hover {
      opacity: 0.8; }
  .carousel-slider[data-slide-type="product-carousel"] .owl-item .product .add_to_cart_button.added {
    display: none; }

.carousel-slider__product-modal .images .wp-post-image {
  max-width: 100%;
  height: auto; }
  .carousel-slider__product-modal .images .onsale {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 1px;
    width: auto;
    height: auto;
    padding: 2px 3px;
    background: #24ca24;
    color: #fff; }
  .carousel-slider__product-modal .entry-summary {
    padding: 0 30px; }
  .carousel-slider__product-modal .entry-summary .product_title {
    font-size: 42px;
    letter-spacing: -3px;
    margin-top: 0;
    line-height: 45px; }
  .carousel-slider__product-modal .entry-summary .price {
    margin: 10px 0; }
  .carousel-slider__product-modal .entry-summary .price del {
    opacity: 0.8;
    margin-right: 5px; }
  .carousel-slider__product-modal .entry-summary .price ins {
    text-decoration: none; }
  .carousel-slider__product-modal .entry-summary .button {
    border-radius: 1px !important;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    padding: 14px 20px !important;
    background: #24ca24; }

.aboutus-html-style-1 a.bt-btn, .bearsthemes-button-element {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .aboutus-html-style-1 a.bt-btn.bt-btn-default, .bearsthemes-button-element.bt-btn-default {
    background: #24ca24;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #ebebeb;
    letter-spacing: 0px;
    font-style: normal; }
  .aboutus-html-style-1 a.bt-btn.bt-btn-default:hover, .bearsthemes-button-element.bt-btn-default:hover {
    background: #39bcdd;
    color: #fff;
    text-decoration: none; }
  .aboutus-html-style-1 a.bt-btn.bt-btn-border-line, .bearsthemes-button-element.bt-btn-border-line {
    border: solid 2px;
    border-color: #24ca24;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: 'Montserrat';
    letter-spacing: 0px;
    font-style: normal; }
  .aboutus-html-style-1 a.bt-btn.bt-btn-border-line:hover, .bearsthemes-button-element.bt-btn-border-line:hover {
    border-color: #39bcdd;
    background: #39bcdd;
    color: #fff;
    text-decoration: none; }

.bt-row {
  margin-left: -26px;
  transition-property: height, width;
  -webkit-transition-property: height, width;
  width: calc(100% + 30px);
  position: relative;
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */
  /* responsive */ }
  .bt-row *, .bt-row *:before, .bt-row *:after {
    box-sizing: border-box !important; }
  .bt-row:after {
    content: "";
    display: block;
    clear: both; }
  .bt-row .bt-col-1 {
    width: calc(100% / 1);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-1.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-2 {
    width: calc(100% / 2);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-2.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-3 {
    width: calc(100% / 3);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-3.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-4 {
    width: calc(100% / 4);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-4.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-5 {
    width: calc(100% / 5);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-5.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-6 {
    width: calc(100% / 6);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-6.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-7 {
    width: calc(100% / 7);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-7.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-8 {
    width: calc(100% / 8);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-8.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-9 {
    width: calc(100% / 9);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-9.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-10 {
    width: calc(100% / 10);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-10.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-11 {
    width: calc(100% / 11);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-11.bt-col-align-middle {
    vertical-align: middle; }
  .bt-row .bt-col-12 {
    width: calc(100% / 12);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px; }
  .bt-row .bt-col-12.bt-col-align-middle {
    vertical-align: middle; }
  @media (min-width: 769px) and (max-width: 991px) {
  .bt-row .bt-col-3 {
    width: calc(100% / 2); }
    .bt-row .bt-col-4 {
      width: calc(100% / 2); }

    .bt-row .bt-col-5 {
      width: calc(100% / 2); }

    .bt-row .bt-col-6 {
      width: calc(100% / 2); }

    .bt-row .bt-col-7 {
      width: calc(100% / 2); }

    .bt-row .bt-col-8 {
      width: calc(100% / 2); }

    .bt-row .bt-col-9 {
      width: calc(100% / 2); }

    .bt-row .bt-col-10 {
      width: calc(100% / 2); }

    .bt-row .bt-col-11 {
      width: calc(100% / 2); }

    .bt-row .bt-col-12 {
      width: calc(100% / 2); } }
  @media (max-width: 768px) {
  .bt-row .bt-col-2 {
    width: calc(100%); }
    .bt-row .bt-col-3 {
      width: calc(100%); }

    .bt-row .bt-col-4 {
      width: calc(100%); }

    .bt-row .bt-col-5 {
      width: calc(100%); }

    .bt-row .bt-col-6 {
      width: calc(100%); }

    .bt-row .bt-col-7 {
      width: calc(100%); }

    .bt-row .bt-col-8 {
      width: calc(100%); }

    .bt-row .bt-col-9 {
      width: calc(100%); }

    .bt-row .bt-col-10 {
      width: calc(100%); }

    .bt-row .bt-col-11 {
      width: calc(100%); }

    .bt-row .bt-col-12 {
      width: calc(100%); } }

section {
  position: relative; }

.container, .container-fluid {
  z-index: 10; }

.bt-inner, .bt-col-inner {
  position: relative; }

.bt-main-row-overlay {
  bottom: 0;
  left: 0;
  position: absolute !important;
  right: 0;
  top: 0;
  z-index: 2; }

.custom-shape .custom-shape-wrap {
  box-sizing: border-box;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 9; }

.custom-shape .custom-shape-wrap .shape-container {
  width: 100%;
  line-height: 0; }

.custom-shape .custom-shape-wrap[class*="custom-shape-bottom-"] {
  bottom: 0; }

.custom-shape .custom-shape-wrap[class*="custom-shape-top-"] {
  top: 0;
  /***************
 * LazyLoading
 ***************/ }

.lazyload, .lazyloading {
  position: absolute;
  background-position: center center;
  background-size: 24px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
  /***************
 * Genaral Style
 ***************/ }

.bt-vertical-align-middle {
  display: inline-block;
  vertical-align: middle; }

.sidebar-left .bt-content-area {
  float: right;
  /********************
* Custom logo Element
*********************/ }

.post-type-archive-product .bt-sidebar .widget:last-child {
  margin-bottom: 0px; }

#bt-woo-content .woocommerce-result-count {
  padding: 0px 0px 10px 0px;
  color: #888;
  font-family: caption;
  font-style: italic;
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 5px; }
  #bt-woo-content form.woocommerce-ordering {
    margin: 0px 0 30px 0;
    overflow: hidden;
    background: #f8f7f7;
    position: relative;
    border-radius: 3px;
    padding: 0 5px; }
  #bt-woo-content form.woocommerce-ordering:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 5px;
    height: 5px;
    border: solid #333;
    border-width: 1px 1px 0 0;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    -webkit-transform: translateY(-50%) rotate(135deg); }
  #bt-woo-content form.woocommerce-ordering .orderby {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 10px;
    width: calc(100% + 20px);
    max-width: none;
    border: none;
    outline: none;
    color: #888;
    font-family: caption;
    font-style: italic;
    box-shadow: none !important;
    outline: none !important; }
  @media (max-width: 600px) {
  #bt-woo-content .woocommerce-result-count, #bt-woo-content form.woocommerce-ordering {
    float: none; }
  #bt-woo-content form.woocommerce-ordering {
    max-width: 300px; } }

.woocommerce .products .product-item, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item {
  margin-left: -1px;
  margin-bottom: 40px;
  position: relative;
  text-align: center; }
  .woocommerce .products .product-item a, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce .products .product-item a:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a:hover {
    text-decoration: none; }
  .woocommerce .products .product-item .woocommerce-LoopProduct-link, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-LoopProduct-link, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-LoopProduct-link {
    display: inline-block;
    position: relative;
    width: 100%; }
  .woocommerce .products .product-item .woocommerce-taxonomy-loop, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop {
    color: #999;
    padding-top: 10px;
    margin-top: 10px;
    position: relative; }
  .woocommerce .products .product-item .woocommerce-taxonomy-loop:after, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop:after, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: #f9f9f9; }
  .woocommerce .products .product-item .woocommerce-taxonomy-loop:before, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop:before, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 1px;
    background: #24ca24;
    left: 30%;
    top: 0; }
  .woocommerce .products .product-item .woocommerce-taxonomy-loop a, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop a, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop a {
    font-size: 13px;
    color: #999; }
  .woocommerce .products .product-item .woocommerce-taxonomy-loop a:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop a:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop a:hover {
    color: #24ca24; }
  .woocommerce .products .product-item .woocommerce-imagewrapper, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper {
    position: relative; }
  .woocommerce .products .product-item .woocommerce-imagewrapper a.woocommerce-product-link, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper a.woocommerce-product-link, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper a.woocommerce-product-link {
    display: block; }
  .woocommerce .products .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 202, 36, 0.1);
    z-index: 1; }
  .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3; }
  .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button {
    display: block;
    max-width: 130px;
    min-width: 130px;
    text-align: center;
    margin: 0 0 5px 0; }
    .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare {
      display: inline-block !important; }
    .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child {
      margin: 0; }
  .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart {
    display: none; }
  .woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay {
    background: none !important; }
  .woocommerce .products .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after {
    visibility: visible;
    opacity: 1; }
  .woocommerce .products .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop {
    visibility: visible;
    opacity: 1; }
  @media (max-width: 980px) {
    .woocommerce .products .product-item.product-item, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item.product-item, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item.product-item {
      cursor: pointer; } }
  .woocommerce .products .product-item .onsale, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .onsale, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .onsale {
    background: #24ca24;
    border-radius: 1px;
    color: #fff;
    font-size: 13px;
    line-height: 40px;
    height: 40px;
    left: 0;
    padding: 0 10px;
    position: absolute;
    top: 0;
    z-index: 3;
    letter-spacing: 0.8px;
    font-weight: 500; }
  .woocommerce .products .product-item .wp-post-image, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .wp-post-image, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .wp-post-image {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: solid 1px rgba(36, 202, 36, 0.2);
    border-radius: 1px;
    width: 100%; }
  .woocommerce .products .product-item .woocommerce-loop-product__title, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-loop-product__title, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-loop-product__title {
    font-size: 18px;
    letter-spacing: 0.8px;
    line-height: 28px;
    margin: 20px 0px 10px 0px;
    color: #222; }
  .woocommerce .products .product-item .star-rating, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating {
    float: none;
    margin: 5px auto; }
  .woocommerce .products .product-item .star-rating:before, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating:before, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating:before, .woocommerce .products .product-item .star-rating span:before, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating span:before, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating span:before {
    font-size: 17px;
    color: #24ca24; }
  .woocommerce .products .product-item .price, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price {
    font-size: 13px;
    color: #999;
    display: block; }
  .woocommerce .products .product-item .price .amount, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price .amount, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price .amount {
    color: #24ca24;
    font-size: 16px; }
  .woocommerce .products .product-item .price del, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price del, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price del {
    margin-right: 5px;
    opacity: 0.6; }
  .woocommerce .products .product-item .price ins, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price ins, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price ins {
    text-decoration: none;
    font-weight: normal; }
  .woocommerce .products .product-item a.button, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.button, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.button, .woocommerce .products .product-item a.added_to_cart, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.added_to_cart, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.added_to_cart {
    background: rgba(36, 202, 36, 0.95);
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #ebebeb;
    letter-spacing: 0px;
    font-style: normal;
    display: inline-block !important;
    padding: 9px 10px;
    border-radius: 3px;
    margin-bottom: 4px;
    min-width: 140px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce .products .product-item a.button:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.button:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.button:hover, .woocommerce .products .product-item a.added_to_cart:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.added_to_cart:hover, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.added_to_cart:hover {
    background: #39bcdd;
    color: #fff;
    text-decoration: none; }
  .woocommerce .products .product-item .compare, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .compare, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .compare {
    margin-top: 10px;
    display: none !important; }
  .woocommerce .products .product-item .add_to_cart_button.loading, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.loading, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.loading {
    opacity: 1; }
  .woocommerce .products .product-item .add_to_cart_button.loading::after, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.loading::after, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.loading::after {
    top: calc(50% - 14px);
    right: 10px; }
  .woocommerce .products .product-item .add_to_cart_button.added, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.added, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.added, .woocommerce .products .product-item .add_to_cart_button.loading, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.loading, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.loading {
    padding-right: 32px; }
  .woocommerce .products .product-item .add_to_cart_button.added, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.added, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.added {
    display: none;
    position: relative; }
  .woocommerce .products .product-item .add_to_cart_button.added:after, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.added:after, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.added:after {
    margin-left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .woocommerce .products .product-item > div:hover .woocommerce-LoopProduct-link .wp-post-image, .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item > div:hover .woocommerce-LoopProduct-link .wp-post-image, .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item > div:hover .woocommerce-LoopProduct-link .wp-post-image {
    border: solid 1px rgba(36, 202, 36, 0.9); }

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content {
  width: 310px;
  padding: 20px; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list {
    padding: 0;
    max-height: 290px;
    overflow: auto; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .empty {
    list-style: none; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item {
    list-style: none;
    display: block; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item:after {
    content: "";
    display: block;
    clear: both; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8f7f7; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a {
    color: #333 !important;
    line-height: 28px !important; }
    .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a.remove {
      display: none !important; }
    .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a img {
      float: left;
      width: 60px;
      height: auto;
      margin-right: 10px; }
    .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a:hover {
      color: #24ca24 !important; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item span.quantity {
    font-size: 13px;
    color: #888; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .total {
    margin-top: 20px;
    padding-top: 20px; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .total .woocommerce-Price-amount {
    float: right; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons {
    margin-top: 20px;
    margin-bottom: 0;
    display: table;
    width: 100%;
    border-radius: 1px;
    overflow: hidden;
    border: solid 1px #22bd22; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button {
    display: table-cell !important;
    width: 50%;
    text-align: center;
    padding: 5px 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border-radius: 0;
    line-height: 32px !important; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button:after {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button.wc-forward {
    background: #24ca24;
    color: #fff !important; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button.checkout {
    background: #22bd22; }
  .bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button:hover:after {
    right: 16px;
    visibility: visible;
    opacity: 1; }

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  /* minicart style */ }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .empty {
    padding: 0; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item {
    margin-bottom: 20px;
    position: relative; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a {
    font-weight: normal; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a .wp-post-image {
    float: left;
    margin: 0 20px 0 0;
    width: 60px; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a.remove {
    position: absolute;
    left: 35px;
    top: 20px;
    z-index: 3;
    line-height: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 0px 0px;
    margin: 0px;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 25px;
    color: #24ca24 !important;
    background-color: transparent; }
    .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a.remove:hover {
      color: #fff !important;
      background-color: #24ca24; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.total {
    padding: 10px 0;
    border-top: 1px solid #ebe9eb; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.total .amount {
    margin-left: 10px;
    font-size: 18px; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button {
    padding: 10px 24px;
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:hover {
    background: #787878; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:first-child {
    background: #24ca24;
    margin-right: 6px; }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:first-child:hover {
    background: #20b420; }

.widget.woocommerce.widget_shopping_cart {
  /* widget woocommerce */ }
  .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
    margin: 0px;
    height: 68px;
    line-height: 68px; }

.widget.woocommerce.widget_price_filter .ui-slider .ui-slider-range {
  background: #24ca24; }
  .widget.woocommerce.widget_price_filter .ui-slider-handle {
    background: #fff;
    border: solid 2px #24ca24;
    margin-top: 1px; }
  .widget.woocommerce.widget_price_filter .price_slider_amount .button {
    padding: 10px 24px;
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .widget.woocommerce.widget_price_filter .price_slider_amount .button:hover {
      background: #787878; }
  .widget.woocommerce.widget_price_filter .ui-widget-content {
    background: #e9e9e9; }
  .widget.woocommerce.widget_product_categories .product-categories .cat-item > * {
    display: table-cell; }
    .widget.woocommerce.widget_product_categories .product-categories .cat-item a {
      font-weight: normal;
      text-decoration: none;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .widget.woocommerce.widget_product_categories .product-categories .cat-item .count {
      font-size: 11px;
      font-style: normal;
      padding-left: 5px; }
  .widget.woocommerce.widget_product_search form.woocommerce-product-search .screen-reader-text {
    display: none; }
  .widget.woocommerce.widget_product_search form.woocommerce-product-search input.search-field, .widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"] {
    display: inline-block;
    vertical-align: middle; }
  .widget.woocommerce.widget_product_search form.woocommerce-product-search input.search-field {
    padding: 5px 11px;
    border-radius: 3px; }
  .widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"] {
    border: none;
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 3px;
    padding: 11px 12px !important;
    margin-left: 1px; }
    .widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"]:hover {
      background: #20b420; }
  .widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating {
    width: 64px;
    margin: 7px 0;
    float: left; }
    .widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating:before, .widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating span:before {
      font-size: 12px;
      color: #24ca24; }
    .widget.woocommerce.widget_recent_reviews .product_list_widget li .reviewer {
      color: #555;
      font-family: caption;
      font-style: italic;
      padding-left: 20px; }
  .widget.woocommerce .product_list_widget > li:not(:last-child) {
    margin-bottom: 10px; }
  .widget.woocommerce .product_list_widget > li a {
    font-weight: normal; }
    .widget.woocommerce .product_list_widget > li a img {
      float: left;
      width: 60px;
      margin: 0 20px 0 0; }

.woocommerce img, .woocommerce-page img {
  max-width: 100%; }

.woocommerce-product-subcategories-wrap {
  position: relative; }
  .woocommerce-product-subcategories-wrap:after {
    content: "";
    display: block;
    clear: both; }
  .woocommerce-product-subcategories-wrap .product-category a img {
    border-radius: 1px; }
  .woocommerce-product-subcategories-wrap .product-category a h3 {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce-product-subcategories-wrap .product-category a h3 .count {
    background: rgba(36, 202, 36, 0.3);
    border-radius: 3px; }
  .woocommerce-product-subcategories-wrap .product-category a:hover h3 {
    color: #24ca24; }

.woocommerce .return-to-shop > a.button {
  background-color: #24ca24;
  color: #fff; }
  .woocommerce .shop_table {
    border: none !important; }
  .woocommerce .shop_table.cart {
    border-bottom: 1px solid #f8f7f7 !important; }
  .woocommerce .shop_table a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce .shop_table .remove {
    color: #d9d9d9 !important; }
  .woocommerce .shop_table .remove:hover {
    background: none !important;
    color: #555 !important; }
  .woocommerce .shop_table thead th, .woocommerce .shop_table tbody th, .woocommerce .shop_table tfoot th, .woocommerce .shop_table thead td, .woocommerce .shop_table tbody td, .woocommerce .shop_table tfoot td {
    border-left: none;
    border-right: none; }
  .woocommerce .shop_table thead th {
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    background: #f8f7f7; }
  .woocommerce .shop_table tbody th, .woocommerce .shop_table tfoot th {
    padding: 20px; }
  .woocommerce .shop_table tbody td, .woocommerce .shop_table tfoot td {
    padding: 30px 20px; }
  .woocommerce .shop_table tbody td, .woocommerce .shop_table tfoot td, .woocommerce .shop_table tbody th, .woocommerce .shop_table tfoot th {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-top: none !important;
    border-bottom: 1px solid;
    border-color: #f8f7f7 !important; }
  .woocommerce .shop_table tbody th:first-child, .woocommerce .shop_table tfoot th:first-child, .woocommerce .shop_table tbody td:first-child, .woocommerce .shop_table tfoot td:first-child {
    padding-left: 0; }
  .woocommerce .shop_table tbody tr:hover > td, .woocommerce .shop_table tfoot tr:hover > td, .woocommerce .shop_table tbody tr:hover > th, .woocommerce .shop_table tfoot tr:hover > th {
    border-color: rgba(36, 202, 36, 0.5) !important; }
  .woocommerce .shop_table .cart_item td.product-thumbnail > a > img {
    width: 100%;
    max-width: 120px; }
  .woocommerce .shop_table .cart_item td.product-remove > a {
    color: #fff !important;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: #24ca24;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0px;
    padding: 0px 0px 0px 0px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #24ca24; }
    .woocommerce .shop_table .cart_item td.product-remove > a:hover {
      color: #333 !important;
      border-color: #24ca24; }
  .woocommerce .shop_table .cart_item .product-thumbnail .wp-post-image {
    max-width: 100%;
    width: 100px;
    border: solid 1px rgba(36, 202, 36, 0.2);
    padding: 2px;
    background: #fff; }
  .woocommerce .shop_table .cart_item .product-name a {
    font-weight: normal;
    text-decoration: none; }
  .woocommerce .shop_table .cart_item .product-quantity .quantity input.qty {
    padding: 10px; }
  .woocommerce .shop_table td.actions input.button, .woocommerce .shop_table td.actions input.input-text {
    border-radius: 30px !important;
    padding: 15px 20px !important; }
  .woocommerce .shop_table td.actions input[name="update_cart"]:not([disabled]) {
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce .shop_table td.actions input[name="update_cart"]:not([disabled]):hover {
    background: #787878; }
  .woocommerce .shop_table td.actions button[type="submit"] {
    height: 57px;
    line-height: 57px;
    padding: 0px 30px; }
  .woocommerce .shop_table td.actions .coupon > * {
    display: table-cell;
    vertical-align: middle;
    float: none !important; }
  .woocommerce .shop_table td.actions .coupon input#coupon_code {
    border-radius: 3px;
    padding: 9px 10px;
    width: 200px;
    height: 57px;
    line-height: 57px;
    border: 1px solid #dfdcde;
    box-sizing: border-box; }
    .woocommerce .shop_table td.actions .coupon input#coupon_code:focus {
      border: 1px solid #dfdcde !important; }
  .woocommerce .shop_table td.actions .coupon button[type="submit"] {
    height: 57px;
    line-height: 57px;
    padding: 0px 30px; }
  .woocommerce .shop_table td.actions .coupon .button {
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 16px 30px; }
    .woocommerce .shop_table td.actions .coupon .button:focus {
      outline: none; }
    .woocommerce .shop_table td.actions .coupon .button:hover {
      background: #20b420; }
  .woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 25px; }
  .woocommerce .cart-collaterals .cart_totals .shop_table tbody tr > * {
    vertical-align: middle; }
  .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    padding: 35px 0px 0px 0px; }
  .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
    background: #24ca24;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-weight: normal;
    min-width: auto;
    width: auto;
    height: 57px;
    line-height: 57px;
    padding: 0px 30px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0px; }
    .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button:hover {
      background: #20b420; }
  @media (max-width: 768px) {
  .woocommerce .shop_table tbody tr td, .woocommerce .shop_table tfoot tr td, .woocommerce .shop_table tbody tr th, .woocommerce .shop_table tfoot tr th {
    border-bottom-color: #ebebeb !important; }
    .woocommerce .shop_table tbody tr td:first-child, .woocommerce .shop_table tfoot tr td:first-child, .woocommerce .shop_table tbody tr th:first-child, .woocommerce .shop_table tfoot tr th:first-child {
      padding-left: 20px; }

    .woocommerce .shop_table tbody tr:hover td, .woocommerce .shop_table tfoot tr:hover td, .woocommerce .shop_table tbody tr:hover th, .woocommerce .shop_table tfoot tr:hover th {
      border-bottom-color: #ebebeb !important; }

    .woocommerce .shop_table td.actions input {
      margin-bottom: 10px !important;
      width: 50% !important; }

    .woocommerce .shop_table td.actions .coupon {
      text-align: left; } }

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce .select2-container .select2-selection {
  line-height: normal;
  padding: 6px 10px;
  border-radius: 3px;
  height: auto;
  border: 1px solid rgba(53, 53, 53, 0.1); }
  .woocommerce form .form-row input.input-text .select2-selection__rendered, .woocommerce form .form-row textarea .select2-selection__rendered, .woocommerce .select2-container .select2-selection .select2-selection__rendered {
    padding: 0; }
  .woocommerce form .form-row input.input-text .select2-selection__arrow, .woocommerce form .form-row textarea .select2-selection__arrow, .woocommerce .select2-container .select2-selection .select2-selection__arrow {
    height: 40px; }
  .woocommerce input#place_order {
    background: #24ca24;
    color: #fff;
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce input#place_order:hover {
    background: #20b420;
    color: #fff; }

.woocommerce-checkout .woocommerce-checkout-review-order .place-order input[type="submit"].button {
  background-color: #24ca24; }
  .woocommerce-checkout .woocommerce-account-fields .create-account .woocommerce-form__label.woocommerce-form__label-for-checkbox {
    display: flex;
    width: 100%;
    margin: 0px;
    overflow: hidden;
    justify-content: center;
    align-items: center; }
    .woocommerce-checkout .woocommerce-account-fields .create-account .woocommerce-form__label.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox {
      width: 20px;
      text-align: left;
      position: inherit;
      margin: 0px; }
    .woocommerce-checkout .woocommerce-account-fields .create-account .woocommerce-form__label.woocommerce-form__label-for-checkbox > span {
      width: calc(100% - 20px) !important;
      display: inline-block;
      letter-spacing: 0.48px; }
  .woocommerce-checkout input[type="text"], .woocommerce-checkout input[type="password"], .woocommerce-checkout input[type="email"], .woocommerce-checkout input[type="tel"], .woocommerce-checkout textarea {
    border-radius: 3px !important;
    padding: 10px !important; }
  .woocommerce-checkout textarea {
    min-height: 180px; }
  .woocommerce-checkout h3 {
    font-size: 25px; }
  .woocommerce-checkout .button {
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce-checkout .checkout_coupon .button {
    background: #24ca24;
    color: #fff;
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce-checkout .checkout_coupon .button:hover {
    background: #20b420;
    color: #fff; }
  .woocommerce-checkout #payment {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eaeaea;
    border-radius: 3px; }
  .woocommerce-checkout #payment ul.wc_payment_methods {
    border-bottom: 1px solid #eaeaea; }
  .woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method label {
    padding-top: 5px; }
    .woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method label a.about_paypal {
      margin-left: 10px; }
  .woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method .payment_box {
    background-color: #ececec; }
    .woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method .payment_box:before {
      border-bottom-color: #ececec; }
  .woocommerce-checkout #payment ul.wc_payment_methods li:not(:last-child) {
    padding: 5px 0;
    border-bottom: 1px solid #ececec; }

.woocommerce.single-product {
  /* plg ywpc-countdown{ */ }
  .woocommerce.single-product .related.products ul.products {
    margin-bottom: 0px; }
  .woocommerce.single-product .related.products ul.products .product-item {
    margin-bottom: 0px; }
  .woocommerce.single-product .product .woocommerce-message {
    padding: 18px 25px 18px 70px;
    line-height: 40px; }
  .woocommerce.single-product .product .woocommerce-message:before {
    left: 35px; }
  .woocommerce.single-product .product .onsale {
    background: #24ca24;
    border-radius: 1px;
    color: #fff;
    font-size: 13px;
    left: 0;
    padding: 0 15px;
    position: absolute;
    top: 0;
    z-index: 3;
    height: 42px;
    line-height: 42px;
    min-height: 42px;
    letter-spacing: 0.8px;
    font-weight: 500;
    box-sizing: border-box !important; }
  .woocommerce.single-product .woocommerce-product-gallery a.woocommerce-product-gallery__trigger:before {
    top: 10px !important;
    left: 10px !important;
    width: 9px !important;
    height: 9px !important; }
  .woocommerce.single-product .woocommerce-product-gallery .flex-control-nav {
    padding-top: 15px !important; }
  .woocommerce.single-product .woocommerce-product-gallery .flex-control-nav > li {
    padding: 0 15px 15px 0;
    clear: none !important; }
  .woocommerce.single-product .images .thumbnails > a {
    border: solid 0.5px rgba(36, 202, 36, 0.5);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 1px; }
    .woocommerce.single-product .images .thumbnails > a:hover {
      border: solid 0.5px rgba(36, 202, 36, 0.9); }
  .woocommerce.single-product .entry-summary .product_title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -1.1px;
    line-height: 26px;
    margin: 0; }
  .woocommerce.single-product .entry-summary .woocommerce-product-rating .star-rating:before, .woocommerce.single-product .entry-summary .woocommerce-product-rating .star-rating span:before {
    color: #24ca24; }
  .woocommerce.single-product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px; }
  .woocommerce.single-product .entry-summary .price {
    font-size: 16px;
    color: #999; }
  .woocommerce.single-product .entry-summary .price .amount {
    color: #24ca24;
    font-size: 18px;
    font-weight: bold; }
  .woocommerce.single-product .entry-summary .price del {
    margin-right: 5px;
    opacity: 0.6; }
  .woocommerce.single-product .entry-summary .price ins {
    text-decoration: none; }
  .woocommerce.single-product .entry-summary .product_meta {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px; }
  .woocommerce.single-product .entry-summary .product_meta .sku_wrapper {
    background: #8c8c8c;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px; }
  .woocommerce.single-product .entry-summary .product_meta .posted_in, .woocommerce.single-product .entry-summary .product_meta .tagged_as {
    display: block;
    width: 100%; }
    .woocommerce.single-product .entry-summary .product_meta .posted_in a, .woocommerce.single-product .entry-summary .product_meta .tagged_as a {
      font-weight: normal; }
  .woocommerce.single-product .entry-summary form.cart {
    margin-top: 20px;
    margin-bottom: 10px; }
  .woocommerce.single-product .entry-summary form.cart .quantity input.qty {
    padding: 0px 0px 0px 0px;
    height: 42px;
    line-height: 42px;
    box-sizing: border-box;
    text-align: center;
    width: 3.631em;
    margin-right: 10px; }
  .woocommerce.single-product .entry-summary form.cart .button.single_add_to_cart_button {
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    box-sizing: border-box;
    padding: 0px 20px;
    height: 42px;
    line-height: 42px; }
    .woocommerce.single-product .entry-summary form.cart .button.single_add_to_cart_button:focus {
      outline: none; }
    .woocommerce.single-product .entry-summary form.cart .button.single_add_to_cart_button:hover {
      background: #20b420; }
  .woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td {
    vertical-align: baseline; }
    .woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.label label {
      color: #333;
      font-weight: normal;
      font-size: 16px; }
    .woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.label label:after {
      content: ":"; }
    .woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.value > select {
      border-width: 0 0 1px 0;
      background: #fafafa;
      padding: 2px 5px; }
    .woocommerce.single-product .entry-summary form.cart.variations_form .single_variation_wrap .variations_button {
      margin-top: 20px; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    margin: 0;
    position: relative; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist + .clear {
    display: none; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .ajax-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    margin-right: 20%; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse, .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    line-height: 26px; }
  .woocommerce.single-product .entry-summary .button.compare {
    display: inline-block; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist, .woocommerce.single-product .entry-summary .button.compare {
    margin-top: 5px;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 16px;
    text-align: center;
    background: #8c8c8c;
    color: #fff !important;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:hover, .woocommerce.single-product .entry-summary .button.compare:hover {
    background: #7f7f7f; }
  .woocommerce.single-product .entry-summary .product_meta {
    margin-top: 20px; }
  .woocommerce.single-product .woocommerce-tabs .tabs {
    padding: 0 !important; }
  .woocommerce.single-product .woocommerce-tabs .tabs:before {
    display: none !important; }
  @media only screen and (max-width: 540px) {
          .woocommerce.single-product .woocommerce-tabs .tabs > li:not(:first-child) {
            margin-top: 8px !important; } }
  .woocommerce.single-product .woocommerce-tabs .tabs > li {
    background: #999 !important;
    border: none !important;
    border-radius: 3px !important;
    margin: 0 10px 0 0 !important;
    opacity: 0.6;
    height: 42px;
    min-height: 42px;
    line-height: 42px;
    padding: 0px 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    @media only screen and (max-width: 540px) {
        .woocommerce.single-product .woocommerce-tabs .tabs > li {
          width: max-content;
          text-align: center;
          display: block !important; } }
    .woocommerce.single-product .woocommerce-tabs .tabs > li.active {
      background: #24ca24 !important;
      opacity: 1; }
    .woocommerce.single-product .woocommerce-tabs .tabs > li a {
      color: #fff !important;
      line-height: 42px;
      padding: 0px !important; }
    .woocommerce.single-product .woocommerce-tabs .tabs > li:after, .woocommerce.single-product .woocommerce-tabs .tabs > li:before {
      display: none !important; }
  .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    box-shadow: none; }
  .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline; }
  .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .woocommerce-Reviews-title {
    margin-top: 0; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist {
      padding: 0; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist .star-rating:before, .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist .star-rating span:before {
      color: #24ca24; }
  .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form #reply-title {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-comment #comment {
      padding: 10px;
      border-radius: 3px;
      min-height: 160px; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-author label, .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-email label {
      display: block;
      width: 100%; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-author input, .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-email input {
      display: block;
      width: 100%;
      padding: 6px 10px;
      margin-bottom: 20px;
      border-radius: 3px; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit {
      background: #24ca24 !important;
      color: #fff !important;
      font-weight: normal !important;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover {
      background: #20b420 !important; }
  .woocommerce.single-product .upsells > h2, .woocommerce.single-product .related > h2 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline; }
  .woocommerce.single-product p.currentTextHolder {
    line-height: normal; }
  .woocommerce.single-product .pp_gallery ul, .woocommerce.single-product .pp_gallery ul a {
    height: auto; }
  .woocommerce .ywpc-countdown {
    background: #22bd22;
    border-color: #24ca24;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px; }
  .woocommerce .ywpc-countdown > * {
    position: relative;
    z-index: 3; }
  .woocommerce .ywpc-countdown:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 75%;
    top: 0;
    z-index: 2;
    background: #1fac1f;
    transform: skewX(45deg);
    -webkit-transform: skewX(45deg); }
  .woocommerce .ywpc-countdown:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 75%;
    top: 0;
    z-index: 1;
    background: #1fb01f;
    transform: skewX(-45deg);
    -webkit-transform: skewX(-45deg); }
  .woocommerce .ywpc-countdown .ywpc-header {
    color: #fff;
    display: block;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 20px;
    padding: 0 0 30px;
    text-transform: uppercase;
    position: relative; }
  .woocommerce .ywpc-countdown .ywpc-header:after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 3; }
  .woocommerce .ywpc-countdown .ywpc-timer .ywpc-days > .ywpc-amount > *, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-hours > .ywpc-amount > *, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-minutes > .ywpc-amount > *, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-seconds > .ywpc-amount > * {
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(17, 17, 17, 0.7);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #fff; }
  .woocommerce .ywpc-countdown .ywpc-timer .ywpc-days > .ywpc-label, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-hours > .ywpc-label, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-minutes > .ywpc-label, .woocommerce .ywpc-countdown .ywpc-timer .ywpc-seconds > .ywpc-label {
    color: #fff;
    font-weight: bold; }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
    list-style: none; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
      text-decoration: none;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    margin: 0px; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title > h3 {
      width: 100%;
      font-size: 20px;
      line-height: 28px;
      font-weight: 700;
      color: #39bcdd; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child {
    margin-bottom: 0px; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields button[type="submit"] {
    background-color: #24ca24;
    margin: 30px 0px 0px 3px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields button[type="submit"]:focus {
      outline: none; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Message .woocommerce-Button {
    background-color: #24ca24;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600; }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.woocommerce-EditAccountForm button.woocommerce-Button[type="submit"] {
    background-color: #24ca24;
    margin: 30px 0px 0px 3px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.woocommerce-EditAccountForm button.woocommerce-Button[type="submit"]:focus {
      outline: none; }

.woocommerce form.login {
  margin-bottom: 0px; }
  .woocommerce form.login .button {
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .woocommerce form.login .button:hover {
    background: #20b420; }
  .woocommerce form.login button[type="submit"]:focus {
    outline: none; }
  .woocommerce form.login .form-row .woocommerce-Button {
    margin-right: 5px; }

body #yith-quick-view-modal {
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  body #yith-quick-view-modal #yith-quick-view-close {
    border-radius: 3px;
    width: 30px;
    height: 30px;
    background: #24ca24;
    color: transparent;
    opacity: 1 !important;
    font-size: 11px; }
  body #yith-quick-view-modal #yith-quick-view-close:after {
    content: "\f00d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff; }
  body #yith-quick-view-modal #yith-quick-view-close:hover {
    background: #20b420; }
  body #yith-quick-view-modal .yith-wcqv-wrapper {
    border-radius: 3px;
    position: absolute;
    height: auto !important;
    max-height: 90%;
    overflow: auto;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important; }
  body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main {
    box-shadow: none;
    padding: 20px; }
  body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .input-text {
    border: solid 1px #e9e9e9;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .input-text:focus {
    border-color: #24ca24; }
  body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .product .images {
    margin-bottom: 0; }

#yith-wcwl-form a {
  text-decoration: none; }
  #yith-wcwl-form .wishlist-title {
    margin-bottom: 5px; }
  #yith-wcwl-form .wishlist-title h2 {
    font-size: 26px;
    line-height: 36px; }
  #yith-wcwl-form .wishlist_table thead tr th {
    border-top: none;
    padding: 30px 10px; }
  #yith-wcwl-form .wishlist_table tbody tr td, #yith-wcwl-form .wishlist_table tbody tr th {
    text-align: left;
    padding: 30px 10px; }
  #yith-wcwl-form .wishlist_table tbody tr td.product-name .yith-wcqv-button {
    margin-left: 10px;
    background: #24ca24;
    color: #fff;
    font-weight: normal; }
    #yith-wcwl-form .wishlist_table tbody tr td.product-name .yith-wcqv-button:hover {
      background: #20b420; }
  #yith-wcwl-form .wishlist_table tbody tr td.product-add-to-cart .button.add_to_cart_button {
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    padding: 14px 8px; }
    #yith-wcwl-form .wishlist_table tbody tr td.product-add-to-cart .button.add_to_cart_button:hover {
      background: #20b420; }
  #yith-wcwl-form .wishlist_table tfoot div.yith-wcwl-share .yith-wcwl-share-title {
    font-size: 20px;
    line-height: 28px; }

#cboxOverlay + #colorbox #cboxWrapper .cboxIframe {
  padding: 20px;
  border-radius: 3px; }
  #cboxOverlay + #colorbox #cboxWrapper #cboxMiddleLeft, #cboxOverlay + #colorbox #cboxWrapper #cboxMiddleRight, #cboxOverlay + #colorbox #cboxWrapper #cboxBottomLeft, #cboxOverlay + #colorbox #cboxWrapper #cboxBottomCenter, #cboxOverlay + #colorbox #cboxWrapper #cboxBottomRight, #cboxOverlay + #colorbox #cboxWrapper #cboxTopLeft, #cboxOverlay + #colorbox #cboxWrapper #cboxTopCenter, #cboxOverlay + #colorbox #cboxWrapper #cboxTopRight {
    background: none !important; }

body .esg-filters > *:first-child {
  margin-left: 0 !important; }
  body .esg-filters > *:last-child {
    margin-right: 0 !important; }
  body .esg-filters .esg-filter-wrapper .esg-filterbutton {
    border: none;
    border-radius: 1px;
    color: #999;
    box-shadow: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  body .esg-filters .esg-filter-wrapper .esg-filterbutton:not(:last-child) {
    margin-right: 15px; }
  body .esg-filters .esg-filter-wrapper .esg-filterbutton.selected {
    border-color: #24ca24;
    color: #fff;
    background: #24ca24; }
  body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton, body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton-order {
    box-shadow: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton:hover, body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton-order:hover {
    border-color: #24ca24; }
  body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton span {
    color: #999; }

body .esg-overflowtrick .mainul a {
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  body .esg-overflowtrick .mainul > li .esg-content a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  body .esg-overflowtrick .mainul > li .esg-content ins {
    text-decoration: none; }
  body .esg-overflowtrick .mainul > li .esg-content .add_to_cart_button {
    position: relative; }
    body .esg-overflowtrick .mainul > li .esg-content .add_to_cart_button.added {
      display: none; }
  body .esg-overflowtrick .mainul > li .esg-content .added_to_cart {
    margin-top: 0;
    background: #24ca24;
    padding: 9px 20px;
    color: #fff;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    body .esg-overflowtrick .mainul > li .esg-content .added_to_cart:hover {
      background: #20b420; }

body .esg-navigationbutton.esg-loadmore {
  font-weight: normal;
  background: #24ca24;
  padding: 9px 20px;
  color: #fff;
  border-radius: 3px;
  line-height: 25px;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  body .esg-navigationbutton.esg-loadmore:hover {
    background: #20b420;
    color: #fff;
    box-shadow: none; }

.aboutus-html-style-1 {
  /*
name: Contact style lemonspa
html:
  <div class="contact-html-style-1">
    <p>lemonspa is a tilen, bar and coffee roastsite in Farringdon’s Exmouth Market. With glazed frontag</p>
    <ul>
      <li><i class="fa fa-home"></i> Uk Street, Green Home City, London.</li>
      <li><i class="fa fa-envelope"></i> info@yourtheme.com</li>
      <li><i class="fa fa-phone"></i> +710-73602 : +924-15588</li>
    </ul>
  </div>
*/ }
  .aboutus-html-style-1 img {
    margin-bottom: 20px;
    max-width: 100%; }
  .aboutus-html-style-1 p {
    margin-bottom: 20px; }
  .aboutus-html-style-1 a.bt-btn {
    font-size: 12px !important; }

.contact-html-style-1 {
  /* .custom-title-block-layout-2
 * required google font "Pacifico"
 */ }
  .contact-html-style-1 p {
    margin-bottom: 20px; }
  .contact-html-style-1 ul {
    margin-top: 20px; }
  .contact-html-style-1 ul li {
    padding: 8px 0; }
  .contact-html-style-1 ul li:not(:last-child) {
    border-bottom: 1px solid #232526; }
  .contact-html-style-1 ul li i {
    margin-right: 6px;
    color: #24ca24;
    width: 18px;
    text-align: center; }

.custom-title-block-layout-2 {
  /* Search - Mini Cart Header Menu */ }
  .custom-title-block-layout-2 .block-title.block-title-has-number .block-number {
    font-size: 50px; }
  .custom-title-block-layout-2 .block-title.block-title-has-number .block-title-text {
    font-family: "Pacifico";
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 1px; }
  .custom-title-block-layout-2 .block-title.block-title-has-number .block-title-text:before {
    content: "/" !important;
    padding-right: 5px !important; }

li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a {
  background: #e5e5e5;
  border-radius: 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  line-height: 40px !important;
  font-size: 12px !important; }
  li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a {
    color: #333;
    background: #e5e5e5;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
    line-height: 40px !important;
    font-size: 12px !important; }
  li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a > span, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a > span, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a > i, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a > i {
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover > a > span, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover > a > span, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover > a > i, li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover > a > i {
    color: #24ca24; }

body.is-header-sticky {
  /* widget-newsletter-custom-stylle-1 */ }
  body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a {
    background: none;
    box-shadow: 0 0 0 2px #e5e5e5 inset; }
    body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a > span, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a > span, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search > a > i, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart > a > i {
      color: #fff; }
  body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover > a > span, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover > a > span, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover > a > i, body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover > a > i {
    color: #24ca24; }

.widget-newsletter-custom-stylle-1 {
  /*
 * Social link
 * Html:
  <ul class="social-link-custom-style-1">
  <li><a href="#" target="_blank"><i class="fa fa-facebook"></i></a></li>
  <li><a href="#" target="_blank"><i class="fa fa-google-plus"></i></a></li>
  <li><a href="#" target="_blank"><i class="fa fa-dribbble"></i></a></li>
  <li><a href="#" target="_blank"><i class="fa fa-github-alt"></i></a></li>
  <li><a href="#" target="_blank"><i class="fa fa-instagram"></i></a></li>
  </ul>
*/ }
  .widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form, .widget-newsletter-custom-stylle-1 .widget_newsletterwidget form {
    position: relative; }
  .widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-email, .widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-email {
    background: #e7e7e7;
    border-radius: 30px;
    height: 60px;
    padding: 0 40px !important;
    width: 100% !important;
    border: solid 1px transparent; }
  .widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-email:focus, .widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-email:focus {
    background: #fff !important;
    border: 1px solid #24ca24 !important; }
  .widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-submit, .widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    padding: 0 30px;
    display: block;
    border-radius: 50px !important;
    background: #24ca24 !important;
    color: #fff;
    border: none;
    z-index: 9;
    cursor: pointer;
    width: 150px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-submit:hover, .widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-submit:hover {
    background: #20b420 !important; }

.social-link-custom-style-1 {
  padding: 0;
  margin: 0; }
  .social-link-custom-style-1 li {
    list-style: none;
    display: inline-block;
    vertical-align: top; }
  .social-link-custom-style-1 li:not(:last-child) {
    margin-right: 10px; }
  .social-link-custom-style-1 li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    background: #e7e7e7;
    color: #222;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .social-link-custom-style-1 li a:hover {
    background: #24ca24;
    color: #fff; }

.memnber-list-template-layout-default {
  margin-top: 20px;
  background: #fafafa none repeat scroll 0 0;
  border-radius: 3px;
  /* .counter-custom-layout-1 */ }
  .memnber-list-template-layout-default li {
    padding: 20px 30px; }
  .memnber-list-template-layout-default li:not(:last-child) {
    border-bottom: solid 1px #fff; }
  .memnber-list-template-layout-default li img {
    border-radius: 100px;
    float: left;
    margin-right: 20px;
    margin-top: 13px;
    width: 100px; }
  .memnber-list-template-layout-default li > div {
    padding-left: 120px; }
  .memnber-list-template-layout-default li > div h4 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 5px;
    margin-bottom: 5px; }
  .memnber-list-template-layout-default li > div p {
    margin-bottom: 0;
    font-family: caption;
    font-style: italic;
    color: #999; }
  .memnber-list-template-layout-default li > div p i {
    margin-right: 6px;
    color: #24ca24;
    width: 14px;
    text-align: center; }

.counter-custom-layout-1 {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*
 * team-social-layout-default
 */ }
  .counter-custom-layout-1 .text-above i {
    font-size: 35px; }
  .counter-custom-layout-1 .number-wrap {
    font-weight: bold; }
  .counter-custom-layout-1 .text-below {
    letter-spacing: 0 !important;
    text-transform: initial !important; }
  .counter-custom-layout-1:hover {
    background: rgba(255, 255, 255, 0); }

.team-social-layout-default {
  padding: 0;
  margin: 0; }
  .team-social-layout-default li {
    display: inline-block;
    vertical-align: top; }
  .team-social-layout-default li:not(:last-child) {
    margin-right: 4px; }
  .team-social-layout-default li a {
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center; }
  .skillbar-custom-layout-1 {
    height: 10px !important;
    max-width: 500px;
    /* .wpcf7-form */ }
  .skillbar-custom-layout-1 .percent {
    display: none; }

#page .wpcf7-form {
  margin-bottom: 20px; }
  #page .wpcf7-form label {
    width: 100%;
    font-weight: normal;
    /* .wpcf7-submit */ }
  #page .wpcf7-form label input, #page .wpcf7-form label textarea {
    padding: 10px;
    width: 100%;
    border-radius: 3px;
    margin-top: 4px; }
  #page .wpcf7-form label textarea {
    height: 120px; }
  #page .wpcf7-form .wpcf7-submit {
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px; }
  #page .wpcf7-form .wpcf7-submit:hover {
    background: #20b420; }

.bt-icon-custom {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #24ca24;
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: top; }
  .bt-icon-custom > * {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff; }

.block-layout-3-custom-style-home-spring .bearsthemes-element-inner {
  padding: 10px 0 !important; }
  .block-layout-3-custom-style-home-spring:hover {
    transform: translate(0) !important;
    -webkit-transform: translate(0) !important; }
  .block-layout-3-custom-style-home-spring:hover .bearsthemes-element-inner {
    box-shadow: none !important; }

@keyframes fadein_basic_effect {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-webkit-keyframes {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

#page .followscreen-is-active {
  overflow: initial;
  position: fixed;
  z-index: 999;
  width: 280px;
  animation: fadein_basic_effect 0.3s ease;
  -webkit-animation: fadein_basic_effect 0.3s ease;
  /*
.custom-tabs-style-1
*/ }
  #page .followscreen-is-active.followscreen-position-bottom-right {
    bottom: 10px;
    right: 10px; }
  #page .followscreen-is-active.followscreen-position-bottom-left {
    bottom: 10px;
    left: 10px; }
  #page .followscreen-is-active .follow-screen-close {
    display: block !important;
    background: #111 none repeat scroll 0 0;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
    height: 30px;
    position: absolute;
    right: -30px;
    top: -30px;
    width: 30px;
    z-index: 9;
    font-size: 11px;
    line-height: 30px;
    text-align: center;
    cursor: pointer; }

#cs-content .custom-tabs-style-1.x-nav {
  margin-bottom: 20px;
  border-width: 0; }
  #cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item {
    border-width: 0; }
  #cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item a {
    border: solid 1px transparent;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  #cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item.active a {
    border: solid 1px #24ca24;
    background: #24ca24;
    color: #fff; }
  #cs-content .custom-tabs-style-1.x-tab-content {
    border-radius: 1px;
    border-top: solid 1px rgba(0, 0, 0, 0.125); }
  #cs-content .custom-tabs-style-1.x-nav, #cs-content .custom-tabs-style-1.x-tab-content {
    box-shadow: none;
    background: transparent; }

.nf-form-cont .nf-form-title h3 {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -1.2px; }
  .nf-form-cont .nf-form-layout .nf-form-content {
    margin-top: 30px; }
  .nf-form-cont .nf-form-layout .nf-form-content input[type="text"], .nf-form-cont .nf-form-layout .nf-form-content input[type="password"], .nf-form-cont .nf-form-layout .nf-form-content input[type="number"], .nf-form-cont .nf-form-layout .nf-form-content input[type="email"], .nf-form-cont .nf-form-layout .nf-form-content input[type="date"], .nf-form-cont .nf-form-layout .nf-form-content input[type="color"], .nf-form-cont .nf-form-layout .nf-form-content input[type="tel"], .nf-form-cont .nf-form-layout .nf-form-content input[type="search"], .nf-form-cont .nf-form-layout .nf-form-content textarea, .nf-form-cont .nf-form-layout .nf-form-content select {
    padding: 10px;
    border-radius: 3px; }
  .nf-form-cont .nf-form-layout .nf-form-content input[type="button"] {
    background: #24ca24;
    border: medium none;
    border-radius: 3px;
    color: #fff;
    padding: 8px 22px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .nf-form-cont .nf-form-layout .nf-form-content input[type="button"]:hover {
    background: #20b420; }

.nf-form-cont {
  /* theme-custom-social-message-item */ }

.theme-custom-social-message-item .message-wrap {
  background: #f5f5f5 none repeat scroll 0 0;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -1.2px;
  line-height: 24px;
  padding: 30px;
  position: relative; }
  .theme-custom-social-message-item .message-wrap:after {
    content: "";
    border: solid 10px transparent;
    border-top-color: #f5f5f5;
    position: absolute;
    left: 55px;
    bottom: -20px; }
  .theme-custom-social-message-item .info-wrap {
    margin: 20px 0 0 20px;
    disblay: table; }
  .theme-custom-social-message-item .info-wrap > * {
    display: table-cell;
    vertical-align: middle; }
  .theme-custom-social-message-item .info-wrap .avatar {
    width: 100px; }
  .theme-custom-social-message-item .info-wrap .avatar img {
    width: 100%;
    border-radius: 50%; }
  .theme-custom-social-message-item .info-wrap .meta-items {
    padding-left: 20px; }
  .theme-custom-social-message-item .info-wrap .meta-items .from {
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: normal;
    text-transform: uppercase; }
  .theme-custom-social-message-item .info-wrap .meta-items .name {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -2px;
    line-height: 30px;
    margin: 0; }

.bt-section-space.section-space-no {
  padding-top: 0px;
  padding-bottom: 0px; }

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 10px; }

ul.bt-open-time, ol.bt-open-time {
  margin: 0;
  padding: 0; }

.bt-bg-fixed {
  background-attachment: fixed !important; }

.bt-main-color {
  color: #24ca24 !important; }

.bt-hihen, .bt-hihen > div {
  overflow: visible !important; }

.bt-main-font {
  font-family: 'Montserrat'; }

.bt-main-color2 {
  color: #39bcdd;
  font-style: italic; }

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-text, .notification-inner {
  letter-spacing: 0;
  font-family: sans-serif; }

.bt-sidebar .widget .widget-title {
  font-family: sans-serif; }

.bt-filter .esg-filterbutton {
  width: 100%;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important; }
  .bt-filter .esg-filterbutton span.esg-filter-checked {
    display: none; }
  .bt-filter .esg-filterbutton span {
    font-size: 28px;
    line-height: 58px;
    font-family: 'Oswald';
    font-weight: bold;
    color: #444;
    width: calc(100% - 30px);
    display: inline-block; }
  .bt-filter .esg-filterbutton span:hover {
    color: #24ca24; }
  .bt-filter .esg-filterbutton:before {
    content: url('../images/before.png');
    margin-right: 12px; }
  .bt-filter .esg-filterbutton:hover:before {
    content: url('../images/before-active.png');
    margin-right: 12px; }
  .bt-filter .esg-filterbutton:hover {
    padding-left: 30px !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease; }
  .bt-filter .esg-filterbutton.selected {
    padding-left: 30px !important; }
  .bt-filter .esg-filterbutton.selected:before {
    content: url('../images/before-active.png');
    margin-right: 12px; }
  .bt-filter .esg-filterbutton.selected span {
    color: #24ca24; }
  .bt-filter .esg-allfilter {
    display: none !important; }

@media (max-width: 991px) {
  .bt-filter .esg-filterbutton {
    padding-left: 15px !important;
    width: auto;
    border: 1px solid #e5e5e5 !important;
    padding: 5px 15px !important;
    line-height: 18px !important; }
    .bt-filter .esg-filterbutton span {
      font-size: 18px;
      line-height: 22px;
      font-family: 'Oswald';
      font-weight: bold;
      color: #444;
      width: calc(100%);
      display: inline-block; }
    .bt-filter .esg-filterbutton:before {
      content: none;
      margin-right: 0px; }
    .bt-filter .esg-filterbutton:hover:before {
      content: none;
      margin-right: 0px; }
    .bt-filter .esg-filterbutton:hover {
      padding-left: 30px !important;
      transition: all 0s ease;
      -webkit-transition: all 0s ease; }
    .bt-filter .esg-filterbutton.selected {
      padding-left: 15px !important; }
    .bt-filter .esg-filterbutton.selected:before {
      content: none;
      margin-right: 12px; } }

.bt-pricing {
  /* Pulse */ }
  .bt-pricing .vc_tta-tabs-container {
    text-align: center !important; }
  .bt-pricing .vc_tta-tabs-container ul.vc_tta-tabs-list {
    display: inline-block !important; }
  .bt-pricing .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
    position: relative; }
  .bt-pricing .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    background: transparent !important;
    border: none !important;
    font-size: 20px;
    line-height: 58px;
    font-family: 'Oswald';
    color: #fff !important;
    padding-bottom: 40px; }
  .bt-pricing .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a {
    color: #24ca24 !important; }
    .bt-pricing .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active:after {
      content: "";
      width: 30px;
      background: url(../images/forma.png);
      position: absolute;
      bottom: 20px;
      left: calc(50% - 15px);
      background-size: cover;
      height: 30px; }
  .bt-pricing .vc_tta-panel-body {
    background: #fff !important;
    padding: 0 !important; }
  .bt-pricing .vc_tta-panel-body .pricing-top {
    padding: 30px;
    overflow: hidden; }
  .bt-pricing .vc_tta-panel-body .pricing-top ul {
    padding: 0;
    list-style-type: none; }
  .bt-pricing .vc_tta-panel-body .pricing-top ul li {
    overflow: hidden;
    border-bottom: 1px dashed #666;
    padding: 15px 0; }
    .bt-pricing .vc_tta-panel-body .pricing-top ul li .bt-dv {
      width: calc(100% - 60px);
      display: inline-block;
      float: left;
      border-left: #24ca24 solid 2px;
      padding-left: 15px;
      margin-top: 7px; }
    .bt-pricing .vc_tta-panel-body .pricing-top ul li .bt-dv h2 {
      font-size: 22px;
      line-height: 22px;
      margin: 0; }
    .bt-pricing .vc_tta-panel-body .pricing-top ul li .bt-dv .sub {
      color: #666;
      font-size: 15px;
      line-height: 15px;
      padding-top: 7px; }
    .bt-pricing .vc_tta-panel-body .pricing-top ul li .bt-gia {
      background: #fbfbfb;
      border-radius: 100%;
      width: 60px;
      height: 60px;
      color: #24ca24;
      font-family: 'Oswald';
      font-size: 22px;
      font-weight: bold;
      display: inline-block;
      line-height: 60px;
      text-align: center; }
    .bt-pricing .vc_tta-panel-body .pricing-top ul li:last-child {
      border: none; }
  .bt-pricing .vc_tta-panel-body .pricing-bot {
    background: #000c17;
    overflow: hidden;
    padding: 45px 15px; }
  .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-left {
    font-family: 'Oswald';
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 60px; }
  .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-center ul {
    padding: 0;
    list-style-type: none; }
    .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-center ul li .bt-date {
      color: #24ca24;
      font-family: 'Oswald';
      font-size: 18px;
      min-width: 150px;
      display: inline-block; }
    .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-center ul li .bt-time {
      color: #fff;
      font-family: 'Oswald';
      font-size: 18px;
      display: inline-block; }
  .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-right.but-barber {
    text-align: center;
    line-height: 60px; }
  .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-right.but-barber > a {
    background: #d19d64;
    color: #222;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 12px 25px !important; }
  @media (max-width: 991px) {
    .bt-pricing .vc_tta-panel-body .pricing-bot .pricing-bot-center {
      position: relative;
      left: calc(50% - 125px);
      display: inline-block; } }

@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); } }

@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); } }

.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); }

.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.sweet-overlay {
  display: none !important; }

.showSweetAlert {
  display: none !important; }

[data-animate] {
  opacity: 0;
  visibility: hidden;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards; }

[data-animate].animated {
  opacity: 1;
  visibility: visible; }

#page .fw-shortcode-calendar-wrapper {
  /*************
Button Element
**************/ }
  #page .fw-shortcode-calendar-wrapper .cal-week-box {
    border-radius: 3px;
    overflow: hidden; }
  #page .fw-shortcode-calendar-wrapper .page-header .form-inline {
    margin-top: 6px; }
  #page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group {
    margin-right: 0; }
  #page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group button {
    font-size: 14px;
    color: #222; }
    #page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group button[data-calendar-nav="today"] {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 11px; }
  #page .fw-shortcode-calendar-wrapper .page-header h3 {
    font-family: 'Open Sans';
    color: #111;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: normal; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box .cal-row-head [class*="cal-cell"] small {
    border-top-width: 1px; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-fluid.cal-row-head [class*="cal-cell"] {
    border-right-width: 1px; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box .cal-column {
    border-left-width: 1px;
    left: -1px; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head > div {
    letter-spacing: 2px;
    font-size: 11px !important; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head > div.cal-day-today span {
    color: #111; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head > div span {
    letter-spacing: 2px;
    font-size: 12px !important; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box [data-event-class] {
    padding-left: 15px; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight {
    background: #333;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 26px -11px rgba(1, 1, 1, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight a:hover {
    color: #24ca24; }

.bearsthemes-button-element {
  /**************
Heading Element
**************/ }

.bearsthemes-heading-element {
  /****************
Underline Element
****************/ }
  .bearsthemes-heading-element > * {
    margin: 0; }

.bearsthemes-underline-element {
  margin: auto;
  position: relative;
  line-height: 0;
  padding: 4px 0;
  /***************
Products Element
***************/ }
  .bearsthemes-underline-element.bearsthemes-underline-element-layout-default .line {
    width: 100%;
    height: 2px;
    background: #e9e9e9; }
  .bearsthemes-underline-element.bearsthemes-underline-element-layout-default .dots {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(1.4);
    -webkit-transform: translate(-50%, -50%) scaleX(1.4); }
  .bearsthemes-underline-element.bearsthemes-underline-element-layout-default .dots span {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    background: #24ca24;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }

.bearsthemes-products-element {
  /*********
Testimonals Element
********/ }
  .bearsthemes-products-element .product-filter-wrap {
    margin-bottom: 30px;
    text-align: center;
    /* layout default */ }
  .bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-left {
    text-align: left; }
  .bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-right {
    text-align: right; }
  .bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-center {
    text-align: center; }
  .bearsthemes-products-element .product-filter-wrap .product-filter-item {
    border: 1px solid #ececec;
    border-radius: 3px;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 4px 20px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-products-element .product-filter-wrap .product-filter-item.is-active {
    background: #24ca24 none repeat scroll 0 0;
    border-color: #24ca24;
    color: #fff; }
  .bearsthemes-products-element .product-filter-wrap .product-filter-item:not(:last-child) {
    margin-right: 20px; }
  .bearsthemes-products-element .product-filter-wrap .product-filter-item:hover {
    border-color: #24ca24; }
  .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item {
    margin-bottom: 0; }

.bearsthemes-testimonals-element {
  /***********
Team Element
***********/ }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .entry-content {
    margin-bottom: 40px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap > img {
    width: 80px;
    float: left;
    border-radius: 3px; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta {
      margin-left: 100px; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .title {
      margin: 0 0 5px; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element {
      background: #fff;
      border-radius: 1px;
      padding: 20px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .entry-content {
    padding-left: 40px;
    position: relative; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .entry-content > .fa-quote-left {
      font-size: 24px;
      left: 6px;
      position: absolute;
      top: 3px;
      color: #24ca24; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap {
    margin-top: 30px;
    display: table;
    width: 100%; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap > * {
      display: table-cell;
      vertical-align: middle; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap img {
      border-radius: 50px;
      border: solid 0.5px rgba(36, 202, 36, 0.5); }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta {
      width: 80%;
      padding-left: 20px; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .title {
      margin: 0;
      font-size: 18px; }
    .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .sub-title {
      color: #24ca24;
      line-height: normal;
      font-size: 14px; }

.bearsthemes-team-element {
  /**************
Gallery Element
**************/ }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry .extra-meta .title {
      margin: 0; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry .entry-content {
      margin-top: 20px; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar {
    position: relative; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar .--overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      -webkit-transition: 0.3s;
      transition: 0.3s;
      z-index: 1;
      visibility: hidden;
      opacity: 0; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar .content-entry {
      visibility: hidden;
      opacity: 0;
      width: 90%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      z-index: 3; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .--overlay {
    visibility: visible;
    opacity: 1; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry {
      visibility: visible;
      opacity: 1; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry .team-social-layout-default li a {
      color: #fff;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry .team-social-layout-default li a:hover {
      background: #24ca24; }

.bearsthemes-gallery-element {
  /****************
Portfolio Element
****************/ }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner {
    overflow: hidden;
    position: relative;
    border-radius: 1px; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner img {
    max-width: 100%;
    width: 100%; }
    .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner img.lazyload {
      position: relative;
      width: 50px;
      height: 50px;
      margin: 0 auto;
      background-color: rgba(0, 0, 0, .5); }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner .title {
    bottom: -20px;
    font-size: 16px;
    left: 20px;
    line-height: 26px;
    margin: 0;
    position: absolute;
    text-align: center;
    width: calc(100% - 40px);
    z-index: 2;
    color: #fff;
    opacity: 0;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner .icon-zoom {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover:after {
    visibility: visible;
    opacity: 1; }
    .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover .title {
      bottom: 20px;
      opacity: 1; }
    .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover .icon-zoom {
      visibility: visible;
      opacity: 1;
      top: 50%; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .ui-resizable-se:after {
    color: #fff; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element {
    position: relative;
    background: #ececec;
    width: 100%;
    height: 100%; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner > * {
    position: relative;
    z-index: 3; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .image-ovelay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .icon-zoom {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .title {
    bottom: -20px;
    font-size: 16px;
    left: 20px;
    line-height: 26px;
    margin: 0;
    position: absolute;
    text-align: center;
    width: calc(100% - 40px);
    z-index: 2;
    color: #fff;
    opacity: 0;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover:after {
    visibility: visible;
    opacity: 1; }
    .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover .title {
      bottom: 20px;
      opacity: 1; }
    .bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover .icon-zoom {
      visibility: visible;
      opacity: 1;
      top: 50%; }

.bearsthemes-portfolio-element {
  /* Countdown Element */ }
  .bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-left {
    text-align: left; }
  .bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-right {
    text-align: right; }
  .bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-center {
    text-align: center; }
  .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner {
    position: relative;
    border-radius: 1px;
    overflow: hidden; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: 0.2s;
      transition: 0.2s; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      z-index: 3;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      width: 90%;
      text-align: center; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link {
      overflow: hidden;
      display: block;
      text-decoration: none; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link .item-title {
      font-size: 18px;
      line-height: 28px;
      margin: 0 0 15px 0;
      color: #fff;
      transform: translateY(-200%);
      -webkit-transform: translateY(-200%);
      transition-delay: 0.1s;
      -webkit-transition-delay: 0.1s;
      opacity: 0;
      -webkit-transition: 0.5s;
      transition: 0.5s; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link:hover .item-title {
      color: #24ca24; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap {
      display: inline-block; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 40px;
      border: solid 2px #24ca24;
      text-align: center;
      font-size: 12px;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a:not(:last-child) {
      margin-right: 6px; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a > i {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a:hover {
      background: #24ca24;
      color: #fff; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a.item-zoom {
      transform: translateX(200%);
      -webkit-transform: translateX(200%);
      transition-delay: 0.2s;
      -webkit-transition-delay: 0.2s; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap > a.item-view-detail {
      transform: translateX(-200%);
      -webkit-transform: translateX(-200%);
      transition-delay: 0.3s;
      -webkit-transition-delay: 0.3s; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover:after, .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry {
      visibility: visible;
      opacity: 1; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .item-link .item-title {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      opacity: 1; }
    .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .btn-action-wrap > a.item-zoom, .bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .btn-action-wrap > a.item-view-detail {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      opacity: 1; }

.bearsthemes-countdown-element .bearsthemes-element-inner {
  display: block; }
  .bearsthemes-countdown-element .bearsthemes-element-inner:after {
    content: "";
    clear: both;
    display: block; }
  .bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section {
    float: left;
    text-align: center;
    width: 100px;
    padding: 30px 0;
    position: relative; }
  .bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: 100px;
    border: solid 3px #24ca24; }
  .bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section:not(:last-child) {
    margin-right: 20px; }
  .bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section .countdown-amount {
    display: block;
    font-size: 28px;
    font-weight: bold;
    font-family: montserrat;
    color: #333; }
  .bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section .countdown-period {
    display: block;
    font-size: 14px;
    color: #666; }

.bearsthemes-recent-post-element a {
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .bearsthemes-recent-post-element.recent-post-layout-background.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner {
    position: relative; }
    .bearsthemes-recent-post-element.recent-post-layout-background.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner:before {
      content: "\f097";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 20px;
      color: #fff;
      z-index: 10; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner {
    position: relative; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .image-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .image-overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40% 30px; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap {
    display: inline-block;
    color: #fff;
    padding-left: 30px;
    border-left: solid 1px #24ca24;
    margin-bottom: 30px; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap a {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 12px;
      color: #fff;
      text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap a:hover {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link {
    display: block;
    text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link .title {
      display: inline;
      font-size: 40px;
      line-height: 52px;
      color: #fff;
      background: rgba(17, 17, 17, 0.5);
      letter-spacing: -1px;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link:hover .title {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link {
    display: inline-block;
    padding: 4px 15px;
    font-size: 12px;
    border: solid 1px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link i {
      font-size: 18px;
      margin-left: 6px;
      vertical-align: middle; }
    .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link:hover {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner:hover .image-overlay:after {
    background: rgba(0, 0, 0, 0.5); }
  .bearsthemes-recent-post-element.recent-post-layout-default.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner {
    position: relative; }
    .bearsthemes-recent-post-element.recent-post-layout-default.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner:before {
      content: "\f097";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 20px;
      color: #fff;
      z-index: 10; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap {
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    background: #222; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap img {
    max-width: 100%;
    height: auto; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    display: block;
    padding: 4px 14px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link i {
      font-size: 30px;
      vertical-align: middle;
      margin-left: 10px; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link:hover {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:hover:after {
    opacity: 1; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:hover .readmore-icon-link {
      visibility: visible;
      opacity: 1;
      left: 50%; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .term-list-wrap > a {
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .term-list-wrap > a:hover {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link {
    color: #111;
    text-decoration: underline; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link .title {
      margin-top: 0;
      font-size: 22px;
      line-height: 28px;
      letter-spacing: -1px;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link:hover {
      color: #24ca24; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link:hover .title {
      color: #24ca24; }
  .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .readmore-link {
    display: inline-block;
    padding: 6px 18px;
    color: #fff;
    background: #24ca24;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    text-decoration: none; }
    .bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .readmore-link:hover {
      background: #20b420; }

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-prev, .bearsthemes-carousel-element .owl-nav .owl-prev, .owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-prev, .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-next, .bearsthemes-carousel-element .owl-nav .owl-next, .owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-prev, .bearsthemes-carousel-element .owl-nav .owl-prev, .owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-prev {
    left: -50px; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-next, .bearsthemes-carousel-element .owl-nav .owl-next, .owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-next {
    right: -50px; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots, .bearsthemes-carousel-element .owl-dots, .owl-carousel.owl-carousel-style-dots-navs-default .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
    line-height: normal; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot, .bearsthemes-carousel-element .owl-dots .owl-dot, .owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 2px #24ca24;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot:not(:last-child), .bearsthemes-carousel-element .owl-dots .owl-dot:not(:last-child), .owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot:not(:last-child) {
    margin-right: 5px; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot.active, .bearsthemes-carousel-element .owl-dots .owl-dot.active, .owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot.active {
    background: #24ca24; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel:hover .owl-nav .owl-prev, .bearsthemes-carousel-element:hover .owl-nav .owl-prev, .owl-carousel.owl-carousel-style-dots-navs-default:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1; }
  .bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel:hover .owl-nav .owl-next, .bearsthemes-carousel-element:hover .owl-nav .owl-next, .owl-carousel.owl-carousel-style-dots-navs-default:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1; }

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-prev, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-prev, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-next, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-prev, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-prev {
    left: -50px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-next, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-next {
    right: -50px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots {
    width: 100%;
    text-align: center;
    line-height: normal;
    margin-top: 20px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 2px #24ca24;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot:not(:last-child), .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot:not(:last-child) {
    margin-right: 5px; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot.active, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot.active {
    background: #24ca24; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel:hover .owl-nav .owl-prev, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1; }
  .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel:hover .owl-nav .owl-next, .bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1; }

.custom-nav-position-top-right .owl-nav {
  opacity: 1;
  visibility: visible;
  position: absolute;
  right: 0;
  top: -72px; }
  .custom-nav-position-top-right .owl-nav > div {
    display: inline-block;
    opacity: 1 !important;
    position: initial !important;
    transform: none !important;
    -webkit-transform: none !important;
    vertical-align: middle;
    width: 35px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .custom-nav-position-top-right .owl-nav > div:hover {
    color: #24ca24 !important; }

#page .wpb_theme_custom_element.wpb_base_testimonial .owl-nav, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav, #page .wpb_theme_custom_element.wpb_products_slider .owl-nav, #page .wpb_theme_custom_element.wpb_classes_slider .owl-nav, #page .wpb_theme_custom_element.wpb_events_slider .owl-nav, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav, #page .wpb_theme_custom_element.wpb_base_carousel .owl-nav, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-nav > div, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav > div, #page .wpb_theme_custom_element.wpb_products_slider .owl-nav > div, #page .wpb_theme_custom_element.wpb_classes_slider .owl-nav > div, #page .wpb_theme_custom_element.wpb_events_slider .owl-nav > div, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav > div, #page .wpb_theme_custom_element.wpb_base_carousel .owl-nav > div, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #24ca24;
    color: #fff;
    border-radius: 100px;
    z-index: 5;
    font-size: 20px;
    opacity: 0.3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_products_slider .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_classes_slider .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_events_slider .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_base_carousel .owl-nav > div.owl-prev, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav > div.owl-prev {
    left: 10px; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_products_slider .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_classes_slider .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_events_slider .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_base_carousel .owl-nav > div.owl-next, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav > div.owl-next {
    right: 10px; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_products_slider .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_classes_slider .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_events_slider .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_base_carousel .owl-nav > div:hover, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav > div:hover {
    opacity: 1; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-dots, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-dots, #page .wpb_theme_custom_element.wpb_products_slider .owl-dots, #page .wpb_theme_custom_element.wpb_classes_slider .owl-dots, #page .wpb_theme_custom_element.wpb_events_slider .owl-dots, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots, #page .wpb_theme_custom_element.wpb_base_carousel .owl-dots, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots {
    margin-top: 20px;
    text-align: center; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_products_slider .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_classes_slider .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_events_slider .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_base_carousel .owl-dots .owl-dot, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 8px; }
  #page .wpb_theme_custom_element.wpb_base_testimonial .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_products_slider_full_width .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_products_slider .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_classes_slider .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_events_slider .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_base_carousel .owl-dots .owl-dot.active, #page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots .owl-dot.active {
    transform: scale(2);
    -webkit-transform: scale(3);
    background: #24ca24;
    box-shadow: 0 0 13px -2px rgba(1, 1, 1, .2); }
  #page .wpb_theme_custom_element.wpb_base_testimonial:hover .owl-nav, #page .wpb_theme_custom_element.wpb_products_slider_full_width:hover .owl-nav, #page .wpb_theme_custom_element.wpb_products_slider:hover .owl-nav, #page .wpb_theme_custom_element.wpb_classes_slider:hover .owl-nav, #page .wpb_theme_custom_element.wpb_events_slider:hover .owl-nav, #page .wpb_theme_custom_element.wpb_give_forms_slider:hover .owl-nav, #page .wpb_theme_custom_element.wpb_base_carousel:hover .owl-nav, #page .wpb_theme_custom_element.wpb_posts_slider_2:hover .owl-nav {
    opacity: 1; }

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation {
  /****************
menu style inline
*****************/ }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item {
    text-align: left;
    position: relative;
    list-style: none; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.title-hidden > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.title-hidden > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.title-hidden > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.title-hidden > a {
    display: none; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #1f1f1f;
    line-height: 90px;
    font-size: 14px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a span {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Montserrat';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 700; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a sup, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a sup, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a sup, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item a sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > i, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > i, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > i, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > i {
    display: inline-block;
    vertical-align: baseline; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-icon > a > span {
      margin-left: 10px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes > a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes > a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes > a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes > a > span {
    display: none !important; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form {
    margin: 0; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn {
      margin: 0;
      padding: 7px 18px;
      color: #fff;
      background: #24ca24;
      -webkit-transition: 0.4s ease;
      transition: 0.4s ease;
      line-height: 90px;
      font-size: 14px;
      font-family: 'Montserrat';
      letter-spacing: 0px;
      font-style: normal;
      font-weight: 700; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover {
      background: #20b420; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon {
    display: inline-block;
    vertical-align: middle; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item {
    display: table-cell; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child) {
      padding-right: 25px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a {
      position: relative;
      color: #1f1f1f; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2 {
      font-size: 120%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover {
      color: #24ca24; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk {
      font-size: 11px;
      height: 14px;
      line-height: 16px;
      margin-left: 1px;
      padding: 0 4px;
      position: absolute; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon > a {
    padding: 0 12px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > i, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > i, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > i, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > i, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span {
    display: inline-block;
    vertical-align: middle; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a > span {
      background: #fff;
      border: solid 2px #fff;
      color: #333;
      box-shadow: 0 0 18px -8px rgba(1, 1, 1, .3);
      padding: 0 20px;
      height: 32px;
      line-height: 28px;
      border-radius: 32px;
      white-space: nowrap;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a:hover span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a:hover span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a:hover span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-button > a:hover span {
      background: #24ca24;
      border-color: #24ca24;
      color: #fff; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-qtt, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-qtt, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-qtt, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-qtt, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price {
    display: inline-block;
    vertical-align: top;
    font-weight: bold; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-amount, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-amount, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-amount, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-amount {
      font-weight: bold; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-currencySymbol, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-currencySymbol, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-currencySymbol, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart > a > span .total-price .woocommerce-Price-currencySymbol {
      display: inline-block;
      vertical-align: top; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap {
    position: absolute;
    background: #fafafa;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form {
    position: relative;
    min-width: 260px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form:after, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form:after, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form:after, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form:after {
      content: "\f002";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 14px;
      color: #999;
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      z-index: 3;
      box-shadow: none;
      border: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form label, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form label, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form label, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form label {
      margin: 0;
      display: block;
      width: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text {
      display: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .search-submit, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .search-submit, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .search-submit, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form .search-submit {
      display: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active {
      box-shadow: none;
      outline: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.search-form-container form.search-form input.search-field {
      border: medium none;
      height: auto !important;
      padding: 10px 20px 10px 36px !important;
      width: 100%;
      font-weight: normal;
      background: none; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .3);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed {
      position: absolute;
      display: block;
      z-index: 5;
      right: 10px;
      top: 10px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      border-radius: 35px;
      text-align: center;
      cursor: pointer;
      font-size: 28px;
      color: #fff;
      background: #333;
      box-shadow: 0 0 26px 3px rgba(0, 0, 0, .3); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div {
      position: absolute;
      right: -100%;
      top: 0;
      width: 260px;
      height: 100%;
      overflow: auto;
      background: #fafafa;
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
      z-index: 3;
      -webkit-transition: 0.6s ease;
      transition: 0.6s ease; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > * {
      margin-top: 30px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child {
      margin-top: 50px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu {
    position: absolute;
    min-width: 200px;
    padding: 0;
    opacity: 0;
    background: #fafafa;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row) {
    margin: 0;
    visibility: hidden; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child) {
    border-bottom: 1px solid rgba(31, 31, 31, 0.05); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a {
      padding: 5px 20px;
      font-size: 15px;
      line-height: 30px;
      color: #1f1f1f; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span {
      font-family: 'Montserrat';
      letter-spacing: 0px;
      font-style: normal;
      font-weight: 700; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover > a {
      color: #24ca24 !important; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a {
    color: #d2d2d2; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a {
    cursor: pointer; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span {
      display: none; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row {
    position: absolute;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    padding: 10px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col {
      display: inline-block;
      vertical-align: top;
      width: 228px;
      border-bottom: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon > a > i, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon > a > i, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon > a > i, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon > a > i {
      vertical-align: middle; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > a span {
      font-family: 'Montserrat';
      font-size: 120%;
      text-decoration: underline; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div {
      font-size: 15px;
      line-height: 30px;
      color: rgba(31, 31, 31, 0.7);
      font-family: 'Montserrat';
      letter-spacing: 0px;
      font-style: normal;
      font-weight: 700; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img {
      width: 100%;
      max-width: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover > a {
      color: #1f1f1f; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > div {
      padding: 0 10px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu {
      background: transparent; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu {
      opacity: 1;
      position: relative;
      top: 0;
      left: 0;
      box-shadow: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li {
      border-bottom: none; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date {
      color: rgba(31, 31, 31, 0.7);
      font-size: 15px;
      font-family: 'Montserrat'; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap {
      position: relative;
      background: transparent;
      box-shadow: none;
      padding: 0 10px;
      margin-top: 10px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget .widget-title, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget .widget-title, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget .widget-title, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget .widget-title {
      display: none; }
      .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a {
        padding: 0;
        line-height: normal;
        font-size: 15px;
        color: #1f1f1f;
        font-family: 'Montserrat';
        letter-spacing: 0px;
        font-style: normal;
        font-weight: 700; }
      .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu li .menu-item-custom-wrap .widget a:hover {
        color: #24ca24; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu {
      opacity: 1;
      position: relative;
      top: 0;
      left: 0;
      box-shadow: none;
      padding-left: 35px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu > li.menu-item, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu > li.menu-item, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu > li.menu-item, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col > .sub-menu .sub-menu > li.menu-item {
      list-style: initial; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-item > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-item > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-item > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-item > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-ancestor > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-ancestor > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-ancestor > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-ancestor > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item:hover > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item:hover > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item:hover > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item:hover > a {
    color: #24ca24 !important; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item {
    display: inline-block;
    vertical-align: middle; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(:first-child), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(:first-child), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(:first-child), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(:first-child) {
    margin-left: 15px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) {
    /* wpml */ }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span {
      display: inline-block;
      position: relative; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span:after, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span:after, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span:after, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children:not(.wpml-ls-item) > a span:after {
      content: "";
      -moz-osx-font-smoothing: grayscale;
      display: inline-block;
      font-family: "Ionicons";
      font-style: normal;
      font-variant: normal;
      font-weight: normal;
      line-height: 1;
      text-rendering: auto;
      text-transform: none;
      margin-left: 6px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span {
    position: relative; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span:after, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span:after, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span:after, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item > a > span:after {
      content: "";
      -moz-osx-font-smoothing: grayscale;
      display: inline-block;
      font-family: "Ionicons";
      font-style: normal;
      font-variant: normal;
      font-weight: normal;
      line-height: 1;
      text-rendering: auto;
      text-transform: none;
      margin-left: 6px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span {
      display: block;
      width: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > .wpml-ls-flag {
      padding-right: 4px;
      height: auto; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > *, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > *, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > *, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-children.wpml-ls-menu-item a > span > * {
      display: inline-block;
      vertical-align: middle; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu {
    left: 0;
    top: calc(100% + 20px);
    z-index: 99; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu > li.menu-item ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu > li.menu-item ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu > li.menu-item ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > ul.sub-menu > li.menu-item ul.sub-menu {
    left: calc(100% + 20px);
    top: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu li.menu-item:hover > ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu li.menu-item:hover > ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu li.menu-item:hover > ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover > ul.sub-menu li.menu-item:hover > ul.sub-menu {
      visibility: visible;
      opacity: 1;
      left: 100%; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row {
    left: 0;
    top: calc(100% + 20px); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-center, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-center, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-center, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-center {
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-left, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-left, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-left, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-left {
      left: 0; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-right, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-right, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-right, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row.fw-sub-menu-position-right {
      left: auto;
      right: 0; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu {
      visibility: hidden; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row {
    top: 100%;
    visibility: visible;
    opacity: 1; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item:hover.menu-item-has-mega-menu > .mega-menu > .mega-menu-row .menu-item .sub-menu {
      visibility: visible; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > .menu-item-custom-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > .menu-item-custom-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > .menu-item-custom-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item > .menu-item-custom-wrap {
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    background: #fff; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap {
    visibility: visible;
    opacity: 1; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap > div, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap > div, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap > div, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap > div {
      right: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a {
    position: relative; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after {
      content: "\f00d";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      z-index: 3; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i {
      opacity: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
    top: 100%;
    visibility: visible;
    opacity: 1; }

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu {
  /*******************
menu style offcanvas
********************/ }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu > li:not(:last-child), .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu > li:not(:last-child) {
    margin-right: 20px; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item {
    display: inline-block; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a {
    display: block;
    width: 100%;
    /* wpml */ }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a > i, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a > i {
    margin-right: 5px; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a > sup, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item > a > sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span {
    display: block;
    width: 100%; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span > .wpml-ls-flag, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span > .wpml-ls-flag {
      padding-right: 4px;
      height: auto; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span > *, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a > span > * {
      display: inline-block;
      vertical-align: middle; }

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div {
  /* menu custom type */ }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu {
    padding: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child), .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child), .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:not(:last-child) {
    border-bottom: solid 1px rgba(31, 31, 31, 0.05); }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a {
    padding: 5px 20px;
    position: relative;
    display: block; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a > sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 9; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:after {
      content: "";
      width: 10px;
      border-top: 1px solid;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui:before {
      content: "";
      height: 10px;
      border-left: 1px solid;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li > a .menu-offcanvas-toggle-ui.is-open:before {
      display: none; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a {
    font-size: 15px;
    line-height: 30px;
    color: #1f1f1f; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li a span {
    font-family: 'Montserrat';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 700; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover {
    /* wpml */ }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-item > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.current-menu-parent > a, .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li:hover > a {
    color: #24ca24 !important; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span {
    display: block;
    width: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > .wpml-ls-flag {
      padding-right: 4px;
      height: auto; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > *, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > *, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > *, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > *, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > *, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.wpml-ls-menu-item a > span > * {
      display: inline-block;
      vertical-align: middle; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap {
    box-shadow: none !important;
    left: 0 !important;
    padding: 20px;
    position: relative !important;
    top: 0 !important;
    transform: translate(0px, 0px) !important;
    -webkit-transform: translate(0px, 0px) !important;
    width: 100%; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget {
      margin-top: 30px;
      margin-bottom: 0px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title {
      font-size: 18px;
      line-height: 30px;
      margin: 0 0 8px;
      color: #1f1f1f; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li {
      width: 60px;
      height: 60px; }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a {
      padding: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul {
    opacity: 1;
    position: relative; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu {
    visibility: visible !important;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    display: none;
    box-shadow: none;
    border-top: solid 1px rgba(31, 31, 31, 0.05);
    background: rgba(237, 237, 237, 0.5); }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child), .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child), .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child), .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child), .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child), .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div ul.menu ul.sub-menu li:not(:last-child) {
    border-bottom: solid 1px rgba(31, 31, 31, 0.05); }

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu {
  /* style menu mobile default (not yet install plg Unyson) */ }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom {
    position: relative; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap {
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    background: #fff; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap {
    visibility: visible;
    opacity: 1; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap > div, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap > div {
      right: 0; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a {
    position: relative; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a:after {
      content: "\f00d";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      z-index: 3; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > :not(.menu-item-custom-type-woocommerce-mini-cart) > a > i {
      opacity: 0; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap), .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active > .menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
    top: 100%;
    visibility: visible;
    opacity: 1; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap {
    text-align: left;
    z-index: 9999;
    position: absolute;
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form {
    position: relative;
    min-width: 260px; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form:after, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form:after {
      content: "\f002";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 14px;
      color: #999;
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      z-index: 3;
      box-shadow: none;
      border: none; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form label, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form label {
      margin: 0;
      display: block;
      width: 100%; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text {
      display: none; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form .search-submit, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form .search-submit {
      display: none; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field:active {
      box-shadow: none;
      outline: none; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.search-form-container form.search-form input.search-field {
      border: medium none;
      height: auto;
      padding: 16px 20px 16px 36px;
      width: 100%;
      font-weight: normal;
      background: none; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .3);
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > .off-canvas-menu-closed {
      position: absolute;
      display: block;
      z-index: 5;
      right: 10px;
      top: 10px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      border-radius: 35px;
      text-align: center;
      cursor: pointer;
      font-size: 28px;
      color: #fff;
      background: #333;
      box-shadow: 0 0 26px 3px rgba(0, 0, 0, .3); }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div {
      position: absolute;
      right: -100%;
      top: 0;
      width: 260px;
      height: 100%;
      overflow: auto;
      background: #fafafa;
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
      z-index: 3;
      -webkit-transition: 0.6s ease;
      transition: 0.6s ease; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div > * {
      margin-top: 30px; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.off-canvas-menu-wrap > div > *:first-child {
      margin-top: 50px; }
  .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation {
    background: #fff none repeat scroll 0 0;
    border-radius: 3px;
    box-shadow: 0 0 12px -1px rgba(1, 1, 1, 0.15);
    max-width: 300px;
    min-width: 200px;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 999; }
  .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation > ul.bt-nav-menu li {
    display: block !important;
    margin: 0 !important; }
  .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation > ul.bt-nav-menu li ul.sub-menu {
    position: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    left: 0 !important;
    top: 0 !important;
    box-shadow: none !important; }
  .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation > ul.bt-nav-menu li ul.sub-menu li {
    padding-left: 15px;
    border: none !important; }
    .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation > ul.bt-nav-menu li ul.sub-menu li a {
      padding-left: 0 !important; }

.bt-header .bt-header-main .bt-header-container.fw-absolute-header, .bt-header .bt-header-main .bt-header-container.fw-absolute-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.35) !important; }

body.is-header-sticky.admin-bar .fw-sticky-header {
  top: 32px !important; }
  body.is-header-sticky .bt-header-main.header-no-titlebar .bt-header-container.fw-sticky-header {
    position: relative !important; }
  body.is-header-sticky .bt-header-container.fw-sticky-header {
    /* end set background */
    background: rgba(31, 31, 31, 0.95) !important;
    /* animate sticky */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    /* end animate sticky */
    /* START -  padding */
    animation-duration: 1s;
    padding-top: 0px;
    /* END - padding */
    padding-bottom: 0px;
    width: 100%;
    z-index: 999;
    position: fixed !important;
    left: 0;
    top: 0; }
  body.is-header-sticky .bt-header-container.fw-sticky-header.fw-absolute-header {
    background: rgba(31, 31, 31, 0.95) !important; }
  @media (max-width: 1170px) {
      body.is-header-sticky .bt-header-container.fw-sticky-header.fw-sticky-header {
        width: 100%;
        margin-left: 0; } }
  body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(.menu-item-custom-type-button) > a {
    color: #ebebeb !important; }
    body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(.menu-item-custom-type-button):hover > a, body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(.menu-item-custom-type-button).current-menu-ancestor > a, body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item:not(.menu-item-custom-type-button).current-menu-item > a {
      color: #39bcdd !important; }
    body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a {
      color: #ebebeb !important; }
    body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover {
      color: #39bcdd !important; }
  body.is-header-sticky.bt-side-boxed .bt-header-container.fw-sticky-header {
    margin-left: calc((100% - 1170px) / 2);
    max-width: 1170px; }

.fw-wrap-logo .fw-site-logo {
  display: inline-block; }
  .fw-wrap-logo .fw-site-logo strong.site-title {
    display: block;
    font-family: ;
    font-size: ;
    line-height: ;
    letter-spacing: ;
    color: ;
    font-style: ;
    font-weight: ; }
  .fw-wrap-logo .fw-site-logo span.site-description {
    display: block;
    font-family: ;
    font-size: ;
    line-height: ;
    letter-spacing: ;
    color: ;
    font-style: ;
    font-weight: ; }
  .fw-wrap-logo .fw-site-logo.logo-sticky-is-enable img.main-logo {
    display: none; }
  .fw-wrap-logo .fw-site-logo.logo-sticky-is-enable img.sticky-logo {
    display: inline-block !important; }

.bt-logo-retina .fw-wrap-logo .fw-site-logo img.main-logo {
  width: calc(481px / 2); }
  .bt-logo-retina .fw-wrap-logo .fw-site-logo img.sticky-logo {
    width: calc( / 2);
    display: none; }

.bt-header-top-bar {
  background: #1f1f1f;
  padding: 6px 0; }
  .bt-header-top-bar *:not(.fa) {
    font-family: 'NTR';
    font-size: 13px;
    line-height: 38px;
    letter-spacing: 0.3px;
    color: #ebebeb;
    font-style: normal;
    font-weight: 400; }
  .bt-header-top-bar .menu-item a, .bt-header-top-bar a {
    color: #ebebeb; }
  .bt-header-top-bar .menu-item a:hover, .bt-header-top-bar a:hover {
    color: rgba(235, 235, 235, 0.3); }
  .bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-left {
    text-align: left; }
  .bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-center {
    text-align: center; }
  .bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-right {
    text-align: right; }
  .bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-right .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap {
    right: 0;
    left: auto; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_text a, .bt-header-top-bar .header-top-sidebar-item .widget a {
    text-decoration: none;
    font-family: 'NTR';
    font-size: 13px;
    line-height: 38px;
    letter-spacing: 0.3px;
    color: #ebebeb;
    font-style: normal;
    font-weight: 400; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu > li a {
    padding-top: 0;
    padding-bottom: 0; }
  .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li a:hover {
      color: rgba(235, 235, 235, 0.7); }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form {
      margin: 0; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn {
      margin: 0;
      padding: 0 20px;
      border-radius: 0;
      box-shadow: 0 7px 0 0 #24ca24, 0 -7px 0 0 #24ca24;
      -webkit-transition: 0.4s ease;
      transition: 0.4s ease;
      font-family: 'NTR';
      font-size: 13px;
      line-height: 38px;
      letter-spacing: 0.3px;
      color: #ebebeb;
      font-style: normal;
      font-weight: 400; }
    .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover {
      background: #20b420;
      box-shadow: 0 7px 0 0 #20b420, 0 -7px 0 0 #20b420; }

.bt-header.header-1 .bt-container-logo {
  width: 15%; }
  .bt-header.header-1 .bt-container-menu {
    width: 85%; }
  .bt-header.header-1 .bt-header-main {
    display: block;
    width: 100%; }
  .bt-header.header-1 .bt-header-main .fw-wrap-logo {
    display: block;
    vertical-align: middle; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap {
    display: block;
    vertical-align: middle; }
  .bt-header.header-2 .bt-container-logo {
    width: 20%; }
  .bt-header.header-2 .bt-container-menu {
    width: 40%; }
  .bt-header.header-2 .bt-header-main {
    display: block;
    width: 100%; }
  .bt-header.header-2 .bt-header-main .fw-wrap-logo {
    display: block;
    vertical-align: middle; }
  .bt-header.header-2 .bt-header-main .bt-nav-wrap {
    display: block;
    vertical-align: middle; }
  .bt-header.header-3 {
    /* header 3 top */ }
  .bt-header.header-3 .bt-container-menu {
    width: 100%; }
  .bt-header.header-3 .bt-header-main {
    display: block;
    width: 100%; }
  .bt-header.header-3 .bt-header-main .bt-nav-wrap {
    display: block; }
  .header-3-top {
    z-index: 20; }
  .header-3-top .bt-header-top-bar {
    position: relative;
    overflow: hidden; }
  .header-3-top .bt-header-logo-sidebar-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
    z-index: 1000; }
  .header-3-top .bt-header-logo-sidebar-wrap.bt-header-shadow-effect-yes {
    position: relative;
    box-shadow: 0 0 59px -28px #222; }
  .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget a {
    text-decoration: none; }
  .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .header-3-top .bt-header-logo-sidebar-wrap .text-left .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap {
    left: 0;
    right: auto; }
  .header-3-top .bt-header-logo-sidebar-wrap .text-right .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap {
    left: auto;
    right: 0; }

.bt-header-mobi {
  background: #fff; }
  .bt-header-mobi.fw-absolute-header .bt-header-mobi-main {
    position: absolute;
    z-index: 99; }
  .bt-header-mobi.fw-absolute-header .bt-header-mobi-main.header-no-titlebar {
    position: relative;
    background: #fff !important; }
  .bt-header-mobi .bt-header-mobi-main {
    padding: 10px 0; }
  .bt-header-mobi.fw-menu-position-left .bt-nav-wrap {
    text-align: left; }
  .bt-header-mobi.fw-menu-position-center .bt-nav-wrap {
    text-align: center; }
  .bt-header-mobi.fw-menu-position-right .bt-nav-wrap {
    text-align: right; }
  .bt-header-mobi.header-mobi .bt-container-logo {
    width: 15%; }
  .bt-header-mobi.header-mobi .bt-container-menu {
    width: 85%; }
  .bt-header-mobi.header-mobi .bt-header-mobi-main {
    display: block;
    width: 100%; }
  .bt-header-mobi.header-mobi .bt-header-mobi-main .fw-wrap-logo {
    display: block;
    vertical-align: middle; }
  .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap {
    display: block;
    vertical-align: middle; }
  .bt-header-mobi .default-mobi-menu-wrap {
    position: relative; }
  .bt-header-mobi .default-mobi-menu-wrap.menu-mobi-is-open #bt-menu-mobi-menu {
    display: block; }
  .bt-header-mobi .default-mobi-menu-wrap .button-toggle-ui {
    background: #24ca24;
    border: 1px solid #24ca24;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 4px;
    padding: 4px 12px 4px 15px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .bt-header-mobi .default-mobi-menu-wrap .button-toggle-ui:hover {
    color: #fff;
    background: #20b420;
    border-color: #20b420; }
  .bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation {
    display: none; }

header.bt-header-mobi {
  display: none; }

@media (max-width: 996px) {
  /*
responsive Menu Item Type Custom On Mobi 525px
*/
    header.bt-header {
      display: none; }
    header.bt-header-mobi {
      display: block; }
    header.header-3-top {
      display: none; } }

@media (max-width: 525px) {
  .menu-item-type-custom > .menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
    box-shadow: 0 0 18px 1px rgba(0, 0, 0, .3) !important;
    position: fixed !important;
    top: 100px !important;
    left: 50%;
    width: calc(100% - 50px);
    max-height: calc(100% - 150px);
    overflow: auto;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%); }
    .menu-item-type-custom > .menu-item-custom-wrap:not(.off-canvas-menu-wrap) .widget_shopping_cart_content {
      width: 100% !important; } }

.menu-item-hidden-title-yes a span {
  display: none; }

.bt-header .bt-header-main {
  position: relative; }
  .bt-header .bt-header-main .bt-header-container {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px; }
  .bt-header .bt-header-main {
    position: relative; }
  .bt-header .bt-header-main .bt-header-container {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px; }
  .bt-header .bt-header-main.header-no-titlebar {
    position: relative; }
  .bt-header .bt-header-main.header-no-titlebar .bt-header-container {
    background: #fff !important;
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative; }
  .bt-header.fw-menu-position-left .bt-nav-wrap {
    text-align: left; }
  .bt-header.fw-menu-position-center .bt-nav-wrap {
    text-align: center; }
  .bt-header.fw-menu-position-right .bt-nav-wrap {
    text-align: right; }
  .fw-title-bar {
    position: relative; }
  .fw-title-bar > *:not(.fw-main-row-overlay) {
    position: relative;
    z-index: 3; }
  .fw-title-bar .fw-heading .fw-special-title {
    font-family: 'Poppins';
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 0px;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    max-width: 700px;
    display: inline-block;
    padding-top: 50px;
    position: relative; }
  .fw-title-bar .fw-heading .fw-special-title:after {
    content: "\f06c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    font-size: 80%; }
  .fw-title-bar .fw-heading.fw-content-align-left .fw-special-title:after {
    top: 0;
    left: 0; }
  .fw-title-bar .fw-heading.fw-content-align-center .fw-special-title:after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }
  .fw-title-bar .fw-heading.fw-content-align-right .fw-special-title:after {
    top: 0;
    right: 0; }
  .fw-title-bar .fw-heading .breadcrumbs {
    margin-top: 30px; }
  @media (max-width: 768px) {
    .fw-title-bar .fw-heading .fw-special-title {
      font-size: 7vw;
      line-height: 9vw; } }
  .fw-title-bar .fw-main-row-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }

body.search-results .fw-title-bar .fw-heading .fw-special-title:after {
  content: "\f002"; }

.post-list-type-blog-1 {
  /* layout creative default */ }
  .post-list-type-blog-1 .post-inner {
    border-radius: 1px;
    overflow: hidden;
    background: #f8f8f8; }
  .post-list-type-blog-1 .post-inner .post-featured-image-wrap .post-featured-image-link {
    display: block;
    text-align: center; }
  .post-list-type-blog-1 .post-inner .post-featured-image-wrap .post-featured-image-link .post-single-image {
    max-width: 100%;
    height: auto !important; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta {
    display: block;
    margin-bottom: 15px; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta:after {
    content: "";
    display: block;
    clear: both; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta a:hover {
    color: #1c9f1c; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category, .post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag {
    float: left;
    font-size: 15px;
    line-height: 24px; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category i, .post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag i {
    float: left;
    margin-right: 5px;
    color: #24ca24;
    text-align: center;
    width: 24px; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category {
    margin-right: 15px; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories {
    padding: 0;
    margin: 0;
    display: inline-block; }
    .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories:after {
      content: "";
      display: block;
      clear: both; }
    .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories li {
      float: left;
      list-style: none; }
    .post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories li:not(:last-child) {
      margin-right: 5px; }
  .post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag a {
    display: inline-block;
    vertical-align: top; }
    .post-list-type-blog-1 .post-inner .entry-wrap {
      padding: 0 20px 20px 20px; }
  .post-list-type-blog-1 .post-inner .entry-wrap .post-title-link {
    text-decoration: none; }
  .post-list-type-blog-1 .post-inner .entry-wrap .post-title-link .post-title {
    font-size: 20px;
    line-height: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-1 .post-inner .entry-wrap .post-title-link:hover .post-title {
    color: #20b420; }
  .post-list-type-blog-1 .post-inner .entry-wrap .extra-meta {
    margin-top: 20px; }
  .post-list-type-blog-1 .post-inner .entry-wrap .extra-meta > div {
    margin-top: 10px;
    background: #20b420;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    vertical-align: middle;
    line-height: normal;
    margin-right: 14px; }
    .post-list-type-blog-1 .post-inner .entry-wrap .extra-meta > div i {
      display: inline-block;
      vertical-align: unset;
      margin-right: 4px; }
  .post-list-type-blog-1 .post-inner .entry-wrap .post-readmore {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-1.format-gallery .post-gallery-image-wrap .post-gallery .gallery-item .post-single-image {
    max-width: 100%;
    height: auto !important; }
  .post-list-type-blog-1.format-link .post-block-link-wrap {
    padding: 50px 20px;
    position: relative; }
  .post-list-type-blog-1.format-link .post-block-link-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8); }
  .post-list-type-blog-1.format-link .post-block-link-wrap i.fa-link {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3; }
  .post-list-type-blog-1.format-link .post-block-link-wrap .post-link-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px; }
  .post-list-type-blog-1.format-link .post-block-link-wrap .post-link-wrap .post-link {
    word-wrap: break-word;
    text-decoration: underline;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-1.format-quote .post-block-quote-wrap {
    padding: 50px 20px;
    position: relative; }
  .post-list-type-blog-1.format-quote .post-block-quote-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8); }
  .post-list-type-blog-1.format-quote .post-block-quote-wrap i.fa-quote-left {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3; }
  .post-list-type-blog-1.format-quote .post-block-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px; }
  .post-list-type-blog-1.format-quote .post-block-quote-wrap .post-quote-wrap .post-quote {
    border-left: medium none;
    color: #fff;
    font-family: caption;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
    padding: 0;
    text-align: justify; }
  .post-list-type-blog-1.format-audio .post-block-audio-wrap {
    line-height: 0; }
  .post-list-type-blog-1.format-video .post-block-video-wrap {
    line-height: 0; }
  .post-list-type-blog-1.format-video .post-block-video-wrap .post-video-wrap {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden; }
  .post-list-type-blog-1.format-video .post-block-video-wrap .post-video-wrap > * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .post-featured-image-link {
    display: block;
    text-align: center; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .post-featured-image-link img {
    max-width: 100%;
    height: auto; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail {
    border: 1px solid;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    left: 50%;
    letter-spacing: 2px;
    padding: 4px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 4;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail span {
    font-size: 18px;
    margin-left: 4px; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail:hover {
    color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 4;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom:after {
    content: "";
    display: block;
    clear: both; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-comment, .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-view {
    display: inline-block;
    vertical-align: top; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-comment {
    margin-right: 15px; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover:after {
    opacity: 1; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .icon-view-detail, .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .extra-meta-bottom {
    opacity: 1;
    visibility: visible; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .extra-meta-bottom {
    bottom: 20px; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category {
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 1px;
      height: 100%;
      background: #24ca24; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category a {
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #333;
      text-decoration: none;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category a:hover {
      color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-title-link {
    text-decoration: none; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-title-link .post-title {
    margin: 0;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 15px;
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-title-link:hover .post-title {
    color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta > div {
    color: #999;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    vertical-align: top; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta > div:not(:last-child) {
      margin-right: 12px; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta > div i {
      margin-right: 4px; }
    .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta > div a {
      -webkit-transition: 0.3s;
      transition: 0.3s;
      text-decoration: none; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-readmore {
    background: #24ca24;
    border-radius: 1px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 22px;
    padding: 6px 16px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-readmore:hover {
    background: #20b420; }
  .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:after {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 3;
    color: #fff;
    font-size: 14px; }
  .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
    .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-image-background:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    padding: 90px 30px 30px;
    z-index: 4;
    color: #fff;
    opacity: 0.4;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
    .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-quote {
      padding: 0;
      border: none;
      font-size: 23px;
      line-height: 37px;
      font-family: caption;
      font-style: italic;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative; }
    .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-quote:after {
      content: "";
      position: absolute;
      width: 20%;
      height: 1px;
      background: #fff;
      bottom: 0;
      left: 0; }
    .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-cite-wrap {
      font-size: 22px; }
  .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:hover .post-quote-image-background:after {
    background: rgba(0, 0, 0, 0.6); }
    .post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:hover .post-quote-wrap {
      opacity: 0.8; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #24ca24;
    padding-bottom: 55vh; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:after {
    content: "\f03d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 5;
    color: #fff;
    font-size: 14px; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .post-video-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .post-video-wrap.video-type-embed iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    z-index: 2; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail {
    border: 1px solid;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    left: 50%;
    letter-spacing: 2px;
    padding: 4px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 4;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail span {
      font-size: 18px;
      margin-left: 4px; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail:hover {
      color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 4;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom:after {
      content: "";
      display: block;
      clear: both; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-comment, .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-view {
      display: inline-block;
      vertical-align: top; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-comment {
      margin-right: 15px; }
  .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover:before {
    opacity: 1; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .icon-view-detail, .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .extra-meta-bottom {
      opacity: 1;
      visibility: visible; }
    .post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .extra-meta-bottom {
      bottom: 20px; }
  .post-list-type-blog-2.post-creative-layout-default.format-audio .post-inner .post-header-audio-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; }
  .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap:after {
    content: "\f0c1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 3;
    color: #fff;
    font-size: 14px; }
  .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
    .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-image-background:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
  .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-wrap {
    display: block;
    padding: 80px 30px 30px;
    position: relative;
    z-index: 4; }
    .post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-wrap a {
      color: #fff;
      font-family: caption;
      font-size: 22px;
      font-style: italic;
      display: block;
      /* All browsers since IE 5.5+ */
      word-wrap: break-word;
      /* Renamed property in CSS3 draft spec */
      overflow-wrap: break-word;
      width: 100%; }
  .post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; }
  .post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ {
    position: relative;
    width: 100%;
    height: 100%; }
    .post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ .icon-zoom {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap {
  position: relative;
  background: #24ca24;
  padding: 16vh 0;
  overflow: hidden; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-quote-image-background {
    position: absolute;
    left: -20%;
    top: -20%;
    width: 140%;
    height: 140%;
    z-index: 1; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-quote-image-background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-layout-creative-video-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-layout-creative-video-wrap .post-video-wrap.video-type-embed iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 380%;
    height: 250%;
    z-index: 2; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: center; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta {
    display: block; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category {
      display: inline-block;
      padding-left: 30px;
      margin-bottom: 20px;
      position: relative;
      color: #fff; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 1px;
      height: 100%;
      background: #24ca24; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category a {
      color: #fff;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category a:hover {
      color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link {
    text-decoration: none;
    display: block;
    margin: 20px 0; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link .post-title {
      margin: 0;
      font-size: 32px;
      line-height: 42px;
      margin: 20px 0;
      color: #fff;
      display: inline;
      background: rgba(0, 0, 0, 0.5);
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link:hover .post-title {
      color: #24ca24; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore {
    border: solid 1px;
    border-radius: 1px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 22px;
    padding: 6px 16px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore:after {
      content: "";
      display: inline-block;
      font-family: "Ionicons";
      font-style: normal;
      font-variant: normal;
      font-weight: normal;
      line-height: 1;
      text-rendering: auto;
      text-transform: none;
      margin-left: 8px; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore:hover {
      color: #20b420; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 4;
    color: #fff;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom > div {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 22px;
    margin-bottom: 5px; }
    .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom > div:not(:last-child) {
      margin-right: 8px; }
  .post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap:hover .extra-meta-bottom {
    visibility: visible;
    opacity: 1;
    bottom: 10px; }
  .post-list-type-blog-2.post-creative-layout-background.format-video .post-inner .post-item-container-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
  .post-list-type-blog-2.post-creative-layout-background.format-video .post-inner .post-item-container-wrap:hover:after {
    opacity: 1; }

.search-post-item:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9e9e9; }
  .search-post-item .post-inner .post-type {
    background: #24ca24;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: normal;
    padding: 4px 10px;
    text-transform: uppercase; }
  .search-post-item .post-inner .title-link {
    text-decoration: none; }
  .search-post-item .post-inner .title-link .title {
    font-size: 18px;
    line-height: 26px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .search-post-item .post-inner .title-link:hover .title {
    color: #24ca24; }
  .search-post-item .post-inner .extra-meta > div {
    color: #999;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    vertical-align: top; }
  .search-post-item .post-inner .extra-meta > div:not(:last-child) {
    margin-right: 12px; }
  .search-post-item .post-inner .extra-meta > div i {
    margin-right: 4px; }
  .search-post-item .post-inner .extra-meta > div a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none; }

.wp-caption {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  border: solid 1px #e9e9e9;
  position: relative;
  background: #fff;
  box-sizing: unset;
  padding: 20px;
  max-width: calc(100% - 40px);
  /* blockquote */ }
  .wp-caption.alignleft {
    float: left;
    margin: 0 20px 0 0; }
  .wp-caption.alignleft img {
    padding: 0; }
  .wp-caption.alignright {
    float: right;
    margin: 0 0 0 20px; }
  .wp-caption.alignright img {
    padding: 0; }
  .wp-caption img.custom-image-size-width-350 {
    width: 350px;
    height: auto; }
  .wp-caption img {
    max-width: 100%; }
  .wp-caption .wp-caption-text {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 20px;
    font-family: caption;
    font-style: italic;
    display: block;
    width: 100%;
    bottom: 20px;
    left: 20px; }

.x-blockquote {
  position: relative;
  margin: 30px 0;
  background: #f5f5f5 none repeat scroll 0 0;
  border: medium none;
  border-radius: 1px;
  color: #737373;
  font-family: caption;
  font-size: 20px;
  font-style: italic;
  line-height: 32px;
  padding: 30px 30px 30px 77px;
  text-align: justify;
  /* author-description */ }
  .x-blockquote:after {
    content: '\f10d';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 1;
    font-size: 30px;
    color: #dedede; }
  .x-blockquote .x-cite {
    display: block; }
  .x-blockquote.right-text .x-cite {
    text-align: right;
    color: #24ca24; }
  .x-blockquote.center-text {
    text-align: center; }
  .x-blockquote.center-text .x-cite {
    text-align: center; }

.author-description {
  position: relative;
  border-radius: 1px;
  margin: 50px 0 0;
  padding: 25px;
  text-align: center;
  /* single-entry-header */ }
  .author-description:before {
    content: "";
    width: 1px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: -40px;
    background: #e9e9e9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }
  .author-description:after {
    content: "";
    display: block;
    clear: both; }
  .author-description .author-image {
    display: block;
    width: 85px;
    margin: 0 auto;
    margin-bottom: 10px; }
  .author-description .author-image img.avatar {
    width: 100%;
    height: auto; }
  .author-description .author-text {
    display: block; }
  .author-description .author-text .author-name {
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline; }
  .author-description .author-text .author-name a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none; }
  .author-description .author-text > p {
    color: #555;
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 0;
    margin-top: 10px; }

.single-entry-header {
  margin-bottom: 30px;
  /* single-entry-tag */ }
  .single-entry-header .post-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 6px; }
  .single-entry-header .post-image {
    margin-top: 20px; }
  .single-entry-header .post-image .post-single-image {
    max-width: 100%;
    height: auto; }
  .single-entry-header .post-block-quote-wrap {
    margin-top: 20px;
    padding: 50px 20px;
    position: relative; }
  .single-entry-header .post-block-quote-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8); }
  .single-entry-header .post-block-quote-wrap i.fa-quote-left {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3; }
  .single-entry-header .post-block-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px; }
  .single-entry-header .post-block-quote-wrap .post-quote-wrap .post-quote {
    border-left: medium none;
    color: #fff;
    font-family: caption;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
    padding: 0;
    text-align: justify; }
  .single-entry-header .post-block-link-wrap {
    margin-top: 20px;
    padding: 50px 20px;
    position: relative; }
  .single-entry-header .post-block-link-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8); }
  .single-entry-header .post-block-link-wrap i.fa-link {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3; }
  .single-entry-header .post-block-link-wrap .post-link-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px;
    text-align: center; }
  .single-entry-header .post-block-link-wrap .post-link-wrap .post-link {
    text-decoration: underline;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .single-entry-header .post-block-audio-wrap {
    margin-top: 20px; }
  .single-entry-header .post-gallery-image-wrap {
    margin-top: 20px; }
  .single-entry-header .post-gallery-image-wrap .post-gallery-wrap .item .post-single-image {
    height: auto;
    width: 100%; }
  .single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item {
    padding: 15px;
    border: solid 1px #e9e9e9;
    background: #fff;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item img {
    width: 100%; }
  .single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item:hover {
    border-color: #24ca24; }
  .single-entry-header .post-block-video-wrap {
    margin-top: 20px; }
  .single-entry-header .post-block-video-wrap .post-video-wrap {
    position: relative;
    padding-bottom: 56%; }
  .single-entry-header .post-block-video-wrap .post-video-wrap > * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .single-entry-header .extra-meta > div {
    display: inline-block;
    vertical-align: top;
    position: relative;
    line-height: 26px; }
  .single-entry-header .extra-meta > div:after {
    content: "";
    display: block;
    clear: both; }
  .single-entry-header .extra-meta > div:not(:last-child) {
    margin-right: 30px; }
  .single-entry-header .extra-meta > div i {
    float: left;
    margin-right: 10px;
    color: #24ca24;
    line-height: 26px; }
  .single-entry-header .extra-meta > div.post-cat .post-categories {
    padding-left: 28px; }
    .single-entry-header .extra-meta > div.post-cat .post-categories li {
      list-style: none;
      display: inline-block;
      vertical-align: top; }
    .single-entry-header .extra-meta > div.post-cat .post-categories li:not(:last-child) a:after {
      content: ",";
      color: #333; }
    .single-entry-header .extra-meta > div.post-cat .post-categories li a {
      color: #555;
      display: block;
      text-decoration: none;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .single-entry-header .extra-meta > div.post-cat .post-categories li a:hover {
      color: #20b420; }

.single-entry-tag {
  margin-top: 30px;
  /* bt-wrap-related-article */ }
  .single-entry-tag > a {
    margin-bottom: 15px;
    margin-left: 15px;
    padding: 5px 10px;
    line-height: normal;
    border: solid 1px #24ca24;
    display: inline-block;
    vertical-align: top;
    border-radius: 1px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .single-entry-tag > a:hover {
    background: #24ca24;
    color: #fff; }

.bt-wrap-related-article {
  margin-top: 45px;
  /* single-blog-post-navigation */ }
  .bt-wrap-related-article.bt-related-articles-1 .bt-title-related {
    margin: 0 0 20px 0;
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    text-decoration: underline; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list {
    margin-top: 20px; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9e9e9;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item img.post-single-image {
    width: 100%;
    height: auto !important;
    border-radius: 1px;
    margin-bottom: 28px; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link {
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link .post-title {
      font-size: 18px;
      line-height: 22px;
      margin: 0 0 15px 0; }
    .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link:hover {
      color: #24ca24;
      text-decoration: none; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item p {
    margin-bottom: 0; }
  .bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item:hover {
    border-color: rgba(36, 202, 36, 0.4); }

.single-blog-post-navigation {
  margin-top: 40px;
  display: table;
  width: 100%; }
  .single-blog-post-navigation > a {
    display: table-cell;
    width: 50%;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #999; }
  .single-blog-post-navigation > a[rel="next"] {
    text-align: right; }
  .single-blog-post-navigation > a .btn {
    background: #24ca24;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .single-blog-post-navigation > a:hover {
    color: #24ca24; }
  .single-blog-post-navigation > a:hover .btn {
    background: #20b420; }
  .single-blog-post-navigation .pv-left i {
    margin-right: 6px; }
  .single-blog-post-navigation .pv-right i {
    margin-left: 6px; }

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

.bt-col-inner.blog-2 {
  max-width: 700px;
  margin: 0 auto; }

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra {
  margin-bottom: 30px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap {
    position: relative;
    overflow: hidden; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ {
    position: relative;
    width: 100%;
    height: 100%; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ .icon-zoom {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    font-size: 23px;
    line-height: 37px;
    font-family: caption;
    font-style: italic; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap a {
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap a:hover {
      color: #24ca24; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap:before {
    content: "\f0c1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: block;
    width: 100%;
    text-align: center;
    color: #000; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap:before {
    content: "\f10d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: block;
    width: 100%;
    text-align: center;
    color: #000; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap .post-quote {
    padding: 0;
    border: none;
    font-size: 23px;
    line-height: 37px;
    font-family: caption;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    color: #000; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap .post-cite-wrap {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .audio-type-embed {
    line-height: 0; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap {
    border-radius: 3px;
    box-shadow: 0 0 22px -1px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap.video-type-embed {
    position: relative;
    padding-bottom: 56%; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap.video-type-embed > iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra + .followscreen-shadow {
    margin-bottom: 30px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active {
    margin-bottom: 0; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active .post-video-wrap.video-type-embed {
    padding: 0;
    line-height: 0; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active .post-video-wrap.video-type-embed > iframe {
      position: relative; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header {
    position: relative;
    margin-bottom: 25px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap {
    position: relative;
    z-index: 3;
    color: #4a4a4a; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta {
    display: block; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category {
      display: inline-block;
      position: relative; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category a {
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #24ca24;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .post-title {
    color: #4a4a4a;
    font-size: 40px;
    line-height: 44px;
    margin: 15px 0 20px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta {
    margin-top: 10px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div {
      color: #4a4a4a;
      display: inline-block;
      font-size: 13px;
      line-height: 24px;
      margin-bottom: 5px;
      text-transform: uppercase;
      vertical-align: top; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div:not(:last-child) {
      margin-right: 12px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div i {
      margin-right: 4px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div a {
      -webkit-transition: 0.3s;
      transition: 0.3s;
      text-decoration: none; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div .__icon {
      width: 16px;
      margin-right: 6px;
      display: inline-block;
      position: relative;
      top: 2px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta > div .__icon svg {
      width: 100%;
      height: auto;
      stroke: #24ca24; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-sing-image-background {
    left: 0;
    top: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    margin-bottom: 25px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text iframe {
    width: 100%; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text a {
    border-bottom: 1px solid #24ca24;
    color: #24ca24;
    padding-bottom: 2px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text a:hover {
    text-decoration: none; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ul, body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ol {
    padding-left: 0px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ol li {
    list-style: none;
    margin-bottom: 0.75em;
    counter-increment: item-counter;
    position: relative;
    padding-left: 38px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ol li:before {
      content: counter(item-counter) ". ";
      position: absolute;
      left: 0;
      top: 0;
      margin-right: 14px;
      text-align: right;
      color: #24ca24; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ul li {
    position: relative;
    list-style: none;
    padding-left: 38px;
    margin-bottom: 0.75em; }
    body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ul li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 24px;
      height: 1px;
      background: #24ca24;
      min-width: 24px;
      margin-top: 0.78em;
      margin-right: 14px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .wp-block-quote {
    border-left: 1px solid #24ca24; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .wp-block-quote > p {
    margin-bottom: 0px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text > h5 {
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    color: #000; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text > h3 {
    font-size: 25px;
    line-height: 38px;
    font-weight: 700; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text > h4 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text > p:first-child:first-letter {
    border: 2px solid;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin: 0 22px 0 0;
    padding: 26px 20px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text p, body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ul, body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ol {
    margin-bottom: 30px; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote {
    padding: 30px 0 2px;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #000;
    background: none; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote:after {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 18px;
    color: #000; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote .x-cite {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: normal;
    color: #999; }
  body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .single-entry-tag {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase; }
  body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share {
    width: 80px;
    height: 80px;
    max-width: 100%;
    position: relative;
    display: block;
    border: solid #eceeef;
    border-width: 0 1px 1px 1px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share:first-child {
      border-top-width: 1px; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i:before {
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 16px;
      color: #222;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-facebook-square:before {
      content: "\f09a"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-twitter-square:before {
      content: "\f099"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-google-plus-square:before {
      content: "\f0d5"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-linkedin-square:before {
      content: "\f0e1"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-pinterest-square:before {
      content: "\f0d2"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-reddit-square:before {
      content: "\f1a1"; }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-envelope-square:before {
      content: "\f0e0"; }
  @media (max-width: 991px) {
        body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options {
          text-align: center; }
          body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share {
            display: inline-block;
            vertical-align: top;
            width: 50px;
            height: 50px;
            border-width: 1px 1px 1px 0;
            margin-bottom: 30px; }
            body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share:first-child {
              border-left-width: 1px; } }
  body.single .post-single-creative-layout-blog-2 .pp-share-post {
    display: inline-flex;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1efef;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 1px; }
  body.single .post-single-creative-layout-blog-2 .pp-share-post .label {
    color: #989898;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px; }
  body.single .post-single-creative-layout-blog-2 .pp-share-post .share-post-wrap {
    border-left: solid 1px #ede7e7;
    padding: 8px 14px; }
  body.single .post-single-creative-layout-blog-2 .pp-share-post .share-post-wrap .share-post-item {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    background: #24ca24;
    color: #fff;
    margin-right: 5px; }
  body.single .post-single-creative-layout-blog-2 .pp-share-post .share-post-wrap .share-post-item span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }

.class .noo-sidebar .single-sidebar h4.widget-title {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 6px; }
  .class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada; }
    .class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix i {
      color: #24ca24;
      padding-right: 8px; }
    .class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix span {
      float: right;
      color: #24ca24;
      padding: 0 8px;
      -webkit-border-radius: 12px;
      border-radius: 12px;
      background: #f4f4f4;
      margin-left: 5px; }
  .class .noo-sidebar .single-sidebar ul.bt-social {
    margin: 30px 0 30px;
    padding: 0; }
  .class .noo-sidebar .single-sidebar ul.bt-social li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0; }
    .class .noo-sidebar .single-sidebar ul.bt-social li a {
      font-size: 20px;
      color: #4e4e4e; }
    .class .noo-sidebar .single-sidebar ul.bt-social li a:after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 1px;
      height: 10px;
      background: #b6b6b6;
      margin: 0 6px 3px; }
  .class .noo-sidebar ul.bt-blogtv-class {
    padding: 10px;
    margin: 25px 0;
    list-style-type: none;
    background: #f4f4f4; }
  .class .noo-sidebar ul.bt-blogtv-class li {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada; }
  .class .noo-sidebar ul.bt-blogtv-class li i {
    color: #24ca24;
    padding-right: 8px; }
  .class .noo-sidebar ul.bt-blogtv-class li:last-child {
    border-bottom: none; }

.service-p .bt-title-p {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 30px;
  float: left;
  text-transform: uppercase;
  width: 100%;
  position: relative; }
  .service-p .bt-title-p span {
    background: #fff;
    float: left;
    padding: 0 20px 0 0;
    position: relative;
    z-index: 1; }
  .service-p .bt-title-p:after {
    border-top: 1px solid #d9d9d9;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: calc(100% - 30px);
    z-index: 0; }
  .service-p .noo-sidebar .single-sidebar h4.widget-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 6px; }
  .service-p .noo-sidebar .single-sidebar .service-info-sidebar .img-featured {
    margin-bottom: 30px; }
    .service-p .noo-sidebar .single-sidebar .service-info-sidebar .img-featured img {
      width: 100%; }
  .service-p .noo-sidebar .single-sidebar .service-info-sidebar .clearfix {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada; }
    .service-p .noo-sidebar .single-sidebar .service-info-sidebar .clearfix i {
      color: #24ca24;
      padding-right: 8px; }
    .service-p .noo-sidebar .single-sidebar .service-info-sidebar .clearfix span {
      float: right;
      color: #24ca24;
      padding: 0 8px;
      -webkit-border-radius: 12px;
      border-radius: 12px;
      background: #f4f4f4;
      margin-left: 5px; }
  .service-p .noo-sidebar .single-sidebar .bt-book-a {
    background: #24ca24;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 30px; }
  .service-p .noo-sidebar .single-sidebar .bt-book-a a {
    color: #fff;
    font-size: 17px; }
  .service-p .noo-sidebar ul.bt-blogtv-class {
    padding: 10px;
    margin: 25px 0;
    list-style-type: none;
    background: #f4f4f4; }
  .service-p .noo-sidebar ul.bt-blogtv-class li {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada; }
  .service-p .noo-sidebar ul.bt-blogtv-class li i {
    color: #24ca24;
    padding-right: 8px; }
  .service-p .noo-sidebar ul.bt-blogtv-class li:last-child {
    border-bottom: none; }

.bt-team-article > article .bt-social > li:last-child:after {
  display: none; }

.pp-blog-container > .vn-row {
  display: block !important; }

.pp-single-blog-common {
  width: 660px;
  max-width: 100%;
  margin: 0 auto; }
  .pp-single-blog-common .post-heading .in-cats {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.4em; }
  @media (max-width: 425px) {
      .pp-single-blog-common .post-heading .in-cats {
        margin-bottom: 8px; } }
  .pp-single-blog-common .post-heading .in-cats a {
    text-decoration: none;
    border-bottom: none;
    color: #24ca24;
    font-size: 0.9em; }
  .pp-single-blog-common .post-heading .title {
    font-size: 2.5em;
    line-height: 1.1em;
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 16px; }
  @media (max-width: 425px) {
      .pp-single-blog-common .post-heading .title {
        font-size: 32px; } }
  .pp-single-blog-common .post-heading .post-meta {
    display: flex;
    flex-wrap: wrap;
    color: #888;
    line-height: 1.4em;
    margin-bottom: 30px;
    font-size: 14px; }
  .pp-single-blog-common .post-heading .post-meta > *:not(:last-child) {
    margin-right: 15px; }
  .pp-single-blog-common .post-heading .post-meta .reading-time {
    display: flex;
    align-items: center; }
  .pp-single-blog-common .post-heading .post-meta .reading-time .__icon {
    width: 16px;
    margin-right: 6px; }
    .pp-single-blog-common .post-heading .post-meta .reading-time .__icon svg {
      width: 100%;
      height: auto; }
  .pp-single-blog-common .post-heading .post-thumb {
    width: 100%;
    height: auto;
    border-radius: 1px;
    margin-bottom: 30px; }
  @media (max-width: 425px) {
      .pp-single-blog-common .post-heading .post-thumb {
        margin-bottom: calc(24px - 1px); } }
  .pp-single-blog-common .post-content {
    font-size: 16px;
    line-height: 1.5em;
    color: #5c5c5c;
    margin-bottom: 45px;
    word-break: break-word; }
  @media (max-width: 768px) {
    .pp-single-blog-common .post-content {
      font-size: 14px; } }
  .pp-single-blog-common .post-content p {
    margin-bottom: 1.5em; }
  .pp-single-blog-common .post-content .wp-block-quote {
    color: #898989;
    border-left: solid 1px #df8097;
    margin-left: 0;
    padding-left: 2.2em;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.5em; }
  @media (max-width: 425px) {
      .pp-single-blog-common .post-content .wp-block-quote {
        padding-left: 24px; } }

.pp-share-post {
  display: inline-flex;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1efef;
  background: #fff;
  margin-bottom: 40px;
  border-radius: 1px; }
  @media (max-width: 425px) {
  .pp-share-post {
    margin-bottom: 24px; } }
  .pp-share-post a {
    border-bottom: none; }
  .pp-share-post .label {
    color: #989898;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px; }
  .pp-share-post .label + .share-items {
    border-left: solid 1px #ede7e7; }
  .pp-share-post > * {
    padding: 8px 14px; }
  .pp-share-post .share-items {
    display: flex; }
  .pp-share-post .share-items .s-item {
    width: 30px; }
  .pp-share-post .share-items .s-item svg {
    width: 100%;
    height: auto;
    fill: #24ca24;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
  .pp-share-post .share-items .s-item:not(:last-child) {
    margin-right: 10px; }
  .pp-share-post .share-items .s-item:hover svg {
    fill: #2eda2e; }

.single-post .post-content ul {
  margin-left: 0;
  padding: 0; }
  .single-post .post-content ul li {
    position: relative;
    list-style: none;
    padding-left: 38px;
    margin-bottom: 0.75em; }
  @media (max-width: 425px) {
        .single-post .post-content ul li {
          padding-left: 24px; } }
  .single-post .post-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 1px;
    background: #df8097;
    min-width: 24px;
    margin-top: 0.78em;
    margin-right: 14px; }
    @media (max-width: 425px) {
        .single-post .post-content ul li:before {
          width: 12px;
          min-width: 12px; } }
  .single-post .post-content ol {
    margin-left: 0;
    padding: 0;
    counter-reset: item-counter; }
  .single-post .post-content ol li {
    list-style: none;
    margin-bottom: 0.75em;
    counter-increment: item-counter;
    position: relative;
    padding-left: 38px; }
  @media (max-width: 425px) {
        .single-post .post-content ol li {
          padding-left: 24px; } }
  .single-post .post-content ol li:before {
    content: counter(item-counter) ". ";
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 14px;
    text-align: right;
    color: #24ca24; }

.table-of-content--container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease; }
  @media (max-width: 1019px) {
  .table-of-content--container {
    padding: 0 15px; } }
  .table-of-content--container .toc--inner {
    margin: 0 auto;
    padding: 16px 0;
    max-width: 100%; }
  .table-of-content--container .toc--inner select {
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    background: no-repeat;
    font-size: 16px;
    border: none;
    line-height: normal;
    font-weight: 600;
    color: #4f4f4f;
    width: auto;
    min-width: auto;
    outline: none;
    box-shadow: none;
    padding-right: 20px;
    background: url('../images/arrow-down-icon.png') no-repeat;
    background-position: 100% center;
    background-size: 14px;
    max-width: calc(100% - 100px); }
  .table-of-content--container .toc--inner select option {
    width: 0; }
  .table-of-content--container .toc--inner select option:hover {
    width: auto; }
  .table-of-content--container .toc--inner .shadow-text {
    display: inline-block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    left: 0;
    top: 0; }
  .table-of-content--container .toc--inner .__nav {
    display: flex;
    margin: 0 -8px;
    padding: 0;
    margin-bottom: 16px; }
  .table-of-content--container .toc--inner .__nav > li {
    padding: 0 8px;
    box-sizing: border-box;
    list-style: none;
    width: 100%; }
  .table-of-content--container .toc--inner .__nav > li span {
    display: block;
    padding: 2px;
    background: #8e8e8e;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    border-radius: 1px; }
  .table-of-content--container .toc--inner .__nav > li.__active ~ li span {
    background: #ececec; }

.cot-trigger-sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 0px;
  background: red; }

body.table_of_content--show .table-of-content--container {
  visibility: visible;
  opacity: 1; }

.admin-bar .table-of-content--container {
  top: 32px; }
  @media (max-width: 425px) {
    .admin-bar .table-of-content--container {
      top: 0; } }

.post-list-type-blog-1 {
  /* listing */ }

.post-list-type-blog-2 {
  /* single */ }
  body.single .bt-content-area .bt-col-inner {
    z-index: 20px; }
  @media (max-width: 425px) {
  .pp-blog-container {
    margin-top: 25px; } }
  .pp-blog-container > .pp-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important; }
  .pp-blog-container .pp-newsletter-block-container {
    width: calc(100% - 30px);
    margin-left: 15px; }
  .pp-blog-container .entry-posts {
    margin-right: 30px; }
  @media (max-width: 1019px) {
    .pp-blog-container .entry-posts {
      width: 100%;
      margin-bottom: 32px; } }
  .pp-blog-container .entry-posts .entry-posts--inner .archive-post-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    margin-bottom: 16px;
    color: #24ca24;
    letter-spacing: 1px;
    margin-top: 0; }
  .pp-blog-container .entry-posts .entry-posts--inner .post-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; }
  .pp-blog-container .entry-posts .entry-posts--inner .__loading {
    text-align: center; }
  .pp-blog-container .entry-posts .entry-posts--inner .__loading .pp-loading-bg {
    width: 100px;
    height: 60px;
    margin: 0 auto;
    background: url('../images/loading.gif') no-repeat center center;
    background-size: 100%; }
  .pp-blog-container .entry-posts .entry-posts--inner .more-posts {
    text-align: center;
    position: relative; }
  .pp-blog-container .entry-posts .entry-posts--inner .more-posts a {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8em;
    width: 220px;
    text-align: center;
    max-width: 100%; }
    @media (max-width: 425px) {
        .pp-blog-container .entry-posts .entry-posts--inner .more-posts a {
          width: 100% !important; } }
  .pp-blog-container .entry-posts .entry-posts--inner .post-item {
    padding: 0 15px;
    box-sizing: border-box;
    width: calc(100% / 2);
    margin-bottom: 45px; }
  .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-1 {
    width: 100%; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-1 .post-entry .title {
      font-size: 2em !important; }
    @media (max-width: 425px) {
            .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-1 .post-entry .title {
              font-size: 1.5em !important; } }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-1 ~ .post-item .post-item--inner .post-entry .post-excerpt {
      font-size: 14px;
      line-height: 1.5em; }
  @media (max-width: 1019px) {
          .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-2, .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 {
            width: 100%; } }
  .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item {
    width: 100%;
    display: flex; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner {
      width: 100%;
      display: flex;
      justify-content: space-between;
      flex-direction: row-reverse; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-thumb {
      width: 200px; }
    @media (max-width: 1090px) {
              .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-thumb {
                width: 100px; } }
    @media (max-width: 1090px) {
                .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-thumb .preview-image {
                  padding-bottom: 100%;
                  height: auto; } }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-entry {
      width: calc(100% - 220px); }
    @media (max-width: 1090px) {
              .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-entry {
                width: calc(100% - 120px); }
                .pp-blog-container .entry-posts .entry-posts--inner .post-item.nth-post-3 ~ .post-item .post-item--inner .post-entry .post-excerpt {
                  display: none; } }
  .pp-blog-container .entry-posts .entry-posts--inner .post-item a {
    text-decoration: none;
    border-bottom: none; }
  .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-thumb {
    display: block;
    margin-bottom: 15px;
    position: relative; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-thumb img {
      width: 100%;
      height: auto;
      border-radius: 1px; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-thumb .preview-image {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      border-radius: 1px; }
    @media (max-width: 768px) {
          .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry {
            font-size: 0.9em; } }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .in-cats {
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 10px;
      font-size: 0.75em;
      line-height: normal; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .title {
      margin-bottom: 12px;
      font-size: 1.25em; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .title a {
      color: #4a4a4a;
      line-height: normal;
      font-weight: 600; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-excerpt {
      color: #888;
      margin-bottom: 12px; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-meta {
      display: flex;
      flex-wrap: wrap;
      color: #888;
      line-height: 1.4em;
      font-size: 0.88em; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-meta > *:not(:last-child) {
      margin-right: 15px; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-meta .reading-time {
      display: flex;
      align-items: center; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-meta .reading-time .__icon {
      width: 16px;
      margin-right: 6px; }
    .pp-blog-container .entry-posts .entry-posts--inner .post-item .post-item--inner .post-entry .post-meta .reading-time .__icon svg {
      width: 100%;
      height: auto;
      stroke: #24ca24; }

.pp-mobile-search-form {
  display: none;
  margin-bottom: 45px; }
  @media (max-width: 1019px) {
  .pp-mobile-search-form {
    display: block; } }

.portfolio-filter-wrap {
  margin-bottom: 30px;
  text-align: center;
  /* Portfolio Listing */ }
  .portfolio-filter-wrap .portfolio-filter-item {
    border: 1px solid #ececec;
    border-radius: 3px;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 4px 20px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .portfolio-filter-wrap .portfolio-filter-item.is-active {
    background: #24ca24 none repeat scroll 0 0;
    border-color: #24ca24;
    color: #fff; }
  .portfolio-filter-wrap .portfolio-filter-item:not(:last-child) {
    margin-right: 20px; }
  .portfolio-filter-wrap .portfolio-filter-item:hover {
    border-color: #24ca24; }

.portfolio-list {
  /* Portfolio Single */ }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner {
    background: #fff;
    border: solid 0.5px rgba(36, 202, 36, 0.5);
    border-radius: 3px;
    overflow: hidden; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap {
    position: relative; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap .post-single-image {
    width: 100%;
    height: auto; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap .zoom-image {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:hover:after {
    visibility: visible;
    opacity: 1; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:hover .zoom-image {
      visibility: visible;
      opacity: 1;
      top: 50%; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap {
    padding: 20px 30px 30px; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link {
    text-decoration: none; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link .portfolio-title {
      font-size: 20px;
      line-height: 24px;
      letter-spacing: -1.2px;
      margin: 10px 0;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link:hover .portfolio-title {
      color: #24ca24; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-content {
    color: #aeaeae;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    width: 100%; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-content:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30%;
      height: 1px;
      background: #dedede; }
  .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail > * {
      display: table-cell;
      vertical-align: middle;
      line-height: normal; }
    .portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail > div {
      padding-right: 8px; }
    .single-fw-portfolio .portfolio-details .gallery-wrap {
      margin-bottom: 30px; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .title {
    margin: 0;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -2px; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta {
    display: block;
    border: solid #f1f1f1;
    border-width: 1px 0;
    font-size: 12px;
    letter-spacing: 2px;
    margin: 20px 0;
    padding: 14px 0;
    text-transform: uppercase; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta > div {
    display: inline-block;
    vertical-align: top; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta > div:not(:first-child) {
      margin-left: 10px; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .entry-the-content > p:first-child:first-letter {
    border: 2px solid;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin: 10px 20px 10px 0;
    padding: 20px;
    vertical-align: top; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry {
    margin-top: 30px;
    padding-top: 30px;
    border-top: solid 1px #f1f1f1; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item {
    background: #333 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 54px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-facebook {
      background: #3b5998; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-facebook:hover {
      background: #344e86; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-twitter {
      background: #1da1f2; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-twitter:hover {
      background: #0d95e8; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-google-plus {
      background: #dc4a38; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-google-plus:hover {
      background: #d53925; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-linkedin {
      background: #0077b5; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .social-share-entry .share-post-wrap .share-post-item.s-linkedin:hover {
      background: #00669c; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link {
    margin: 30px 0;
    display: block;
    width: 100%;
    position: relative;
    padding: 20px;
    border: solid 1px #f1f1f1; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link:after {
    content: "";
    display: block;
    clear: both; }
  .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li {
    list-style: none;
    float: left;
    width: 50%;
    position: relative;
    min-height: 80px; }
    @media (max-width: 545px) {
        .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li {
          width: 100%; } }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li .icon {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li .icon span {
      font-size: 20px;
      vertical-align: middle;
      margin: 0 4px; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li .title {
      font-size: 18px;
      line-height: 22px; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li a {
      text-decoration: none; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.previous {
      text-align: left; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.previous > a > img {
      position: absolute;
      left: 0;
      top: 0; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.previous > a > div {
      padding-left: 90px; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.next {
      text-align: right; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.next > a > img {
      position: absolute;
      right: 0;
      top: 0; }
    .single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.next > a > div {
      padding-right: 90px; }

.post-event-details .event-heading {
  margin-bottom: 15px;
  padding-bottom: 15px; }
  .post-event-details .event-heading .event-post-thumb {
    text-align: center;
    background: #333;
    position: relative; }
  .post-event-details .event-heading .event-post-thumb img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 3; }
  .post-event-details .event-heading .entry-heading-text {
    background: #fff none repeat scroll 0 0;
    margin-left: 30px;
    margin-top: -50px;
    padding: 20px;
    position: relative;
    text-align: center;
    width: calc(100% - 60px);
    z-index: 4; }
  .post-event-details .event-heading .entry-heading-text .event-cat-list {
    letter-spacing: 2px;
    font-size: 11px;
    text-transform: uppercase; }
  .post-event-details .event-heading .entry-heading-text .event-cat-list a {
    color: #333;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .post-event-details .event-heading .entry-heading-text .event-cat-list a:hover {
      color: #24ca24; }
  .post-event-details .event-heading .entry-heading-text .title {
    max-width: 100%;
    width: 500px;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -1px;
    margin: 0 auto 10px auto; }
  .post-event-details .event-extra-meta {
    padding: 30px;
    border: solid 0.5px #d1d1d1;
    background: #fff;
    margin-bottom: 30px; }
  .post-event-details .event-extra-meta .details-event {
    margin: 0; }
  .post-event-details .event-extra-meta .details-event:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: solid 1px #f1f1f1; }
  .post-event-details .event-extra-meta .details-event li {
    font-size: 15.5px; }
  .post-event-details .event-extra-meta .details-event li b {
    display: inline-block;
    width: 80px; }
  .post-event-details .event-extra-meta .details-event-button {
    margin-right: 0; }
  .post-event-details .event-extra-meta .details-event-button .btn {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #24ca24;
    color: #fff;
    border: none;
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 1px; }
  .post-event-details .event-extra-meta .details-event-button .btn:hover {
    background: #1c9f1c; }
  .post-event-details .event-content blockquote {
    font-weight: bold;
    margin: 40px 0; }
  .post-event-details .event-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0; }
  .post-event-details .map-location-wrap {
    margin-bottom: 30px; }
  .post-event-details .map-location-wrap .fw-map {
    margin-bottom: 0; }
  .post-event-details .location-info {
    margin-bottom: 10px; }
  .post-event-details .location-info i {
    margin-right: 4px; }
  .post-event-details .fw-map {
    margin-bottom: 30px; }
  .post-event-details .fw-map .fw-map-canvas {
    height: 40vh !important; }
  .post-event-details .event-sharing {
    margin: 40px 0 20px;
    padding: 14px 0;
    border-top: solid 1px #f1f1f1;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase; }
  .post-event-details .event-sharing .share-post-wrap {
    display: inline-block;
    margin-left: 8px; }
  .post-event-details .event-sharing .share-post-wrap > a {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px; }
  .post-event-details .event-sharing .x-entry-share {
    display: inline-block;
    vertical-align: bottom; }
  .post-event-details .event-sharing .x-entry-share > p {
    margin: 0;
    display: none; }
  .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 20px; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i:before {
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 12px;
      color: #222;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-facebook-square:before {
      content: "\f09a"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-twitter-square:before {
      content: "\f099"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-google-plus-square:before {
      content: "\f0d5"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-linkedin-square:before {
      content: "\f0e1"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-pinterest-square:before {
      content: "\f0d2"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-reddit-square:before {
      content: "\f1a1"; }
    .post-event-details .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-envelope-square:before {
      content: "\f0e0"; }

.event-booking-form-wrap {
  margin-bottom: 30px;
  border: 0.5px solid #e9e9e9;
  padding: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .event-booking-form-wrap .heading-bpooking-form {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #f1f1f1; }
  .event-booking-form-wrap .heading-bpooking-form .title {
    font-size: 22px;
    letter-spacing: 26px;
    letter-spacing: -1.5px;
    margin: 0; }
  .event-booking-form-wrap form .btn {
    background: #24ca24;
    letter-spacing: 2px;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 8px 21px; }
  .event-booking-form-wrap form .btn:hover {
    background: #1c9f1c; }
  .event-booking-form-wrap form .form-group {
    display: block; }
  .event-booking-form-wrap form .form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase; }
  .event-booking-form-wrap form .form-group label .optional {
    letter-spacing: 0;
    text-transform: none;
    font-family: caption;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    color: #999; }
  .event-booking-form-wrap form .form-group input[type="text"], .event-booking-form-wrap form .form-group input[type="email"], .event-booking-form-wrap form .form-group input[type="number"], .event-booking-form-wrap form .form-group select, .event-booking-form-wrap form .form-group textarea {
    display: block;
    width: 100%;
    margin: 4px 0 10px 0;
    padding: 6px 10px;
    border-radius: 3px !important; }
  .event-booking-form-wrap form .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 9px 10px;
    background: url('../images/arrow-down-icon.png') no-repeat calc(100% - 10px) 50%;
    background-size: 10px; }
  .event-booking-form-wrap form .event-note {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #f1f1f1; }
  .event-booking-form-wrap form .space-user-book {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    padding: 9px 0; }
  .event-booking-form-wrap form .event-price {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    padding-bottom: 20px; }
  .event-booking-form-wrap form .event-price label {
    margin: 0; }
  .event-booking-form-wrap form .event-price .amount {
    float: right; }

.table-event-ext tbody th, .table-event-ext tbody td {
  width: 50%;
  text-align: left; }

@-webkit-keyframes event_showSweetAlert {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes event_showSweetAlert {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

.sweet-alert {
  /* event listing */ }
  .sweet-alert.fw-ext-event-booking {
    position: fixed;
    margin: 0 !important;
    width: 500px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    overflow: auto; }
  .sweet-alert.fw-ext-event-booking.showSweetAlert {
    animation: 0.3s event_showSweetAlert ease;
    -webkit-animation: 0.3s event_showSweetAlert ease; }
  .sweet-alert.fw-ext-event-booking .event-payment-method-box h4 {
    letter-spacing: -1.5px;
    font-size: 18px;
    line-height: 22px; }
  .sweet-alert.fw-ext-event-booking .event-payment-method-box .payment-list-wrap {
    margin-top: 10px; }
  .sweet-alert.fw-ext-event-booking .event-payment-method-box label {
    font-weight: normal;
    display: inline-block;
    margin: 2px 6px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 1px; }
  .sweet-alert.fw-ext-event-booking .event-payment-method-box label input {
    display: inline-block; }
    .sweet-alert.fw-ext-event-booking .event-payment-method-box label input[type="radio"] {
      height: auto;
      line-height: normal;
      margin: 0 4px 0 0;
      padding: 0;
      vertical-align: middle;
      width: 18px; }
  .sweet-alert.fw-ext-event-booking .event-payment-method-box label img {
    height: 30px;
    width: auto; }

.event-list .event-list-type-loop-default.event-item .event-inner {
  background: #fff;
  border: solid 1px #f1f1f1;
  border-radius: 3px;
  overflow: hidden; }
  .event-list .event-list-type-loop-default.event-item .event-inner .event-featured-image-wrap {
    text-align: center;
    position: relative; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-featured-image-wrap .space-booking {
      background: #333;
      border-radius: 0 2px 2px 0;
      color: #fff;
      font-size: 11px;
      left: 0px;
      letter-spacing: 2px;
      line-height: normal;
      padding: 5px 8px;
      position: absolute;
      text-transform: uppercase;
      top: 10px; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-featured-image-wrap .space-booking span {
      display: inline-block; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-featured-image-wrap .post-single-image {
      margin: 0 auto;
      max-width: 100%;
      height: auto; }
  .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap {
    padding: 30px;
    text-align: center; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-venue, .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-start-date {
      color: #999;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-venue span, .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-start-date span {
      width: 14px;
      text-align: center;
      display: inline-block; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-title-link {
      text-decoration: none; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-title-link .event-title {
      font-size: 20px;
      line-height: 24px;
      letter-spacing: -1px;
      color: #111;
      margin: 10px 0 20px 0;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-title-link:hover .event-title {
      color: #24ca24; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-view-detail {
      background: #24ca24;
      color: #fff;
      display: inline-block;
      margin-top: 10px;
      font-size: 14px;
      padding: 6px 19px;
      border-radius: 3px;
      text-decoration: none;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-view-detail i {
      font-size: 18px;
      vertical-align: middle;
      margin-left: 4px; }
    .event-list .event-list-type-loop-default.event-item .event-inner .event-entry-wrap .event-view-detail:hover {
      background: #20b420; }

.single-give_forms .give_forms .single-give-thubnail .images {
  text-align: center;
  background: #333;
  text-align: center;
  border-radius: 3px;
  overflow: hidden; }
  .single-give_forms .give_forms .single-give-thubnail .images img {
    max-width: 100%; }
  .single-give_forms .give_forms .entry-summary {
    display: block;
    width: 100%;
    float: none;
    width: 100%; }
  .single-give_forms .give_forms .entry-summary .entry-title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
    margin-top: 30px; }
  .single-give_forms .give_forms .entry-summary .give-form-wrap {
    position: relative;
    margin-top: 30px;
    padding-top: 20px; }
  .single-give_forms .give_forms .entry-summary .give-form-wrap:after {
    content: "";
    position: absolute;
    width: 40%;
    border-top: solid 0.5px #24ca24;
    top: 0;
    left: 30%;
    z-index: 1; }
  .single-give_forms .give_forms .entry-summary .give-goal-progress {
    text-align: center;
    margin-bottom: 50px; }
  .single-give_forms .give_forms .entry-summary .give-goal-progress .raised .income {
    font-size: 150%; }
    .give-single-layout-style-2 .give_forms .give-single-heading {
      position: relative;
      padding: 28vh 0;
      min-height: 300px;
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 45px; }
  .give-single-layout-style-2 .give_forms .give-single-heading .heading-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .give-single-layout-style-2 .give_forms .give-single-heading .heading-background:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); }
  .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap {
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    display: table;
    z-index: 3; }
  .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap > * {
    display: table-cell;
    vertical-align: middle; }
  .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide {
    padding: 15px;
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4; }
    .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .owl-carousel {
      width: 100%;
      display: block;
      transition: translateZ(10px); }
    .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .item img {
      padding: 0px;
      border-radius: 50%; }
  .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar {
    cursor: pointer;
    width: 80px;
    position: relative; }
    .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar svg {
      position: relative;
      z-index: 3; }
  .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised {
    padding-left: 20px;
    color: #fff; }
    .give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised .income {
      font-size: 150%; }
  .give-single-layout-style-2 .give_forms .entry-container {
    position: relative;
    display: block; }
  .give-single-layout-style-2 .give_forms .entry-container:after {
    content: '';
    display: block;
    clear: both; }
  .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post {
    width: 100px;
    float: left; }
  .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post .share-post-wrap {
    margin-top: 16px; }
    .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post .share-post-wrap .share-post-item {
      display: block;
      width: 85px;
      height: 85px;
      position: relative;
      margin-bottom: 20px;
      border: solid 1px #e3e3e3; }
    .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post .share-post-wrap .share-post-item > span {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%); }
  .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap {
    /* fix goal */
    padding-left: 120px; }
  .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success {
    clear: none; }
  .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading {
    margin-bottom: 30px; }
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .title {
      font-size: 22px;
      line-height: 24px; }
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item {
      display: inline-block;
      margin-right: 20px;
      color: #999; }
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item.meta-donors {
      background: #24ca24;
      border-radius: 2px;
      color: #fff;
      font-size: 14px;
      line-height: normal;
      padding: 4px 10px; }
  .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap blockquote {
    margin: 30px 0;
    font-size: 20px;
    border-color: #24ca24;
    font-weight: bold; }
  @media (max-width: 560px) {
      .give-single-layout-style-2 .give_forms .entry-container {
        display: block;
        width: 100% !important; }
        .give-single-layout-style-2 .give_forms .entry-container > * {
          display: block;
          width: 100% !important; }
        .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post {
          text-align: center; }
          .give-single-layout-style-2 .give_forms .entry-container .give-social-share-post .share-post-item {
            display: inline-block !important;
            vertical-align: top;
            width: 54px !important;
            height: 45px !important;
            margin: 10px; }
        .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap {
          padding-left: 0 !important; } }

.give-form-navigation-link-wrap {
  display: table;
  margin: 50px 0;
  padding: 50px 0;
  border-top: solid 2px #f7f7f7;
  border-bottom: solid 2px #f7f7f7;
  width: 100%; }
  .give-form-navigation-link-wrap > * {
    display: table-cell; }
  .give-form-navigation-link-wrap a {
    text-align: right;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .give-form-navigation-link-wrap a.prev-link .btn-text, .give-form-navigation-link-wrap a.next-link .btn-text {
    background: #24ca24;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 4px 12px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .give-form-navigation-link-wrap a.prev-link .btn-text:hover, .give-form-navigation-link-wrap a.next-link .btn-text:hover {
    background: #20b420; }
  .give-form-navigation-link-wrap a.prev-link .btn-text span {
    margin-right: 10px; }
  .give-form-navigation-link-wrap a.next-link .btn-text span {
    margin-left: 10px; }
  .give-form-navigation-link-wrap a .title-text {
    font-weight: bold;
    font-size: 18px; }
  .give-form-navigation-link-wrap a:first-child {
    text-align: left; }

.give-form-donor-listing {
  padding: 0;
  margin: 0; }
  .give-form-donor-listing .item {
    list-style: none;
    display: table;
    width: 100%;
    margin-bottom: 20px; }
  .give-form-donor-listing .item > * {
    display: table-cell;
    vertical-align: middle; }
  .give-form-donor-listing .item .ava {
    margin-top: 8px;
    width: 50px;
    border-radius: 3px; }
  .give-form-donor-listing .item .donor-entry-wrap {
    padding-left: 20px;
    width: 100%; }
  .give-form-donor-listing .item .donor-entry-wrap .name {
    font-size: 18px; }
  .give-form-donor-listing .item .donor-entry-wrap .value {
    color: #999; }

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap {
  position: relative;
  border-radius: 3px 3px 0 0;
  overflow: hidden; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-thumbnail {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta {
    overflow: hidden;
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 1; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta > * {
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    opacity: 1; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta .entry-date {
    background: #24ca24;
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: normal;
    padding: 4px 8px;
    text-transform: uppercase; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01);
    transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01); }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form {
    margin: 0; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn {
    background: #24ca24;
    font-size: 11px;
    margin: 0;
    padding: 13px 18px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn:hover {
    background: #20b420;
    opacity: 1; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .5);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .extra-meta > * {
    transform: translateY(-140%);
    -webkit-transform: translateY(-140%);
    opacity: 0; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-thumbnail {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover:after {
    opacity: 1; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-display-button-only {
    top: 50%;
    opacity: 1;
    visibility: visible; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap {
    padding: 30px;
    border: solid #f5f5f5;
    border-width: 0 2px 2px;
    border-radius: 0 0 3px 3px; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link {
    text-decoration: none; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link .title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1.2px; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress {
    margin-bottom: 15px; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress .raised {
    margin: 0;
    font-size: 16px; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore {
    background: #24ca24;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    display: inline-block;
    margin-top: 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: none; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore span {
    font-size: 20px;
    margin-left: 4px;
    vertical-align: top; }
  .post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore:hover {
    background: #20b420; }

@keyframes give_open_modal_animate {
  from {
    opacity: 0;
    transform: translateY(-15%); }

  to {
    opacity: 1;
    transform: translateY(0px); } }

@-webkit-keyframes give_open_modal_animate {
  from {
    opacity: 0;
    -webkit-transform: translateY(-15%); }

  to {
    opacity: 1;
    -webkit-transform: translateY(0px); } }

.mfp-wrap.give-modal .mfp-content {
  width: 600px;
  max-width: 100%;
  animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77);
  -webkit-animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77); }
  .mfp-wrap.give-modal .mfp-content form.give-form {
    margin-top: 22px !important; }
  .mfp-wrap.give-modal .mfp-content form.give-form .give-form-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: center; }
  .mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress {
    text-align: center;
    margin-bottom: 50px; }
  .mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress .raised .income {
    font-size: 150%; }
  .give-btn {
    background: #24ca24;
    color: #ebebeb;
    border: medium none;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 13px 20px;
    text-transform: uppercase; }
  .give-btn:hover {
    background: #39bcdd;
    color: #fff;
    text-decoration: none; }

.give-button-donate.custom-give-button-donate form.give-form {
  margin: 0; }
  .give-button-donate.custom-give-button-donate form.give-form .give-btn {
    margin: 0;
    display: inline-block !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .give-button-donate.custom-give-button-donate form.give-form .give-btn:hover {
    background: #20b420; }
  .give-button-donate.custom-give-button-donate.give-btn-alignment-left form.give-form {
    text-align: left; }
  .give-button-donate.custom-give-button-donate.give-btn-alignment-right form.give-form {
    text-align: right; }
  .give-button-donate.custom-give-button-donate.give-btn-alignment-center form.give-form {
    text-align: center; }
  .give-button-donate.custom-give-button-donate.give-btn-style-rounded form.give-form .give-btn {
    border-radius: 4px; }
  .give-button-donate.custom-give-button-donate.give-btn-style-square form.give-form .give-btn {
    border-radius: 0px; }
  .give-button-donate.custom-give-button-donate.give-btn-style-circle form.give-form .give-btn {
    border-radius: 50px; }

.give-goal-progress {
  margin-bottom: 50px; }
  .give-goal-progress .raised .income {
    font-size: 150%; }
  .custom-give-goal-progress {
    margin-bottom: 30px;
    width: 100%; }
  .custom-give-goal-progress > .give-goal-progress {
    margin: 0; }
  .custom-give-goal-progress .progress-bar {
    box-shadow: none; }
  .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg {
    width: 100%; }
  .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar, .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    float: none; }
  .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative; }
  .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar svg {
    width: 100%; }
  .custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center; }
  .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg {
    width: 100%; }
  .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar, .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    float: none; }
  .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative; }
  .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar svg {
    width: 100%; }
  .custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg {
    width: 100%;
    display: table; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar, .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
    background: none;
    width: 52px;
    margin: 0 auto;
    position: relative; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    left: 50%;
    top: 50%;
    background: #333;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3; }
  .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px; }
  @media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
      width: 36px; }
      .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
        width: 36px;
        height: 36px; }
      .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
        width: 70%; }
      .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
        font-size: 13px;
        line-height: 18px; } }
  .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg {
    display: table; }
  .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar, .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none; }
  .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar {
    width: 60px;
    background: none !important; }
  .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px; }
  @media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
      font-size: 14px;
      line-height: 18px; } }
  .custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar {
    padding-top: 9px; }
  .custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar {
    display: block;
    width: 100%;
    background: #eee;
    border-radius: 5px; }
  .custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line {
    position: relative;
    height: 2px;
    border-radius: 5px; }
  .custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line .tick-progress {
    position: absolute;
    right: 0;
    top: 8px;
    transform: translate(50%, -100%);
    -webkit-transform: translate(50%, -100%);
    border: solid 9px transparent; }
  .custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .raised .income {
    font-size: 150%; }
  #give-login-form input[type="text"], #give-login-form input[type="password"] {
    padding: 2px 10px; }

.single-give_forms .give_forms .entry-summary form.give-form, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form, .mfp-wrap.give-modal .mfp-content form.give-form {
  display: block;
  width: 100%;
  max-width: 920px;
  padding: 40px 40px 25px 40px;
  background: #fafafa;
  margin: 0 auto;
  margin-top: 50px; }
  @media (max-width: 360px) {
  .single-give_forms .give_forms .entry-summary form.give-form, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form, .mfp-wrap.give-modal .mfp-content form.give-form {
    padding: 20px 20px 5px 20px; } }
  .single-give_forms .give_forms .entry-summary form.give-form:after, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form:after, .mfp-wrap.give-modal .mfp-content form.give-form:after {
    content: "";
    clear: both;
    display: block; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount {
    display: table;
    width: 100%; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount > *, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount > *, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount > * {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-currency-symbol, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-currency-symbol, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-currency-symbol {
    background: #24ca24;
    color: #fff;
    border-color: #20b420;
    padding: 0 20px;
    text-align: center;
    width: 1%; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
    background: #24ca24;
    color: #fff;
    border: solid #20b420;
    border-width: 1px 0;
    white-space: nowrap;
    width: 1%;
    padding-right: 20px; }
  @media (max-width: 515px) {
      .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
        display: none; } }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount input.give-text-input, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount input.give-text-input, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount input.give-text-input {
    height: 53px !important; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-text-input, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-text-input, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-text-input {
    text-align: left;
    border-color: #20b420 !important;
    width: 100%; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap {
    margin-bottom: 0 !important; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap.give-select, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap.give-select, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap.give-select {
    margin-bottom: 15px !important; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap:after, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap:after, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap:after {
    content: "";
    display: block;
    clear: both; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li {
    margin: 0 15px 15px 0 !important;
    float: left; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li *, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li *, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li * {
    vertical-align: middle; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn {
    background: none;
    font-size: 13px;
    height: auto;
    margin: 0;
    padding: 12px 20px;
    border: solid 1px #24ca24;
    color: #24ca24;
    min-width: 110px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level, .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level {
    background: #24ca24;
    color: #fff; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list, .mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list {
    margin-bottom: 15px !important;
    padding: 15px 15px 0 15px;
    border: solid 1px #24ca24; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list li, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list li, .mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list li {
    margin-right: 25px !important; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap, .mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap {
    display: table;
    width: 100%; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap > *, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap > *, .mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap > * {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-donation-total-label, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-donation-total-label, .mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-donation-total-label {
    background: #24ca24;
    color: #fff;
    border-color: #20b420;
    padding: 0 20px;
    white-space: nowrap; }
  .single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-final-total-amount, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-final-total-amount, .mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-final-total-amount {
    text-align: left;
    border-color: #20b420 !important;
    width: 100%; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-select, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-select, .mfp-wrap.give-modal .mfp-content form.give-form .give-select {
    height: 53px;
    display: block;
    width: 100%;
    border-color: #20b420 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/arrow-down-icon.png") no-repeat scroll calc(100% - 10px) 50% / 16px auto; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-btn, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn, .mfp-wrap.give-modal .mfp-content form.give-form .give-btn {
    height: 53px;
    display: block;
    width: 100%;
    background: #24ca24;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .single-give_forms .give_forms .entry-summary form.give-form .give-btn:hover, .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn:hover, .mfp-wrap.give-modal .mfp-content form.give-form .give-btn:hover {
    opacity: 0.9; }

.post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap {
  text-align: center;
  border-radius: 2px;
  margin-bottom: 20px;
  position: relative; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap img {
    max-width: 100%; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .read-more-link {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    border: 1px solid;
    border-radius: 1px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 10px;
    padding: 6px 16px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .read-more-link i {
    margin-left: 8px;
    font-size: 16px; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .read-more-link:hover {
    color: #24ca24; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap:hover:after {
    opacity: 1; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap:hover .read-more-link {
    top: 50%;
    opacity: 1;
    visibility: visible; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .overlay-wrap {
    position: absolute;
    left: 15px;
    top: 15px;
    width: calc(100% - 30px);
    text-align: left;
    z-index: 3; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .overlay-wrap .term_list-wrap a {
    background: rgba(36, 202, 36, 0.9) none repeat scroll 0 0;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 22px;
    padding: 0 8px;
    vertical-align: top;
    text-decoration: none; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .overlay-wrap .term_list-wrap a:not(:last-child) {
    margin-right: 3px; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .btn-play-video {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: #24ca24;
    border-radius: 0%;
    color: #fff;
    font-size: 14px; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .featured-image-wrap .btn-play-video i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap a.title-link {
    text-decoration: none; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap a.title-link:hover .title {
    color: #24ca24; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap .title {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 4px;
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap .extra-meta .meta-item {
    display: inline-block;
    vertical-align: top; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap .extra-meta .meta-item:not(:last-child) {
    margin-right: 15px; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap .extra-meta .meta-item i {
    margin-right: 4px;
    color: #24ca24; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .entry-wrap .extra-meta .meta-item.rating i {
    color: #f4c33b; }
  .post-recipe-list .post-list-type-default .post-recipe-inner .excerpt-content {
    margin-top: 10px;
    padding-top: 10px;
    border-top: solid 1px #f7f7f7; }

.post-recipe-list {
  /* layout single */ }
  .recipe-entry-wrap > p:first-child {
    margin: 0; }
  .recipe-entry-wrap > .excerpt-content > p:first-child {
    margin: 0; }
  .recipe-entry-wrap .space-30-left {
    padding-left: 30px !important; }
  @media (max-width: 529px) {
  .recipe-entry-wrap .space-30-left {
    padding-left: 0px !important; } }

.recipe-media-content {
  position: relative; }
  .recipe-media-content .title {
    letter-spacing: -1px;
    text-decoration: underline;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 15px 0; }
  .recipe-media-content .recipe-gallery-wrap {
    margin-bottom: 30px; }
  .recipe-media-content .recipe-gallery-wrap .grid-item_ .grid-item-inner_ {
    position: relative;
    width: 100%;
    height: 100%; }
  .recipe-media-content .recipe-gallery-wrap .grid-item_ .grid-item-inner_ .icon-zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .recipe-media-content .recipe-video-wrap {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 310px;
    width: 100%;
    background: #24ca24; }
  .recipe-media-content .recipe-video-wrap .background-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .recipe-media-content .recipe-video-wrap .background-overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); }
  .recipe-media-content .recipe-video-wrap .handle-play-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    z-index: 9; }
  .recipe-media-content .recipe-video-wrap .handle-play-wrap span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
  .recipe-media-content .recipe-video-wrap .handle-play-wrap span.icon-play-video {
    width: 32px;
    height: 32px;
    border: solid 0.5px;
    position: relative;
    margin-right: 12px;
    font-size: 14px; }
  .recipe-media-content .recipe-video-wrap .handle-play-wrap span.icon-play-video i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }
  .recipe-media-content .recipe-video-wrap .handle-play-wrap:hover span {
    color: #24ca24; }
  .recipe-media-content .x-entry-share {
    margin-bottom: 30px; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 70px;
    border: solid #e9e9e9 !important;
    border-width: 1px !important;
    margin-bottom: 15px;
    margin-right: 15px; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 16px;
    color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-facebook-square:before {
    content: "\f09a"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-twitter-square:before {
    content: "\f099"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-google-plus-square:before {
    content: "\f0d5"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-linkedin-square:before {
    content: "\f0e1"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-pinterest-square:before {
    content: "\f0d2"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-reddit-square:before {
    content: "\f1a1"; }
  .recipe-media-content .x-entry-share .x-share-options a.x-share i.x-icon-envelope-square:before {
    content: "\f0e0"; }
  @media (max-width: 991px) {
      .recipe-media-content .x-entry-share .x-share-options a.x-share {
        width: 50px !important;
        height: 50px !important; } }

.recipe-media-template-default {
  position: relative;
  /* shortcode [ultimate-recipe-user-menus] */ }
  .recipe-media-template-default .recipe-media-content:after {
    content: "";
    display: block;
    clear: both; }
  .recipe-media-template-default .recipe-media-content .recipe-video-wrap {
    padding-bottom: 200px; }
  .recipe-media-template-default .recipe-media-content .x-entry-share .x-share-options .x-share {
    width: 65px;
    height: 65px;
    margin: 0 10px 10px 0; }

.wpurp-user-menus .user-menus-input-container, .wpurp-user-menus .user-menus-servings-container {
  margin-bottom: 30px; }
  .wpurp-user-menus .user-menus-input-container input.user-menus-title {
    border-radius: 3px;
    line-height: normal;
    padding: 8px 10px; }
  .wpurp-user-menus .user-menus-input-container div.user-menus-select {
    margin-top: 10px; }
  .wpurp-user-menus .user-menus-servings-container > div select, .wpurp-user-menus .user-menus-servings-container > div input {
    width: 100px;
    margin-left: 6px;
    padding: 8px 10px;
    border-radius: 3px;
    line-height: normal; }
  .wpurp-user-menus .user-menus-servings-container > div:last-child {
    margin-top: 10px; }
  .wpurp-user-menus .user-menus-group-by-container {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #f7f7f7; }
  .wpurp-user-menus .user-menus-no-recipes {
    padding: 20px;
    border-left: 4px solid #24ca24;
    margin-bottom: 30px; }
  .wpurp-user-menus .user-menus-selected-recipes {
    margin-bottom: 30px; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe {
    position: relative;
    display: table;
    width: 100%;
    padding: 20px;
    border-left: 4px solid #24ca24; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe.user-menus-recipe:nth-child(2n+1) {
    border-left-color: #1c9f1c; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe > * {
    display: table-cell;
    float: none; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe > i {
    width: 5%; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe > a {
    width: 85%;
    font-weight: bold; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe > .user-menus-servings-recipe {
    width: 66px;
    text-align: center; }
  .wpurp-user-menus .user-menus-selected-recipes .user-menus-recipe:after {
    content: "";
    display: block;
    clear: both; }
  .wpurp-user-menus .user-menus-buttons-container:after {
    content: "";
    display: block;
    clear: both;
    margin-bottom: 30px; }
  .wpurp-user-menus .user-menus-buttons-container > button {
    background: #24ca24;
    border: none;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: normal;
    padding: 8px 13px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .wpurp-user-menus .user-menus-buttons-container > button:hover {
    background: #20b420; }

#page .recipe-tooltip-content {
  background: #24ca24 !important;
  border: medium none !important;
  border-radius: 3px !important;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1) !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px !important; }

#page #wpurp_user_submission_form form#new_recipe input[type="text"], #page #wpurp_user_submission_form form#new_recipe input[type="password"], #page #wpurp_user_submission_form form#new_recipe input[type="number"], #page #wpurp_user_submission_form form#new_recipe input[type="email"], #page #wpurp_user_submission_form form#new_recipe input[type="date"], #page #wpurp_user_submission_form form#new_recipe input[type="color"], #page #wpurp_user_submission_form form#new_recipe input[type="tel"], #page #wpurp_user_submission_form form#new_recipe input[type="search"], #page #wpurp_user_submission_form form#new_recipe textarea, #page #wpurp_user_submission_form form#new_recipe select {
  border-radius: 1px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  padding: 8px 12px; }
  #page #wpurp_user_submission_form form#new_recipe input[type="text"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="password"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="number"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="email"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="date"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="color"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="tel"]:focus, #page #wpurp_user_submission_form form#new_recipe input[type="search"]:focus, #page #wpurp_user_submission_form form#new_recipe textarea:focus, #page #wpurp_user_submission_form form#new_recipe select:focus {
    border: 1px solid rgba(36, 202, 36, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    -moz-box-shadow: 0px 0px 5px rgba(36, 202, 36, 0.25);
    box-shadow: none;
    outline: none; }
  #page #wpurp_user_submission_form form#new_recipe input[type="submit"], #page #wpurp_user_submission_form form#new_recipe input[type="button"] {
    border-radius: 3px;
    border: none;
    background: #24ca24;
    color: #fff;
    padding: 8px 12px;
    vertical-align: top;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /**/ }
  #page #wpurp_user_submission_form form#new_recipe input[type="submit"]:hover, #page #wpurp_user_submission_form form#new_recipe input[type="button"]:hover {
    background: #1c9f1c; }
  #page #wpurp_user_submission_form form#new_recipe .recipe-title-container {
    /**/ }
  #page #wpurp_user_submission_form form#new_recipe .recipe-title-container input[type="text"] {
    width: 600px;
    max-width: 100%; }
  #page #wpurp_user_submission_form form#new_recipe .taxonomy-select-boxes {
    /* h4 */ }
  #page #wpurp_user_submission_form form#new_recipe .taxonomy-select-boxes input[type="text"] {
    border: none; }
  #page #wpurp_user_submission_form form#new_recipe .taxonomy-select-boxes .select2-choices {
    background: none;
    border: 1px solid rgba(53, 53, 53, 0.1);
    border-radius: 1px;
    box-shadow: none; }
  #page #wpurp_user_submission_form form#new_recipe .taxonomy-select-boxes .select2-search-choice {
    background: #1ea71e;
    border: medium none;
    box-shadow: none;
    color: #fff;
    padding: 10px 10px 10px 20px;
    margin: 7px 0 0 5px;
    position: relative; }
  #page #wpurp_user_submission_form form#new_recipe .taxonomy-select-boxes .select2-search-choice .select2-search-choice-close {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    background-position: right -11px; }
  #page #wpurp_user_submission_form form#new_recipe h4 {
    font-size: 24px;
    line-height: 28px;
    text-decoration: underline;
    letter-spacing: -1px;
    margin-top: 50px;
    /* table */ }
  #page #wpurp_user_submission_form form#new_recipe table {
    border: none;
    /**/ }
  #page #wpurp_user_submission_form form#new_recipe table td, #page #wpurp_user_submission_form form#new_recipe table th {
    border: solid #f0f0f0;
    border-width: 0 0 1px 0;
    padding: 35px 10px 35px 0; }
  #page #wpurp_user_submission_form form#new_recipe table td input, #page #wpurp_user_submission_form form#new_recipe table th input, #page #wpurp_user_submission_form form#new_recipe table td textarea, #page #wpurp_user_submission_form form#new_recipe table th textarea {
    margin-right: 20px; }
  #page #wpurp_user_submission_form form#new_recipe #ingredients-add-box, #page #wpurp_user_submission_form form#new_recipe .recipe-form-notes {
    margin-top: 20px;
    /**/ }
  #page #wpurp_user_submission_form form#new_recipe #wp-recipe_notes-editor-container {
    border: solid 1px #d9d9d9;
    /**/ }
  #page #wpurp_user_submission_form form#new_recipe input#preview, #page #wpurp_user_submission_form form#new_recipe input#submit {
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-left: 10px;
    padding: 12px 24px; }

.navigation.paging-navigation.paging-navigation-type-1 {
  /* navigation style 2 */ }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    display: table; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination .before-hr, .navigation.paging-navigation.paging-navigation-type-1 .pagination .after-hr {
    display: none; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap {
    display: table-cell;
    vertical-align: middle; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next {
    padding: 10px 16px;
    line-height: 44px;
    background: #24ca24;
    color: #fff;
    border-radius: 50px;
    white-space: nowrap;
    height: 44px;
    line-height: 44px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100px;
    vertical-align: middle;
    align-content: center; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev:not(.disabled):hover, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next:not(.disabled):hover {
    background: #20b420; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev.disabled, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next.disabled {
    opacity: 0.6;
    cursor: default; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev strong, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next strong, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .prev i, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .next i {
    display: inline-block;
    line-height: inherit;
    margin-bottom: 0px;
    padding-bottom: 0px;
    vertical-align: middle; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap {
    margin: 0 20px;
    width: 100%;
    text-align: center; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap .page-numbers {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: top;
    width: 20px;
    color: #24ca24; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap .page-numbers:not(:last-child) {
    margin-right: 10px; }
  .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap .page-numbers.current, .navigation.paging-navigation.paging-navigation-type-1 .pagination > .pagination-numbers-wrap .page-numbers:hover {
    color: #d9d9d9; }

.navigation.paging-navigation.paging-navigation-type-2 {
  display: block;
  text-align: center; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination {
    border: 2px solid #e8e8e8;
    border-radius: 0;
    padding: 10px 20px;
    display: inline-block; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination > * {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap {
    margin: 0 20px; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap .page-numbers {
    font-size: 16px;
    min-width: 28px;
    height: 20px;
    display: inline-block;
    vertical-align: top; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap .page-numbers:not(:last-child) {
    margin-right: 4px; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination a {
    color: #999;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination a:hover {
    color: #24ca24; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination a.prev i {
    margin-right: 4px;
    font-size: 20px;
    line-height: normal;
    vertical-align: middle; }
  .navigation.paging-navigation.paging-navigation-type-2 .pagination a.next i {
    margin-left: 4px;
    font-size: 20px;
    line-height: normal;
    vertical-align: middle; }
  .comments-template-1 {
    padding: 30px;
    background: #f8f8f8;
    margin-top: 30px; }
  .comments-template-1 a {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .comments-template-1 .comments-title {
    margin-top: 0; }
  .comments-template-1 .comments-title, .comments-template-1 .comment-reply-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    text-decoration: underline; }
  .comments-template-1 .comment-list {
    margin: 30px 0 60px 0;
    padding: 0; }
  .comments-template-1 .comment-list li {
    list-style: none; }
  .comments-template-1 .comment-list li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px; }
  .comments-template-1 .comment-list .comment .comment-body .comment-avatar {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    margin-top: 10px; }
  .comments-template-1 .comment-list .comment .comment-body .comment-avatar img {
    width: 40px !important;
    height: 40px !important; }
  .comments-template-1 .comment-list .comment .comment-body .comment-aside {
    position: relative;
    display: inline-block;
    width: calc(100% - 61px);
    margin-left: 20px;
    padding: 20px;
    border: solid 1px rgba(0, 0, 0, .06);
    border-radius: 1px;
    background: #f8f8f8; }
  .comments-template-1 .comment-list .comment .comment-body .comment-aside:after {
    content: "";
    width: 10px;
    height: 10px;
    border: solid rgba(0, 0, 0, .06);
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-135deg);
    background: #f8f8f8;
    position: absolute;
    left: -6px;
    top: 20px; }
  .comments-template-1 .comment-list .comment .comment-body .comment-aside .comment-meta {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 1px; }
  .comments-template-1 .comment-list .children {
    margin: 0;
    padding: 20px 0 0 60px;
    margin-top: 20px; }
  @media (max-width: 582px) {
      .comments-template-1 .comment-list .children.children {
        padding: 20px 0 0 0px; } }
  .comments-template-1 .comment-respond .comment-reply-title #cancel-comment-reply-link {
    font-weight: normal;
    font-family: caption;
    font-style: italic;
    font-size: 17px;
    text-decoration: underline; }
  .comments-template-1 .comment-respond .comment-form .comment-form-cookies-consent {
    display: flex;
    margin: 0px;
    align-items: flex-start; }
  .comments-template-1 .comment-respond .comment-form .comment-form-cookies-consent > input, .comments-template-1 .comment-respond .comment-form .comment-form-cookies-consent > label {
    line-height: 28px; }
  .comments-template-1 .comment-respond .comment-form .comment-form-cookies-consent > input {
    width: inherit;
    margin: 0px 10px 0px 0px;
    height: 28px; }
  .comments-template-1 .comment-respond .comment-form .comment-form-cookies-consent > label {
    font-size: 18px;
    letter-spacing: 0.16px; }
  .comments-template-1 .comment-respond .comment-form label {
    display: block;
    width: 100%; }
  .comments-template-1 .comment-respond .comment-form input, .comments-template-1 .comment-respond .comment-form textarea {
    display: block;
    width: 100%;
    padding: 9px 15px; }
  .comments-template-1 .comment-respond .comment-form textarea#comment {
    height: 150px; }
  .comments-template-1 .comment-respond .comment-form .right-side-comment, .comments-template-1 .comment-respond .comment-form .left-side-comment {
    display: inline-block;
    vertical-align: top;
    width: 50%; }
  .comments-template-1 .comment-respond .comment-form .right-side-comment {
    padding-right: 15px; }
  .comments-template-1 .comment-respond .comment-form .left-side-comment {
    padding-left: 15px; }
  .comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-author {
    margin-bottom: 21px; }
  .comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email label[for="email"], .comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email span.optional {
    display: inline-block;
    vertical-align: top;
    width: auto; }
  .comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email span.optional {
    font-family: caption;
    font-style: italic; }
  .comments-template-1 .comment-respond .comment-form .logged-in-as + .right-side-comment {
    width: 100%;
    padding-right: 0px; }
  .comments-template-1 .comment-respond .comment-form .form-submit {
    margin-top: 20px; }
  .comments-template-1 .comment-respond .comment-form .form-submit .submit {
    width: auto;
    background: #24ca24;
    color: #fff;
    font-weight: normal;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .comments-template-1 .comment-respond .comment-form .form-submit .submit:hover {
    background: #20b420; }
  @media (max-width: 767px) {
  .comments-template-1 .comment-respond {
    margin-bottom: 60px; }
    .comments-template-1 .comment-respond .comment-form .right-side-comment, .comments-template-1 .comment-respond .comment-form .left-side-comment {
      width: 100%;
      padding: 0; }
      .comments-template-1 .comment-respond .comment-form .right-side-comment {
        margin-bottom: 21px; } }

.breadcrumbs span, .breadcrumbs span a {
  font-family: 'Quattrocento Sans';
  font-size: 16.5px;
  line-height: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  color: #fff;
  text-transform: initial; }
  .breadcrumbs span {
    color: #fff; }
  .breadcrumbs a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none; }
  .breadcrumbs .separator {
    padding: 0 8px; }

.widget {
  font-size: 13px;
  line-height: 20px; }
  .widget img {
    max-width: 100%;
    height: auto; }
  .widget select {
    max-width: 300px; }
  .widget select option {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden; }
  .widget a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .widget p a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535; }
  .widget p a:hover {
    color: #24ca24; }
  .widget:last-child {
    margin-bottom: 0; }
  .widget .widget-title {
    font-family: 'Open Sans';
    font-weight: 300;
    position: relative;
    color: #333;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 28px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    /**/
    margin-top: 0; }
  .widget .widget-title span {
    display: inline-block; }
  .widget .widget-title span .widget-subtitle {
    font-size: 16px;
    color: #24ca24;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px; }
  .widget .post-date, .widget .facebook-post-date, .widget .rss-date, .widget .tweet-date, .widget.widget_display_replies li div:last-child, .widget.widget_display_topics li div:last-child {
    display: block;
    line-height: 1em;
    font-size: 0.9em;
    font-weight: normal;
    margin-bottom: 10px; }
  .widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0; }
  .widget div[class*='fw-btn-'] a {
    text-align: left; }
  .widget div[class*='fw-btn-'] a span:before {
    font-family: 'FontAwesome';
    font-style: normal;
    margin-right: 6px; }

.fw-side-boxed .widget .widget-title span {
  background-color: ; }

.fw-sidebar .widget:first-child, .fw-footer .fw-col-md-3 .widget:first-child, .fw-footer .fw-col-md-4 .widget:first-child {
  margin-top: 0; }

.bt-sidebar .bt-col-inner aside.widget h2.widget-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a4a4a;
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent; }
  .bt-sidebar .bt-col-inner aside.widget h2.widget-title span {
    font-family: 'Open Sans'; }
  .bt-sidebar .bt-col-inner aside.widget > * {
    background: #fff;
    border: 1px solid #f1efef;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    width: 100%;
    display: inline-block; }
  .bt-sidebar .bt-col-inner aside.widget ul li {
    width: 100%;
    list-style: none;
    display: inline-block;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    line-height: normal; }
  .bt-sidebar .bt-col-inner aside.widget ul li .star-rating {
    margin-bottom: 10px; }
  .bt-sidebar .bt-col-inner aside.widget ul li a {
    margin-bottom: 10px; }
  .bt-sidebar .bt-col-inner aside.widget ul li del {
    margin-right: 8px; }
  .bt-sidebar .bt-col-inner aside.widget ul li ins {
    font-weight: 700; }
  .bt-sidebar .bt-col-inner aside.widget ul li:not(:last-child) {
    border-bottom: 1px solid #ede7e7; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-label {
    display: flex;
    align-items: center; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-label .__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-label .__icon i.fa {
    color: #24ca24;
    font-size: 20px; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-int {
    font-weight: 500; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-int .s-num {
    color: #24ca24; }
  .bt-sidebar .bt-col-inner aside.widget ul li .s-int .s-text {
    color: #b4b4b4; }
  @media (max-width: 991px) {
  .bt-sidebar {
    clear: both;
    margin-top: 30px; } }
  .bt-sidebar .widget {
    margin-bottom: 35px;
    padding: 0;
    border-radius: 1px; }
  .bt-sidebar .widget:last-child {
    margin-bottom: 20px; }

.bt-footer-widgets {
  /* General Widget Responsive */
  /* Screen 768px */ }
  .bt-footer-widgets .widget.widget_meta ul li > a, .bt-footer-widgets .widget.widget_nav_menu ul li > a {
    display: block;
    display: block;
    padding: 8px 0 8px 25px;
    position: relative;
    letter-spacing: -0.7px; }
  .bt-footer-widgets .widget.widget_meta ul li > a:before, .bt-footer-widgets .widget.widget_nav_menu ul li > a:before {
    content: "";
    width: 10px;
    height: 4px;
    border-radius: 20px;
    background: #24ca24;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 2px); }
  @media (max-width: 991px) {
.widget {
  margin-bottom: 70px; }
  .widget .widget-title {
    margin-bottom: 25px; } }

.fw-widget-facebook li a {
  font-family: ;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #353535; }
  .fw-widget-facebook li a:hover {
    color: #24ca24; }

.fw-footer .fw-widget-facebook li {
  border-bottom: 1px solid #1e1e1e; }

.fw-widget-twitter .tweet-list .tweet-item:last-child {
  border: none; }
  .fw-widget-twitter .tweet-list .tweet-item.tw-has-logo .tweet-text {
    padding-left: 40px; }
  .fw-widget-twitter .tweet-list .tweet-item.tw-has-logo .tweet-text .tweet-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 0;
    text-align: right; }
  .fw-widget-twitter .tweet-avatar {
    position: relative;
    display: block;
    height: 30px; }
  .fw-widget-twitter .tweet-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%; }
  .fw-widget-twitter .tweet-text a {
    font-family: ;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535; }
  .fw-widget-twitter .tweet-text a:hover {
    color: #24ca24; }

.bt-footer .fw-widget-twitter .tweet-item {
  border-bottom: 1px solid #1e1e1e; }
  .bt-footer .fw-widget-twitter .tweet-item:not(:last-child) {
    margin-bottom: 10px; }
  .bt-footer .fw-widget-twitter .tweet-item:not(:first-child) .tweet-avatar {
    margin-top: 10px; }
  .bt-footer .fw-widget-twitter .tweet-item .tweet-avatar {
    float: left;
    margin-right: 10px; }
  .flickr_badge_image, .fw-instagram-wrap li {
    width: 75px;
    height: 75px;
    margin: 0 4px 8px 0;
    display: inline-block;
    position: relative;
    vertical-align: top;
    overflow: hidden; }
  .flickr_badge_image a, .fw-instagram-wrap li a {
    display: block; }

.fw-sidebar .fw-widget-flickr .flickr_badge_image, .fw-sidebar .fw-instagram-wrap li {
  width: 69px;
  height: 69px; }

.flickr_badge_image img, .fw-instagram-wrap li img {
  width: 100%;
  height: 100%; }

.fw-side-posts-list li:not(:last-child) {
  margin-bottom: 10px; }
  .fw-side-posts-list li .fw-widget-post-image, .fw-side-posts-list li .posts-content {
    display: inline-block;
    vertical-align: top; }
  .fw-side-posts-list li .fw-widget-post-image {
    overflow: hidden;
    background: #24ca24;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 1px; }
  .fw-side-posts-list li .fw-widget-post-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s; }
  .fw-side-posts-list li .fw-widget-post-image:after {
    content: "";
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 24px; }
  .fw-side-posts-list li .fw-widget-post-image a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .fw-side-posts-list li .fw-widget-post-image img {
    width: 50px;
    height: 50px; }
  .fw-side-posts-list li:hover .fw-widget-post-image:before, .fw-side-posts-list li:hover .fw-widget-post-image:after {
    opacity: 1;
    z-index: 3; }
  .fw-side-posts-list li:hover .fw-widget-post-image:after {
    left: 50%; }
  .fw-side-posts-list li .posts-content {
    width: calc(100% - 66px); }
  .fw-side-posts-list li .posts-content a.post-title {
    font-family: ;
    font-size: 15px;
    font-style: normal;
    line-height: 21px;
    letter-spacing: -0.6px;
    color: #24ca24;
    display: block;
    margin-bottom: 10px; }
  .fw-side-posts-list li .posts-content a.post-title:hover {
    color: #20b420; }

.bt-footer-widgets .widget_products .product_list_widget li a {
  color: #24ca24;
  font-weight: bold; }
  .bt-footer-widgets .widget_products .product_list_widget li a .wp-post-image {
    width: 50px !important;
    margin-right: 10px; }
  .bt-footer-widgets .widget_products .product_list_widget li .amount {
    font-size: 0.9em; }
  .bt-footer-widgets .widget_products .product_list_widget li del {
    margin-right: 5px; }
  .bt-footer-widgets .widget_products .product_list_widget li ins {
    text-decoration: none; }

.bt-sidebar .bt-col-inner aside.widget ul.product_list_widget li .star-rating {
  float: left;
  width: 100%;
  margin: 5px 0px 0px 80px;
  display: inherit; }

.widget_search .search-form {
  position: relative; }
  .widget_search .screen-reader-text {
    display: none; }
  .widget_search label {
    display: block; }
  .widget_search .search-field {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 13.5px;
    padding: 12px 15px; }
  .widget_search .search-field::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1; }
  .widget_search .search-field:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .widget_search .search-field::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .widget_search .search-submit {
    width: 28px;
    height: 28px;
    background-color: transparent !important;
    border: none;
    text-indent: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    overflow: hidden; }
  .widget_search label:after {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
    content: "\f002";
    font-size: 16px;
    font-weight: normal;
    color: #353535;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 10px;
    z-index: 1; }

.widget_recent_entries ul li a {
  font-family: ;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #24ca24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .widget_recent_entries ul li a:hover {
    color: #20b420; }

.widget_recent_comments #recentcomments .recentcomments {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .widget_recent_comments #recentcomments .recentcomments a {
    font-style: italic;
    border-bottom: dotted 1px; }
  .widget_recent_comments #recentcomments .recentcomments:not(:last-child) {
    margin-bottom: 10px; }

.widget_categories ul > li, .widget_nav_menu ul > li, .widget_meta ul > li, .widget_pages ul > li, .widget_archive ul > li, .woocommerce.widget_product_categories ul > li {
  color: #24ca24; }
  .widget_categories ul > li a, .widget_nav_menu ul > li a, .widget_meta ul > li a, .widget_pages ul > li a, .widget_archive ul > li a, .woocommerce.widget_product_categories ul > li a {
    font-family: ;
    font-size: 15px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
    display: inline-block;
    padding: 4px 0; }
  .widget_categories ul > li a:hover, .widget_nav_menu ul > li a:hover, .widget_meta ul > li a:hover, .widget_pages ul > li a:hover, .widget_archive ul > li a:hover, .woocommerce.widget_product_categories ul > li a:hover {
    color: #24ca24; }
  .widget_categories ul > li ul.children, .widget_nav_menu ul > li ul.children, .widget_meta ul > li ul.children, .widget_pages ul > li ul.children, .widget_archive ul > li ul.children, .woocommerce.widget_product_categories ul > li ul.children, .widget_categories ul > li ul.sub-menu, .widget_nav_menu ul > li ul.sub-menu, .widget_meta ul > li ul.sub-menu, .widget_pages ul > li ul.sub-menu, .widget_archive ul > li ul.sub-menu, .woocommerce.widget_product_categories ul > li ul.sub-menu {
    padding-left: 14px; }
  .widget_categories .screen-reader-text, .widget_nav_menu .screen-reader-text, .widget_meta .screen-reader-text, .widget_pages .screen-reader-text, .widget_archive .screen-reader-text, .woocommerce.widget_product_categories .screen-reader-text {
    display: none; }

.widget_nav_menu .sub-menu-has-icons .fa {
  margin-right: 10px; }
  .widget_nav_menu .menu-separator {
    display: none; }

.bt-footer-widgets .widget_product_categories .product-categories .cat-item {
  display: table;
  width: 100%;
  position: relative;
  overflow: hidden; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item > * {
    display: table-cell;
    vertical-align: middle; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #24ca24;
    display: inline-block;
    padding: 0; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item a:hover {
    color: #24ca24; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item .count {
    width: 10%;
    text-align: right; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item:not(:last-child) {
    margin-bottom: 5px;
    padding-bottom: 5px; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item:after {
    content: "";
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    font-size: 18px;
    position: absolute;
    left: -10px;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item:hover:after {
    opacity: 0.7;
    left: 0; }
  .bt-footer-widgets .widget_product_categories .product-categories .cat-item:hover > a {
    padding-left: 20px; }

.widget_calendar {
  /* widget calendar */ }
  .widget_calendar #wp-calendar {
    background: rgba(53, 53, 53, 0.05);
    border: none; }
  .widget_calendar #wp-calendar a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .widget_calendar #wp-calendar caption {
    background: #24ca24; }
  .widget_calendar #wp-calendar th {
    color: #24ca24;
    border: none;
    /*
      &:first-child{
        border-left: 1px solid fade_out($fw-widget-inner-title-color, 100%);
      }
      */
    border-left: 1px solid rgba(53, 53, 53, 0.05); }
  .widget_calendar #wp-calendar th:last-child {
    border-right: 1px solid rgba(53, 53, 53, 0.05); }
  .widget_calendar #wp-calendar td {
    color: #353535; }
  .widget_calendar #wp-calendar tbody a {
    color: #24ca24; }
  .widget_calendar #wp-calendar tbody a:hover {
    background-color: #24ca24; }
  .widget_calendar #wp-calendar tr td#today {
    background: #24ca24; }
  .widget_calendar #wp-calendar tfoot a:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .widget_calendar #wp-calendar tfoot #prev a:hover:before, .widget_calendar #wp-calendar tfoot #next a:hover:before {
    color: #333; }

.widget_calendar {
  position: relative; }

.widget_calendar #wp-calendar {
  position: relative;
  width: 100%; }

.widget_calendar #wp-calendar caption {
  color: #fff;
  font-size: 14px;
  line-height: 46px;
  padding: 0;
  text-transform: uppercase;
  text-align: center; }

.widget_calendar #wp-calendar th {
  padding: 12px 5px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase; }

.widget_calendar #wp-calendar td {
  font-size: 14px;
  text-align: center;
  border: none; }

.widget_calendar #wp-calendar tbody td {
  border: none;
  width: 14.285%;
  border-collapse: collapse;
  padding: 0;
  line-height: 3.2em; }

.widget_calendar #wp-calendar tbody a {
  display: block; }

.widget_calendar #wp-calendar tbody a:hover {
  color: #fff; }

.widget_calendar #wp-calendar tr td#today {
  color: #fff; }

.widget_calendar #wp-calendar tr td#today a {
  color: #fff; }

.widget_calendar #wp-calendar tfoot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.widget_calendar #wp-calendar tfoot a {
  font-size: 0;
  width: 46px;
  height: 46px;
  display: block;
  overflow: hidden;
  font-weight: normal;
  padding: 0; }

.widget_calendar #wp-calendar tfoot a:before {
  font-family: 'FontAwesome';
  font-size: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  display: block;
  color: #fff;
  position: relative; }

.widget_calendar #wp-calendar tfoot #prev, .widget_calendar #wp-calendar tfoot #next {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  padding: 0; }

.widget_calendar #wp-calendar tfoot #prev a, .widget_calendar #wp-calendar tfoot #next a {
  display: block; }

.widget_calendar #wp-calendar tfoot #prev a:focus:before, .widget_calendar #wp-calendar tfoot #next a:focus:before, .widget_calendar #wp-calendar tfoot #prev a:active:before, .widget_calendar #wp-calendar tfoot #next a:active:before {
  top: 2px; }

.widget_calendar #wp-calendar tfoot #prev a:before {
  content: '\f104'; }

.widget_calendar #wp-calendar tfoot #next {
  left: auto;
  right: 0; }

.widget_calendar #wp-calendar tfoot #next a:before {
  content: '\f105'; }

.widget_tag_cloud .tagcloud {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.widget_tag_cloud .tagcloud a, .fw-tag-links a, .post-tags a, .woocommerce.widget_product_tag_cloud .tagcloud a {
  display: inline-block;
  font-size: 13px !important;
  font-family: 'Montserrat';
  font-weight: 700;
  font-style: normal;
  color: #fff !important;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  margin: 8px;
  background-color: #353535;
  border-radius: 0 3px 3px 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.48px; }
  .widget_tag_cloud .tagcloud a:before, .fw-tag-links a:before, .post-tags a:before, .woocommerce.widget_product_tag_cloud .tagcloud a:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-right: 10px solid #353535;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: -10px;
    box-shadow: 2px 0 0 -1px #353535;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .widget_tag_cloud .tagcloud a:after, .fw-tag-links a:after, .post-tags a:after, .woocommerce.widget_product_tag_cloud .tagcloud a:after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -2px;
    top: 13px; }
  .widget_tag_cloud .tagcloud a:hover, .fw-tag-links a:hover, .post-tags a:hover, .woocommerce.widget_product_tag_cloud .tagcloud a:hover {
    background-color: #24ca24;
    color: #fff; }
  .widget_tag_cloud .tagcloud a:hover:before, .fw-tag-links a:hover:before, .post-tags a:hover:before, .woocommerce.widget_product_tag_cloud .tagcloud a:hover:before {
    border-right-color: #24ca24;
    box-shadow: 2px 0 0 -1px #24ca24; }

.off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid;
  border-radius: 1px;
  display: inline-block !important;
  font-size: 10px !important;
  letter-spacing: 2px;
  line-height: normal !important;
  margin: 0 3px 9px 0;
  padding: 8px 10px;
  text-transform: uppercase;
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:hover {
    color: #24ca24 !important; }
  .off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:before, .off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:after {
    display: none; }

.widget_rss ul li:not(:last-child) {
  margin-bottom: 15px; }
  .widget_rss ul li .rsswidget {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .widget_rss ul li .rsswidget:hover {
    color: #24ca24; }
  .widget_rss ul li .rssSummary {
    font-size: 12px; }
  .widget_rss ul li cite {
    font-size: 13px; }

.widget_text .textwidget a {
  font-family: ;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #353535; }
  .widget_text .textwidget a:hover {
    color: #24ca24; }

.fw-widget-login {
  /* Widget login on header nav */ }
  .fw-widget-login .input {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 13.5px;
    padding: 12px 15px; }
  .fw-widget-login .input::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1; }
  .fw-widget-login .input:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .fw-widget-login .input::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .fw-widget-login .forget_password {
    font-family: 'Montserrat'; }
  .fw-widget-login .forget_password a {
    font-family: ;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    color: #353535;
    font-size: 14px; }
  .fw-widget-login .forget_password a:hover {
    color: #24ca24; }
  .fw-widget-login .submit .fw-btn-login {
    color: #fff !important; }
  .fw-widget-login .submit .fw-btn-login:hover {
    color: #fff !important; }

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login {
  padding: 20px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title {
    line-height: normal; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform {
    min-width: 280px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 13.5px;
    padding: 12px 15px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75); }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password {
    font-family: 'Montserrat'; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a {
    font-family: ;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    color: #353535;
    font-size: 14px; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover {
    color: #24ca24; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit {
    margin-bottom: 0; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login {
    color: #fff !important; }
  .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover, .bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover, .bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.menu-item > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover, .bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover, .header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom > .menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover {
    color: #fff !important; }

.yith-woocompare-widget .products-list {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebe9eb; }
  .yith-woocompare-widget .products-list li {
    padding: 10px 0 10px 30px !important;
    border-bottom: none !important; }
  .yith-woocompare-widget .products-list li.list_empty {
    padding-left: 0 !important; }
  .yith-woocompare-widget .products-list li .remove {
    text-transform: lowercase !important; }
  .yith-woocompare-widget .products-list li .remove:hover {
    background: none !important;
    color: #555 !important; }
  .yith-woocompare-widget .products-list li .title {
    font-family:  !important;
    font-size: 15px !important;
    font-style: normal !important;
    line-height: 24px !important;
    letter-spacing: 0px !important;
    color: #353535 !important;
    text-transform: none !important; }
  .yith-woocompare-widget .products-list li .title:hover {
    color: #24ca24; }
  .yith-woocompare-widget a.button {
    background: #8c8c8c none repeat scroll 0 0;
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    padding: 10px 24px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s; }
  .yith-woocompare-widget a.button:hover {
    background: #7f7f7f;
    color: #fff; }

.widget_wpurp_recipe_list_widget ul li:not(:last-child) {
  margin-bottom: 10px; }
  .widget_wpurp_recipe_list_widget ul li .wp-post-image, .widget_wpurp_recipe_list_widget ul li a {
    display: inline-block !important;
    vertical-align: top; }
  .widget_wpurp_recipe_list_widget ul li .wp-post-image {
    margin-right: 10px;
    width: 50px;
    height: 50px; }
  .widget_wpurp_recipe_list_widget ul li .wp-post-image img {
    width: 50px;
    height: 50px; }
  .widget_wpurp_recipe_list_widget ul li a {
    width: calc(100% - 64px);
    font-family: ;
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #24ca24;
    display: block;
    margin-bottom: 10px; }
  .widget_wpurp_recipe_list_widget ul li a:hover {
    color: #20b420; }

.widget_wpurp_recipe_search_widget form select {
  display: block;
  padding: 10px;
  width: 100%; }

.widget_wpurp_nutrition_label_widget .wpurp-nutrition-label {
  max-width: none;
  width: 100%; }

.widget_newsletterwidget .tnp-field input {
  background: #fff; }

.notification-wrap {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
  transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  overflow: auto; }
  .notification-wrap.is-show {
    visibility: visible;
    opacity: 1; }
  .notification-wrap.is-show .notification-heading-tabs, .notification-wrap.is-show .notification-content-tabs {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important; }
  .notification-wrap .close-notification {
    background: #fff none repeat scroll 0 0;
    display: block;
    height: 60px;
    position: fixed;
    right: 60px;
    top: 60px;
    width: 60px;
    z-index: 5;
    border-radius: 100px;
    font-size: 40px;
    box-shadow: 5px 4px 23px -9px rgba(1, 1, 1, 0.3); }
  .notification-wrap .close-notification span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #999; }
  .notification-wrap.dark {
    color: #fafafa;
    background: url('../images/background-thin-line.png'), rgba(62, 64, 79, 0.9);
    background-size: 100%; }
  .notification-wrap.light {
    color: #333;
    background: url('../images/background-thin-line.png'), rgba(250, 250, 250, 0.97);
    background-size: 100%; }
  .notification-wrap.light .search-field {
    border-color: rgba(1, 1, 1, 0.5) !important; }
  .notification-wrap.light .nav-tab-item {
    color: #999 !important; }
  .notification-wrap.light .nav-tab-item.owl-url-acitive {
    color: #333 !important; }
  .notification-wrap.light a {
    color: #333 !important; }
  .notification-wrap.light .tab-container-cart .button, .notification-wrap.light .tab-container-cart .remove {
    color: #fff !important; }
  .notification-wrap .notification-inner {
    margin: 8% auto 0 auto;
    width: 860px;
    max-width: calc(100% - 30px);
    min-height: 400px; }
  @media only screen and (max-width: 480px) {
    .notification-wrap .notification-inner {
      max-width: calc(100% - 15px); } }
  .notification-wrap .notification-inner .notification-heading-tabs {
    display: block;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91); }
  .notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item {
    color: #fff;
    display: inline-block;
    font-size: 22px;
    line-height: 24px;
    font-weight: 300;
    margin: 0 20px;
    vertical-align: top;
    text-decoration: none;
    padding-bottom: 10px;
    position: relative;
    opacity: 0.6; }
  .notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    border-bottom: solid 1px;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item.owl-url-acitive {
    opacity: 1; }
  .notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item.owl-url-acitive:after {
    opacity: 1;
    bottom: 0; }
  .notification-wrap .notification-inner .notification-content-tabs {
    margin-top: 30px;
    padding-top: 30px;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart {
    width: 550px;
    max-width: 100%;
    padding: 30px;
    margin: 0 auto; }
  @media only screen and (max-width: 480px) {
            .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart {
              padding: 15px; } }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list {
    padding: 0; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .empty {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    list-style: outside none none;
    text-align: center; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: solid 1px rgba(255, 255, 255, .2); }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item:after {
    content: "";
    display: block;
    clear: both; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item .remove {
    position: absolute;
    right: 0;
    top: 4px;
    z-index: 10;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #24ca24;
    color: #fff !important;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 50%;
    box-sizing: border-box; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove) {
    font-size: 22px;
    font-weight: 300;
    line-height: 26px;
    display: block;
    text-decoration: underline;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove):hover {
    color: #2eda2e; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove) .wp-post-image {
    width: 100px;
    height: auto;
    float: left;
    padding-right: 30px; }
  @media only screen and (max-width: 480px) {
                    .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove) {
                      font-size: 20px;
                      line-height: 28px; } }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item .quantity {
    display: block;
    margin-top: 8px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item img.attachment-woocommerce_thumbnail {
    float: right;
    margin-left: 4px;
    width: 80px;
    height: auto;
    box-shadow: none; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .total {
    font-size: 24px;
    letter-spacing: 0.32px;
    line-height: 30px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .total .woocommerce-Price-amount {
    margin-left: 6px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons {
    display: table;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
    display: flex;
    justify-content: space-between; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button {
    background: #24ca24;
    color: #fff;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: calc(50% - 5px);
    padding: 16px;
    font-weight: 300;
    font-size: 20px;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0.85; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button:hover {
    opacity: 1; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button.checkout {
    background: #20b420; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user {
    width: 400px;
    max-width: 100%;
    padding: 30px;
    margin: 0 auto;
    text-align: center; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-avatar {
    display: block;
    width: 160px;
    border-radius: 100px;
    padding: 10px;
    border: solid 0.5px rgba(255, 255, 255, .5);
    margin: 0 auto; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-avatar img {
    border-radius: 100px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-welcome {
    font-size: 30px;
    font-weight: 300;
    margin: 30px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link {
    border-bottom: 1px solid;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 10px 0;
    text-transform: uppercase;
    opacity: 0.6;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link span {
    margin-right: 4px;
    vertical-align: middle;
    font-size: 20px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link:hover {
    opacity: 1; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form {
    width: 400px;
    max-width: 100%;
    background: #fff;
    padding: 30px;
    margin: 0 auto;
    border-radius: 3px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form h3 {
    margin: 0 0 30px 0;
    font-size: 24px;
    letter-spacing: -1.3px;
    text-decoration: underline;
    line-height: 28px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="text"], .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="email"], .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="password"], .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="phone"] {
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    border: none;
    border-bottom: solid 1px rgba(1, 1, 1, .3);
    padding: 5px 0;
    border-radius: 0;
    background: transparent;
    color: #333;
    font-size: 26px;
    height: 42px;
    letter-spacing: -1px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform > p:not(:last-child) {
    margin-bottom: 30px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform > p label {
    color: #333;
    font-weight: 300;
    margin: 0; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform > p input#wp-submit {
    background: #24ca24;
    border: medium none;
    border-radius: 4px;
    color: #fff;
    display: block;
    height: 48px;
    width: 100%;
    font-weight: bold;
    letter-spacing: -1px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform > p input#wp-submit:hover {
    background: #20b420; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner {
    margin-bottom: 35px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default {
    position: relative; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .feature-image {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .feature-image .post-date {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #24ca24;
    color: #fff;
    font-weight: 300;
    padding: 4px 10px;
    line-height: 16px;
    font-size: 14px;
    border-radius: 30px; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .post-link {
    color: #fff;
    font-weight: 300; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search {
    text-align: center; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search.tab-container-search-animate .custom-search-form .search-field {
    margin-top: 0; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search.tab-container-search-animate #notification-search-ajax-result {
    opacity: 1; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label {
    display: block;
    width: 100%;
    position: relative; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field {
    margin-top: 20vh;
    padding: 20px 0;
    border: none;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
    background: transparent;
    display: block;
    width: 100%;
    font-weight: 300;
    font-size: 22px;
    line-height: 24px;
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    outline: none;
    box-shadow: none; }
  .notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 3;
    background: transparent;
    border: none;
    font-size: 30px;
    padding: 0;
    padding-left: 4px; }
  @media (max-width: 685px) {
  .notification-wrap .close-notification {
    bottom: 20px;
    left: calc(50% - 30px);
    top: auto;
    right: auto; }
  .notification-wrap .notification-heading-tabs {
    margin-top: 20%; }
    .notification-wrap .notification-heading-tabs a.nav-tab-item {
      font-size: 100% !important;
      margin: 0 15px !important; }
  .notification-wrap .tab-container-cart .buttons .button {
    font-size: 16px !important; }
  .notification-wrap .item-inner.tab-container-cart {
    padding-bottom: 80px !important; } }

#notification-search-ajax-result {
  text-align: left;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
  transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s; }
  #notification-search-ajax-result .text-result {
    font-weight: 300;
    margin: 20px 0 30px 0; }
  #notification-search-ajax-result .item-inner {
    margin-bottom: 35px; }
  #notification-search-ajax-result .item-inner.item-template-default-all-result {
    position: relative;
    min-height: 170px; }
  #notification-search-ajax-result .item-inner.item-template-default-all-result .view-all-result {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    left: 50%;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); }
  #notification-search-ajax-result .item-inner.item-template-default-all-result .view-all-result span {
    font-size: 30px;
    margin-left: 10px;
    vertical-align: middle; }
  #notification-search-ajax-result .item-inner.item-template-default {
    position: relative; }
  #notification-search-ajax-result .item-inner.item-template-default .feature-image {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative; }
  #notification-search-ajax-result .item-inner.item-template-default .feature-image .post-type {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #24ca24;
    color: #fff;
    font-weight: 300;
    padding: 4px 10px;
    line-height: 16px;
    font-size: 14px;
    border-radius: 30px; }
  #notification-search-ajax-result .item-inner.item-template-default .post-link {
    color: #fff;
    font-weight: 300; }

.bt-footer-widgets {
  padding-top: 100px;
  padding-bottom: ;
  background-color: #111;
  background-image: url();
  background-repeat: ;
  background-position: ;
  background-size: ;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  /*Responsive*/
  /* Screen 768px */ }
  .bt-footer-widgets .widget, .bt-footer-widgets .widget li {
    color: #898d8e; }
  .bt-footer-widgets .widget a, .bt-footer-widgets .widget .comment-author-link a {
    color: #636767; }
  .bt-footer-widgets .widget a:hover, .bt-footer-widgets .widget .comment-author-link a:hover {
    color: #707374; }
  .bt-footer-widgets .widget-title {
    font-weight: ;
    font-style: ;
    color: #fff;
    font-size: ; }
  .bt-footer-widgets .widget-title span {
    color: #fff; }
  .bt-footer-widgets .widget_text .textwidget {
    font-size: 12.6px; }

@media (max-width: 991px) {
  /*Screen 568px*/
    .footer-sidebar-item:not(:last-child) {
      margin-bottom: 50px; } }

@media (max-width: 767px) {
  .bt-footer-widgets {
    padding-top: 50px;
    padding-bottom: 0*0.50; } }

.bt-copyright-center {
  text-align: center; }

.bt-copyright-left {
  text-align: left; }

.bt-copyright-right {
  text-align: right;
  /* copyright and social area background & space */ }

.bt-footer-bar {
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
  color: ; }
  @media (max-width: 991px) {
  .bt-footer-bar.bt-footer-bar * {
    text-align: center; } }

.bt-copyright {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  font-family: 'Open Sans';
  line-height: 45px;
  letter-spacing: 0px;
  color: #fff; }
  .bt-copyright a {
    color: #fff; }
  .bt-copyright a:hover {
    color: #fff; }

.main-color {
  color: #24ca24; }

.background-color-main {
  background-color: #24ca24; }

@media only screen and (max-width: 767px) {
    .bt-margin-with-reponsive, .bt-width-reponsive, #page .service-tab-list, #page .bt-item-service-page-lm > .wpb_column, #page .bt-item03-service-page-lm > .wpb_column.item-warp, #page .bt-item-services-page-lm .bt-cat-service, #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price, #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body, #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner, #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner .but-barber {
      margin-right: auto;
      margin-left: auto; } }

@media only screen and (max-width: 767px) {
    .bt-width-reponsive, #page .service-tab-list, #page .bt-item-service-page-lm > .wpb_column, #page .bt-item03-service-page-lm > .wpb_column.item-warp, #page .bt-item-services-page-lm .bt-cat-service {
      width: 100%;
      max-width: 450px; } }

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }

@media only screen and (max-width: 640px) {
    .bt-bkg-title-page {
      background-image: none !important;
      background-color: #e1e1e1; } }
  @media only screen and (max-width: 991px) {
    .bt-bkg-title-page .bt-tt-page-lmm {
      width: 50%;
      font-size: 29px !important;
      line-height: 39px !important; } }
  @media only screen and (max-width: 640px) {
    .bt-bkg-title-page .bt-tt-page-lmm {
      width: 100%; } }
  @media only screen and (max-width: 480px) {
    .bt-bkg-title-page .bt-tt-page-lmm {
      font-size: 24px !important;
      line-height: 34px !important; } }

.ic-vd > .vc_icon_element-inner:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #24ca24 repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite; }

.ic-vd > .vc_icon_element-inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms; }

.bt-yg-form-question {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.3); }
  .bt-yg-form-question .wpcf7 span.wpcf7-not-valid-tip {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.48px;
    margin: -13px 0px 20px 20px; }
  .bt-yg-form-question .wpcf7 input {
    font-size: 15px;
    font-style: italic;
    line-height: 24px;
    letter-spacing: 0.025em;
    color: #555;
    background: #fff;
    margin-bottom: 5px;
    padding: 10px 35px;
    border: 1px solid #fff;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
    width: 100%;
    margin-bottom: 20px; }
  .bt-yg-form-question .wpcf7 .bt-submit input {
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 23px;
    font-style: normal;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    background: #000 !important;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    border: 1px solid #000; }
  .bt-yg-form-question .wpcf7 .bt-submit input:focus {
    outline: none; }
  .bt-yg-form-question .wpcf7 .bt-last-name, .bt-yg-form-question .wpcf7 .bt-first-name {
    width: calc(50% - 3px); }
  @media only screen and (max-width: 480px) {
      .bt-yg-form-question .wpcf7 .bt-last-name, .bt-yg-form-question .wpcf7 .bt-first-name {
        width: 100%; } }
  .bt-yg-form-question .wpcf7 .bt-last-name {
    float: right; }
  .bt-yg-form-question .wpcf7 .bt-first-name {
    float: left; }

.bt-yg-form-question.ct {
  box-shadow: none; }
  .bt-yg-form-question.ct .wpcf7 .bt-submit input {
    background: #7c7270 !important; }

body .bt-contact-form1 input, body .bt-contact-form1 textarea {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: #333;
  background: #fff;
  padding: 12px 30px;
  margin-bottom: 10px;
  border: 1px solid #f5f5f5;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important; }

body .bt-contact-form1 input::placeholder, body .bt-contact-form1 textarea::placeholder, .bt-yg-form-question .wpcf7 input::placeholder {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  color: #ababab; }

@media only screen and (max-width: 767px) {
    body .bt-contact-form1 {
      margin-top: 40px; } }
  body .bt-contact-form1 textarea {
    height: 160px;
    min-height: auto; }
  body .bt-contact-form1 input[type="submit"] {
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #fff;
    background: #d97d86;
    display: inline-block;
    padding: 12px 40px;
    margin-top: 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }
  body .bt-contact-form1 span.wpcf7-not-valid-tip {
    margin-left: 20px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.48px; }

#page .wpcf7-form div.wpcf7-validation-errors, #page .wpcf7-form div.wpcf7-mail-sent-ok {
  margin: 0px;
  border: 2px solid #24ca24;
  text-align: center;
  padding: 0px;
  height: 40px;
  line-height: 40px; }

.service-box .vc_column-inner {
  height: 156px; }
  .service-box .vc_column-inner .img-sm {
    width: 70px;
    margin: 0 auto;
    display: none; }
  .service-box .vc_column-inner h6.vc_custom_heading {
    display: none; }
  .service-box .vc_column-inner:hover {
    height: 318px;
    background-color: #24ca24 !important;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    margin-top: -162px; }
  .service-box .vc_column-inner:hover .img-sm {
    display: block; }
  .service-box .vc_column-inner:hover h6.vc_custom_heading {
    display: block; }
  .service-box .vc_column-inner:hover h2.vc_custom_heading {
    color: #fff !important; }

.border-ms .icon-wrap span._icon.fa {
  font-size: 35px; }
  .border-ms .entry-box-wrap h4.featured-box-title {
    font-size: 22px !important;
    font-weight: 700; }
  .border-ms .entry-box-wrap .featured-box-text {
    line-height: 30px;
    font-weight: 700; }
  .border-ms .entry-box-wrap .featured-box-text b {
    width: 100px;
    display: inline-block;
    color: #666 !important;
    font-weight: 300 !important; }

#page .we-lm:hover {
  margin: 7px !important;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s; }
  #page .we-lm:hover .vc_column-inner {
    background-color: rgba(0, 0, 0, 0.8) !important; }

.but-lma > a {
  border-color: #24ca24;
  box-shadow: 0 0 40px 40px #24ca24 inset, 0 0 0 0 #24ca24;
  transition: all 150ms ease-in-out; }
  .but-lma > a:hover {
    box-shadow: 0 0 10px 0 #24ca24 inset, 0 0 10px 6px #24ca24;
    background: #fff !important;
    color: #24ca24 !important; }

.tab-price-ms .vc_tta-tabs-container {
  width: 100%;
  background: #24ca24;
  margin: 0 !important;
  padding: 5px 20px;
  overflow: visible !important; }
  .tab-price-ms .vc_tta-tabs-container ul.vc_tta-tabs-list {
    overflow: visible !important; }
  .tab-price-ms .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
    width: 20% !important;
    position: relative; }
  .tab-price-ms .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    background: transparent !important;
    border: transparent !important;
    padding: 20px 20px !important; }
  .tab-price-ms .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span {
    font-size: 18px;
    color: #fff;
    font-weight: bold; }
  .tab-price-ms .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active:before {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #24ca24;
    content: "";
    position: absolute;
    bottom: -16px;
    z-index: 9;
    left: calc(50% - 12px) !important; }
  .tab-price-ms .vc_tta-panels-container .vc_tta-panels {
    background: transparent !important; }
  .tab-price-ms .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
    padding: 40px 20px !important;
    min-height: 300px !important; }

.service-tab-list .vc_tta-tabs-container {
  margin: 0 !important;
  padding: 0px;
  overflow: visible !important; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list {
    overflow: visible !important; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
    position: relative;
    margin: 0; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    background: #000 !important;
    border: none !important;
    padding: 0px 50px !important;
    height: 50px;
    line-height: 50px;
    border-bottom: #282828 dashed 1px !important;
    border-radius: 0; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span {
    font-size: 18px;
    color: #fff;
    font-weight: bold; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a {
    background: #24ca24 !important;
    border-bottom: none !important; }
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active:before {
    width: 0;
    height: 0;
    border-left: 20px solid #24ca24;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    content: "";
    position: absolute;
    right: -20px;
    z-index: 9; }
  .service-tab-list .vc_tta-panels-container .vc_tta-panels {
    background: transparent !important;
    border: none !important; }
  .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
    padding: 40px !important;
    border: none !important;
    background-color: #fff !important;
    margin-left: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    min-height: 400px !important; }
  @media (max-width: 992px) {
  .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    padding: 0px 15px !important; }
  .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
    padding: 15px !important; } }
  @media (max-width: 767px) {
  .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading h4 a {
    background: #000 !important;
    border: none !important;
    padding: 0px 50px !important;
    height: 50px;
    line-height: 50px;
    border-bottom: #282828 dashed 1px !important;
    border-radius: 0; }
    .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading h4 a span {
      font-size: 18px;
      color: #fff;
      font-weight: bold; }

    .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
      margin-left: 0px; } }

.work-bt {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #24ca24;
  padding-top: 70px;
  text-align: center; }

.work-bt ul.book-p {
  padding: 0;
  list-style-type: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff; }

.work-bt h5 {
  font-size: 28px;
  font-weight: 600;
  color: #fff; }

#main .bt-book-list {
  background-position: top !important; }

body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation > ul.bt-nav-menu > li.current-menu-item.bt-book:not(.menu-item-custom-type-button) > a, .bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation > ul.bt-nav-menu li.current-menu-item.bt-book > a {
  color: #fff !important; }

@media screen and (min-width: 721px) {
  body .th-book-cal-small table.booked-calendar .booked-appt-list {
    max-height: 190px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 15px 20px 10px; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list h2 span {
    display: none; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot {
    border-top: 0;
    margin: 0 0 6px; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-time, body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-count {
    display: none; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-people {
    width: 100%;
    padding: 0;
    height: auto; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-people button {
    float: none;
    margin: 0;
    width: 100%;
    text-align: center; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-timeslot {
    display: block;
    font-weight: 600;
    font-size: 13px; }

  body .th-book-cal-small table.booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-text {
    display: none; } }

#page .bt-item-group-page-lm > .vc_column-inner > .wpb_wrapper > .vc_btn3-container {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (max-width: 767px) {
      #page .bt-item-group-page-lm > .vc_column-inner {
        padding-left: 30px !important;
        padding-right: 30px !important; } }
  @media only screen and (max-width: 540px) {
      #page .bt-item-group-page-lm > .vc_column-inner {
        padding-left: 15px !important;
        padding-right: 15px !important; } }
  @media screen and (max-width: 991px) {
    #page .bt-space-hidden-tb-01.vc_empty_space {
      display: none; } }
  @media only screen and (max-width: 767px) {
              #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4 > a {
                width: 100%;
                display: inline-block;
                padding: 0 !important;
                text-align: center; } }
  #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading h4 > a {
    background-color: #24ca24 !important;
    border-bottom: #24ca24 dashed 1px !important; }
  @media only screen and (max-width: 767px) {
                #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .wpb_theme_custom_element.wpb_service_listing .post-service-item:not(:first-child) {
                  margin-top: 20px; } }
  @media only screen and (max-width: 767px) {
                #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 {
                  text-align: center; }
                  #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .wpb_theme_custom_element.wpb_service_listing .bt-article.layout-style-2 .bt-price {
                    max-width: 100px;
                    text-align: center; } }
  @media only screen and (max-width: 767px) {
            #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
              max-height: 400px;
              overflow-x: hidden;
              overflow-y: scroll; }
              #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading {
                text-align: center !important; } }
  @media only screen and (max-width: 767px) {
          #page .service-tab-list .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading:hover h4 > a {
            background-color: #24ca24 !important;
            border-bottom: #24ca24 dashed 1px !important; } }
  @media only screen and (max-width: 991px) {
      #page .service-tab-list .vc_tta-panels-container {
        max-height: 450px;
        overflow-x: hidden;
        overflow-y: scroll; } }
  @media only screen and (max-width: 767px) {
      #page .service-tab-list .vc_tta-panels-container {
        max-height: initial;
        overflow-x: inherit;
        overflow-y: initial; } }
  #page .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab:hover:before {
    width: 0;
    height: 0;
    border-left: 20px solid #24ca24;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    content: "";
    position: absolute;
    right: -20px;
    z-index: 9; }
  #page .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab:hover a {
    background-color: #24ca24 !important; }
  #page .service-tab-list .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  @media only screen and (max-width: 767px) {
 }
  @media screen and (max-width: 540px) {
    #page .bt-sub-newlester-page-lm.vc_custom_heading {
      padding-left: 0 !important;
      padding-right: 0 !important; } }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:focus {
    background-color: #24ca24;
    border-color: #24ca24; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title > a, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:focus .vc_tta-panel-title > a {
    color: #fff; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title > a > i.vc_tta-controls-icon:before, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:focus .vc_tta-panel-title > a > i.vc_tta-controls-icon:before, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title > a > i.vc_tta-controls-icon:after, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:focus .vc_tta-panel-title > a > i.vc_tta-controls-icon:after {
    border-color: #000; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a > i.vc_tta-controls-icon:before, #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a > i.vc_tta-controls-icon:after {
    border-color: #24ca24; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: #24ca24;
    border-color: #24ca24; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title > a {
    color: #fff; }
  #page .bt-accordion-faqs-lm.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title > a > i.vc_tta-controls-icon:before {
    border-color: #000; }
  #page .wpb_single_image.bt-imae-style-lmm, #page .wpb_single_image.bt-image02-style-lm {
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .wpb_single_image.bt-image02-style-lm .vc_single_image-wrapper > img {
    -webkit-transform: scale(1.);
    transform: scale(1.4);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .wpb_single_image.bt-image02-style-lm:hover .vc_single_image-wrapper > img {
    -webkit-transform: scale(1);
    transform: scale(1); }
  #page .wpb_single_image.bt-image-svg-lm .vc_single_image-wrapper > img {
    width: 100px; }
  @media only screen and (max-width: 991px) {
      #page .wpb_single_image.bt-image-group-lm {
        text-align: center !important; } }
  #page .bt-background-image-lm {
    cursor: pointer; }
  #page .bt-background-image-lm:before, #page .wpb_single_image.bt-imae-style-lmm:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg); }
  #page .bt-background-image-lm:hover:before, #page .wpb_single_image.bt-imae-style-lmm:hover:before {
    -webkit-animation: Btshine 0.75s;
    animation: Btshine 0.75s; }
  #page .bt-item-service-page-lm > .wpb_column {
    overflow: hidden;
    position: relative; }
  #page .bt-item-service-page-lm > .wpb_column > .vc_column-inner {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
  #page .bt-item-service-page-lm > .wpb_column > .vc_column-inner:hover {
    -webkit-transform: scale(0.98);
    transform: scale(0.98); }
  @media only screen and (max-width: 767px) {
    #page .bt-item-service-page-lm > .wpb_column:last-child {
      margin-top: 30px; } }
  @media only screen and (max-width: 767px) {
    #page .bt-item02-service-page-lm > .wpb_column .vc_column-inner > .wpb_wrapper > h2.vc_custom_heading, #page .bt-item02-service-page-lm > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_text_column.wpb_content_element, #page .bt-item02-service-page-lm > .wpb_column .vc_column-inner > .wpb_wrapper > .wpb_single_image.wpb_content_element {
      text-align: center !important; }

    #page .bt-item02-service-page-lm > .wpb_column:last-child {
      margin-top: 30px; } }
  #page .bt-item03-service-page-lm > .wpb_column.item-warp > .vc_column-inner {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .bt-item03-service-page-lm > .wpb_column.item-warp > .vc_column-inner > .wpb_wrapper > .vc_row.bt-item-bkg-service-page-lm {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .bt-item03-service-page-lm > .wpb_column.item-warp > .vc_column-inner:hover > .wpb_wrapper > .vc_row.bt-item-bkg-service-page-lm {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  @media only screen and (max-width: 767px) {
    #page .bt-item03-service-page-lm > .wpb_column.item-warp:last-child {
      margin-top: 30px; } }
  @media only screen and (max-width: 540px) {
    #page .bt-item03-service-page-lm > .wpb_column.item-warp > .vc_column-inner {
      padding: 15px 10px !important; } }
  #page ul.bt-nav-packages-special-lm {
    padding: 0px;
    margin: 0px; }
  #page ul.bt-nav-packages-special-lm > li {
    display: inline-block;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 100%; }
  #page ul.bt-nav-packages-special-lm > li:not(:first-child) {
    margin-top: 10px; }
  #page ul.bt-nav-packages-special-lm > li:hover > a {
    color: #24ca24; }
  #page ul.bt-nav-packages-special-lm > li:hover > a > i {
    color: #333; }
  #page ul.bt-nav-packages-special-lm > li > a {
    text-decoration: none;
    color: #333;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner:hover .wpb_single_image .vc_single_image-wrapper > img {
    transform: rotateY(-360deg);
    -moz-transform: rotateY(-360deg);
    -ms-transform: rotateY(-360deg);
    -o-transform: rotateY(-360deg);
    -webkit-transform: rotateY(-360deg); }
  #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner .wpb_single_image .vc_single_image-wrapper > img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  @media only screen and (max-width: 991px) {
    #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column:last-child {
      margin-top: 30px; } }
  @media only screen and (max-width: 767px) {
    #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column:not(:first-child) {
      margin-top: 30px; }
      #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner, #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner .but-barber {
        width: 100%; }
      #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner {
        max-width: 450px; }
        #page .bt-item-packages-page-lm .bt-image-packages-lm.wpb_column > .vc_column-inner .but-barber {
          max-width: 300px; } }
  @media screen and (max-width: 991px) {
        #page .bt-ss-position-z-lm > .wpb_column:last-child > .vc_column-inner {
          padding-left: 30px !important;
          padding-right: 30px !important;
          max-width: 430px;
          margin-left: auto;
          margin-right: auto; } }
  #page .position-z {
    z-index: 9; }
  #page .position-z > .vc_column-inner:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 100%;
    border-top: 70px solid #24ca24;
    transform: skewY(10deg);
    z-index: 0; }
  @media only screen and (max-width: 991px) {
      #page .vc_row.bt-columns-gap-lm > .wpb_column {
        padding-left: 0px !important;
        padding-right: 0px !important; } }
  @media only screen and (max-width: 991px) {
        #page .vc_row.bt-columns-gap-lm > .wpb_column > .vc_column-inner {
          padding-left: 15px !important;
          padding-right: 15px !important; }
          #page .vc_row.bt-columns-gap-lm > .wpb_column > .vc_column-inner .wpb_single_image.wpb_content_element {
            display: flex;
            justify-content: center;
            align-items: center; } }
  @media only screen and (max-width: 991px) {
      #page .vc_row.bt-columns-gap-lm > .wpb_column .bt-item-request-service-lm {
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto; }
        #page .vc_row.bt-columns-gap-lm > .wpb_column .bt-item-request-service-lm > .vc_column-inner {
          margin-left: 0px !important;
          margin-bottom: 0px !important; } }
  @media only screen and (max-width: 991px) and (max-width: 991px) {
            #page .vc_row.bt-columns-gap-lm > .wpb_column .bt-item-request-service-lm > .vc_column-inner {
              padding-left: 10px !important;
              padding-right: 10px !important; }
              #page .vc_row.bt-columns-gap-lm > .wpb_column .bt-item-request-service-lm > .vc_column-inner .wpb_wrapper > .vc_btn3-container > a {
                width: 100%;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto; } }
  @media only screen and (max-width: 991px) {
    #page .vc_row.bt-columns-gap-lm > .wpb_column:last-child {
      margin-top: 40px; }
      #page .vc_row.bt-columns-gap-lm > .wpb_column:last-child .vc_column-inner h2.vc_custom_heading, #page .vc_row.bt-columns-gap-lm > .wpb_column:last-child .vc_column-inner .wpb_text_column.wpb_content_element, #page .vc_row.bt-columns-gap-lm > .wpb_column:last-child .vc_column-inner .vc_btn3-container {
        text-align: center !important; }
        #page .vc_row.bt-columns-gap-lm > .wpb_column:last-child .vc_column-inner .vc_btn3-container {
          width: 100%; }

    #page .vc_row.bt-columns-gap-lm.bt-experience-page-lm > .wpb_column:last-child {
      margin-top: 20px; }
      #page .vc_row.bt-columns-gap-lm.bt-experience-page-lm > .wpb_column:last-child .vc_row.bt-item-experience-warp-lmm {
        padding: 20px !important; } }
  @media only screen and (max-width: 767px) {
    #page .vc_row.bt-columns-gap-lm.bt-experience-page-lm {
      padding-left: 15px;
      padding-right: 15px; }
      #page .vc_row.bt-columns-gap-lm.bt-experience-page-lm .vc_row.bt-item-experience-warp-lmm .vc_custom_heading {
        text-align: center !important; } }
  #page .bt-testimonial-page-lm.wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.style-4 .owl-item .item.layout-style-4 article .bt-thumb {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center; }
  #page .bt-testimonial-page-lm.wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.style-4 .owl-item .item.layout-style-4 article .bt-thumb > img {
    width: 95%;
    height: 95%;
    border-radius: 50%; }
  @media only screen and (max-width: 480px) {
              #page .bt-testimonial-page-lm.wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.style-4 .owl-item .item.layout-style-4 article {
                width: 100%;
                padding: 0px 10px;
                margin: 60px 0px 0px 0px; } }
  @media only screen and (max-width: 1199px) {
        #page .bt-testimonial-page-lm.wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.style-4 .owl-nav .owl-next {
          margin-right: -10px !important; }
        #page .bt-testimonial-page-lm.wpb_theme_custom_element.wpb_base_testimonial .owl-carousel.testimonial.style-4 .owl-nav .owl-prev {
          margin-left: -10px !important; } }
  #page .bt-item-services-page-lm .bt-cat-service:hover .ca > .vc_column-inner {
    opacity: 1; }
  #page .bt-item-services-page-lm .bt-cat-service .ca > .vc_column-inner {
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s; }
  @media only screen and (max-width: 767px) {
 }
  @media only screen and (max-width: 991px) {
      #page .bt-item-services-page-lm.bt-item01-services-page-lm .bt-cat-service:nth-child(3), #page .bt-item-services-page-lm.bt-item01-services-page-lm .bt-cat-service:last-child {
        margin-top: 15px; } }
  @media only screen and (max-width: 767px) {
      #page .bt-item-services-page-lm.bt-item01-services-page-lm .bt-cat-service:not(:first-child), #page .bt-item-services-page-lm.bt-item02-services-page-lm .bt-cat-service:not(:first-child) {
        margin-top: 15px; } }
  @media only screen and (max-width: 767px) {
      #page .bt-item-services-page-lm.bt-item02-services-page-lm {
        margin-top: 0px !important; } }
  #page .vc_custom_heading.inline-lm {
    display: inline-block !important; }
  @media screen and (max-width: 991px) {
      #page .vc_custom_heading.bt-title01-page-lm {
        font-size: 30px !important;
        line-height: 40px !important; } }
  @media screen and (max-width: 540px) {
      #page .vc_custom_heading.bt-title01-page-lm, #page .vc_custom_heading.bt-title-contact-page-lm {
        font-size: 25px !important;
        line-height: 35px !important; } }
  #page .bt-phone.vc_custom_heading {
    position: relative; }
  #page .bt-phone.vc_custom_heading:before {
    font-family: FontAwesome;
    content: "\f095";
    position: absolute;
    left: 0;
    font-size: 50px;
    font-weight: 100;
    color: #24ca24; }
  @media only screen and (max-width: 540px) {
    #page .bt-phone.vc_custom_heading {
      font-size: 30px !important;
      line-height: 40px !important; } }
  #page .bt-newlester_02, #page .wpb_content_element.bt-newlester {
    position: relative; }
  #page .bt-newlester_02 form, #page .wpb_content_element.bt-newlester form {
    position: relative; }
  #page .bt-newlester_02 form > input.tnp-email, #page .wpb_content_element.bt-newlester form > input.tnp-email {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 35px;
    padding: 20px 70px 20px 25px;
    width: calc(100% - 155px);
    color: #fff;
    font-size: 18px;
    line-height: 68px;
    height: 68px; }
  #page .bt-newlester_02 form > input.tnp-email::placeholder, #page .wpb_content_element.bt-newlester form > input.tnp-email::placeholder {
    color: #fff;
    font-size: 15px;
    line-height: 68px; }
  @media only screen and (max-width: 540px) {
        #page .bt-newlester_02 form > input.tnp-email, #page .wpb_content_element.bt-newlester form > input.tnp-email {
          width: 100%;
          padding-right: 75px; } }
  #page .bt-newlester_02 form > input[type="submit"], #page .wpb_content_element.bt-newlester form > input[type="submit"] {
    width: 220px;
    font-size: 15px;
    background: #24ca24;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 35px;
    padding: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 68px;
    line-height: 68px;
    letter-spacing: 0.32px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  #page .bt-newlester_02 form > input[type="submit"]:focus, #page .wpb_content_element.bt-newlester form > input[type="submit"]:focus {
    outline: none; }
  @media only screen and (max-width: 540px) {
        #page .bt-newlester_02 form > input[type="submit"], #page .wpb_content_element.bt-newlester form > input[type="submit"] {
          width: 70px;
          font-size: 0px;
          background-color: transparent;
          z-index: 99; } }
  @media only screen and (max-width: 540px) {
    #page .bt-newlester_02 form:before, #page .wpb_content_element.bt-newlester:before {
      content: " ";
      width: 1px;
      height: 80%;
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff; }

    #page .bt-newlester_02 form:after, #page .wpb_content_element.bt-newlester:after {
      content: "\f0e0";
      font-family: FontAwesome;
      font-size: 17px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 30px;
      color: #fff;
      z-index: 9; } }
  #page .wpb_content_element.bt-newlester .tnp, #page .wpb_content_element.bt-newlester form {
    position: relative; }
  #page .wpb_content_element.bt-newlester .tnp form .tnp-field.tnp-field-email > label {
    display: none; }
  #page .wpb_content_element #sb_instagram {
    padding-bottom: 0px !important; }
  #page .wpb_content_element #sb_instagram .sb_instagram_header, #page .wpb_content_element #sb_instagram #sbi_load {
    display: none; }
  #page .wpb_content_element.bt-instagram-lm #sb_instagram #sbi_load {
    display: block;
    margin-top: 30px; }
  #page .wpb_content_element.bt-instagram-lm #sb_instagram #sbi_load > a.sbi_load_btn {
    margin-top: 0px;
    font-family: 'Montserrat';
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.48px;
    padding: 10px 20px; }

@-webkit-keyframes Btshine {
  100% {
    left: 125%; } }

@keyframes Btshine {
  100% {
    left: 125%; } }
