/*  ==========================================================================
    Table of Contets
    ==========================================================================

    1.0 Common Styles
    2.0 Header Section
    3.0 About Section
	20.0 Scroll To Top

    ==========================================================================
    OrganZe By ThemeEaster
    ========================================================================== */

	@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600|Poppins:500,600,700|Work+Sans:600&display=swap');

/*  ==========================================================================
    Common Styles
    ========================================================================== */
*{
	padding: 0;
	margin: 0;
}
body{
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #8d9aa8;
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #34ad54;
}

::selection {
    background-color: #34ad54;
    color: #fff
}

-webkit-::selection {
    background-color: #34ad54;
    color: #fff
}

::-moz-selection {
    background-color: #34ad54;
    color: #fff
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing:antialiased;
	color: #263a4f;
}
h1{
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #263a4f;
}
h2{
    font-size: 32px;
    line-height: 42px;
    color: #263a4f;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.7;
    color: #263a4f;
    letter-spacing: -0.5px;
}
h3{
    font-size: 20px;
}
h4{
    font-size: 16px;
}
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
img{
    border: none;
    outline:none;
    max-width: 100%;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
p, li, a, span{}
p{
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
}
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #ddd !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #ddd !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #ddd !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
   color: #ddd !important;
}
button{
    border: none;
	background: none;
}
/* Helper Class */
.padding{
    padding: 100px 0;
}
.padding-15{padding: 15px;}

.bg-white{ background-color: #ffffff; }
.bg-grey{ background-color: #f6fff2;}
.bg-dark{ background-color: #242323!important;}
.bd-bottom{ border-bottom: 1px solid #e5e5e5;}
.mb-40{ margin-bottom: 40px; }
.text-black{
    color: #333;
}
.text-white{
    color: #ffffff;
}
.align-center{
    text-align: center;
}

.overlay{
    width: 100%;
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
/* Preloader Styles */
.loaded .site-preloader-wrap {
    opacity: 0;
    visibility: hidden;
}
.site-preloader-wrap {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;left: 0
}

.site-preloader-wrap .spinner {
    background-color: #34ad54;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}
/* Button Style */
/*========= Button Style =========*/
.default-btn{
    display: inline-block;
    background: #34ad54;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}
.default-btn:hover{ color: #ffffff; }
.default-btn span {
    background: #ff9933 none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}
.default-btn:hover span {
    height: 562.5px;
    width: 562.5px;
}
/*========== Section Heading ==========*/
.section-heading h2{
    font-size: 48px;
    line-height: 56px;
    display: block;
}
.section-heading span{
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    color: #34ad54;
    font-weight: 600;
    letter-spacing: 0;
    font-family: "Work Sans",sans-serif;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
/*========== Section Food Design ==========*/
.pos-rel{position: relative;}
.food-1{
    background-image: url(../img/food-1.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}
.food-2{
    background-image: url(../img/food-2.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}


/*========== Transition Effect ==========*/
a,a:hover, .overlay, img, .form-control,  .form-control:hover, button{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}/* ==========================================================================
   Header Section
   ========================================================================== */
.header-section{
    background-color: #ffffff;
    width: 100%;
    height: 80px;
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
}
.navbar-fixed-top.header-section{
    background-color: #ffffff;
    -moz-box-shadow: 0 2px 5px rgba(16,16,16,.08);
    -webkit-box-shadow: 0 2px 5px rgba(16,16,16,.08);
    box-shadow: 0 2px 5px rgba(16,16,16,.08);
    height: 80px;
    border-bottom: 0;
    padding: 0;
}
.navbar-fixed-top ul.nav > li > a{
    color: #263a4f;
}
.navbar-fixed-top ul.nav > li > a:hover,
.navbar-fixed-top ul.nav > li > a:focus,
.navbar-fixed-top ul.nav > li.active > a{
    color: #34ad54;
}
.logo-light,
.navbar-fixed-top .logo-light,
.logo-dark,
.navbar-fixed-top .logo-dark,
.navbar-fixed-top.header-section,
.header-section{
    transition: all 0.3s ease-in-out;
}
.navbar{
    border: medium none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin: 0;
    position: relative;
    padding: 0;
}

/* Nav Menu */
#navbar{
    z-index: 999;
    padding: 0 15px;
}
ul.nav{}
ul.nav > li{
    position: relative;
}
ul.nav > li > a{
    color: #263a4f;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 80px;
    z-index: 1;
}
ul.nav > li > a:hover,
ul.nav > li > a:focus,
ul.nav > li > a.active{
    background: none;
    color: #34ad54;
    opacity: 1;
}

/* Dropdown Style
==================*/
#mainmenu li ul{
    background-color: #ffffff;
    width: 200px;
    height: auto;
    position: absolute;
    left: 0;
    top: 140%;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 999;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}
#mainmenu li:hover > ul{
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 100%;
}
#mainmenu li ul li{
    border-bottom: 2px solid #eee;
    display: block;
    position: relative;
    padding: 0;
}
#mainmenu li ul li:last-child{
    border: none;
}
#mainmenu li ul li a{
    font-family: 'Open Sans', sans-serif;
    line-height: 45px;
    display: block;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #6a8695;
    -webkit-transition: color 0.3s ease 0s, padding 0.3s ease 0s;
    transition: color 0.3s ease 0s, padding 0.3s ease 0s;
}
#mainmenu li > ul > li:hover a{
    background-color: #34ad54;
    color: #ffffff;
}
#mainmenu li > ul ul{
    background-color: #ffffff;
    left: 200px;
}
#mainmenu li > ul li:hover > ul li a{
    color: #777;
}
#mainmenu li ul li:hover > ul{
    top: 0;
    opacity: 1;
    visibility: visible;
}
#mainmenu li > ul li:hover > ul li > a:hover{
    background-color: transparent;
    color: #ffffff;
}
#mainmenu li ul li li a:hover{
    color: #ffca3f !important;
}

/* Transparent Header
=====================*/
.header-section.transparent{
    background-color: transparent;
}
.navbar-fixed-top.header-section.transparent{
    background-color: #ffffff;
}

.header-section.transparent ul.nav > li > a{
    color: #ddd;
}
.header-section.transparent ul.nav > li > a:hover,
.header-section.transparent ul.nav > li > a.active{
    color: #ffffff;
}
.navbar-fixed-top.header-section.transparent ul.nav > li > a{
    color: #34ad54;
}
.navbar-fixed-top.header-section.transparent ul.nav > li > a:hover,
.navbar-fixed-top.header-section.transparent ul.nav > li > a.active{
    color: #34ad54;
}
.navbar-fixed-top.transparent .logo-dark,
.transparent .logo-light{
    display: block;
}
.navbar-fixed-top.transparent .logo-light,
.transparent .logo-dark{
    display: none;
}

/* Mobile Menu
=================*/

/* Menu Button Style
==================== */
.header-right{
    display: flex;
    align-items: center;
}
.header-right .menu-btn{
    background-color: #34ad54;
    color: #fff!important;
    padding: 0 30px;
    border-radius: 2px;
    line-height: 45px;
    display: inline-block;
    font-family: "Work Sans",sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}
.header-right .menu-btn:hover{
    background-color: #ff9933;
    opacity: 0.8;
    color: #ffffff;
}

/* Search Box
===============*/

/* ==========================================================================
   Promo Section
   ========================================================================== */
.promo-section{}
.promo-wrap{}
.promo-item{
    background-color: transparent;
    padding: 40px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.promo-item.active{
    background-color: #ffffff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.promo-item.active i{
    background-color: #ff9933;
    color: #ffffff;
}
.promo-item:hover{
    background-color: #ffffff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.promo-item:hover i{
    background-color: #ff9933;
    color: #ffffff;
}
.promo-item i{
    color: #34ad54;
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border: 2px dashed #ff9933;
    border-radius: 50%;
}
.promo-item h3{}
.promo-item p{}
.promo-item a{
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    color: #34ad54;
    font-weight: 600;
}
.promo-item a:hover{
    color: #ff9933;
    text-decoration: underline;
}
.section-heading{}
.section-heading h2{
    margin-bottom: 15px;
}
.section-heading img{
    margin-bottom: 15px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section{}
.about-wrap{
    display: flex;
    align-items: center;
}
.about-content{}
.about-content .section-heading p{
    margin-bottom: 0;
}
.about-content a{}
.about-content .section-heading,
.about-info{
    margin-bottom: 30px;
}
.about-info li{
    font-family: 'Poppins', sans-serif;
    color: #263a4f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-info li:last-child{
    margin-bottom: 0;
}
.about-info li i{
    color: #34ad54;
    margin-right: 15px;
    font-size: 15px;
}

/* ==========================================================================
   Product Carousel Section
   ========================================================================== */
.product-carousel-section{}
.product-item{
    -webkit-transition: all .3s ease-in-out;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}
.product-carousel .owl-stage-outer{
    padding: 20px 0;
}
.product-thumb{
    position: relative;
    overflow: hidden;
}
.product-thumb:before{
    background-color: rgba(52, 173, 84, 0.8);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(.37,.31,.2,.85);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.product-thumb img{
    width: 100%;
}
.product-content{
    background-color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #eee;
}
.product-content h3{
    font-size: 20px;
    display: block;
    margin-bottom: 0;
}
.product-content h3 a{
    color: #263a4f;
}
.product-content h3 a:hover{
    color: #34ad54;
}
.product-content h4 span{
    font-family: "Work Sans",sans-serif;
    display: inline-block;
    color: #34ad54;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    letter-spacing: -0.2px;
}
.product-content h4 span.old{
    color: #8d9aa8;
    text-decoration: line-through;
    margin-right: 0;
}
.product-item:hover .product-thumb:before{
    transform: translateY(0);
}

.product-item:hover .product-thumb:before{
    visibility: visible;
    opacity: 1;
}
.product-item:hover .product-thumb img{
    transform: scale(1.05);
}
/*========== Navigation ==========*/
.product-carousel{
    position: relative;
}
.product-carousel .owl-nav div{
    background-color: #ffffff;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: -25px;
    top: 50%;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(.37,.31,.2,.85);
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.product-carousel .owl-nav div.owl-next{
    left: auto;
    right: -25px;
}
.product-carousel:hover .owl-nav div{
    left: 0;
    visibility: visible;
    opacity: 1;
}
.product-carousel:hover .owl-nav div.owl-next{
    left: auto;
    right: 0;
}

/* ==========================================================================
    Product Section
   ========================================================================== */
.product-section{}
.product-filter{
    margin-bottom: 30px;
}
.product-filter li{
    font-family: 'Work Sans', sans-serif;
    color: #263a4f;
    display: inline-block;
    font-weight: 600;
    margin: 0 10px;
    font-size: 15px;
    text-transform: capitalize;
    cursor: pointer;
}
.product-filter li.active{
    color: #34ad54;
}
.product-items{}
.product-items .product-item{}
.product-thumb{}
.product-content h3{}
.product-content h4{}

/* ==========================================================================
    Cta Section
   ========================================================================== */
.cta-section{
    background-image: url(../img/cta.jpg);
    background-size: cover;
    background-position: center center;
}
.cta-wrap{
    display: flex;
    align-items: center;
}
.cta-content{}
.cta-content h2{
    font-size: 42px;
    line-height: 52px;
    color: #ffffff;
    margin-bottom: 20px;
}
.cta-content p{
    color: #ffffff;
    margin-bottom: 0;
}
.cta-btn{}
.cta-btn a{}

/* ==========================================================================
   Feature Section
   ========================================================================== */

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section{}
.team-wrap{}
.team-box{
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 15px 2px rgba(0,0,0,.06);
    box-shadow: 0 3px 15px 2px rgba(0,0,0,.06);
    transition: all .3s ease-in-out;
    text-align: center;
    overflow: hidden;
}
.team-box:hover{}
.team-item{
    position: relative;
}
.team-item img{
    width: 100%;
}
.team-content{
    background-color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #eee;
}
.team-content h3{font-size: 18px;}
.team-content h3 span{
    font-family: 'Work Sans', sans-serif;
    display: block;
    color: #34ad54;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section{}
.gallery-item{
    position: relative;
    overflow: hidden;
}
.gallery-item img{
    width: 100%;
}
.gallery-item:hover h3{
    transform: translateY(0);
    transition-delay: 0.2s;
    visibility: visible;
    opacity: 1;
}

/* =======  gallery Filter Styles  ======= */

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section{
    position: relative;
    z-index: 1;
}
.testi-item img{
    width: 100px!important;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
}
.testi-content{
    padding-left: 20px;
}
.testi-content h3{
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    margin: 0;
}
.testi-content span{
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Work Sans",sans-serif;
}
.testi-item{
    background-color: #ffffff;
    position: relative;
    padding: 30px;
    border-left: 4px solid #34ad54;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.testi-item .fa-quote-right{
    position: absolute;
    right: 30px;
    bottom: 25px;
    font-size: 50px;
    color: #34ad54;
    opacity: 0.5;
}
/*========== Rattings ==========*/
.testi-content .rattings{
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 0;
}
.testi-content .rattings li{
    display: inline-block;
}
.testi-content .rattings li i{
    font-size: 10px;
    color: #34ad54;
    display: inline-block;
}
/*========== Boolets ==========*/
.owl-controls .owl-dots{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -50px;
    text-align: center;
}
.owl-controls .owl-dots .owl-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background-color: #555;
    margin: 0 3px;
    position: relative;
    text-align: center;
}
.owl-controls .owl-dots .owl-dot.active{
    background-color: #34ad54;
}

/* ==========================================================================
   Faq Section
   ========================================================================== */
.faq-section{}
.faq-wrap{
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.faq-item .card{
    border-radius: 2px;
    border: 1px solid #eee;
}
.faq-item .card-header{
    padding: 0;
    border-radius: 2px;
    border: none;
}
.faq-item .btn-link{
    color: #263a4f;
    font-weight: 600;
    text-decoration: none;
}
.faq-item .card-header button{
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 15px;
    position: relative;
    white-space: normal;
    text-decoration: none;
    color: #34ad54;
    letter-spacing: -0.5px;
    border-radius: 2px;
    background-color: #ffffff;
    border: none;
}
.faq-item .card-header button[aria-expanded="true"]{
    background-color: #34ad54;
    color: #ffffff;
}

/* ==========================================================================
   Page Header Section
   ========================================================================== */
.page-header{
    background-image: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.page-header-bottom{
    background-image: url(../img/page-header.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    position: absolute;
    width: 544px;
    height: 144px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}
.page-content{}
.page-content h2{
    color: #ffffff;
    font-size: 36px;
}
.page-content p{
    color: #ddd;
    margin: 0;
}
/* ==========================================================================
   404 Error Section
   ========================================================================== */
.error-section{}
.error-content{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-content img{
    max-width: 100%;
}
.error-content .error-info{
    padding-left: 50px;
    text-align: center;
}
.error-content .error-info h2{
    font-size: 200px;
    line-height: 200px;
    letter-spacing: -10px;
}
.error-content .error-info a{
    color: #263a4f;
    font-weight: 600;
    text-decoration: underline;
}
.error-content .error-info a:hover{
    color: #34ad54;
}
/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section{
    position: relative;
    z-index: 1;
}
.contact-info h3{
    line-height: 28px;
}
.contact-info h4{
    font-size: 15px;
    line-height: 28px;
}
.contact-info span{
    text-transform: uppercase;
    margin-right: 5px;
}
/* Form Style
===============*/
.form-control{
    background-color: #ffffff;
    border-radius: 0;
    padding: 15px 10px;
    box-shadow: none;
}
.form-control:focus{
    border-color: #34ad54;
    box-shadow: none;
    outline: none;
}
/* Google Map*/

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-heading{}
.section-heading span{color: #34ad54;}
/* ==========================================================================
   Service Section
   ========================================================================== */

/* ==========================================================================
   Shop Section
   ========================================================================== */

/*========== Product Details ==========*/
.shop-details{}
.shop-details-wrap{
    border-bottom: 2px solid #eee;
    padding-bottom: 50px;
}
.shop-details h3{
    font-size: 24px;
}
.shop-details h3 span{
    color: #bbb;
    margin-left: 10px;
    text-decoration: line-through;

}
.rattings{
    margin-bottom: 30px;
}
.rattings li{
    display: inline-block;
}
.rattings li i{
    display: inline-block;
    color: #fab702;
}

/* Cart Section */

/* Checkout Section */

/*========== Navigation ==========*/
.shop-single-carousel{
    position: relative;
}
.shop-single-carousel .owl-nav div{
    background-color: #ffffff;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: 0;
    top: 50%;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(.37,.31,.2,.85);
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.shop-single-carousel .owl-nav div.owl-next{
    left: auto;
    right: 0;
}
.shop-single-carousel:hover .owl-nav div{
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.shop-description-wrap{
    padding-top: 50px;
}
.shop-description-wrap h3{
    margin-bottom: 20px;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
/*Bg-dark*/
/* Pagination
=============== */
.pagination-wrap{}
.pagination-wrap li{
    display: inline-block;
    margin: 0 5px;
}
.pagination-wrap.text-left li {
    margin: 0 10px 0 0;
}
.pagination-wrap li a{
    border: 1px solid #e5e5e5;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #263a4f;
    font-weight: 600;
    border-radius: 2px;
}
.pagination-wrap li a:hover{
    background-color: #34ad54;
    color: #ffffff;
    opacity: 1;
    text-decoration: none;
}
.pagination-wrap li a.active{
    background-color: #34ad54;
    border: 1px solid #34ad54;
    color: #ffffff;
}
/* Sidebar Style
===============*/
/* Search Form Style
===================*/

/* Thumbnails Post Style
========================*/
/* Tag Cloud Style
==================*/
.widget-content .tags{}
.widget-content .tags li{
    display: inline-block;
}
.widget-content .tags li a{
    display: inline-block;
    background-color: #34ad54;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #ffffff;
    margin: 3px;
}
.widget-content .tags li a:hover{
    background-color: #ff9933;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* ==========================================================================
   Blog Single Section
   ========================================================================== */
/* Blog Quote
===============*/
/* Post Tags Style
==================*/
/* Author Box Style
====================*/
/* Post Navigation
====================*/

/* Comments Style
==================*/
/* ==========================================================================
   Sponsor Section
   ========================================================================== */

/* ==========================================================================
   Widget Section
   ========================================================================== */
.widget-section{
    background-color:#458a5b;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.widget-content{}
.widget-content img{
    margin-bottom: 20px;
}
.widget-content.footer h4{
    color: #ffffff;
}
.widget-content p{color: #ffffff;}
.widget-content span{
    color: #ffffff;
    display: block;
}
.widget-content .widget-links{}
.widget-content .widget-links li{}
.widget-content.footer .widget-links li a{
    color: #ffffff;
    line-height: 1.9;
    font-weight: 600;
}
.widget-content .widget-links li a{
    font-weight: 600;
    color: #263a4f;
}
.widget-content .widget-links li a:hover{
    text-decoration: underline;
}
/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section{
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-section p{
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 0;
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */
#scroll-to-top{
    background-color: #34ad54;
    display: none;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    line-height: 45px;
    color: #ffffff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
}
#scroll-to-top:hover{
    background-color: #ff9933;
    color: #ffffff;
    opacity: 0.8;
}
