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

/*Table of Content
- body
- header
   - navbar-nav
   - transparent-bg
   - boxed-nav
   - side-nav
- revolution slider
- owl carousel
- cbp-gallery
   - cbp-filters
   - overlay
- features
- counters
- testimonials
   - testimonial-wrapp 
      - testimonial-text
- pricing_item
- team-box
- news_box
- page_header
- faq
   - faq_content
- error
- contactus
- footer
- loader

*/

/*General Styling*/
body {
   padding: 0;
   margin: 0;
   color: #a5a5a5;
   font-size: 14px;
   overflow-x: hidden;
   font-family: 'Open Sans', sans-serif;
   direction: ltr;
}
body, html {
   height: 100%;
   width: 100%;
   position: relative;
}
html {
   font-size: 16px;
}
ol, ul {
   margin: 0;
   padding: 0;
   list-style: none;
}
a {
   color: inherit;
}
a, a:hover, a:focus {
   outline: none;
   text-decoration: none;
   color: inherit;
}
h1, h2, h3, h4, h5, h6 {
   margin: 0;
}
h1, h2, h3, h4, h5 {
   font-family: 'Poppins', sans-serif;
}
h1 {
   font-size: 3.75rem;
}
h2 {
   font-size: 2.5rem;
}
h3 {
   font-size: 1.75rem;
}
h4 {
   font-size: 1.25rem;
}
h5 {
   font-size: 1rem;
}
h6 {
   font-size: 0.875rem;
}
p {
   font-size: 14px;
}


/*Helper Classes*/
.padding {
   padding: 7.5rem 0
}
.padding-top {
   padding-top: 7.5rem;
}
.padding-bottom {
   padding-bottom: 7.5rem;
}
.margin_top {
   margin-top: 7.5rem;
}
.padding-bottom-half {
   padding-bottom: 4.375rem;
}
.padding-top-half {
   padding-top: 4.375rem;
}
.margin_tophalf {
   margin-top: 4.375rem;
}
.heading_space {
   margin-bottom: 4.375rem
}
.top60 {
   margin-top: 60px;
}
.bottom45 {
   margin-bottom: 45px;
}
.top40 {
   margin-top: 40px;
}
.top30 {
   margin-top: 30px;
}
.bottom30 {
   margin-bottom: 30px;
}
.bottom35 {
   margin-bottom: 35px;
}
.bottom25 {
   margin-bottom: 25px;
}
.top25 {
   margin-top: 25px;
}
.bottom20 {
   margin-bottom: 20px;
}
.top20 {
   margin-top: 20px;
}
.top15 {
   margin-top: 15px;
}
.bottom15 {
   margin-bottom: 15px;
}
.bottom10 {
   margin-bottom: 10px;
}
.margin10 {
   margin-top: 15px;
}
.bottom5 {
   margin-bottom: 5px;
}
.no_bottom {
   margin-bottom: 0;
}
.nopadding {
   padding: 0;
}
.bg_light {
   background: #f6f6f6;
}
.bg_grey {
   background: #ebeff2;
}
.bg_dark {
   background: #384141;
}
.darkcolor {
   color: #384141;
}
.color {
   color: #4fb8aa;
}
.whitecolor {
   color: #fff;
}
.primarycolor {
   color: #b2cb20;
}
.secondrycolor {
   color: #4fb8aa;
}
.dangercolor {
   color: #e84455;
}
.bg_secondry {
   background: #4fb8aa;
}
.font-light {
   font-weight: 300;
}
.font-light2 {
   font-weight: 200;
}
.font-xlight {
   font-weight: 100;
}
.font-bold {
   font-weight: bold;
}
.font-medium {
   font-weight: 500;
}

/*heading Style*/
.heading {
   border-bottom: 1px solid #dadada;
   display: inline-block;
}
.heading .divider-left,
.heading .divider-center {
   height: 4px;
   width: 70px;
   background: #b2cb20;
   display: block;
}
.heading .divider-left {
   margin: 10px 0 -2px;
}
.heading .divider-center {
   margin: 10px auto -2px;
}
.heading > span {
   font-weight: 200;
}

/*Align items center*/
.center-block {
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -moz-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -moz-box-orient: vertical;
   -moz-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -moz-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.image, .image img {
   position: relative;
}
.image img {
   -o-transition: all .8s linear;
   -webkit-transition: all .8s linear;
   transition: all .8s linear;
   width: 100%;
}
.image {
   overflow: hidden;
}
.image:hover img {
   -webkit-transform: scale(1.1);
   -o-transform: scale(1.1);
   -ms-transform: scale(1.1);
   transform: scale(1.1);
   -webkit-transform-origin: center center;
   -o-transform-origin: center center;
   -ms-transform-origin: center center;
   transform-origin: center center;
}


/* ---- Buttons ---- */
.btn_common {
   padding: 12px 2.5rem;
   display: inline-block;
   font-weight: bold;
   line-height: normal;
   font-size: 13px;
   text-transform: uppercase;
   text-align: center;
   -webkit-border-radius: 36px;
   border-radius: 36px;
   position: relative;
   z-index: 1;
   border: 1px solid transparent;
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
}
.btn_full {
   width: 100%; 
}
.white_transparent {
   border: 1px solid #fff !important;
   background: transparent;
}
.white_transparent:hover,
.white_transparent:focus {
   background: #fff;
   color: #384141;
}
.btn_dark {
   background: #384141;
}
.btn_dark , .btn_border {
   border: 1px solid #384141;
   color: #384141;
}
.btn_border:hover,
.btn_border:focus {
   background: #4fb8aa;
   border-color: #4fb8aa;
}
.btn_primary {
   background: #b2cb20;
}
.btn_primary:hover,
.btn_primary:focus,
.btn_secondry {
   background: #4fb8aa;
   color: #fff;
}
.btn_secondry:hover,
.btn_secondry:focus {
   background: #b2cb20;
}
.btn_hvrdanger:hover,
.btn_hvrdanger:focus,
.btn_danger {
   background: #e84455;
   border-color: #e84455;
   color: #fff;
}
.btn_danger:hover,
.btn_danger:focus {
   background: #4fb8aa;
   border-color: #4fb8aa;
}
.white_transparent,
.btn_primary,
.btn_secondry,
.btn_danger,
.btn_primary:hover,
.btn_primary:focus,
.btn_secondry:hover,
.btn_secondry:focus,
.btn_border:hover,
.btn_border:focus,
.btn_danger:hover,
.btn_danger:focus{
   color: #fff;
}
.btn_hvrwhite:hover,
.btn_hvrwhite:focus {
   background: #fff;
   border-color: #fff;
   color: #384141;
}
.readmore {
   display: inline-block;
   font-weight: 600;
   position: relative;
   color: #a5a5a5;
}
.readmore::before {
   content: "";
   height: 5px;
   width: 0;
   background: #a5a5a5;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   display: inline-block;
   opacity: 0;
   vertical-align: middle;
   margin-right: 3px;
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.readmore:hover::before,
.readmore:focus::before {
   opacity: 1;
   width: 5px;
}
.readmore:hover,
.readmore:focus {   
   color: #b2cb20;
}

/* ---- Buttons ends ---- */


/* ---- Social Icons ---- */
ul.social_icon li a {
   border: 1px solid #fff;
   color: #fff;
   display: block;
   font-size: 16px;
   height: 36px;
   line-height: 35px;
   text-align: center;
   width: 36px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   position: relative;
   z-index: 1;
   overflow: hidden;
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
}
ul.social_icon.black li a {
   border: 1px solid #384141;
   color: #384141;
}
ul.social_icon.black li a:hover,
ul.social_icon.black li a:focus {
   color: #fff;
}
ul.social_icon.whitebg li a {
	background: #fff;
	border-color: #fff;
	color: #384141;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .1);
	box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
ul.social_icon.noborder li a {
   border: none !important;
}
ul.social_icon li a:hover, 
ul.social_icon li a:focus {
   background: #b2cb20;
   border-color: transparent;
   color: #fff;
}
ul.social_icon li a.facebook:hover, 
ul.social_icon li a.facebook:focus {
   background: #3b5999;
   border-color: #3b5999;
}
ul.social_icon li a.twitter:hover, 
ul.social_icon li a.twitter:focus {
   background: #55acee;
   border-color: #55acee;
}
ul.social_icon li a.insta:hover, 
ul.social_icon li a.insta:focus {
   background: #e4405f;
   border-color: #e4405f;
}
ul.social_icon li a.linkden:hover, 
ul.social_icon li a.linkden:focus {
   background: #0077B5;
   border-color: #0077B5;
}
ul.social_icon li a.google:hover, 
ul.social_icon li a.google:focus {
   background:#dd4b39;
   border-color: #dd4b39;
}
ul.social_icon li a.whatsapp:hover, 
ul.social_icon li a.whatsapp:focus {
   background: #25D366;
   border-color: #25D366;
}
ul.social_icon li a.dribble:hover, 
ul.social_icon li a.dribble:focus {
   background: #ea4c89;
   border-color: #ea4c89;
}


/* ---- Social Icons ends ---- */

/* ---- BackTop Button ---- */
.scrollToTop {
   width: 40px;
   height: 40px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   text-align: center;
   font-weight: bold;
   line-height: 36px;
   font-size: 25px;
   position: fixed;
   z-index: 1000;
   bottom: 16px;
   right: 40px;
   display: none;
   background: #b2cb20;
}
.scrollToTop:hover {
   background: #4fb8aa;
}
.scrollToTop, .scrollToTop:hover,
.scrollToTop:focus {
   color: #fff;
}
/* ---- BackTop Button ends ---- */


.widget p.address > i {
   display: inline-block;
   font-size: 20px;
   margin-right: 5px;
   vertical-align: bottom;
}

/*Transitions */

a {
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}





/* ------------ Navigation ------------- */
.navbar,
.navbar-nav .nav-link,
.dropdown-menu .dropdown-item,
.navbar-nav .nav-link::before,
.side-nav .navbar-nav .nav-link > span {
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.navbar {
   padding-bottom: 0;
   padding-top: 0;
   z-index: 2002;
}
.transparent-bg,
.transparent-bg-dark,
.boxed-nav,
.center-brand,
.dark-nav,
.nav-gradient {
   left: 0;
   top: 0;
   position: absolute;
   width: 100%;
}
.boxed-nav {
   margin-top: 20px;
}
.boxed-nav .container {
   background: #fff;
}
.fixed-bottom {
   position: absolute;
   background: #fff;
   top: 0;
   left: 0;
   right: 0;
}
.fixedmenu {
   top: 0;
   left: 0;
   right: 0;
   position: fixed;
   margin: 0;
   padding-bottom: 0;
   padding-top: 0;
   z-index: 1002;
   background: #fff;
   box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.center-brand {
    padding-top: 10px;
    padding-bottom: 10px;
}
.fixed-bottom.fixedmenu{
   bottom: auto;
   top: 0;
   -webkit-animation: none;
   -o-animation: none;
   animation: none;
}
.nav-gradient, .nav-gradient.fixedmenu {
   background-color: #F73E73;
   background: -webkit-gradient(linear, left top, right top, from(#F7A872), to(#F73E73));
   background: linear-gradient(to right, #F7A872, #F73E73);
}

.navbar-brand {
   margin: 5px 0;
   padding: 0;
   width: 230px;
   position: relative;
}
.center-brand .navbar-brand {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
}

.navbar.fixedmenu .logo-default,
.navbar  .logo-scrolled {
	display: none;
}
.navbar.fixedmenu .logo-scrolled,
.navbar .logo-default{
   display: inline-block;
}
.collapse {
    position: relative;
}
.navbar-nav .nav-item {
   margin: 12px 1.25rem;
}
.nav-gradient .navbar-nav .nav-item {
   margin-left: .25rem;
   margin-right: .25rem;
}
.hvr-multi .navbar-nav .nav-item {
   margin: 0 .25rem;
}
.navbar-nav .nav-link {
   padding: 8px 0 !important;
   color: #384141;
   font-weight: 600;
   text-transform: capitalize;
   font-size: 14px;
   position: relative;
   overflow: hidden;
   font-family: 'Poppins', sans-serif;
   display: inline-block;
}
.transparent-bg .navbar-nav .nav-link,
.center-brand .navbar-nav .nav-link,
.nav-gradient .navbar-nav .nav-link {
   color: #fff;
}
.fixedmenu .navbar-nav .nav-link {
   color: #384141;
}
.nav-gradient.fixedmenu .navbar-nav .nav-link {
   color: #fff;
}
.navbar-nav .nav-link::before {
   content: "";
   background: #fff;
   height: 2px;
   width: 0;
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
   opacity: 0;
   visibility: hidden;
}
.navbar-nav .nav-link.dropdown-toggle::before,
.hvr-multi .navbar-nav .nav-link::before,
.nav-gradient .navbar-nav .nav-link::before {
   display: none;
}
.dropdown-toggle::after {
    content: "\f107";
    font-family: 'FontAwesome';
    vertical-align: middle;
    height: auto;
    width: auto;
    border: none;
}
.hvr-multi .navbar-nav .nav-link:nth-of-type(2) {
   background: rgba(0,0,0,0);
}
.transparent-bg-dark .navbar-nav .nav-link::before,
.fixedmenu .navbar-nav .nav-link::before {
   background: #384141;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus::before,
.navbar-nav .nav-link.active::before {
   opacity: 1;
   visibility: visible;
   width: 100%;
}
.hvr-multi .navbar-nav .nav-link,
.nav-gradient .navbar-nav .nav-link {
   padding: 8px 1rem !important;
   -webkit-border-radius: 20px;
   border-radius: 20px;
}
.nav-gradient .navbar-nav .nav-link:hover,
.nav-gradient .navbar-nav .nav-link:focus {
   background: #fff;
   color: #384141;
}
.hvr-multi .navbar-nav .nav-link:hover {
   color: #4fb8aa;
}
.hvr-multi .navbar-nav .nav-item:first-child .nav-link:hover{
   color: #b2cb20;
}
.hvr-multi .navbar-nav .nav-item:nth-child(2) .nav-link:hover {
   color: #4fb8aa;
}
.hvr-multi .navbar-nav .nav-item:nth-child(3) .nav-link:hover{
   color: #e84455;
}
.hvr-multi .navbar-nav .nav-item:nth-child(4) .nav-link:hover {
   color: #384141;
}
.hvr-multi .navbar-nav .nav-item:nth-child(5) .nav-link:hover {
   color: #d46408;
}
.hvr-multi .navbar-nav .nav-item:nth-child(6) .nav-link:hover {
   color: #62bddc;
}

.hvr-multi .navbar-nav .nav-link.active {
   color: #fff;
   background: #4fb8aa;
}
.hvr-multi .navbar-nav .nav-item:first-child .nav-link.active{
   background: #b2cb20;
   color: #fff;
}
.hvr-multi .navbar-nav .nav-item:nth-child(2) .nav-link.active {
   background: #4fb8aa;
   color: #fff;
}
.hvr-multi .navbar-nav .nav-item:nth-child(3) .nav-link.active {
   background: #e84455;
   color: #fff;
}
.hvr-multi .navbar-nav .nav-item:nth-child(4) .nav-link.active {
   background: #384141;
   color: #fff;
}
.hvr-multi .navbar-nav .nav-item:nth-child(5) .nav-link.active {
   background: #d46408;
   color: #fff;
}
.hvr-multi .navbar-nav .nav-item:nth-child(6) .nav-link.active {
   background: #62bddc;
   color: #fff;
}



/*DropDowns*/
.dropdown-menu {
   padding: 0;
   margin: 0;
   box-shadow: 0px 1px 2px #d2d2d2;
   border: none;
}
.static.dropdown {
    position: static;
}
.megamenu {
  padding: 20px 0;
  width: 100%;
}
.dropdown-menu .dropdown-item {
   color: #384141;
   font-weight: normal;
   font-size: 13px;
   padding: 8px 1rem;
}
.dropdown-menu.megamenu .dropdown-item::before {
    content: "\f178";
    font-family: "FontAwesome";
    opacity: 0;
    visibility: hidden;
    font-size: 10px;
    transition: all .3s ease;
    width: 0;
    display: inline-block;
   margin-right: 5px;
}
.dropdown-menu.megamenu .dropdown-item:hover::before{
	opacity:1;
    visibility: visible;
   width: 10px;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
   color: #fff;
   background: #4fb8aa;
}
.dropdown-menu.megamenu .dropdown-item:hover,
.dropdown-menu.megamenu .dropdown-item:focus {
   color: #4fb8aa;
   background: transparent;
}
.dropdown-menu.primary .dropdown-item:hover,
.dropdown-menu.primary .dropdown-item:focus {
   background: #b2cb20;
}
.dropdown-menu.danger .dropdown-item:hover,
.dropdown-menu.danger .dropdown-item:focus {
   background: #e84455;
}
.dropdown-menu .dropdown-title {
   margin-left: 1rem;
}


/*toggle responsive*/
.navbar-toggler {
   position: relative;
   border: none;
   height: 32px;
   padding: 5px 10px;
}
.navbar-toggler:focus,
.navbar-toggler:active {
   outline: 0;
}
.navbar-toggler span {
   display: block;
   background: #fff;
   height: 2px;
   width: 25px;
   margin-top: 4px;
   margin-bottom: 4px;
   -webkit-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   -ms-transform: rotate(0deg);
   transform: rotate(0deg);
   position: relative;
   left: 0;
   opacity: 1;
}
.boxed-nav .navbar-toggler span,
.fixedmenu .navbar-toggler span,
.transparent-bg-dark span,
.bgwhite-nav .navbar-toggler span{
   background: #384141;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   -webkit-transition: -webkit-transform .35s ease-in-out;
   transition: -webkit-transform .35s ease-in-out;
   -o-transition: -o-transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out, -o-transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
   position: absolute;
   left: 10px;
   top: 10px;
   -webkit-transform: rotate(135deg);
   -o-transform: rotate(135deg);
   -ms-transform: rotate(135deg);
   transform: rotate(135deg);
   opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
   height: 3px;
   visibility: hidden;
   background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
   position: absolute;
   left: 10px;
   top: 10px;
   -webkit-transform: rotate(-135deg);
   -o-transform: rotate(-135deg);
   -ms-transform: rotate(-135deg);
   transform: rotate(-135deg);
   opacity: 0.9;
}

/*navigation socials*/
.nav-social {
   margin-left: 15px;
}
.nav-social ul.social_icon li {
   display: inline-flex;
}
.nav-social ul.social_icon li a {
   height: 30px;
   width: 30px;
   font-size: 14px;
   line-height: 30px;
   display: inline-block;
}
.fixed-bottom .nav-social ul.social_icon li a {
   color: #384141;
}
.nav-social ul.social_icon li a.facebook:hover,
.nav-social ul.social_icon li a.facebook:focus {
   color: #3b5999;
   background: #fff;
}
.nav-social ul.social_icon li a.twitter:hover,
.nav-social ul.social_icon li a.twitter:focus {
   color: #55acee;
   background: #fff;
}
.nav-social ul.social_icon li a.insta:hover,
.nav-social ul.social_icon li a.insta:focus {
   color: #e4405f;
   background: #fff;
}
.nav-social ul.social_icon li a.linkden:hover,
.nav-social ul.social_icon li a.linkden:focus{
   color: #0077B5;
   background: #fff;
}
.nav-social ul.social_icon li a.google:hover,
.nav-social ul.social_icon li a.google:focus {
   color: #dd4b39;
   background: #fff;
}
.fixedmenu .nav-social ul.social_icon li a {
   color: #384141;
}

.fixedmenu .nav-social ul.social_icon li a.facebook:hover,
.fixedmenu .nav-social ul.social_icon li a.facebook:focus {
   background: #3b5999;
}
.fixedmenu .nav-social ul.social_icon li a.twitter:hover,
.fixedmenu .nav-social ul.social_icon li a.twitter:focus {
   background: #55acee;
}
.fixedmenu .nav-social ul.social_icon li a.insta:hover,
.fixedmenu .nav-social ul.social_icon li a.insta:focus {
   background: #e4405f;
}
.fixedmenu .nav-social ul.social_icon li a.linkden:hover,
.fixedmenu .nav-social ul.social_icon li a.linkden:focus {
   background: #0077B5;
}
.fixedmenu .nav-social ul.social_icon li a.google:hover,
.fixedmenu .nav-social ul.social_icon li a.google:focus {
   background: #dd4b39;
}
.fixedmenu .nav-social ul.social_icon li a:hover,
.fixedmenu .nav-social ul.social_icon li a:focus {
   color: #fff;
}



/*Header Social Icons*/
.navbar .social-icons li a {
   height: 28px; width: 28px;
   line-height: 28px;
   font-size: 14px;
}
@media (min-width: 993px) and (max-width: 1200px) {
   .navbar-nav .nav-item {
      margin: 0 0.875rem
   }
   .nav-social {
      margin-right: 22px;
   }
}
@media (max-width: 992px) {
   .transparent-bg, .center-brand {
      background: rgba(0,0,0,.5);
   }
   .transparent-bg-dark {
      background: rgba(255,255,255,.5);
   }
   .transparent-bg.fixedmenu,
   .center-brand.fixedmenu,
   transparent-bg-dark.fixedmenu {
      background: #fff;
   }
   .boxed-nav .container {
      padding-left: 15px;
   }
   .center-brand {
      padding-top: 0;
      padding-bottom: 0;
   }
   .center-brand .navbar-brand {
      position: relative;
      top: auto;
      margin: 16px 0;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
   }
   .navbar-nav .nav-item {
       margin: 4px 0;
   }
   .navbar-nav .nav-link {
      padding: 4px 0 !important;
   }
   .nav-social {
      display: none;
      padding: 3rem 2.5rem;
   }
}
/*@media (max-width: 991.98px) {
   .navbar-expand-lg > .container,
   .navbar-expand-lg > .container-fluid {
      padding-right: 15px;
      padding-left: 15px;
   }
}*/
   
   @media (max-width: 580px) {
      .side-nav .navbar-nav .nav-link > span {
         display: none;
      }
   }



/* ---------- Revolution Slider ---------- */
.tp-caption {
   padding-left: 15px;
   padding-right: 15px;
}

/*arrows Slider*/
.tparrows {
   background: #e84455;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   transition: all .5s ease;
}
.tparrows.tp-leftarrow:before {
   content: "\f104";
   font-family: 'FontAwesome';
}
.tparrows.tp-rightarrow:before {
   content: "\f105";
   font-family: 'FontAwesome';
}
.tp-leftarrow, .tp-rightarrow {
   margin: 5px;
   font-size: 24px;
}
.tparrows.tp-leftarrow:hover,
.tparrows.tp-rightarrow:hover,
.tparrows.tp-leftarrow:focus,
.tparrows.tp-rightarrow:focus {
   background: #4fb8aa;
}

/*thums arrows*/
.zeus.tparrows {
    cursor: pointer;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 100;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(0,0,0,0.10);
}
.zeus .tp-title-wrap {
    background: #000;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    border-radius: 50%;
}
.zeus.tparrows:hover .tp-title-wrap {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
}
.zeus .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}
.zeus.tparrows:hover .tp-arr-imgholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
}
.zeus.tparrows:before {
    font-family:'FontAwesome';
    font-size: 20px;
    color: #fff;
    display: block;
    line-height: 70px;
    text-align: center;
    z-index: 2;
    position: relative;
}


/*bullets*/
.tp-bullet, .tp-bullet::after  {
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.tp-bullet {
   height: 12px;
   width: 12px;
   margin: 2px 3px;
   border: 1px solid #4fb8aa;
   display: inline-block;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
.tp-bullet,
.tp-bullet:hover,
.tp-bullet:focus {
   background: transparent;
}
.tp-bullet::after {
   background-color: #4fb8aa;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   content: "";
   height: 100%;
   left: 0;
   opacity: 0;
   position: absolute;
   -webkit-transform: translate3d(0, 100%, 0);
   transform: translate3d(0, 100%, 0);
   visibility: hidden;
   width: 100%;
}
.tp-bullet.selected::after,
.tp-bullet:hover:after {
   opacity: 1;
   -webkit-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   visibility: visible;
}
.hades .tp-thumb {
	opacity: 1;
}
.hades .tp-thumb-img-wrap {
	border-radius: 50%;
	padding: 3px;
	display: inline-block;
	background: #4fb8aa;
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.hades .tp-thumb-image {
	padding: 3px;
	border-radius: 50%;
	display: block;
	box-sizing: border-box;
	position: relative;
	-webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
}
.tp-thumb.selected .tp-thumb-img-wrap, 
.tp-thumb:hover  .tp-thumb-img-wrap{
   background: #b2cb20;
}

.rev_slider a {
   line-height: normal !important;
}
.rev_slider .font-fourty{
   font-size: 2.7rem;
}

.rev_overlay {
   position: absolute;
   opacity: .8;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   background: rgba(0, 0, 0, .5);
   z-index: 1;
}
.rev_overlay::-ms-expand {
    display: none;
}



/* ---------- Revolution Slider ends ---------- */


/* ---------- OWL Slider ---------- */
.owl-dot, .owl-prev, .owl-next,
.owl-dots .owl-dot::after {
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.owl-dots {
   margin-top: 2rem;
   text-align: center;
}
.vertical-dot .owl-dots {
   display: inline-table;
   width: 24px;
   position: absolute;
   top: 50%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
   transform: translateY(-50%);
   right: 40px;
}
.owl-dots .owl-dot {
   height: 12px;
   width: 12px;
   background: transparent;
   margin: 2px 3px;
   position: relative;
   border: 1px solid #4fb8aa;
   display: inline-block;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   background: rgba(255, 255, 255, .35);
   cursor: pointer;
}
.owl-dots .owl-dot::after {
   background-color: #4fb8aa;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   content: "";
   height: 100%;
   left: 0;
   opacity: 0;
   position: absolute;
   -webkit-transform: translate3d(0, 100%, 0);
   transform: translate3d(0, 100%, 0);
   visibility: hidden;
   width: 100%;
}
#text-fading .owl-dots .owl-dot {
   background: #fff;
   border: none;
}
.vertical-dot .owl-dots .owl-dot {
   border: none;
   background: rgba(255, 255, 255, .5);
}
.vertical-dot .owl-dots .owl-dot::after {
   display: none;
}
.vertical-dot .owl-dots .owl-dot.active {
   height: 15px;
   width: 15px;
   background: #fff;
}
.owl-dots .owl-dot.active::after,
.owl-dots .owl-dot:hover:after {
   opacity: 1;
   -webkit-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   visibility: visible;
}

/* ----- OWL Slider ends ----- */


/* ----- Gallery ----- */
.cbp-l-filters .cbp-filter-item {
   cursor: pointer;
   margin: 0 .2rem;
   display: inline-block;
}
.cbp-l-filters .cbp-filter-item span {
   color: #b7b7b7;
   display: inline-block;
   font-size: 14px;
   font-weight: bold;
   text-transform: capitalize;
   position: relative;
   padding: 8px 1.25rem;
   -webkit-border-radius: 20px;
   border-radius: 20px;
   border: 1px solid #b7b7b7;
}
.cbp-l-filters .cbp-filter-item-active {
   cursor: default;
}
.cbp-l-filters .cbp-filter-item:hover span {
   border: 1px solid #4fb8aa;
   color: #fff;
   background: #4fb8aa;
}
.cbp-l-filters .cbp-filter-item-active span,
.cbp-l-filters .cbp-filter-item:focus span {
   border: 1px solid #e84455;
   color: #fff;
   background: #e84455;
}
.cbp-l-filters .cbp-filter-item span,
.overlay, .overlay .opens {
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
}
.overlay {
   background-color: rgba(79, 184, 170, 0.75);
   padding-bottom: 10px;
   padding-left: 15px;
   padding-right: 15px;
   padding-top: 10px;
   position: absolute;
   opacity: 0;
   visibility: hidden;
   z-index: 99;
   height: 100%;
   width: 100%;
   left: 0;
   top: 0;
}
.overlay.primary  {
    background: rgba(178,203,32, .75);
}
.overlay.danger {
    background: rgba(232,68,85, .75);
}

.cbp-item:hover .overlay {
   opacity: 1;
   visibility: visible;
}
.overlay .opens {
   height: 70px;
   width: 70px;
   -webkit-border-radius: 100%;
   border-radius: 100%;
   display: inline-block;
   background: #b2cb20;
   color: #fff;
   font-size: 28px;
   text-align: center;
   line-height: 72px;
   -ms-transform: rotate(50deg) scale(1.5);
   -o-transform: rotate(50deg) scale(1.5);
   -webkit-transform: rotate(50deg) scale(1.5);
   transform: rotate(50deg) scale(1.5);
}
.overlay .opens:hover,
.overlay .opens:focus {
   background: #e84455;
}
.cbp-item:hover .overlay .opens {
   -ms-transform: rotate(0) scale(1);
   -o-transform: rotate(0) scale(1);
   -webkit-transform: rotate(0) scale(1);
   transform: rotate(0) scale(1);
}
.overlay  h4 > a:hover,
.overlay  h4 > a:focus {
   color: #fff;
}

.project-details {
   border-top: 1px solid #f1f1f1;
   padding-top: 40px;
}
.project-table {
   display: table;
   border-bottom: 1px solid #f7f7f7;
}
.project-table .d-table-cell {
   padding: 20px 10px;
   vertical-align: middle;
}
.project-table .d-table-cell p {
   margin: 0;
}
.project-table .d-table-cell:first-child {
   padding-left: 0;
}

@media (max-width:1024px) {
   .cbp-l-filters .cbp-filter-item span {
      padding: 5px 1.1rem;
   }
}
@media (max-width:992px) {
   .cbp-l-filters .cbp-filter-item span {
      font-size: 13px;
      padding: 5px 1rem;
   }
}
@media (max-width:1024px) {
   .cbp-l-filters .cbp-filter-item span {
      margin-bottom: .65rem;
   }
}

/* ----- Gallery ends ----- */


/* ----- Feature & Services ----- */

/*features*/
.icon_box, .icon_box i {
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease  ;
}
.icon_box {
   padding: 25px 15px;
   position: relative;
}
.icon_box.whitebg {
   background: #fff;
   padding: 2.75rem 15px;
}
.icon_box:hover {
   cursor: pointer;
   background: #b2cb20;
   border-radius: 5px;
}
.icon_box i {
   display: inline-block;
   font-size: 44px;
   color: #b2cb20;
   position: relative;
}
.icon_wraper [class^="col"]:nth-child(2n) .icon_box i {
   color: #4fb8aa;
}
.icon_wraper [class^="col"]:nth-child(3n) .icon_box i {
   color: #e84455;
}
.icon_wraper [class^="col"]:nth-child(4) .icon_box i {
   color: #e84455; 
}
.icon_wraper [class^="col"]:nth-child(5) .icon_box i {
   color: #b2cb20;
}
.icon_wraper [class^="col"]:nth-child(6) .icon_box i {
   color: #4fb8aa;
} 
.icon_box:hover, .icon_box:hover * {
   color: #fff !important;
}
.services-box:hover h3 > a {
   color: #4fb8aa;
}
.icon_wraper [class^="col"]:nth-child(2) .icon_box:hover {
   background: #4fb8aa;
}
.icon_wraper [class^="col"]:nth-child(3) .icon_box:hover {
   background: #e84455;
}
.icon_wraper [class^="col"]:nth-child(4) .icon_box:hover {
   background: #e84455; 
}
.icon_wraper [class^="col"]:nth-child(5) .icon_box:hover {
   background: #b2cb20;
}
.icon_wraper [class^="col"]:nth-child(6) .icon_box:hover {
   background: #4fb8aa;
}


/*Bullets*/
ul.bullet-list > li + li {
   margin-top: 15px;
}
ul.bullet-list > li {
   margin-left: 25px;
}
ul.bullet-list li::before {
    content: "";
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #4fb8aa;
    vertical-align: middle;
    display: inline-block;
    margin-left: -25px;
    margin-right: 10px;
}

/*Rating*/
.reviews-rating p > i {
   color: #ddb204;
   font-size: 20px;
}
.reviews-rating p > strong {
   font-weight: bold;
   display: block;
   font-size: 2.5rem;
   line-height: 1;
}
.rating-progress span {
   display: block;
   margin-bottom: 5px;
}
.rating-progress .progress {
   margin-bottom: 10px;
}

/*Service Slider*/
#services-slider .service-box,
#services-slider .service-box > span {
   -webkit-transition: all .5s ease .1s;
   -o-transition: all .5s ease .1s;
   transition: all .5s ease .1s;
}
#services-slider {
	margin: -140px 0 0;
   min-height: 350px;
   position: relative;
   z-index: 21;
}
#services-slider.owl-carousel .owl-stage-outer{
   padding-top: 25px;
   padding-bottom: 25px;
}
#services-slider .service-box {
   position: relative;
   padding: 3rem 1rem;
   background: #e84455;
   color: #fff;
   text-align: center;
   z-index: 2;
   overflow: hidden;
}
#services-slider .service-box > span {
	display: inline-block;
	font-size: 32px;
	height: 50px;
	width: 50px;
	overflow: hidden;
}
#services-slider .service-box h4{
   font-weight: bold;
}
#services-slider .service-box:hover span {
   font-size: 38px;
}
#services-slider .service-box:hover a{
   color: #fff;
}

#services-slider .owl-item:nth-of-type(3n+1) .service-box {
   background: #e84455;
}
#services-slider .owl-item:nth-of-type(3n+3) .service-box {
   background: #4fb8aa;
}
#services-slider .owl-item.center .service-box {
   background: #b2cb20;
   padding: 4.5rem 1rem;
   margin-top: -25px;
}
#services-slider .service-box:hover,
#services-slider .owl-item:nth-of-type(3n+1) .service-box:hover, 
#services-slider .owl-item:nth-of-type(3n+3) .service-box:hover,
#services-slider .owl-item.center .service-box:hover {
   background: #384141;
}

@media screen and (max-width: 768px) {
   #services-slider {
      margin: -70px 0 0;
   }
}


/* ----- Feature & Services ends ----- */


/* ----- Counters ----- */
#bg-counters {
   background: url(../images/counter.jpg) no-repeat;
   background-attachment: fixed;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
   width: 100%;
}
.number-counters .counters-item {
   margin: 30px 0;
   text-align: center;
}
.number-counters .counters-item i {
   color: #4fb8aa;
   display: block;
   font-size: 50px;
   margin-bottom: 10px;
}
.number-counters .counters-item:nth-child(2) i {
   color: #b2cb20;
}
.number-counters .counters-item:nth-child(3) i {
   color: #e84455;
}
.number-counters .counters-item:nth-child(4) i {
   color: #e16a08;
} 
.number-counters .counters-item strong {
   display: block;
   font-size: 3rem;
   line-height: normal;
   margin-bottom: 15px;
}
.number-counters .counters-item p {
   font-size: 1.125rem;
}
#counter .number-counters .counters-item {
   margin-bottom: 0;
}

/* ----- Counters ends ----- */


/* ----- Testimonials ----- */
.testimonial-wrapp,
.testimonial-wrapp .testimonial-text,
.testimonial-wrapp .testimonial-photo,
.testimonial-wrapp .quoted,
.testimonial-quote {
   position: relative;
   -webkit-transition: all .4s ease-in;
   -o-transition: all .4s ease-in;
   transition: all .4s ease-in;
}
.testimonial-wrapp,
.testimonial-wrapp .testimonial-text {
   text-align: center;
}
.testimonial-wrapp .quoted,
.testimonial-wrapp .testimonial-photo {
   display: inline-block;
}
.testimonial-wrapp .quoted {
   background: #4fb8aa;
   color: #fff;
   font-size: 20px;
   line-height: 50px;
   height: 50px;
   width: 50px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-transform: translateY(50%);
   -ms-transform: translateY(50%);
   -o-transform: translateY(50%);
   transform: translateY(50%);
   z-index: 1;
}
.testimonial-wrapp .testimonial-text {
   background: #fff;
   padding: 4.25rem 2.5rem;
   -webkit-border-radius: 10px;
   border-radius: 10px;
   border: 1px solid #f1f1f1;
}
#testimonial-grid .testimonial-wrapp .testimonial-text {
   padding: 3rem .75rem;
}
.testimonial-wrapp .testimonial-photo {
   height: 100px;
   width: 100px;
   margin-top: -50px;
}
.testimonial-wrapp .testimonial-photo,
.testimonial-wrapp .testimonial-photo > img {
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
#testimonial-slider .owl-item:nth-child(2n) .testimonial-wrapp .quoted,
#testimonial-grid .cbp-item:nth-child(2n) .testimonial-wrapp .quoted,
#testimonial-slider .owl-item:nth-child(2n) .testimonial-wrapp:hover .testimonial-text,
#testimonial-grid .cbp-item:nth-child(2n) .testimonial-wrapp:hover .testimonial-text {
   background: #b2cb20;
}
#testimonial-slider .owl-item:nth-child(3n) .testimonial-wrapp .quoted,
#testimonial-grid .cbp-item:nth-child(3n) .testimonial-wrapp .quoted,
#testimonial-slider .owl-item:nth-child(3n) .testimonial-wrapp:hover .testimonial-text,
#testimonial-grid .cbp-item:nth-child(3n) .testimonial-wrapp:hover .testimonial-text {
   background: #e84455;
}
.testimonial-wrapp:hover .testimonial-text,
.testimonial-wrapp:hover .quoted{
   background: #4fb8aa;
   color: #fff;
}

/* ----- Testimonials ends ----- */

/* ----- Pricings ----- */
.pricing_item {
   position: relative;
   padding: 2.5rem 1rem;
   -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .12);
   box-shadow: 0 0 5px rgba(0, 0, 0, .12);
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
   -webkit-border-radius: 10px;
   border-radius: 10px;
}
.pricing_item .pricing_price {
   padding: 15px 0 14px 0;
   border-top: 1px solid rgba(139, 144, 157, 0.18);
   border-bottom: 1px solid rgba(139, 144, 157, 0.18);
}
.pricing_item:hover .pricing_price {
   border-top: 1px solid rgba(255, 255, 255, 0.18);
   border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.pricing_item .pricing_currency {
   font-size: 3rem;
   font-weight: 300;
}
.pricing_list {
   font-size: 14px;
   padding: 25px 0;
}
.pricing_list li {
   margin: 14px 0;
   color: #a5a5a5;
   font-size: 1rem;
}
.pricing_item:hover,
.pricing_item.secondry:hover {
   background: #4fb8aa;
}
.pricing_item.primary:hover {
   background: #b2cb20;
}
.pricing_item.danger:hover {
   background: #e84455;
}
.pricing_item:hover,
.pricing_item:hover .darkcolor,
.pricing_item:hover .pricing_list li {
   color: #fff;
}
.pricing_item:hover .btn_common {
   background: transparent;
   border-color: #fff;
}
.pricing_item .btn_common:hover,
.pricing_item .btn_common:focus {
   background: #fff;
   border-color: #fff;
   color: #384141;
   color: #384141;
}
@media (max-width:992px) {
   .pricing_item .pricing_currency {
      font-size: 2.5rem;
   }
   .pricing_list li {
      font-size: 0.9375rem;
   }
}

/* ----- Pricings ends ----- */

/* ----- Team ----- */
.team-box,
.team-box ul li {
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
}
.team-box {
   position: relative;
   overflow: hidden;
}
.team-box .team-content {
   padding: 30px 1.25rem;
   text-align: center;
   background: #fff;
}
.team-box .team-content h3 {
   font-weight: normal;
}
.team-box .team-content p {
   margin-bottom: 0;
}
.team-box.greycontent .team-content {
   background: #f6f6f6;
}
.team-box:nth-child(3n-2) .overlay,
.team-box.firstcolor .overlay {
   background: rgba(79,184,170, .7);
}
.team-box:nth-child(3n) .overlay,
.team-box.secondcolor .overlay {
   background: rgba(178,203,32, .7);
}
.team-box:nth-child(2n) .overlay,
.team-box.thirdcolor .overlay {
   background: rgba(232,68,85, .7);
}

.team-box:hover .overlay {
   opacity: 1;
   visibility: visible;
}
.team-box ul li {
   opacity: 0;
   visibility: hidden;
   -webkit-transform: translateY(-100%);
   -ms-transform: translateY(-100%);
   -o-transform: translateY(-100%);
   transform: translateY(-100%);
}
.team-box ul li:first-child {
   -webkit-transition-delay: .1s;
   -o-transition-delay: .1s;
   transition-delay: .1s;
}
.team-box ul li:nth-child(2) {
   -webkit-transition-delay: .2s;
   -o-transition-delay: .2s;
   transition-delay: .2s;
}
.team-box ul li:nth-child(3) {
   -webkit-transition-delay: .3s;
   -o-transition-delay: .3s;
   transition-delay: .3s;
}
.team-box ul li:nth-child(4) {
   -webkit-transition-delay: .4s;
   -o-transition-delay: .4s;
   transition-delay: .4s;
}
.team-box ul li:nth-child(5) {
   -webkit-transition-delay: .5s;
   -o-transition-delay: .5s;
   transition-delay: .5s;
}
.team-box ul li:nth-child(6) {
   -webkit-transition-delay: .6s;
   -o-transition-delay: .6s;
   transition-delay: .6s;
}
.team-box ul li:nth-child(7) {
   -webkit-transition-delay: .7s;
   -o-transition-delay: .7s;
   transition-delay: .7s;
}
.team-box:hover ul li {
   opacity: 1;
   visibility: visible;
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
}

/* ----- Team Ends ----- */


/* ----- Blog & News ----- */
.news_box,
.webcats li a > span,
ul.links li a::before {
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
#blog .blog-item {
   border-bottom: 1px solid #cccccc;
}
#blog .blog-item:last-child {
   border-bottom: none;
}

/*News box*/
.news_wrap .news_box {
   background: #fff;
   margin: -50px 10px 0 10px;
   padding: 20px 15px 0 15px;
   position: relative;
   z-index: 1;
   -webkit-border-radius: 5px;
   border-radius: 5px;
}
.news_wrap .image {
   -webkit-border-radius: 5px;
   border-radius: 5px;
}
.news_box:hover h4 > a,
.news_box:focus h4 > a,
.blog-item:hover h3 > a,
.blog-item:focus h3 > a {
   color: #4fb8aa;
}

/*Comments & Date*/
ul.social_icon li,
.webtags li,
.commment li {
   display: inline-block;
}
.commment li {
   margin-left: 10px;
}
.commment li:first-child {
   margin-left: 0;
}
.commment li:last-child {
   margin-right: 0;
}
.commment li a {
   display: block;
   color: #a5a5a5;
   font-size: 14px;
   
}
.commment li a > i {
   margin-right: 4px;
   vertical-align: middle;
   color: #b2cb20;
}
body:not(.rtl-layout) .news_wrap .news_box .commment,
body:not(.rtl-layout) .readmore{
   direction: ltr
}
.news_wrap .news_box .commment {
   margin: 20px 0;
}

/*Pagination*/
.pagination li > .page-link {
   height: 36px;
   width: 36px;
   padding: 0;
   line-height: 36px;
   font-size: 18px;
   color: #fff;
   text-align: center;
   margin: 0 4px;
   border: none;
   background: #4fb8aa;
}
.pagination li > .page-link,
.pagination li:first-child .page-link,
.pagination li:last-child .page-link {
   -webkit-border-radius: 50% !important;
   border-radius: 50% !important;
}
.pagination li > .page-link:hover,
.pagination li > .page-link:focus {
   background: #b2cb20;
   color: #fff;
}
.pagination li.active > .page-link {
   background: #e84455;
}

/*Single Post*/
.single_post {
   overflow: hidden;
}
.single_post .post {
   height: 60px;
   width: 60px;
   padding-right: 10px;
}
.single_post .post,
.single_post .text {
   display: table-cell;
   vertical-align: middle;
}
.single_post .post > img {
   width: 100%;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
.single_post .text > a {
   font-weight: 600;
}
.single_post:hover a,
.single_post:focus a {
   color: #4fb8aa;
}

/*Tags*/
.webtags li {
   margin: 1px;
}
.webtags li a {
   -webkit-border-radius: 24px;
   border-radius: 24px;
   color: #6a6a6a;
   font-size: 12px;
   margin: 2px 0;
   padding: 5px 16px;
   border: 1px solid #c7c7c7;
   display: block;
}
.webtags li a:hover,
.webtags li a:focus {
   color: #fff;
   background: #4fb8aa;
   border: 1px solid #4fb8aa;
}

/*Category*/
.webcats li a {
   display: block;
   margin: 5px 0;
   font-weight: 600;
   padding-bottom: 7px;
   border-bottom: 1px solid #c7c7c7;
}
.webcats li a > span {
   display: inline-block;
   margin-left: 5px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   font-size: 12px;
   height: 24px;
   width: 24px;
   text-align: center;
   color: #c7c7c7;
   line-height: 24px;
   float: right;
}
.webcats li a:hover,
.webcats li a:focus {
   color: #4fb8aa;
}
.webcats li:first-child a {
   margin-top: 0;
}
.webcats li:last-child a {
   margin-bottom: 0;
}
.webcats li a:hover > span,
.webcats li a:focus > span {
   background: #4fb8aa;
   color: #fff;
}

/* useful links */
ul.links > li + li {
   margin-top: 10px; 
}
ul.links li a {
   color: #ffffff;
   margin-bottom: 5px;

   display: inline-block;
   position: relative;
}
ul.links li a {
   font-size: 14px;
}
ul.links li a > i {
   display: inline-table;
   vertical-align: middle;
   width: 20px;
}
ul.links li a:hover,
ul.links li a:focus {
   color: #ffffff;
}

ul.links li a::before {
   background: #4fb8aa;
   margin-right: 5px;
   content: "";
   display: inline-block;
   height: 5px; width: 0;
   vertical-align: middle;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}

ul.links li a:hover::before {
   width: 5px;
}

/*Form Search*/
.widget_search .input-group {
   width: 260px;
}
.widget_search .form-control {
   width: 214px;
   -webkit-border-bottom-left-radius: 20px;
   border-bottom-left-radius: 20px;
   -webkit-border-top-left-radius: 20px;
   border-top-left-radius: 20px;
}
.widget_search .form-control,
.widget_search .input-group-addon {
   border-color: #d6d5d5;
   -webkit-box-shadow: none;
   box-shadow: none;
   display: table-cell;
}
.widget_search .input-group-addon {
   height: 38px;
   background-color: #4fb8aa;
   color: #fff;
   position: relative;
   top: 0;
   left: -5px;
   width: 40px;
   -webkit-border-top-right-radius: 20px;
   border-top-right-radius: 20px;
   -webkit-border-bottom-right-radius: 20px;
   border-bottom-right-radius: 20px;
}
.widget {
   /* -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35); */
   /* box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35); */
   padding: 30px 15px;
   background: #f6f6f6;
   -webkit-border-radius: 5px;
   border-radius: 5px;
}

/*Quotes*/
blockquote.blockquote {
   position: relative;
}
blockquote.blockquote::before {
   content: "\f10d";
   width: 40px;
   font-size: 28px;
   margin-right: 5px;
   color: #a1a1a1;
   font-family: "FontAwesome";
}

/*Profile Image*/
.profile_bg {
   background: #f2f2f2;
   -webkit-box-shadow: 0 0 2px #c8c8c8;
   box-shadow: 0 0 2px #c8c8c8;
   -webkit-border-radius: 2px;
   border-radius: 2px;
   padding: 20px;
}
.profile_border {
   border-top: 1px solid #c8c8c8;
}
.profile_border:last-child {
   border-bottom: 1px solid #c8c8c8;
}
.profile {
   background: #fff;
   padding: 15px;
   display: table;
   -webkit-border-radius: 2px;
   border-radius: 2px;
}
.profile .p_pic,
.profile .profile_text {
   display: table-cell;
}
.profile .p_pic {
   width: 100px;
   height: 100px;
   padding-right: 15px;
}
.profile .p_pic img {
   width: 100%;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
.profile_text {
   vertical-align: top;
   padding-right: 10px;
}
.profile_text h5 {
   margin-bottom: 8px;
}
.profile_text strong {
   color: #b2cb20;
   font-size: 14px;
}
.profile_text span {
   color: #5b5b5b;
   font-size: 13px;
}

/*post shares*/
.post-shareit {
	border-bottom: 1px solid #d2d1d1;
	padding: 0 0 10px 0;
}

/* ----- Blog & News ends ----- */



#text_rotator_parent {
   background: url(../images/text-rotator.jpg) no-repeat;
   width: 100%;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
}

.rotate_caption {
   padding: 10% 1%;
}

#text_rotator h1,
#text_rotator p {
   color: #fff;
}

#text_rotator p {
   margin: 10px 0 0 0;
   font-size: 18px;
}

#text_rotator a {
   margin: 30px 3px 5px 3px;
}

/* ---------- OWL Slider ends ---------- */

/* ----- ABout US ----- */
.history-media {
   position: relative;
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.history-media .d-table-cell {
   vertical-align: middle;
}
.history-media .d-table-cell:last-child {
   padding-left: 15px;
}
.history-media:hover {
   background: #fff;
   -webkit-border-radius: 5px;
   border-radius: 5px;
}

/*two equal blocks*/
.split-box .heading-title {
   padding-left: 2rem;
   padding-right: 2rem;
}
@media (max-width: 1480px) {
   .split-box .padding {
      padding: 6.5rem 2rem;
   }
}
@media (max-width: 1366px) {
   .split-box .padding {
      padding: 5.5rem 1.75rem;
   }
}
@media (min-width: 768px) and  (max-width: 1024px) {
   .split-box .padding {
      padding: 3rem 1rem;
   }
} 
@media (max-width: 992px) {
   .split-box {
      padding-left: 15px;
      padding-right: 15px;
   }
}

/* ----- ABout US ----- */


/* ----- Paralax bg  ----- */
#parallax-bg {
   background: url(../images/parallax2.jpg) no-repeat;
   padding: 10% 0;
}
#parallax-bg.parallax-one {
   background: url(../images/parallax1.jpg) no-repeat;
}
#parallax-bg.parallax-two {
   background: url(../images/parallax2.jpg) no-repeat;
}
.banner-fullscreen {
   background: url(../images/banner-flat.jpg) no-repeat;  
}
#simple-banner {
   background: url(../images/counter.jpg) no-repeat;
}
#fading-banner {
   background: url(../images/bg-single-3.jpg) no-repeat;
}
#fading-banner.fading-banner-one {
   background: url(../images/fadding-banner-1.jpg) no-repeat;
}
.bg-crypto {
   background: url(../images/bg-crypto.jpg) no-repeat;
}
#parallax-bg,
#parallax-bg.parallax-one,
.banner-fullscreen,
#simple-banner,
#fading-banner,
.bg-crypto {
   -webkit-background-size: cover;
   background-size: cover;
   width: 100%;
   background-attachment: fixed;
   background-position: center center;
}
#parallax-bg h1 {
   font-size: 3rem;
}

#particles-js {
   height: 100%;
   overflow: hidden;
   position: absolute;
   top: 0;
   width: 100%;
   opacity: .5;
}

/*Single Porfolio parallax*/
.item-one {
   background: url(../images/bg-single-1.jpg) no-repeat;
}
.item-two {
   background: url(../images/bg-single-2.jpg) no-repeat;
}
.item-three {
   background: url(../images/bg-single-3.jpg) no-repeat;
}
.item-four {
   background: url(../images/bg-single-4.jpg) no-repeat;
}
.item-five {
   background: url(../images/bg-single-5.jpg) no-repeat;
}
.item-six {
   background: url(../images/bg-single-6.jpg) no-repeat;
}
.item-seven {
   background: url(../images/bg-single-7.jpg) no-repeat;
}
.item-eight {
   background: url(../images/bg-single-8.jpg) no-repeat;
}
.item-nine {
   background: url(../images/bg-single-9.jpg) no-repeat;
}
.onepage-one {
   background: url(../images/bg-single-7.jpg) no-repeat;
}
.onepage-seven {
   background: url(../images/bg-single-1.jpg) no-repeat;
}
.single-items {
   background-attachment: fixed;
   background-position: center center;
   -webkit-background-size: cover;
   background-size: cover;
   position: relative;
   width: 100%;
}

/*Morphext*/
.morphext > .animated {
    display: inline-block;
}

.btc-calcus {
   background: #fff;
   -webkit-border-radius: 10px;
   border-radius: 10px;
   padding: 2.5rem 1rem;
}
.btc-calcus .cal-convertor .ccc-widget.ccc-converter > div:first-child {
	border: none !important;
	padding: 0px !important;
	background: none !important;
}
.convertForm label.priceLabel {
	font-weight: 300;
   padding-bottom: 0;
}
.convertForm label.priceLabel,
.convertForm  .fromSymbolLabel,
.convertForm .styledSelect {
   font-size: 14px;
   color: #212331 !important;
}
.convertForm  .fromSymbolLabel {
	line-height: 44px;
	border: 1px solid #00bcd4;
    background: #00bcd4;
	-webkit-border-top-right-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.convertForm input.priceInput {
	font-family: 'Open Sans', sans-serif;
	height: 45px;
	-webkit-border-top-left-radius: 20px !important;
	border-top-left-radius: 20px !important;
	-webkit-border-bottom-left-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
}
.convertForm .styledSelect {
	-webkit-border-top-right-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px;
	height: 45px;
}
.convertForm .poweredByWrapper {
   display: none;
}
.section-converter-ccc {
    margin-bottom: 20px;
}

@media (max-width:768px) and (orientation: landscape) { 
   .crypto-banner h2 {
      display: none;
   }
   .crypto-banner h3 {
      margin-bottom: 5px;
   }
   .btc-calcus {
       padding: 1.5rem 1rem;
   }
}

@media (max-width:768px) {
   .crypto-banner h2 {
      font-size: 2rem;
   }
   .btc-calcus {
      margin-top: 15px;
      padding: 1.5rem 1rem;
   }
   .btc-calcus h3 {
      font-size: 1.5rem;
   }
   .convertForm  .fromSymbolLabel,
   .convertForm  .fromSymbolLabel{
      line-height: 34px;
   }
   .convertForm input.priceInput,
   .convertForm .styledSelect{
      height: 35px; 
   }
   .section-converter-ccc {
       margin-bottom: 10px;
   }
}

/* ----- Paralax bg ends  ----- */

/**------ Page Header -------**/
.page_header {
   background: url(../images/page-tittle.jpg) no-repeat;
}
.page_shop_header {
    background: url(../images/page-tittle-1.jpg) no-repeat;
}
.page_header {
   -webkit-background-size: cover;
   background-size: cover;
   width: 100%;
   background-position: center center;
   position: relative;
}
.page_header .page-content {
   position: relative;
}
.page_header .page-content h1 {
   font-size: 2.5rem;
   margin-top: 3rem;
}
.page_header .page-content h1,
.page_header .page-content p {
   color: #fff;
}
.page_header .page-content .page_nav {
   background: #fff;
   -webkit-border-top-left-radius: 4px;
   border-top-left-radius: 4px;
   -webkit-border-top-right-radius: 4px;
   border-top-right-radius: 4px;
   padding: 18px 40px 10px;
   display: inline-block;
   margin-top: 80px;
   color: #7f7f7f;
   font-size: 0.875rem;
   float: right;
   margin-bottom: -2px;
}
.page_header .page-content .page_nav a {
   display: inline-block;
   margin: 0 10px;
   color: #0b0b0b;
}
.page_header .page-content .page_nav span i {
   margin-right: 5px;
}
@media (max-width:992px) {
   .page_header .page-content .page_nav {
      padding: 18px 30px 10px;
   }
}

@media (max-width:768px) {
   .page_header .page-content .page_nav {
      padding: 18px 16px 10px;
      float: none;
      width: 100%;
   }
}

/**-------Page Header ends------**/


/*------ FAQ's ------ */
.faq_content .items > li > a {
   background: #fff;
   color: #384141;
   display: block;
   margin-bottom: 10px;
   padding: 15px 10px 15px 55px;
   position: relative;
   border: 1px solid #d5d5d5;
}
.faq_content .items > li > a:hover,
.faq_content .items > li > a.expanded {
   background: #4fb8aa;
   color: #fff;
}
.faq_content .items > li > a:after {
   background: #fff;
   content: "\f105";
   display: inline-block;
   font-family: "FontAwesome";
   font-size: 20px;
   height: 100%;
   left: 0;
   line-height: 30px;
   padding: 10px;
   position: absolute;
   text-align: center;
   top: 0;
   width: 40px;
   border-right: 1px solid #d5d5d5;
}
.faq_content .items > li > a.expanded:after,
.faq_content .items > li > a:hover::after {
   background: #b2cb20;
   border-color: #b2cb20;
}
.faq_content .sub-items {
   display: none;
   padding: 20px 15px;
   border: 1px solid #d5d5d5;
   border-top: none;
   margin-bottom: 10px;
}
.faq_content .sub-items p {
   margin: 0;
}
faq_content .tab_drawer_heading:after {
   content: "\f107";
   display: inline-block;
   right: 20px;
   position: absolute;
   font-family: 'FontAwesome';
}
.faq_content .items > li > a.expanded {
   margin-bottom: 0;
}
.faq_content .items > li > a.expanded:after .faq_content .tab_drawer_heading.d_active:after {
   content: "\f106";
}

/* ------ FAQ's ------ */


/* ------ SHOP ------ */
.shopping-box {
   -webkit-box-shadow: 0 0 10px #d1d1d1;
   box-shadow: 0 0 10px #d1d1d1;
}
.shopping-box .shop_content {
   padding: 20px 15px;
}
.shopping-box:hover .overlay .opens {
   -ms-transform: rotate(0) scale(1);
   -o-transform: rotate(0) scale(1);
   -webkit-transform: rotate(0) scale(1);
   transform: rotate(0) scale(1);
}
.shopping-box .price-product {
   font-family: 'Open Sans', sans-serif;
   color: #b2cb20;
}
.quote .quote {
	border: 1px solid #d1d1d1;
	margin-right: 10px;
	max-width: 80px;
	padding: 8px 10px;
	text-align: center;
	vertical-align: top;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	height: 38px;
	font-size: 12px;
}
.quote .btn_common {
	font-size: 11px;
	padding: 10px 1.25rem;
}

.quote, .quote a {
   display: inline-block;
}
.shopping-box:hover .overlay {
   opacity: 1;
   visibility: visible;
}
.shopping-box:hover h4 > a,
.shopping-box:focus h4 > a {
   color:#4fb8aa;
}
.text-warning-hvr:hover,
.text-warning-hvr:focus {
   color: #ffc107;
}
.quote .quote:focus {
   outline: none;
}

/*Tabs*/
.tab-container {
	border: 1px solid #d1d1d1;
	padding: 2.5rem 1rem;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.tab-container > p {
   margin-bottom: 0;
}
.tab-container .accordion-item + div > p {
   margin-bottom: 1rem;
}  
.tab-to-accordion.accordion-mod .tabset-list {
   height: 0;
   visibility: hidden;
   overflow: hidden;
}
.tab-to-accordion.accordion-mod .accordion-item {
   height: auto;
   overflow: visible;
   visibility: visible;
   margin: 0 0 15px;
}
.tabset-list {
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: -ms-flexbox;
   display: flex;
}
.tabset-list a,
.accordion-item a{
    display: block;
    padding: 12px 1.75rem;
    color: #fff;
    font-weight: 600;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    line-height: normal; 
}
.tabset-list a {
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;
}
.accordion-item {
   height: 0;
   visibility: hidden;
   overflow: hidden;
}
.accordion-item a {
   background: #4fb8aa;
}
.tabset-list li:first-child a{
   margin-left: 0;
   background: #b2cb20;
}
.tabset-list li:nth-child(2) a{
   background: #4fb8aa;
}
.tabset-list li:last-child a{
   margin-right: 0;
   background: #e84455;
}
.tabset-list .active > a {
   color: #fff;
   background: #d1d1d1 !important;
}
.accordion-item a:hover {
   background: #e84455;
}
.accordion-item.active > a {
   color: #fff;
   background: #e84455;
}
.tab-container p:last-child {
   margin-bottom: 0;
}

/*Cart table*/
.cart_table table {
   margin-bottom: 0;
}
.cart_table .table-responsive thead {
   background: #f9f9f9;
}
.cart_table .table-responsive thead tr > th {
   padding: 15px 20px;
   border-bottom-width: 1px;
}
.cart_table .table-responsive tbody tr > td {
   vertical-align: middle;
   padding: 20px;
}
.cart_table .product-name {
   display: inline-block;
   vertical-align: middle;
}
.cart_table .btn-close {
   display: inline-block;
   color: #e84455;
   font-size: 20px;
}
.cart_table .shopping-product {
   display: inline-block;
   height: 70px;
   width: 70px;
   margin-right: 10px;
}
.cart_table .shopping-product > img {
   width: 100%;
   -webkit-border-radius: 50%;
   border-radius: 50%;
}
.cart_table .d-table:hover .product-name,
.cart_table .d-table:focus .product-name {
   color: #4fb8aa;
}
.apply_coupon {
   border: 1px solid #d1d1d1;
   border-top: none;
   padding: 20px;
}
.apply_coupon .coupon > form input {
	height: 42px;
	margin-bottom: 0;
	margin-right: 5px;
}
.apply_coupon .coupon > form .form-group > input {
   width: 100%;
}
.apply_coupon .coupon a {
   display: inline-table;
}
.totals {
   padding: 40px 15px;
   border: 1px solid #d1d1d1;
   -webkit-border-radius: 10px;
   border-radius: 10px;
}
.totals .table-responsive tr > td {
   border: none;
   padding: 17px 10px;
}
.totals form.findus .form-control {
	margin-bottom: 15px;
}
@media (max-width: 768px){
   .apply_coupon .btn_common {
      font-size: 10px;
      padding: 10px 1rem;
   }
}

/* ----- SHOP ----- */


/* ------- 404 ------ */
#error .error {
   position: relative;
}
#error .error h1 {
   position: relative;
   color: #ebebeb;
   font-size: 9.375rem;
}
#error .error h2 {
   font-size: 3.125rem;
   left: 50%;
   top: 50%;
   position: absolute;
   -ms-transform: translate(-50%, -50%);
   -webkit-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

/* ------- 404 ------ */

/*-------------------------------*/
    /* Partner/ Logo's*/
/*-------------------------------*/
#partners-slider .item {
	text-align: center;
}
#partners-slider .item, 
#partners-slider .logo-item {
   position: relative;
}
#partners-slider .logo-item {
	width: 160px;
    height: 60px;
	overflow: hidden;
}
#partners-slider .logo-item, #partners-slider  .logo-item > img{
   display: inline-block;
}
.logo-item > img {
	width: 98%;
   position: absolute;
   top: 50%; left: 50%;
   -webkit-transform: translate(-50%,-50%);
   -ms-transform: translate(-50%,-50%);
   -o-transform: translate(-50%,-50%);
   transform: translate(-50%,-50%);
   cursor: pointer;
}

/*-------------------------------*/
    /* Partner/ Logo's ends*/
/*-------------------------------*/

/* ----- Contact Us ----- */
.contact-table {
   overflow: hidden;
}
.contact-table .cells {
   vertical-align: top;
}
.contact-table .icon-cell {
   display: inline-block;
   background: #4fb8aa;
   color: #fff;
   height: 40px;
   width: 40px;
   text-align: center;
   font-size: 18px;
   line-height: 40px;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   margin-right: 10px;
   -webkit-transition: all .5s ease-in;
   -o-transition: all .5s ease-in;
   transition: all .5s ease-in;
}
.contact_address .contact-table:first-child .icon-cell,
.contact_address .contact-table.colorone .icon-cell {
   background: #4fb8aa;
}
.contact_address .contact-table:nth-child(2) .icon-cell,
.contact_address .contact-table.colortwo .icon-cell {
   background: #b2cb20;
}
.contact_address .contact-table:nth-child(3) .icon-cell,
.contact_address .contact-table.colorthree .icon-cell {
   background: #e84455;
}
.contact_address .contact-table:nth-child(4) .icon-cell,
.contact_address .contact-table.colorfour .icon-cell {
   background: #d46408;
}

.logincontainer {
    padding: 3.5rem 1.5rem;
   background: #f6f6f6;
   border-radius: 5px;
}

::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
   color: #b5b5b5;
}
:-moz-placeholder,
.form-control:-moz-placeholder {
   color: #b5b5b5;
}
::-moz-placeholder,
.form-control::-moz-placeholder {
   color: #b5b5b5;
}
:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
   color: #b5b5b5;
}
textarea::-webkit-input-placeholder {
   color: #b5b5b5;
   opacity: 1;
}
textarea:-moz-placeholder {
   color: #b5b5b5;
   opacity: 1;
}
textarea::-moz-placeholder {
   color: #b5b5b5;
   opacity: 1;
}
textarea:-ms-input-placeholder {
   color: #b5b5b5;
   opacity: 1;
}
textarea {
   resize: none;
}

label {
   font-weight: normal;
   margin: 0;
}

button {
   border: none;
   cursor: pointer;
}
button:focus,
textarea:focus {
    outline: none;
    outline: 0;
}
form.findus .form-control {
   height: 48px;
   width: 100%;
   -webkit-box-shadow: none;
   box-shadow: none;
}
form.findus:not(.form-inline) .form-group {
	width: 100%;
}
form.findus .form-control,
form.findus textarea {
   padding: 12px 0;
   margin-bottom: 30px;
   font-size: 14px;
   border: none;
   border-bottom: 1px solid #a5a5a5;
   -webkit-border-radius: 0;
   border-radius: 0;
   position: relative;
   -webkit-transition: border .9s ease;
   -o-transition: border .9s ease;
   transition: border .9s ease;
}
form.findus textarea {
   width: 100%;
   min-height: 160px;
}
.form-control {
   -webkit-box-shadow: 0 0;
   box-shadow: 0 0;
}
.form-control:focus,
textarea:focus {
   border-color: #4fb8aa;
   -webkit-box-shadow: 0 0;
   box-shadow: 0 0;
}
form.findus .select {
   border: none;
   border-bottom: 1px solid #d1d1d1;
   position: relative;
}
form.findus select {
   height: 100%;
   border: 0;
   width: 100%;
   color: inherit;
   opacity: .6;
   position: absolute;
   left: 0;
   top: 0;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding: 12px 15px;
   -webkit-border-radius: inherit;
   border-radius: inherit;
}
form.findus .select:after {
   content: "\f107";
   font-family: FontAwesome;
   color: inherit;
   font-size: 16px;
   padding: 9px 8px;
   padding-right: 0;
   position: absolute;
   right: 0;
   top: 0;
   background: transparent;
   z-index: 1;
   text-align: center;
   width: 10%;
   height: 100%;
   pointer-events: none;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}
.logincontainer .form-control {
   background: transparent;
}
.logincontainer .btn_common {
   width: 100%;
}

/* ----- Header Refresh ----- */
.vt-header {
   position: relative;
   z-index: 20;
   box-shadow: 0 5px 20px rgba(0,0,0,.05);
}
.vt-topbar {
   background: #fdf2e6;
   font-size: 0.85rem;
   color: #70451c;
   padding: 8px 0;
}
.vt-topbar .container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
}
.vt-topbar__info,
.vt-topbar__social {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
}
.vt-topbar__info span {
   margin-right: 15px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}
.vt-topbar__info i {
   margin-right: 0;
}
.vt-topbar__social a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255,255,255,.8);
   color: #c05108;
   margin-left: 8px;
}
.vt-navbar {
   background: #fff;
   padding: 0.75rem 0;
}
.vt-navbar-spacer {
   display: none;
   width: 100%;
}
.vt-navbar__collapse {
   background: #fff;
   padding: 0;
}
.vt-navbar__collapse.show {
   padding: 1.25rem 1rem;
   border-radius: 16px;
   box-shadow: 0 25px 45px rgba(0,0,0,.12);
   border: 1px solid #ffe1c8;
}
.vt-brand {
   display: flex;
   align-items: center;
   gap: 12px;
}
.vt-brand img {
   height: 48px;
}
.vt-brand__text span {
   font-weight: 600;
   font-size: 1.1rem;
   color: #1d1d1d;
}
.vt-brand__text small {
   display: block;
   font-size: 0.75rem;
   color: #888;
}
.vt-nav .nav-link {
   font-weight: 600;
   text-transform: uppercase;
   font-size: 0.85rem;
   letter-spacing: 0.15em;
   color: #404040;
   padding: 0 1rem;
   position: relative;
}
.vt-nav .nav-link:hover,
.vt-nav .nav-link:focus {
   color: #c05108;
}
.vt-nav .nav-item {
   margin: 0.35rem 0;
}
.vt-navbar__collapse.show .vt-nav {
   width: 100%;
   border-bottom: 1px solid rgba(0,0,0,.05);
   margin-bottom: 0.75rem;
   padding-bottom: 0.75rem;
}
.vt-navbar__collapse.show .vt-nav .nav-link {
   display: block;
   padding: 0.35rem 0;
}
.vt-navbar__cta {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-left: 1.5rem;
}
.vt-call-link {
   font-weight: 600;
   color: #c05108;
}
.vt-call-link i {
   margin-right: 5px;
}
.vt-navbar .navbar-toggler {
   border: none;
}
.vt-navbar .navbar-toggler span {
   display: block;
   width: 24px;
   height: 2px;
   background: #333;
   margin-bottom: 6px;
}
.vt-navbar__cta .btn_common {
   white-space: nowrap;
}
.vt-navbar__mobile {
   width: 100%;
   margin-top: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem;
   border-radius: 14px;
   background: linear-gradient(180deg, rgba(255,241,207,.75), rgba(255,255,255,.98));
   border: 1px solid #ffe1c8;
}
.btn_fullwidth {
   width: 100%;
   text-align: center;
   font-weight: 600;
   letter-spacing: 0.08em;
}
.vt-mobile-info {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
   font-size: 0.9rem;
   color: #70451c;
}
.vt-mobile-info i {
   margin-right: 6px;
}

/* ----- About Refresh ----- */
.about-vt {
   background: #fff;
}
.about-vt__head {
   max-width: 840px;
   margin: 0 auto 2.5rem;
}
.about-vt__head h2 {
   font-size: clamp(2rem, 3vw, 2.75rem);
   color: #1d1d1d;
   margin-bottom: 1rem;
}
.about-vt__head p {
   color: #555;
   font-size: 1.05rem;
}
.about-vt__tag {
   text-transform: uppercase;
   letter-spacing: 0.25em;
   font-size: 0.85rem;
   color: #c05108;
   display: inline-block;
   margin-bottom: 0.75rem;
}
.about-vt__layout {
   row-gap: 2.5rem;
}
.about-vt__story h2 {
   font-size: clamp(2rem, 3vw, 2.5rem);
   color: #1d1d1d;
   margin-bottom: 1rem;
}
.about-vt__story p {
   color: #4c4c4c;
   font-size: 1rem;
   margin-bottom: 1.5rem;
}
.about-vt__stats {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   margin-bottom: 1.5rem;
}
.about-vt__stats .value {
   display: block;
   font-size: 1.85rem;
   font-weight: 600;
   color: #c05108;
}
.about-vt__stats .label {
   font-size: 0.85rem;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   color: #777;
}
.about-vt__timeline {
   border-left: 2px solid #ffe0c6;
   padding-left: 1.25rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}
.about-vt__timeline span {
   font-weight: 600;
   color: #c05108;
}
.about-vt__gallery {
   position: relative;
}
.about-vt__gallery-main {
   border-radius: 28px;
   overflow: hidden;
   box-shadow: 0 25px 60px rgba(0,0,0,.15);
}
.about-vt__gallery-main img {
   width: 100%;
   display: block;
}
.about-vt__gallery-card {
   position: absolute;
   bottom: -25px;
   right: -25px;
   background: #fff;
   border-radius: 18px;
   padding: 1rem 1.25rem;
   box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.about-vt__gallery-card h4 {
   margin: 0;
   font-size: 1.4rem;
   color: #c05108;
}
.about-vt__gallery-card p {
   margin: 0;
   color: #666;
}
.about-vt__gallery-badge {
   position: absolute;
   top: 15px;
   left: -20px;
   background: #f1fff4;
   color: #2a7d4f;
   padding: 0.65rem 1rem;
   border-radius: 50px;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   box-shadow: 0 12px 25px rgba(0,0,0,.08);
}
.about-vt__chips {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   margin-bottom: 1.25rem;
}
.about-vt__chips span {
   background: #fff1cf;
   color: #955018;
   border-radius: 999px;
   padding: 0.45rem 1rem;
   font-size: 0.85rem;
   letter-spacing: 0.05em;
}
.about-vt__panel {
   background: #fff9f4;
   border-radius: 24px;
   padding: 1.5rem;
   border: 1px solid #ffe4cf;
   box-shadow: 0 30px 50px rgba(0,0,0,.08);
}
.about-vt__panel-media {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   margin-bottom: 1.5rem;
}
.about-vt__panel-media img {
   width: 100%;
   display: block;
}
.about-vt__badge {
   position: absolute;
   bottom: 15px;
   right: 15px;
   background: #f1fff4;
   color: #2a7d4f;
   padding: 0.5rem 1rem;
   border-radius: 50px;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   box-shadow: 0 12px 20px rgba(0,0,0,.12);
}
.about-vt__feature-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
   margin-bottom: 1.5rem;
}
.about-vt__feature-grid article {
   background: #fff;
   border-radius: 16px;
   padding: 1rem;
   border: 1px solid rgba(255,208,176,.6);
   height: 100%;
}
.about-vt__feature-grid i {
   font-size: 1.4rem;
   color: #c05108;
   margin-bottom: 0.5rem;
}
.about-vt__feature-grid h5 {
   font-size: 1rem;
   margin-bottom: 0.35rem;
   color: #1b1b1b;
}
.about-vt__feature-grid p {
   margin: 0;
   font-size: 0.92rem;
   color: #555;
}
.about-vt__cta {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
}

/* ----- Experience Banner ----- */
.taste-banner {
   position: relative;
   padding: clamp(3rem, 6vw, 5rem) 0;
   background: url('../images/BannerImg/CoverPhoto.png') center/cover no-repeat fixed;
   overflow: hidden;
}
.taste-banner__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, rgba(0,0,0,.75), rgba(0,0,0,.35));
}
.taste-banner__grid {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
   gap: clamp(2rem,4vw,3rem);
   align-items: center;
   color: #fff;
}
.taste-banner__copy span {
   text-transform: uppercase;
   letter-spacing: 0.3em;
   font-size: 0.8rem;
   display: inline-block;
   margin-bottom: 0.75rem;
}
.taste-banner__copy h2 {
   font-size: clamp(2rem,3vw,2.8rem);
   margin-bottom: 1rem;
}
.taste-banner__copy p {
   font-size: 1.05rem;
   margin-bottom: 1rem;
   color: rgba(255,255,255,.85);
}
.taste-banner__copy ul {
   list-style: none;
   padding: 0;
   margin: 0 0 1.5rem;
}
.taste-banner__copy ul li {
   margin-bottom: 0.6rem;
   font-size: 0.95rem;
   color: rgba(255,255,255,.9);
}
.taste-banner__copy ul i {
   color: #b2cb20;
   margin-right: 8px;
}
.taste-banner__stats {
   display: grid;
   grid-template-columns: repeat(2,minmax(0,1fr));
   gap: 1rem;
}
.taste-banner .stat-card {
   background: rgba(255,255,255,.08);
   border: 1px solid rgba(255,255,255,.2);
   border-radius: 20px;
   padding: 1.5rem;
   text-align: center;
   backdrop-filter: blur(4px);
}
.taste-banner .stat-card span {
   display: block;
   font-size: 2rem;
   font-weight: 600;
   color: #ffcc7a;
}
.taste-banner .stat-card p {
   margin: 0;
   font-size: 0.85rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: rgba(255,255,255,.8);
}

/* ----- Instagram Feed ----- */
.insta-feed {
   background: radial-gradient(circle at top right, rgba(255,197,146,.35), transparent 55%), #fff9f4;
}
.insta-feed__surface {
   background: #ffffff;
   border-radius: 32px;
   padding: clamp(2rem,4vw,3.5rem);
   box-shadow: 0 35px 70px rgba(27,16,3,0.08);
   border: 1px solid rgba(255,153,51,.15);
}
.insta-feed__head span {
   text-transform: uppercase;
   letter-spacing: 0.35em;
   font-size: 0.8rem;
   color: #c05108;
}
.insta-feed__head h2 {
   font-size: clamp(2rem,3vw,2.6rem);
   margin: 0.75rem 0;
   color: #1b1b1b;
}
.insta-feed__head p {
   color: #5d5d5d;
   font-size: 1rem;
   max-width: 820px;
   margin: 0 auto 1.5rem;
}
.insta-feed__slider {
   overflow: hidden;
   /* border-radius: 32px; */
   /* border: 1px solid rgba(192,81,8,.15); */
   /* background: linear-gradient(135deg, #fff8f2, #fff); */
   padding: 1rem 0;
   position: relative;
}
.insta-feed__track {
   display: flex;
   gap: 1.25rem;
   width: max-content;
   padding: 0 1.5rem;
   animation: insta-marquee var(--insta-slide-duration, 45s) linear infinite;
}
.insta-feed__slider:hover .insta-feed__track {
   animation-play-state: paused;
}
.insta-feed__empty {
   color: #8a8a8a;
   margin: 0 auto;
   text-align: center;
   font-weight: 600;
}
.insta-card {
   background: #fff;
   border-radius: 24px;
   padding: 0.9rem;
   border: 1px solid rgba(192,81,8,.12);
   box-shadow: 0 18px 35px rgba(0,0,0,.07);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   width: min(280px, 23vw);
   min-width: 240px;
}
.insta-card__media {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   background: rgba(192,81,8,.06);
   aspect-ratio: 4/5;
}
.insta-card__media iframe {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   border: 0;
}
.insta-card__loader {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(255,255,255,.85);
   color: #c05108;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.78rem;
}
.insta-card__actions {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 0.8rem;
}
.insta-card__actions span {
   font-size: 0.82rem;
   color: #7a6252;
}

.btn_common.btn_fullwidth-sm {
   width: min(320px, 100%);
}
.btn_common.btn_sm {
   padding: 10px 1.5rem;
   font-size: 11px;
}
@keyframes insta-marquee {
   0% { transform: translate3d(0,0,0); }
   100% { transform: translate3d(-50%,0,0); }
}
.contact-vt {
   background: radial-gradient(circle at 10% 20%, rgba(255,226,182,.35), transparent 55%), #fffdf8;
}
.contact-vt__surface {
   background: #fff;
   border-radius: 40px;
   padding: clamp(2.5rem, 5vw, 4.5rem);
   box-shadow: 0 40px 80px rgba(20,7,0,.08);
   border: 1px solid rgba(255,153,51,.12);
}
.contact-vt__tag {
   text-transform: uppercase;
   letter-spacing: 0.35em;
   font-size: 0.8rem;
   color: #c05108;
   display: inline-block;
}
.contact-vt__intro h2 {
   margin: 1rem auto;
   font-size: clamp(2rem, 3vw, 2.75rem);
   max-width: 840px;
   color: #1c1208;
}
.contact-vt__intro p {
   max-width: 760px;
   margin: 0 auto;
   color: #6c5b4a;
}
.contact-vt__layout {
   margin-top: 3rem;
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
   gap: 2.5rem;
}
.contact-vt__panel {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}
.contact-card {
   border-radius: 28px;
   padding: 2rem;
   background: linear-gradient(135deg, rgba(255,217,188,.45), rgba(255,255,255,1));
   border: 1px solid rgba(192,81,8,.15);
   box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.contact-card__eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: #b25a13;
}
.contact-card h4 {
   margin: 0.5rem 0;
   font-size: 1.25rem;
   color: #1d140a;
}
.contact-card p {
   margin: 0;
   color: #5a4a3c;
}
.contact-card__link {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   margin-top: 1rem;
   font-weight: 600;
   color: #c05108;
}
.contact-card--hotline {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1.5rem;
   background: linear-gradient(135deg, #fff2e8, #ffe1c5);
}
.contact-card--hotline h3 {
   margin: 0.2rem 0;
   font-size: 2rem;
   color: #c05108;
}
.contact-vt__promises {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 0.75rem;
   padding: 0;
   margin: 0;
   list-style: none;
}
.contact-vt__promises li {
   background: rgba(255,226,182,.5);
   border-radius: 20px;
   padding: 0.9rem 1rem;
   font-weight: 600;
   color: #6a4b2f;
   display: flex;
   gap: 0.6rem;
   align-items: center;
}
.contact-vt__promises i {
   color: #c05108;
}
.contact-vt__form {
   background: #18110a;
   border-radius: 32px;
   padding: clamp(2rem, 4vw, 3rem);
   color: #fff;
   position: relative;
   overflow: hidden;
}
.contact-vt__form::after {
   content: "";
   position: absolute;
   inset: 12px;
   border: 1px solid rgba(255,255,255,.08);
   border-radius: 26px;
   pointer-events: none;
}
.contact-form {
   position: relative;
   z-index: 2;
}
.contact-form__grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1.25rem;
}
.contact-form__grid label {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
   font-size: 0.9rem;
}
.contact-form__grid span {
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.75rem;
   color: rgba(255,255,255,.7);
}
.contact-form__grid input,
.contact-form__grid textarea {
   width: 100%;
   border: 1px solid rgba(255,255,255,.2);
   background: rgba(255,255,255,.05);
   border-radius: 16px;
   padding: 0.9rem 1.1rem;
   color: #fff;
   font-size: 0.95rem;
   font-family: inherit;
}
.contact-form__grid input:focus,
.contact-form__grid textarea:focus {
   outline: none;
   border-color: #ffc077;
   background: rgba(255,255,255,.12);
}
.contact-form__grid textarea {
   min-height: 130px;
   resize: vertical;
}
.contact-form__full {
   grid-column: 1 / -1;
}
.contact-form__status {
   margin-bottom: 1rem;
   font-weight: 600;
   color: #ffc077;
   min-height: 1rem;
}
.contact-form__note {
   margin-top: 0.75rem;
   color: rgba(255,255,255,.75);
   font-size: 0.85rem;
}
.contact-form__note i {
   color: #ffc077;
   margin-right: 0.35rem;
}

@media (max-width: 992px) {
   .taste-banner__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
   }
   .products-showcase__belt,
   .products-showcase__strip {
      width: 100%;
   }
   .products-showcase__wrapper {
      padding: 0 40px;
   }
   .ps-prev {
      left: 15px;
   }
   .ps-next {
      right: 15px;
   }
   .contact-vt__layout {
      grid-template-columns: 1fr;
   }
   .contact-vt__surface {
      padding: 2rem;
   }
   .contact-card--hotline {
      flex-direction: column;
      align-items: flex-start;
   }
   .contact-form__grid {
      grid-template-columns: 1fr;
   }
}
@media (max-width: 768px) {
   .taste-banner__copy h2 {
      font-size: 2rem;
   }
   .products-showcase__wrapper {
      padding: 0 20px;
   }
   .ps-nav {
      display: none;
   }
   .contact-vt__surface {
      border-radius: 24px;
   }
   .contact-card {
      padding: 1.5rem;
   }
}
/* ----- Products Showcase ----- */
/* ----- Products Showcase ----- */
.products-showcase {
   background: radial-gradient(circle at top right, rgba(255,214,170,.35), transparent 55%), #fffdf9;
   overflow: hidden;
}
.products-showcase__belt {
   width: min(1350px, 92vw);
   margin: 0 auto;
   position: relative;
}
.products-showcase__head {
   max-width: 880px;
   margin: 0 auto 2.5rem;
}
.products-showcase__head h2 {
   font-size: clamp(2rem, 3vw, 2.7rem);
   color: #1b1b1b;
   margin-bottom: 1rem;
}
.products-showcase__head p {
   color: #585858;
   font-size: 1.05rem;
}
.products-showcase__tag {
   text-transform: uppercase;
   letter-spacing: 0.25em;
   font-size: 0.85rem;
   color: #c05108;
   display: inline-block;
   margin-bottom: 0.75rem;
}
.products-showcase__wrapper {
   position: relative;
   display: flex;
   align-items: stretch;
   margin-bottom: 2rem;
   gap: 0.5rem;
   overflow: hidden;
   /* padding: 0 70px; */
}
.products-showcase__main {
   width: 100%;
   border-radius: 40px;
   padding: 16px;
   background: linear-gradient(135deg, rgba(255,205,133,.35), rgba(255,255,255,.85));
   /* box-shadow: inset 0 0 0 2px rgba(255,255,255,.6), 0 18px 40px rgba(0,0,0,.1); */
}
.ps-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   border: none;
   background: transparent;
   padding: 0;
   width: 64px;
   height: 64px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   z-index: 3;
}
.ps-nav .btn-inner {
   width: 60px;
   height: 60px;
   border-radius: 18px;
   background: linear-gradient(135deg, #ffe7d1, #fff);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 1.15rem;
   color: #c05108;
   border: 1px solid rgba(255,205,133,.7);
   box-shadow: 0 10px 20px rgba(255,165,96,.25);
   transition: transform .3s ease, box-shadow .3s ease;
}
.ps-nav .btn-inner:hover {
   box-shadow: 0 14px 26px rgba(255,165,96,.3);
   transform: translateY(-3px);
}
.ps-prev {
   left: 20px;
}
.ps-next {
   right: 20px;
}
.products-showcase__main .owl-stage-outer {
   border-radius: 32px;
   overflow: hidden;
}
.product-slide {
   display: grid;
   grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
   gap: 3.5rem;
   padding: 3rem;
   border-radius: 30px;
   background: #fff;
   box-shadow: 0 40px 60px rgba(0,0,0,.12);
   border: 1px solid #ffe9d8;
}
.product-slide__image img {
   width: 100%;
   border-radius: 24px;
   object-fit: cover;
   height: 360px;
   box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.product-slide__badge {
   position: absolute;
   top: 20px;
   left: 20px;
   background: rgba(255,255,255,.9);
   color: #b9440a;
   padding: 0.4rem 1rem;
   border-radius: 999px;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.75rem;
   box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.product-slide__badge.badge-hot { color:#fff; background:#ff5c5c; }
.product-slide__badge.badge-mint { color:#136d50; background:#c9ffe8; }
.product-slide__badge.badge-blue { color:#0f4a78; background:#d6eeff; }
.product-slide__badge.badge-purple { color:#fff; background:#6f42c1; }
.product-slide__badge.badge-brown { color:#fff; background:#8b4b0b; }

.product-slide__cta {
   display: flex;
   align-items: center;
   gap: 1rem;
   flex-wrap: wrap;
}
.product-slide__cta span {
   color: #555;
   font-size: 0.9rem;
   font-weight: 600;
}
.product-slide__info .pill {
   display: inline-block;
   align-self: flex-start;
   border-radius: 999px;
   padding: 0.35rem 1rem;
   font-size: 0.8rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 0.75rem;
   background: #ffe1c8;
   color: #b9440a;
}
.product-slide__info .pill-orange { background: #ffdcca; color: #d05b18; }
.product-slide__info .pill-green { background: #e0f7d6; color: #2b8245; }
.product-slide__info .pill-blue { background: #dcefff; color: #1f5f93; }
.product-slide__info .pill-purple { background: #f4e5ff; color: #663399; }
.product-slide__info .pill-brown { background: #ffe9d6; color: #8b4b0b; }
.product-slide__info h3 {
   margin-bottom: 0.7rem;
   color: #1d1d1d;
}
.product-slide__info p {
   color: #5b5b5b;
   margin-bottom: 1rem;
}
.product-slide__info ul {
   padding-left: 18px;
   color: #4c4c4c;
   margin: 0;
}
.product-viewmore-btn {
   display: none;
}
.product-details-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 1300;
   padding: 24px;
}
.product-details-modal.is-visible {
   display: flex;
}
.product-details-modal__overlay {
   position: absolute;
   inset: 0;
   background: rgba(0,0,0,.55);
}
.product-details-modal__dialog {
   position: relative;
   width: 100%;
   max-width: 420px;
   max-height: 90vh;
   overflow-y: auto;
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: 0 25px 60px rgba(0,0,0,.25);
   z-index: 1;
}
.product-details-modal__close {
   position: absolute;
   top: 10px;
   right: 10px;
   border: none;
   background: transparent;
   font-size: 1.5rem;
   line-height: 1;
   color: #333;
   cursor: pointer;
}
.product-details-modal__body h4 {
   margin-bottom: 1rem;
   color: #1d1d1d;
}
.product-details-modal__media {
   margin-bottom: 1rem;
}
.product-details-modal__media img {
   width: 100%;
   border-radius: 14px;
   box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.product-details-modal__copy p {
   color: #565656;
}
.product-details-modal__copy ul {
   padding-left: 18px;
   margin: 0.5rem 0 0;
   color: #4c4c4c;
}
body.modal-open {
   overflow: hidden;
}
@media (max-width: 767px) {
   .products-showcase__wrapper {
      padding: 0;
      gap: 0;
   }
   .products-showcase__main {
      border-radius: 20px;
      padding: 10px;
   }
   .products-showcase__main .product-slide {
      padding: 1.5rem;
      border-radius: 20px;
      gap: 1.5rem;
   }
   .product-slide__image img {
      height: 220px;
      border-radius: 18px;
   }
   .products-showcase__main .owl-stage {
      display: flex;
   }
   .products-showcase__main .owl-item {
      display: flex;
      height: auto;
   }
   .products-showcase__main .product-slide {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
   }
   .products-showcase__main .product-slide__info {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
   }
   .products-showcase__main .product-slide__cta {
      margin-top: auto;
   }
   .product-slide__info ul {
      display: none;
   }
   .product-slide__cta span {
      display: none;
   }
   .product-viewmore-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1.4rem;
      margin-top: 0;
   }
   .product-details-modal {
      padding: 16px;
   }
}
.products-showcase__strip {
   margin-bottom: 2rem;
   border-radius: 20px;
   padding: 1rem;
   background: linear-gradient(120deg, rgba(255,246,236,.8), #fff);
   width: min(1500px, 94vw);
   margin-left: auto;
   margin-right: auto;
}
.product-strip-card {
   padding: 0.85rem;
   border-radius: 18px;
   border: 1px solid transparent;
   text-align: center;
   transition: all .3s ease;
   cursor: pointer;
   box-shadow: 0 8px 18px rgba(0,0,0,.06);
   background: #fff;
}
.product-strip-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 12px;
}
.product-strip-card p {
   margin: 0.5rem 0 0;
   font-weight: 600;
   color: #444;
}
.product-strip-card.active,
.product-strip-card:hover {
   border-color: #c05108;
   box-shadow: 0 15px 30px rgba(0,0,0,.12);
   transform: translateY(-3px);
}
.products-showcase__cta {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 1rem;
}
.products-showcase__belt {
   width: min(1350px, 92vw);
   margin: 0 auto;
   position: relative;
}
.products-showcase__wrapper {
   overflow: hidden;
   /* padding: 0 70px; */
}
.ps-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   border: none;
   background: transparent;
   padding: 0;
   width: 70px;
   height: 70px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   z-index: 3;
}
.ps-nav .btn-inner {
   width: 70px;
   height: 70px;
   border-radius: 20px;
   background: linear-gradient(135deg, #fff2e2, #ffd1b5);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   color: #b9440a;
   border: 1px solid rgba(255,205,133,.6);
   box-shadow: 0 18px 30px rgba(0,0,0,.15);
   transition: transform .3s ease, box-shadow .3s ease;
}
.ps-nav .btn-inner:hover {
   box-shadow: 0 22px 38px rgba(0,0,0,.18);
   transform: translateY(-2px);
}
.ps-prev {
   left: 0;
}
.ps-next {
   right: 0;
}
.products-showcase__strip {
   width: min(1350px, 92vw);
   margin-left: auto;
   margin-right: auto;
   overflow: hidden;
}
.products-showcase__belt {
   width: min(1350px, 92vw);
   margin: 0 auto;
   position: relative;
}
.products-showcase__wrapper {
   overflow: hidden;
   /* padding: 0 70px; */
}
.ps-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   border: none;
   background: transparent;
   padding: 0;
   width: 70px;
   height: 70px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   z-index: 3;
}
.ps-nav .btn-inner {
   width: 70px;
   height: 70px;
   border-radius: 20px;
   background: linear-gradient(135deg, #fff2e2, #ffd1b5);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   color: #b9440a;
   border: 1px solid rgba(255,205,133,.6);
   box-shadow: 0 18px 30px rgba(0,0,0,.15);
   transition: transform .3s ease, box-shadow .3s ease;
}
.ps-nav .btn-inner:hover {
   box-shadow: 0 22px 38px rgba(0,0,0,.18);
   transform: translateY(-2px);
}
.ps-prev {
   left: 0;
}
.ps-next {
   right: 0;
}
.products-showcase__strip {
   width: min(1350px, 92vw);
   margin-left: auto;
   margin-right: auto;
   overflow: hidden;
}
@media (max-width: 992px) {
   .product-slide {
      grid-template-columns: 1fr;
      gap: 1.5rem;
   }
   .product-slide {
      padding: 2rem;
      gap: 1.5rem;
   }
   .ps-nav {
      display: none;
   }
}
@media (max-width: 576px) {
   .product-slide__image img {
      height: 206px;
   }
   .products-showcase__head {
      text-align: center;
   }
}
/* ----- Hero Funtop Style ----- */
.hero-funtop {
   position: relative;
   padding: 6rem 0 4rem;
   overflow: hidden;
   background: #fff7f0;
}
.hero-funtop__bg {
   position: absolute;
   inset: 0;
   background-image: linear-gradient(135deg, rgba(255,180,132,.4), rgba(255,255,255,.9)),
                     url('../images/BannerImg/CoverPhoto.png');
   background-size: cover;
   background-position: center;
   opacity: 0.35;
   z-index: 0;
   transition: opacity .45s ease;
}
.hero-funtop__bg.is-transitioning {
   opacity: 0.15;
}
.hero-funtop .container,
.hero-funtop .row {
   position: relative;
   z-index: 1;
}
.hero-funtop__pill {
   display: inline-block;
   padding: 6px 16px;
   border-radius: 999px;
   background: #ffe1c8;
   color: #b9440a;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-size: 0.8rem;
}
.hero-funtop__content h1 {
   font-size: clamp(2.1rem, 4vw, 3.6rem);
   line-height: 1.2;
   color: #2a2a2a;
   margin: 1rem 0 1.5rem;
}
.hero-funtop__content .lead {
   color: #5c5c5c;
   font-size: 1.1rem;
}
.hero-funtop__cta {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin: 1.5rem 0;
}
.hero-funtop .btn_outline {
   border: 2px solid #b9440a;
   color: #b9440a;
}
.hero-funtop .btn_outline:hover,
.hero-funtop .btn_outline:focus {
   background: #b9440a;
   color: #fff;
}
.hero-funtop__meta {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}
.hero-funtop__meta .meta {
   min-width: 105px;
}
.hero-funtop__meta .value {
   font-size: 1.5rem;
   font-weight: 600;
   color: #c05108;
   line-height: 1.1;
}
.hero-funtop__meta .label {
   display: block;
   font-size: 0.75rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: #6c6c6c;
}
.hero-funtop__visual {
   display: flex;
   justify-content: center;
}
.hero-funtop__card {
   position: relative;
   background: #fff;
   border-radius: 24px;
   padding: 2rem;
   box-shadow: 0 30px 60px rgba(0,0,0,.12);
   width: 100%;
   max-width: 480px;
}
.hero-funtop__stamp {
   position: absolute;
   top: -25px;
   right: 20px;
   background: #fef0d5;
   color: #a53b07;
   padding: 0.75rem 1.2rem;
   border-radius: 999px;
   text-align: right;
   box-shadow: 0 15px 30px rgba(0,0,0,.12);
}
.hero-funtop__stamp p {
   margin: 0;
   font-weight: 600;
}
.hero-funtop__stamp span {
   font-size: 0.85rem;
   color: #8a4a1b;
}
.hero-funtop__main-img {
   border-radius: 18px;
   overflow: hidden;
   border: 1px solid #ffe7d1;
   margin-bottom: 1.5rem;
}
.hero-funtop__main-img img {
   width: 100%;
   display: block;
   transition: opacity .45s ease, transform .45s ease;
}
.hero-funtop__main-img img.is-transitioning {
   opacity: 0.4;
   transform: scale(0.97);
}
.hero-funtop__chips {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}
.hero-funtop__chips .chip {
   background: #fff7f0;
   border-radius: 14px;
   padding: 0.9rem 1rem;
   border: 1px solid #ffe0ca;
}
.hero-funtop__chips .chip p {
   margin: 0;
   font-weight: 600;
   color: #b9440a;
}
.hero-funtop__chips .chip span {
   font-size: 0.85rem;
   color: #666;
}
.hero-funtop__categories {
   margin-top: 3rem;
   background: #fff;
   border-radius: 1.5rem;
   padding: 1.5rem;
   box-shadow: 0 12px 30px rgba(0,0,0,.08);
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
   gap: 1rem;
}
.hero-funtop__categories .category-item span {
   display: block;
   font-weight: 600;
   color: #c05108;
}
.hero-funtop__categories .category-item p {
   margin: 0;
   color: #555;
   font-size: 0.9rem;
}


/*Map*/
#map-container {
   width: 100%;
   height: 400px;
}
p.logomap {
   font-weight: 500;
}
/* ----- Contact Us ends ----- */


/* --------------- FOOTER ---------------*/
footer {
   background: #384141;
}
.footer_panel .divider-left {
   background: #fff;
}
footer, footer p {
   color: #fff;
}
footer .footer_panel h3 {
   display: block;
}
footer .footer_panel .footer_logo {
   display: inline-block;
}
.footer_logo > img {
   width: 110px; 
}
footer .footer_panel p.address,
.services p.address {
   margin-left: 25px;
   margin-bottom: 15px;
}
footer .footer_panel p.address a:hover {
   color: #b2cb20;
}
footer .footer_panel p.address > i,
.services p.address > i {
   display: inline-block;
   font-size: 15px;
   margin-left: -25px;
   vertical-align: middle;
   width: 25px;
}
.footer_panel ul.links {
    -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.copyright {
   width: 100%;
   padding: 20px 0;
}
.copyright p {
   margin: 0;
   font-size: 0.875rem;
   line-height: normal;
}
.copyright p > a:hover {
   color: #4fb8aa;

}




@media (max-width:1200px) {
   html {
      font-size: 15px;
   }
   h1,
   #parallax-bg h1 {
      font-size: 2.56rem;
   }
   h2 {
      font-size: 2.45rem;
   }
   h3 {
      font-size: 1.65rem;
   }
   h4 {
      font-size: 1.15rem;
   }
}
@media (min-width:536px) and (max-width:1024px) {
   ul.social_icon li a {
      font-size: 14px;
      height: 30px;
      line-height: 28px;
      width: 30px;
   }
   p {
      font-size: 13px;
   }
}

@media (max-width:992px) {
   html {
      font-size: 14px;
   }
   h1,
   #parallax-bg h1 {
      font-size: 2.75rem;
   }
   h2 {
      font-size: 2.3rem;
   }
   h3 {
      font-size: 1.4rem;
   }
   h4 {
      font-size: 1.125rem;
   }
   .hero-funtop {
      padding: 4.5rem 0 3rem;
   }
   .hero-funtop__visual {
      margin-top: 2rem;
      justify-content: flex-start;
   }
   .hero-funtop__card {
      max-width: 100%;
   }
   .vt-navbar__cta {
      flex-direction: column;
      align-items: flex-start;
      margin-left: 0;
      margin-top: 1rem;
   }
   .vt-nav .nav-link {
      padding: 0.5rem 0;
   }
}
@media screen and (max-width: 991px) {
   .product-strip-card img {
      width: 100%;
      height: 160px;
   }
   #shop .findus .form-group {
      width: 100%;
   }
   .apply_coupon .coupon a {
      width: 49.6%;
   }
   #shop .findus .btn_common,
   .findus .form-group {
      width: 100%;
   }
   #shop .findus .apply_coupon .btn_common {
      width: 100%
   }
   #shop .findus {
      margin: 0 !important;
   }
}

@media (max-width:768px) {
   .container {
      max-width: 98%;
   }
   h1,
   #parallax-bg h1 {
      font-size: 2.65rem;
   }
   h2 {
      font-size: 2.2rem;
   }
   h3 {
      font-size: 1.375rem;
   }
   h4 {
      font-size: 1.115rem;
   }
   .btn_common {
      padding: 10px 2.2rem;
      font-size: 12px;
   }
   .hero-funtop__cta {
      /* flex-direction: column; */
      align-items: flex-start;
   }
   .hero-funtop__card {
      padding: 1.6rem;
   }
   .hero-funtop__chips .chip {
      padding: 0.8rem;
   }
   .about-vt__content {
      padding-left: 0;
      margin-top: 2rem;
   }
   .about-vt__media-card {
      position: static;
      margin-top: 1rem;
   }
   .about-vt__badge {
      position: static;
      margin-top: 1rem;
      display: inline-flex;
   }
}

@media screen and (max-width: 768px) {
   .product-strip-card img {
      width: 100%;
      height: 120px !important;
   }
   .padding {
      padding: 4rem 0;
   }
   .padding-top {
      padding-top: 4rem
   }
   .padding-bottom {
      padding-bottom: 4rem
   }
   .icon_box {
      padding: 15px;
   }
   .icon_box.margin_tophalf {
      margin-top: 2rem;
   }
   #shop .findus .form-group {
      margin-bottom: 20px !important;
   }
   .split-box .padding-bottom-sm-0 {
      padding-bottom: 0 !important;
   }
   .cart_table .d-table {
      display: table !important;
   }
   #shop .d-table-cell {
      display: contents !important;
   }
}

@media (max-width:560px) {
   .product-strip-card img {
      width: 100%;
      height: 120px;
   }
   #parallax-bg h1 {
      font-size: 2.2rem;
   }
   .btn_common {
      padding: 8px 2rem;
      font-size: 11px;
   }
   .hero-funtop {
      min-height: auto;
   }
   .hero-funtop__meta {
      /* flex-direction: column; */
      margin-top: 20px;
      margin-bottom: 20px;
      gap: 1rem;
   }
   .hero-funtop__categories {
      grid-template-columns: 1fr;
   }
   .hero-funtop__chips .chip {
      text-align: center;
   }
   /* .vt-topbar__info,
   .vt-topbar__social {
      justify-content: center;
      text-align: center;
      gap: 0.5rem;
   } */
.vt-topbar {
   display: none;
}
   .about-vt__stats {
      grid-template-columns: 1fr;
   }
}
@media screen and (max-width: 576px) {
   .cart_table .table-responsive tbody tr > td {
      padding: 10px !important;
   }
   #shop h4 {
      font-size: 1rem;
   }
   .cart_table .shopping-product {
      margin-left: 5px;
   }
   .apply_coupon .coupon a {
      width: 49.2%;
   }
   #shop .findus .form-group {
      margin-bottom: 20px !important;
   }

   .split-box .heading_space {
      margin-bottom: 2.375rem;
   }
}


/* ----- PreLoader ----- */
.loader {
   position: fixed;
   inset: 0;
   z-index: 1111;
   background: radial-gradient(circle at top, #fff8f0 0%, #fff 55%, #ffe7d1 120%);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   font-family: 'Poppins', sans-serif;
   color: #8b4513;
}
.loader__inner {
   position: relative;
   width: min(320px, 80vw);
   text-align: center;
}
.loader__pulse {
   position: absolute;
   inset: 50%;
   width: 240px;
   height: 240px;
   border-radius: 50%;
   border: 2px solid rgba(192,81,8,.25);
   transform: translate(-50%, -50%);
   animation: loaderPulse 2.8s ease-out infinite;
}
.loader__pulse--delay {
   animation-delay: 1.2s;
}
.loader__card {
   position: relative;
   padding: 2.5rem 2rem;
   background: #ffffff;
   border-radius: 28px;
   box-shadow: 0 25px 60px rgba(0,0,0,.12);
   border: 1px solid rgba(192,81,8,.15);
}
.loader__badge {
   display: inline-flex;
   padding: 0.35rem 1rem;
   border-radius: 999px;
   background: rgba(255,205,133,.25);
   color: #c05108;
   font-size: 0.75rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 1rem;
}
.loader__logo {
   width: 96px;
   height: auto;
   display: block;
   margin: 0 auto 0.75rem;
}
.loader__card strong {
   display: block;
   font-size: 1.35rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: #c05108;
}
.loader__card p {
   margin: 0.4rem 0 1.3rem;
   color: #6b4b2b;
   font-size: 0.95rem;
}
.loader__progress {
   width: 100%;
   height: 6px;
   background: rgba(192,81,8,.15);
   border-radius: 999px;
   overflow: hidden;
   position: relative;
}
.loader__progress span {
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
   animation: loaderProgress 1.6s linear infinite;
}

@keyframes loaderPulse {
   0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.4; }
   50% { opacity: 1; }
   100% { transform: translate(-50%, -50%) scale(1.35); opacity: 0; }
}

@keyframes loaderProgress {
   0% { transform: translateX(-100%); }
   100% { transform: translateX(100%); }
}


/*@media (max-width: 1400px){
   .split-box .padding {
	   padding: 5.5rem 0;
   } 
}
@media (max-width: 1266px){
   .split-box .padding {
	   padding: 4rem 0;
   } 
}
@media (min-width: 768px) and (max-width: 1024px){
   .split-box .padding {
	   padding: 3rem 0;
   }
}
@media (max-width: 992px){
   .split-box{
      padding-left: 15px;
      padding-right: 15px;
   }
   .half-section .img-container {
      margin-bottom: 25px;
   }
   
}*/

.navbar-expand-lg .navbar-nav .nav-link {
   padding-right: .5rem !important;
   padding-left: .5rem !important;
}

.ps-nav .btn-inner,
.ps-nav .btn-inner:hover {
  display: none !important;
}
.navbar-nav {
   margin-top: 9px;
}
.btn_outline {
   border: 2px solid #b9440a;
   color: #b9440a;
}

.insta-feed .btn_common.btn_sm {
   padding: 6px 1rem;
   font-size: 0.68rem;
   border-radius: 999px;
}