
@import url('css.css');
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    width: 100%;
    color: #484848;
}
.img{
    max-width: 100%;
}
.img-full img{
    width: 100%;
}
a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:focus,
button:focus {
    text-decoration: none;
    outline: none;
}
a:focus,
a:hover {
    color: #3fdbf0;
    text-decoration: none;
}
a,
button,
input {
    outline: medium none;
    color: #434343;
}
.uppercase { 
    text-transform: uppercase
}
.capitalize { 
    text-transform: capitalize
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000000;
    margin-top: 0px;
    font-weight: 400;
    line-height: 1;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a { 
    color: inherit; 
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}
ul {
	list-style: none;
    margin: 0px;
    padding: 0px;
}
p {
    margin-bottom: 15px;
}
hr{
    margin: 60px 0;
    padding: 0px;
    border-bottom: 1px solid #eceff8;
    border-top: 0px;
}
label {
    font-size: 15px;
    font-weight: 400;
    color: #626262;
}
*::-moz-selection {
    background: #3399FF;
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: #3399FF;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #3399FF;
    color: #fff;
    text-shadow: none;
}
.mark, mark {
    background: #abd373 none repeat scroll 0 0;
    color: #ffffff;
}
.fix {
    overflow: hidden
}
.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/*************************
    Section title
***********************/
.section-title > h2 {
	font-size: 80px;
	font-family: 'lavigne', cursive;
}
.section-title > h3 {
	font-size: 40px;
	/* font-family: 'lavigne', cursive; */
	margin-bottom: 0px;
	padding-bottom: 25px;
	font-weight: 500;
}
.section-title > span {
	color: #b4b4b4;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
    display: inline-block;
	letter-spacing: 1px;
	margin: 0 0 7px 0;
	position: relative;
}
.section-title > span:before,
.section-title > span:after {
	background: #191FA3;
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	top: 50%;
	width: 30px;
	z-index: 9;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
    z-index: 9;
}
.section-title > span:before {
	left: -45px;
	right: auto;
}
.section-title > span:after {
	left: auto;
	right: -45px;
}
.section-title2 > h3 {
	font-size: 30px;
	color: #ffffff;
	text-align: center;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 20px;
	line-height: 24px;
}
.section-title2 > p {
	margin: 0 auto 35px auto;
	font-style: italic;
	color: #c9c9c9;
	max-width: 720px;
	text-align: center;
}
.section-title2.bl-color > h3 {
	color: #444;
}
.section-title2.bl-color > p{
    color: #222;
}
/*************************
         button
*************************/

/*************************
       social-icon
*************************/

/*************************
        Input
*************************/
input {
	background: transparent;
	border: 2px solid #abd373;
	box-shadow: none;
	padding-left: 10px;
	font-size: 16px;
	color: #555;
	width: 100%;
	box-shadow: none;
	border-radius: 0;
}
select {
    width: 100%;
    background: #eceff8;
    border: 2px solid #eceff8;
    height: 45px;
    padding-left: 10px;
    box-shadow: none;
    font-size: 14px;
    color: #626262;
}
option {
    background: #fff;
    border: 0px solid #626262;
    padding-left: 10px;
    font-size: 14px;
}
textarea {
    resize: vertical;
    background: #eceff8;
    border: 2px solid #eceff8;
    padding: 10px;
    width: 100%;
    font-size: 16px;
	color: #555;
}
textarea:focus {
    background: transparent;
    border: 2px solid #abd373;
    outline: none;
}
::-moz-placeholder {
    color: #444;
    font-size: 13px;
}
/*************************
        scroll to top
*************************/
#scrollUp {
	background: #555;
	border: 2px solid #ddd;
	width: 50px;
	height: 50px;
	line-height: 40px;
	border-radius: 100%;
	bottom: 25px;
	right: 25px;
	color: #fff;
	text-align: center;
	font-size: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#scrollUp:hover {
	background: #191fa3;
	border-color: #191fa3;
}

/*************************
  Basic margin padding
*************************/
.m-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}
/*************************
         Margin top
*************************/
.mt-0 { margin-top: 0 }
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-30 { margin-top: 30px }
.mt-40 { margin-top: 40px }
.mt-45 { margin-top: 45px }
.mt-50 { margin-top: 50px }
.mt-60 { margin-top: 60px }
.mt-70 { margin-top: 70px }
.mt-75 { margin-top: 75px }
.mt-80 { margin-top: 80px }
.mt-85 { margin-top: 85px }
.mt-90 { margin-top: 90px }
.mt-100 { margin-top: 100px }
.mt-105 { margin-top: 105px }
.mt-110 { margin-top: 110px }
.mt-115 { margin-top: 115px }
.mt-120 { margin-top: 120px }
.mt-130 { margin-top: 130px }
.mt-140 { margin-top: 140px }
.mt-150 { margin-top: 150px }
/*************************
      Margin right
*************************/
.mr-0 { margin-right: 0px }
.mr-10 { margin-right: 10px }
.mr-15 { margin-right: 15px }
.mr-20 { margin-right: 20px }
.mr-30 { margin-right: 30px }
.mr-40 { margin-right: 40px }
.mr-50 { margin-right: 50px }
.mr-60 { margin-right: 60px }
.mr-70 { margin-right: 70px }
.mr-80 { margin-right: 80px }
.mr-90 { margin-right: 90px }
.mr-100 { margin-right: 100px }
.mr-110 { margin-right: 110px }
.mr-120 { margin-right: 120px }
.mr-130 { margin-right: 130px }
.mr-140 { margin-right: 140px }
.mr-150 { margin-right: 150px }
/*************************
      Margin bottom
*************************/
.mb-0 { margin-bottom: 0 }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-25 { margin-bottom: 25px }
.mb-30 { margin-bottom: 30px }
.mb-32 { margin-bottom: 32px }
.mb-35 { margin-bottom: 35px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }
.mb-60 { margin-bottom: 60px }
.mb-70 { margin-bottom: 70px }
.mb-75 { margin-bottom: 75px }
.mb-80 { margin-bottom: 80px }
.mb-85 { margin-bottom: 85px }
.mb-90 { margin-bottom: 90px }
.mb-100 { margin-bottom: 100px }
.mb-105 { margin-bottom: 105px }
.mb-110 { margin-bottom: 110px }
.mb-115 { margin-bottom: 115px }
.mb-120 { margin-bottom: 120px }
.mb-130 { margin-bottom: 130px }
.mb-140 { margin-bottom: 140px }
.mb-150 { margin-bottom: 150px }
/*************************
        Margin left
*************************/
.ml-0 { margin-left: 0 }
.ml-10 { margin-left: 10px }
.ml-15 { margin-left: 15px }
.ml-20 { margin-left: 20px }
.ml-30 { margin-left: 30px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
.ml-60 { margin-left: 60px }
.ml-70 { margin-left: 70px }
.ml-80 { margin-left: 80px }
.ml-90 { margin-left: 90px }
.ml-100 { margin-left: 100px }
.ml-110 { margin-left: 110px }
.ml-120 { margin-left: 120px }
.ml-130 { margin-left: 130px }
.ml-140 { margin-left: 140px }
.ml-150 { margin-left: 150px }
/*************************
        Padding top
*************************/
.pt-0 { padding-top: 0 }
.pt-10 { padding-top: 10px }
.pt-15 { padding-top: 15px }
.pt-20 { padding-top: 20px }
.pt-30 { padding-top: 30px }
.pt-35 { padding-top: 35px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }
.pt-60 { padding-top: 60px }
.pt-65 { padding-top: 65px }
.pt-70 { padding-top: 70px }
.pt-80 { padding-top: 80px }
.pt-90 { padding-top: 90px }
.pt-100 { padding-top: 100px }
.pt-105 { padding-top: 105px }
.pt-110 { padding-top: 110px }
.pt-115 { padding-top: 115px }
.pt-120 { padding-top: 120px }
.pt-130 { padding-top: 130px }
.pt-140 { padding-top: 140px }
.pt-150 { padding-top: 150px }
/*************************
        Padding right
*************************/
.pr-0 { padding-right: 0 }
.pr-10 { padding-right: 10px }
.pr-15 { padding-right: 15px }
.pr-20 { padding-right: 20px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }
.pr-60 { padding-right: 60px }
.pr-65 { padding-right: 65px }
.pr-70 { padding-right: 70px }
.pr-80 { padding-right: 80px }
.pr-90 { padding-right: 90px }
.pr-100 { padding-right: 100px }
.pr-110 { padding-right: 110px }
.pr-120 { padding-right: 120px }
.pr-130 { padding-right: 130px }
.pr-140 { padding-right: 140px }
/*************************
        Padding bottom
*************************/
.pb-0 { padding-bottom: 0 }
.pb-5 { padding-bottom: 5px !important }
.pb-10 { padding-bottom: 10px }
.pb-15 { padding-bottom: 15px }
.pb-20 { padding-bottom: 20px }
.pb-25 { padding-bottom: 25px }
.pb-30 { padding-bottom: 30px }
.pb-35 { padding-bottom: 35px }
.pb-40 { padding-bottom: 40px }
.pb-45 { padding-bottom: 45px }
.pb-50 { padding-bottom: 50px }
.pb-60 { padding-bottom: 60px }
.pb-65 { padding-bottom: 65px }
.pb-70 { padding-bottom: 70px }
.pb-75 { padding-bottom: 75px }
.pb-80 { padding-bottom: 80px }
.pb-85 { padding-bottom: 85px }
.pb-90 { padding-bottom: 90px }
.pb-100 { padding-bottom: 100px }
.pb-105 { padding-bottom: 105px }
.pb-110 { padding-bottom: 110px }
.pb-115 { padding-bottom: 115px }
.pb-120 { padding-bottom: 120px }
.pb-130 { padding-bottom: 130px }
.pb-140 { padding-bottom: 140px }
.pb-150 { padding-bottom: 150px }
/*************************
        Padding left
*************************/
.pl-0 { padding-left: 0 }
.pl-10 { padding-left: 10px }
.pl-15 { padding-left: 15px }
.pl-20 { padding-left: 20px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-60 { padding-left: 60px }
.pl-65 { padding-left: 65px }
.pl-70 { padding-left: 70px }
.pl-80 { padding-left: 80px }
.pl-90 { padding-left: 90px }
.pl-100 { padding-left: 100px }
.pl-110 { padding-left: 110px }
.pl-120 { padding-left: 120px }
.pl-130 { padding-left: 130px }
.pl-140 { padding-left: 140px }
.pl-150 { padding-left: 150px }


/***************************
    Page section padding 
****************************/
.ptb-0 { padding: 0 }
.ptb-10 { padding: 10px 0 }
.ptb-20 { padding: 20px 0 }
.ptb-30 { padding: 30px 0 }
.ptb-40 { padding: 40px 0 }
.ptb-50 { padding: 50px 0 }
.ptb-60 { padding: 60px 0 }
.ptb-70 { padding: 70px 0 }
.ptb-80 { padding: 80px 0 }
.ptb-90 { padding: 90px 0 }
.ptb-100 { padding: 100px 0 }
.ptb-110 { padding: 110px 0 }
.ptb-120 { padding: 120px 0 }
.ptb-130 { padding: 130px 0 }
.ptb-140 { padding: 140px 0 }
.ptb-150 { padding: 150px 0 }

/***************************
    Page section margin 
****************************/
.mtb-0 { margin: 0 }
.mtb-10 { margin: 10px 0 }
.mtb-15 { margin: 15px 0 }
.mtb-20 { margin: 20px 0 }
.mtb-30 { margin: 30px 0 }
.mtb-40 { margin: 40px 0 }
.mtb-50 { margin: 50px 0 }
.mtb-60 { margin: 60px 0 }
.mtb-70 { margin: 70px 0 }
.mtb-80 { margin: 80px 0 }
.mtb-90 { margin: 90px 0 }
.mtb-100 { margin: 100px 0 }
.mtb-110 { margin: 110px 0 }
.mtb-120 { margin: 120px 0 }
.mtb-130 { margin: 130px 0 }
.mtb-140 { margin: 140px 0 }
.mtb-150 { margin: 150px 0; }

 /*************************************
    Background variation set 
 **************************************/
/*colored background*/
 .white-bg { background: #fff !important; }
 .gray-bg { background: #f8f8fa !important; }
 .gray-bg2 { background: #f2f2f2 !important; }
 .gray-bg3 { background: #f8f8f8 !important; }
 .black-bg { background: #000000 !important; }
 .default-bg { background: #50C1F0 !important; }
 .transparent-bg { background: transparent !important; }
 
 .white-color { color: white; }

/*Opacity background*/
 .bg-opacity-black-10:before, .bg-opacity-black-20:before, .bg-opacity-black-30:before, .bg-opacity-black-40:before, .bg-opacity-black-50:before, .bg-opacity-black-60:before, .bg-opacity-black-70:before, .bg-opacity-black-80:before, .bg-opacity-black-90:before,  .bg-opacity-white-10:before,  .bg-opacity-white-20:before,  .bg-opacity-white-30:before,  .bg-opacity-white-40:before,  .bg-opacity-white-50:before,  .bg-opacity-white-60:before,  .bg-opacity-white-70:before,  .bg-opacity-white-80:before,  .bg-opacity-white-90:before{
    content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: -1; 
 }
 .bg-opacity-black-10:before {  background: rgba(0, 0, 0, 0.1);}
 .bg-opacity-black-20:before {  background: rgba(0, 0, 0, 0.2);}
 .bg-opacity-black-30:before {  background: rgba(0, 0, 0, 0.3);}
 .bg-opacity-black-40:before {  background: rgba(0, 0, 0, 0.4);}
 .bg-opacity-black-50:before {  background: rgba(0, 0, 0, 0.5);}
 .bg-opacity-black-60:before {  background: rgba(0, 0, 0, 0.6);}
 .bg-opacity-black-70:before {  background: rgba(0, 0, 0, 0.7);}
 .bg-opacity-black-80:before {  background: rgba(0, 0, 0, 0.8);}
 .bg-opacity-black-90:before {  background: rgba(0, 0, 0, 0.9);}

 .bg-opacity-white-10:before {  background: rgba(255, 255, 255, 0.1);}
 .bg-opacity-white-20:before {  background: rgba(255, 255, 255, 0.2);}
 .bg-opacity-white-30:before {  background: rgba(255, 255, 255, 0.3);}
 .bg-opacity-white-40:before {  background: rgba(255, 255, 255, 0.4);}
 .bg-opacity-white-50:before {  background: rgba(255, 255, 255, 0.5);}
 .bg-opacity-white-60:before {  background: rgba(255, 255, 255, 0.6);}
 .bg-opacity-white-70:before {  background: rgba(255, 255, 255, 0.7);}
 .bg-opacity-white-80:before {  background: rgba(255, 255, 255, 0.8);}
 .bg-opacity-white-90:before {  background: rgba(255, 255, 255, 0.9);}
/*---------------------
    Animation Css
----------------------*/
@-webkit-keyframes crFlipX{
  0%{
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  50%{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100%{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes crFlipX{
  0%{
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  50%{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100%{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
/*-------------------
Common Style CSS
-------------------*/
.slick-slide:active, 
.slick-slide:focus{ 
    outline: none; 
}
.tab-content {
    width: 100%;
}
.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 
}
.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    overflow: visible; 
}
.tab-pane.fade:not(.show) {
    display: none;
}

.vbox-close {
	background: #181fa3 url("#") no-repeat scroll 10px center !important;
	color: #fff !important;
	cursor: pointer;
	display: block;
	font-weight: 600;
	height: 40px;
	position: fixed;
	right: 40px;
	text-indent: 2px;
	top: 14px;
	width: 46px;
	border-radius: 2px;
}



/*------------------------------
    2. Header Area CSS
--------------------------------*/
/*header menu sticky*/
.header-sticky{
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}
.header-sticky.is-sticky {
	/*background: rgba(1, 18, 155, 0.85);*/
	background: rgb(25, 31, 163);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
    padding: 10px 0;
	box-shadow: 0 8px 6px -6px rgba(0,0,0,.4);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header-sticky.is-sticky .header-menu-area nav >  ul > li > a {
	padding: 20px 0;
}
.header-sticky.is-sticky .main-menu > li > a {
	color: white;
}
.inner-header{
	background: rgba(1, 18, 155, 0.85);
	color: white;
	padding: 13px 0;
}
/*4. Mobile Menu CSS*/
.mobile-menu .mean-nav > ul {
	overflow-y: auto;
	max-height: 400px;
}
.mobile-menu {
     -webkit-box-flex: 1 !important;
     -ms-flex: 1 0 100% !important;
     flex: 1 0 100% !important;
}
 .mobile-menu .mean-bar {
     position: relative;
    /*---- Mean Nav ----*/
}
.mobile-menu .mean-bar .meanmenu-reveal {
	position: absolute;
	top: -55px;
}
 .mobile-menu .mean-bar .meanmenu-reveal span {
     position: relative;
    /*---- Menu Open ----*/
    /*---- Menu Close ----*/
}
.mean-container a.meanmenu-reveal span {
	display: block;
	background: #282828;
	height: 3px;
	margin-top: 3px;
}
.inner-header .mean-container a.meanmenu-reveal span {
	background: #f7f7f7;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
     content: "";
     position: absolute;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #202020;
}
.mean-container a.meanmenu-reveal {
	color: #282828;
}
.inner-header .mean-container a.meanmenu-reveal {
	color: #f7f7f7;
}
.mean-container .mean-bar {
	padding: 0;
	min-height: 0;
}
.mean-container .mean-nav {
	background: transparent;
	margin-top: 0;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before {
     top: -8px;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
     bottom: -8px;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
     height: 2px;
     width: 26px;
     background-color: transparent;
     display: block;
     margin: 8px 0;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
     content: "";
     position: absolute;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #202020;
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before {
     top: 0;
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
}
 .mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
     bottom: 0;
     -webkit-transform: rotate(-45deg);
     transform: rotate(-45deg);
}
 .mobile-menu .mean-bar .mean-nav {
     background-color: #ffffff;
}
 .mobile-menu .mean-bar .mean-nav > ul {
     margin-bottom: 30px;
     border: 1px solid #eeeeee;
     border-top: 0px solid transparent;
     overflow-x: hidden;
}
 @media only screen and (max-width: 767px) {
     .mobile-menu .mean-bar .mean-nav > ul {
         max-height: 180px;
         overflow-y: auto;
    }
}
 @media only screen and (max-width: 479px) {
     .mobile-menu .mean-bar .mean-nav > ul {
         max-height: 220px;
         overflow-y: auto;
    }
}
 .mobile-menu .mean-bar .mean-nav > ul li {
     position: relative;
     display: block;
     float: left;
     width: 100%;
     padding: 0;
    /*---- Sub Menu & Mega Menu ----*/
}
.mobile-menu .mean-bar .mean-nav > ul li a {
	font-size: 13px;
	display: block;
	color: #444444;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 44px;
	position: relative;
	border-top: 1px solid #eeeeee;
	padding: 0 40px 0 20px;
	width: 100%;
}
.mobile-menu .mean-bar .mean-nav > ul li a:before{
    display: none;
}
 .mobile-menu .mean-bar .mean-nav > ul li a:hover {
     color: #202020;
     padding-left: 25px;
}
.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand {
	border: 1px solid #eeeeee;
	position: absolute;
	right: -1px;
	top: 0;
	font-size: 20px !important;
	color: #444444;
	line-height: 44px;
	height: 46px;
	width: 40px;
	text-align: center;
	padding: 0 !important;
	background-color: transparent;
}
 .mobile-menu .mean-bar .mean-nav > ul li a.mean-expand.mean-clicked {
     line-height: 40px;
}
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu, .mobile-menu .mean-bar .mean-nav > ul li ul {
	position: static;
	background-color: #fff;
	margin: 0;
	padding: 0 !important;
	width: 100%;
	box-shadow: none;
	display: none;
	float: left;
    min-width: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transform: perspective(0px) rotateX(0deg);
	        transform: perspective(0px) rotateX(0deg);
	-webkit-transition: none;
	transition: none;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li, .mobile-menu .mean-bar .mean-nav > ul li ul li {
     padding: 0;
     margin: 0;
     -webkit-box-flex: 0;
     -ms-flex: 0 0 100%;
     flex: 0 0 100%;
     border-right: 0px solid transparent;
     width: 100%;
     display: block !important;
     float: left;
     width: 100%;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li a {
     font-size: 12px;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a:before, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a:before, .mobile-menu .mean-bar .mean-nav > ul li ul li a:before {
     display: none;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul {
     background-color: rgba(0, 0, 0, 0.04);
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a {
     border-top: 1px solid #dddddd;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a.mean-expand {
     border: 1px solid #dddddd;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul {
     background-color: rgba(0, 0, 0, 0.05);
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a {
     border-top: 1px solid #eeeeee;
}
 .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a.mean-expand {
     border: 1px solid #eeeeee;
}
/*Mobile Menu css end*/
.header-absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.header-area .col-lg-9 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.main-menu > li {
	list-style: none;
	display: inline-block;
	margin: 0 18px 0 0;
	padding: 10px 0;
	position: relative;
}
.main-menu > li > a {
	height: 42px;
	line-height: 42px;
	font-size: 15px;
	font-weight: 500;
	padding: 0 6px;
	text-transform: capitalize;
	position: relative;
	display: block;
	color: white;
}
.main-menu > li > a:before {
	position: absolute;
	content: "";
	bottom: 7px;
	left: 50%;
	right: 50%;
	background: #3fdbf0;
	display: block;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-menu > li > a:hover:before{
    left: 0;
    right: 0;
    width: 100%;
}
.mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	padding: 20px 0;
	text-align: left;
	background-color: #fff;
	border: 1px solid #ededed;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
	-webkit-transform: perspective(600px) rotateX(-90deg);
	        transform: perspective(600px) rotateX(-90deg);
	-webkit-transform-origin: 0 0 0;
	        transform-origin: 0 0 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 99;
}
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 166px;
	padding: 10px 0;
	text-align: left;
	background-color: #fff;
	border: 1px solid #ededed;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
	-webkit-transform: perspective(600px) rotateX(-90deg);
	transform: perspective(600px) rotateX(-90deg);
	-webkit-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 99;
}
.main-menu > li:hover .dropdown,
.main-menu > li:hover .mega-menu{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    visibility: visible;
}
.dropdown > li {
	display: block;
	list-style: none;
}
.dropdown > li > a {
	font-size: 13px;
	line-height: 18px;
	padding: 10px 15px;
	display: block;
	font-weight: 400;
	color: #666666;
}
.dropdown > li > a:hover, .mega-menu > li > ul > li > a:hover {
	background-image: linear-gradient(90deg, #191fa3 20%, #3fdbf0 50%, #f50c92 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
.mega-menu {
	width: 100%;
	min-width: 600px;
	padding: 27px 15px 20px 15px;
	left: 0;
	right: auto;
}
.mega-menu > li {
	float: left;
	width: 33.3%;
	padding: 0px 5px 10px 5px;
	list-style: none;
}
.mega-menu > li > a.item-link {
	font-size: 13px;
	font-weight: 700;
	color: #666;
	line-height: 18px;
	margin: 0 0 12px;
    pointer-events: none;
}
.mega-menu > li > a.item-linkable {
	font-size: 13px;
	font-weight: 700;
	color: #666;
	line-height: 18px;
	margin: 0 0 12px;
}
.mega-menu > li > a.item-linkable:hover {
	background-image: linear-gradient(90deg, #191fa3 20%, #3fdbf0 50%, #f50c92 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
.mega-menu > li > ul > li {
	list-style: none;
	display: block;
}
.mega-menu > li > ul > li > a {
	font-size: 13px;
	color: #898989;
	display: block;
	padding: 4px 0;
	font-weight: 400;
	line-height: 18px;
}
/*.main-menu > li:nth-child(6) > ul:nth-child(2){*/
/*	min-width: 400px;*/
/*	padding: 27px 15px 20px 15px;*/
/*	left: auto;*/
/*	right: 0;*/
/*}*/
/*.main-menu > li:nth-child(6) > ul:nth-child(2) > li {*/
/*	float: left;*/
/*	width: 50%;*/
/*	padding: 0px 5px 10px 5px;*/
/*	list-style: none;*/
/*}*/
.submenu{
	margin-top: 8px;
}

/*mini cart and search area css*/
.mini-cart-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.mini-cart-search > div {
	margin-right: 35px;
}
.mini-cart-search > div:last-child{
    margin-right: 0;
}
.mini-cart {
	position: relative;
	padding: 15px 0;
}
.mini-cart > a {
	color: #000;
	position: relative;
	padding-left: 35px;
	display: block;
}
.mini-cart:hover > a{
    color: #abd373; 
}
.cart-icon {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.cart-icon:before {
	content: '\f07a';
	font-family: FontAwesome;
	line-height: 1;
	font-size: 18px;
	vertical-align: ;
}
.cart-quantity {
	position: absolute;
	background: #abd373;
	height: 19px;
	line-height: 19px;
	width: 19px;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	font-size: 12px;
	left: 12px;
	top: -6px;
	z-index: 1;
}
.cart-title {
	display: block;
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	line-height: 1;
}
.cart-title > strong {
	display: block;
	font-weight: 500;
	margin-top: 6px;
}
.cart-dropdown {
	text-align: left;
	position: absolute;
	top: 100%;
	right: 0;
	width: 360px;
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 30px 25px 15px 25px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
    z-index: 99;
}
.cart-dropdown ul > li {
	display: block;
	list-style: none;
	overflow: hidden;
	padding: 0 0 20px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}
.cart-dropdown ul > li:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.cart-img {
	float: left;
	width: 25%;
}
.cart-img img{
    width: 100%;
}
.cart-img > a {
	display: block;
	border: 1px solid #ededed;
}
.cart-img > a:hover{
    border-color: #abd373;
}
.cart-content {
	float: left;
	width: 62%;
	margin-left: 20px;
}
.product-name {
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin: 0 30px 5px 0;
	text-align: left;
}
.cart-content span.quantity {
	color: #555555;
	display: block;
	font-size: 13px;
	font-weight: 400;
	text-align: left;
}
.cart-content span.cart-price {
	display: block;
	margin-top: 8px;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	color: #555;
	line-height: 21px;
}
.cart-remove{
    position: relative;
}
.cart-remove > a {
	position: absolute;
	right: 0;
	top: 0px;
	z-index: 1;
}
.cart-subtotal {
	border-top: 1px solid #e5e5e5;
	color: #555;
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
	padding: 15px 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0;
}
.cart-subtotal > strong {
	font-weight: 400;
}
.cart-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}
.cart-btn a {
	background: #fff;
	color: #555;
    border: 2px solid #e5e5e5;
	display: inline-block;
	font-size: 14px;
    font-weight: 400;
	height: 50px;
	line-height: 48px;
	padding: 0;
    margin: 10px 0;
	text-align: center;
	text-transform: uppercase;
	width: 125px;
    border-radius: 3px;
}
.cart-btn a:hover{
    background: #abd373;
    border-color: #abd373;
    color: #fff;
}
.header-search {
	position: relative;
}
.header-search > a {
	font-size: 18px;
	height: 62px;
	line-height: 62px;
	display: block;
	color: #000;
}
.header-search:hover > a{
    color: #abd373
}
.header-search a i {
	color: #fff;
}
.header-search button i {
	color: #555;
}
.search-dropdown{
    display: none;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 999;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
}
.search-dropdown > form {
	background: #fff;
	padding: 0 20px;
	white-space: nowrap;
}
.search-dropdown > form > input {
	background: none;
	border: none;
	color: #666666;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	margin: 0;
	outline: none;
	padding-right: 25px;
	width: 280px;
}
.search-dropdown > form > button {
	background: none;
	border: none;
	box-shadow: none;
	color: #666666;
    font-size: 14px;
	height: 40px;
	line-height: 40px;
	outline: none;
    cursor: pointer;
	padding: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.search-dropdown > form > button:hover{
    color: #abd373;
}
.contact-btn {
	display: flex;
	align-items: center;
	margin-left: 26px;
}
.contact-btn a {
    display: inline-block;
    padding: 3px 10px;
    background: #F5D44B;
    color: white !important;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}
.contact-btn a:hover {
    background: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
    /*transform: translateY(-2px);*/
    box-shadow: 0 5px 15px rgba(245, 12, 146, 0.3);
}

@media (max-width: 768px) {
    .contact-btn {
        display: none;
    }
    .header-search{
	    display: none;
	}
}

.currency-box{
    position: relative;
}
.currency-box > a {
	font-size: 18px;
	line-height: 62px;
	height: 62px;
	color: #000;
	display: block;
	text-align: ;
}
.currency-box:hover > a{
    color: #abd373;
}
.currency-dropdown {
	background: #ffffff;
	color: #666666;
	font-size: 13px;
	min-width: 230px;
	padding: 30px 25px;
	position: absolute;
	right: 0;
	top: 100%;
	width: auto;
    text-align: left;
	z-index: 3000;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: 3px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}
.currency-box:hover .currency-dropdown{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.currency-dropdown  ul.menu-top-menu {
	margin-bottom: 25px;
}
.menu-top-menu > li {
	list-style: none;
	margin-bottom: 6px;
	white-space: nowrap;
}
.menu-top-menu > li > a{
    font-size: 13px;
    color: #666;
    line-height: 25px;
}
.menu-top-menu > li > a:hover{
    color: #abd373;
}
.switcher {
	border-top: 1px solid #e5e5e5;
	margin-top: 20px;
	padding-top: 20px;
}
.language {
	margin-bottom: 8px;
}
.switcher-title {
	display: inline-block;
	margin-right: 10px;
	text-transform: uppercase;
	vertical-align: middle;
}
.switcher-menu {
	background: none;
	display: inline-block;
}
.switcher-menu > ul > li {
	list-style: none;
	position: relative;
}
.switcher-menu > ul > li > a {
	background: none;
	color: #abd373;
	cursor: pointer;
	font-size: inherit;
	font-weight: normal;
	padding: 5px 15px 5px 0;
	position: relative;
	vertical-align: middle;
}
.switcher-menu > ul > li > a:before {
	content: '\f107';
	font-family: FontAwesome;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.switcher-dropdown {
	background: #fff;
	border: 1px solid #e5e5e5;
	height: auto;
	left: 50%;
	padding: 6px 10px !important;
	position: absolute;
	top: 100%;
	z-index: 1000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.switcher-menu > ul > li:hover .switcher-dropdown{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.switcher-dropdown > li{
    list-style: none;
    display: block;
    border-bottom: 0 10px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}
.switcher-dropdown > li:last-child{
    border-bottom: none;
}
.switcher-dropdown > li > a {
	background: none;
	color: #666666;
	display: block;
	line-height: 33px;
	white-space: nowrap;
}
.switcher-dropdown > li > a:hover{
    color: #abd373;
}
/*header style 3*/
.header-area.header-sticky.is-sticky .header-boxshadow {
	margin-top: 0;
}
.header-area.header-sticky.is-sticky .header-boxshadow:before,
.header-area.header-sticky.is-sticky .header-boxshadow:after{
    display: none
}
.header-area.header-sticky.is-sticky .header-boxshadow .header-inner{
    background: transparent;
    padding: 0 15px;
    box-shadow: none;
}
.header-boxshadow {
	margin: 0 auto;
	max-width: 1170px;
	margin-top: 60px;
	position: relative;
}
.header-inner {
	background: #fff;
	padding: 10px 15px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
	box-shadow: 0px 10px 30px 0px rgba(209,209,209,0.5);
}
.header-boxshadow:after,
.header-boxshadow:before {
	background: #fff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	box-shadow: 0px 10px 30px 0px rgba(209,209,209,0.5);
}
.header-boxshadow:before{
    left: 6px;
    right: 6px;
    top: 6px;
    z-index: 3;
}
.header-boxshadow:after{
    left: 12px;
    right: 12px;
    top: 12px;
    z-index: 2;
}
/*----------------------------
    Header Style 4 css
----------------------------*/
/*header top css*/
.header-top-language-currency .switcher {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
	color: #fff;
	font-size: 12px;
	line-height: 35px;
}
.header-top-language-currency .switcher > div {
	float: left;
	padding: 0 20px;
	position: relative;
	margin-bottom: 0;
}
.header-top-language-currency .switcher > div:before {
	background: #fff;
	content: '';
	display: block;
	height: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header-top-language-currency .switcher > div:last-child:before{
    display: none;
}
.header-top-language-currency .switcher > div:first-child{
    padding-left: 0;
}
.header-top-language-currency .switcher > div:last-child{
    padding-right: 0;
}
.header-top-language-currency .switcher-menu > ul > li > a {
	color: #fff;
}
.header-top-language-currency .switcher-menu > ul > li:hover > a{
    color: #abd373; 
}
.header-top-right .menu-top-menu > li {
	display: inline-block;
	margin: 0 auto;
	position: relative;
}
.header-top-right .menu-top-menu > li:before {
	background: #fff;
	content: '';
	display: block;
	height: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	z-index: 9;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header-top-right .menu-top-menu > li:last-child:before{
    display: none;
}
.header-top-right .menu-top-menu > li > a {
	display: block;
	height: 35px;
	line-height: 35px;
	color: ;
	color: #fff;
	padding: 0 10px;
    font-size: 12px;
}
.header-top-right .menu-top-menu > li:first-child > a{
    padding-left: 0;
}
.header-top-right .menu-top-menu > li:last-child > a{
    padding-right: 0;
}
.header-top-right .menu-top-menu > li > a:hover{
    color: #abd373;
}
/*header middle css*/
.header-middle-area {
	padding: 30px 0;
}
.header-phone > p {
	color: #000;
	font-size: 15px;
	line-height: 21px;
	margin-left: 35px;
}
.header-search-area {
	padding: 5px 15px;
}
.header-search-area form {
	background: transparent;
	border: 1px solid #555;
	overflow: hidden;
	position: relative;
	border-radius: 50px;
}
.header-search-area form input {
	border: none;
	color: #000000;
	height: 47px;
	line-height: 45px;
	margin: 0;
	max-width: 100%;
	outline: none;
	padding: 0 60px 0 20px;
	text-align: left;
	white-space: nowrap;
    width: 100%;
}
.header-search-area form button {
	background: none;
	border: none;
	box-shadow: none;
	color: #000;
    font-size: 20px;
	height: 45px;
	line-height: 45px;
	outline: none;
	padding: 0;
    cursor: pointer;
	position: absolute;
	right: 0;
	text-align: center;
	top: 1px;
	width: 45px;
	z-index: 9;
	border-radius: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.header-search-area form button:hover{
    color: #abd373;
}
.header-middle-area .mini-cart {
	margin-left: 30px;
}
/*header bottom area css*/
.header-bottom-area .header-boxshadow {
	margin-top: 0;
}
.header-bottom-area .header-inner {
	padding: 0;
}
.header-bottom-area.header-sticky.is-sticky .header-boxshadow {
	margin-top: 0;
}
.header-bottom-area.header-sticky.is-sticky .header-boxshadow:before,
.header-bottom-area.header-sticky.is-sticky .header-boxshadow:after{
    display: none
}
.header-bottom-area.header-sticky.is-sticky .header-boxshadow .header-inner{
    background: transparent;
    box-shadow: none;
}
.logo-sticky {
	display: none;
}
.header-sticky.is-sticky .logo-sticky {
	float: left;
	display: block;
}
.header-sticky.is-sticky .header-menu {
	float: right;
	background: transparent;
}
.header-menu{
    display: flex;
}
/*-------------------------
    3. Slider Area CSS
---------------------------*/
/*slider animation css*/
.active .slider-progress{
  position: absolute;
  top: 0;
  left: 0;
  background: #C5C5C5;
  height: 3px;
  -webkit-animation: owlprogress 5000ms ease-in-out;
  animation: owlprogress 5000ms ease-in-out;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  z-index: 9;
}
@-webkit-keyframes owlprogress {
  from {width: 0;}
  to {width: 100%;}
 }
 @keyframes owlprogress {
  from {width: 0;}
  to {width: 100%;}
 }
.hero-slider-content > *{
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
.active .hero-slider-content > h2{
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInUp;
            animation: 1000ms ease-in-out 0s normal none 1 running fadeInUp;
}
.active .hero-slider-content > p{
    -webkit-animation: 1200ms ease-in-out 0s normal none 1 running fadeInUp;
            animation: 1200ms ease-in-out 0s normal none 1 running fadeInUp;
}
.active .hero-slider-content > div.slider-border{
    -webkit-animation: 1400ms ease-in-out 0s normal none 1 running rollIn;
            animation: 1400ms ease-in-out 0s normal none 1 running rollIn;
}
.active .hero-slider-content > .slider-btn{
    -webkit-animation: 1500ms ease-in-out 0s normal none 1 running fadeInUp;
            animation: 1500ms ease-in-out 0s normal none 1 running fadeInUp;
}
.active .hero-slider-content > img{
    -webkit-animation: 900ms ease-in-out 0s normal none 1 running fadeInUp;
            animation: 900ms ease-in-out 0s normal none 1 running fadeInUp;
}
/*slider style css*/
.single-slider {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.hero-slider-content > h2 {
	font-size: 62px;
	line-height: 80px;
	font-weight: 500;
	color: #f4f4f4;
}
.slider-border {
	background-color: #f4f4f4;
	line-height: 25px;
	min-height: 5px;
	min-width: 122px;
	max-height: 5px;
	max-width: 122px;
	margin: 35px 0;
	display: inline-block;
}
.hero-slider-content > p {
	font-size: 16px;
	line-height: 28px;
	max-width: 655px;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: #ffffff;
}
.slider-btn > a {
	font-size: 15px;
	color: #fff;
	display: inline-block;
	padding: 15px 35px;
	font-weight: 500;
	text-align: center;
    margin-top: 45px;
	box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
	background: #F5D44B;
	border-radius: 10px;
}
.slider-btn > a i {
	font-size: 16px;
	margin-left: 5px;
	vertical-align: middle;
}
.slider-btn > a:hover{
    background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
}
/*slider style 2 css*/
.single-slider-style-2 {
	height: 800px;
}
.hero-slider .hero-slider-content > img{
    width: auto;
}
/*slider style 3 css*/
.hero-slider-content-3 {
	margin-top: 135px;
}
.single-slider.slider-style-3 .hero-slider-content {
	text-align: center;
}
.slider-style-3 .hero-slider-content > h1 {
	color: #fff;
}
.slider-style-3 .hero-slider-content .slider-border {
	background-color: #fff;
}
.slider-style-3 .hero-slider-content > p {
    color: #fff;
	margin: 0 auto;
    text-align: left;
}
/*slider style 5 css*/
.single-slider-style-5 {
	position: relative;
    background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
    height: 580px;
}
.hero-slider-content-5,
.hero-slider-content-6 {
	padding-left: 50px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
    display: inline-block;
	z-index: 9;
}
.hero-slider-content-6 {
	width: 100%;
	text-align: center;
	left: 0;
	right: 0;
	padding-left: 0;
	top: 40%;
	-webkit-transform: translateY(-40%);
	        transform: translateY(-40%);
}
.hero-slider .hero-slider-content-5 > img.first-img {
	margin-bottom: 30px;
}
.hero-slider .hero-slider-content-5 > img.secound-img {
	margin: 0 auto;
}
.hero-slider .hero-slider-content-6 > img.first-img{
    margin: 0 auto;
}
.hero-slider .hero-slider-content-6 > img.secound-img {
	position: absolute;
	right: 30px;
}
.hero-slider.hero-slider-5 .owl-nav > div{
    display: none;
}
.hero-slider.hero-slider-5 .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
}
.hero-slider.hero-slider-5 .owl-dot {
	width: 13px;
	height: 13px;
	background: #E7E6E6;
	display: inline-block;
	margin: 0 8px;
	border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hero-slider.hero-slider-5 .owl-dot.active,.hero-slider.hero-slider-5 .owl-dot:hover{
    background: #FFFFFF;
}
.hero-slider .owl-nav > div,
.hero-slider.hero-slider-3 .owl-nav > div,
.testimonial-active .owl-nav > div {
	position: absolute;
	top: 50%;
	left: 45px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-image: url(../image/slider-left.png);
	background-repeat: no-repeat;
    font-size: 0;
	width: 40px;
    line-height: 40px;
	height: 40px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.hero-slider.hero-slider-3 .owl-nav > div {
	background-image: url(../image/slider-left-hover.png) !important;
}
.hero-slider.hero-slider-3 .owl-nav > .owl-next{
    background-image: url(../image/slider-right-hover.png) !important;
}
.testimonial-active .owl-nav > div{
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.testimonial-active:hover .owl-nav > div{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.hero-slider .owl-nav > .owl-next,
.hero-slider.hero-slider-3 .owl-nav > .owl-next,
.testimonial-active .owl-nav > .owl-next {
	right: 45px;
	left: auto;
    background-image: url(../image/slider-right.png);
}
.testimonial-active .owl-nav > .owl-next{
    right: 0;
}
.hero-slider .owl-nav > div:hover,
.testimonial-active .owl-nav > div:hover{
    background-image: url(../image/slider-left-hover.png);
}
.hero-slider .owl-nav > .owl-next:hover,
.testimonial-active .owl-nav > .owl-next:hover{
    background-image: url(../image/slider-right-hover.png);
}

/*首页产品推荐*/
.products {
    margin-top: 100px;
}
.products .nav {
	margin-bottom: 60px;
	background-color: #f9f9f9;
	border: none;
	border-radius: 0;
}
.products .nav .nav-item {
	flex: 1;
}
.products .nav .nav-link {
	padding: 15px 42px;
	font-weight: 500;
	color: #081828;
	border-radius: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-size: 14px;
	border-right: 1px solid rgba(221, 221, 221, 0.514);
	border-bottom: 3px solid #eee !important;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f9f9f9;
	cursor: pointer;
}
.products .nav .nav-link.active {
	background-color: #181fa3;
	color: #fff;
	border: none;
	border-color: #F50C92 !important;
}
.products .nav .nav-link i {
	display: inline-block;
	font-size: 15px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border: 1px solid #eee;
	border-radius: 50%;
	text-align: center;
	margin-right: 10px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.products .nav .nav-link.active i {
	border-color: transparent;
	background-color: #fff;
	color: #F50C92;
}
.products-content .thumb img {
	width: 100%;
	border-radius: 8px;
	max-height: 500px;
	object-fit: cover;
}
.products-content .text {
	padding-left: 40px;
}
.products-content .text h3 {
	font-size: 30px;
	line-height: 45px;
	margin-bottom: 25px;
}
.products-content .text .list {
	margin-top: 35px;
	margin-bottom: 35px;
}
.products-content .text .list li {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #777;
	padding-left: 30px;
	position: relative;
}
.products-content .text .list li i {
	color: #181fa3;
	font-size: 18px;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 3px;
}
.products-content .text p {
	margin: 30px 0;
	display: block;
}
.products-content .link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.products-content .link li {
	width: 48%;
	margin-bottom: 17px;
}
.products-content .link li a {
	display: block;
	background: #F5D44B;
	text-align: center;
	line-height: 40px;
	border-radius: 8px;
	color: white;
}
.products-content .link li a:hover {
	background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
}

@media (max-width: 767px) {
	.products {
		margin-top: 50px;
	}
	.products .nav {
		flex-direction: column;
		margin-bottom: 30px;
	}
	.products .nav .nav-item {
		flex: 1 0 100%;
		margin-bottom: 5px;
	}
	.products .nav .nav-link {
		padding: 12px 15px;
		font-size: 13px;
		justify-content: flex-start;
		border-right: none !important;
	}
	.products .nav .nav-link i {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		margin-right: 8px;
	}
	.products-content .text {
		padding-left: 0;
		margin-top: 25px;
	}
	.products-content .text .list {
		margin-top: 22px;
		margin-bottom: 22px;
	}
	.products-content .text h3 {
		font-size: 22px;
		line-height: 1.3;
		margin-bottom: 15px;
	}
	.products-content .list li {
		padding-left: 25px;
		font-size: 13px;
	}
	.products-content .link li {
		margin-bottom: 10px;
	}
	.products-content .thumb {
		margin-bottom: 20px;
	}
	.products-content p {
		font-size: 14px;
		line-height: 1.6;
		margin: 20px 0;
	}
	.products-content .link li a {
		font-size: 13px;
		padding: 0 10px;
	}
}


/*首页公司介绍*/
.about h2 {
	line-height: 1.2;
	font-weight: bold;
	font-size: 46px;
	color: #202020;
	padding-right: 50px;
}
.text-rotator {
	background-image: linear-gradient(90deg, #191fa3 10%, #3fdbf0 30%, #f50c92 60%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	display: block;
}
.text-green {
	color: green;
	display: none;
}
.flip-in {
	display: inline-block;
	animation: flipInX 1s ease;
}
@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}
    60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.about .left p {
	font-size: 20px;
	font-weight: 300;
	color: #181fa3;
	margin-bottom: 25px;
}
.about .right p {
	font-size: 18px;
	color: #434343;
	font-weight: 200;
	margin-bottom: 30px;
}
.about-icon-box {
    margin-top: 40px;
}
.about-box {
    border-radius: 3px;
    padding: 45px 30px;
    background: #ffffff;
    text-align: center;
    cursor: pointer;
    -webkit-box-shadow: 0 0 20px rgba(127, 123, 123, 0.2);
    box-shadow: 0 0 20px rgba(127, 123, 123, 0.2);
    transition: ease-in-out 0.3s;
}
.about-box:hover {
    background: #42d1eb;
    -webkit-box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
    box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
}
.about-icon-box > div:nth-child(1) > .about-box:hover {
    background-color: #181fa3;
}
.about-icon-box > div:nth-child(2) > .about-box:hover {
    background-color: #F50C92;
}
.about-icon-box > div:nth-child(3) > .about-box:hover {
    background-color: #181fa3;
}
.about-box span {
    display: block;
}
.about-box h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 200;
    color: #202020;
}
.about-box .about-main-icon i {
    color: #181fa3;
    font-size: 80px;
}
.about-box h5 {
	font-weight: 200;
	color: #555;
	transition: ease-in-out 0.5s;
	line-height: 30px;
}
.about-box:hover i, .about-box:hover h5 {
    color: #fff;
    transition: ease-in-out 0.5s;
}
.about-box.active i {
    color: #F50C92;
}
.about-box.active:hover i {
    color: #ffffff;
}
.about-main-icon {
    transition: .5s ease;
}
.about-box:hover .about-main-icon {
    transform: translateY(-10px);
    transition: .5s ease;
}

/*首页技术服务*/
.index-service {
	background-color: #f8f8fa;
	padding-top: 100px;
	padding-bottom: 100px;
}
.single-service {
	background: #fff;
	height: 100%;
	box-shadow: 0 0 8px #ededed;
}
.single-service .content {
	padding: 25px 30px 40px 30px;
}
.single-service .content a:hover {
	background-image: linear-gradient(90deg, #191fa3 20%, #3fdbf0 50%, #f50c92 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

/*首页促销*/
.promotion {
	padding: 100px 0;
	background-color: #f50c92;
	color: #fff;
}
.promotion .row {
	align-items: center;
}
.promotion h2 {
	color: #fff;
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 25px;
	margin-top: 22px;
	line-height: 1.2;
}
.promotion h4 {
	color: #fff;
	font-size: 24px;
	font-style: italic;
}
.promotion h4 span {
	text-decoration: underline;
}
.promotion p {
	font-size: 16px;
	padding-right: 50px;
	line-height: 26px;
}
.promotion a {
	display: inline-block;
	background: #F5D44B;
	padding: 15px 40px;
	border-radius: 10px;
	font-size: 20px;
	color: #fff;
	font-weight: 450;
}
.promotion a:hover {
	background: #181fa3;
}
.promotion .align-right {
	text-align: right;
}

.why-choose-us {
    padding-top: 90px;
	background: url(../image/whyus-bg.png) center center no-repeat;
	background-size: cover;
	background-color: #181fa3;
}
.why-choose-us .title {
	display: inline-block;
	padding: 5px 15px;
	border: 1px solid #f4f4f4;
	color: #f4f4f4;
	border-radius: 20px;
}
.why-choose-us h2 {
	background-image: linear-gradient(90deg, #f50c92 20%, #f5d44b 50%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	font-size: 40px;
	font-weight: bold;
	line-height: 48px;
	margin-bottom: 25px;
	margin-top: 18px;
}
.why-choose-us h3 {
	font-size: 35px;
	font-weight: bold;
	margin-top: 0px;
}
.why-choose-us p {
	color: #d7d7d7;
	font-size: 16px;
	margin-bottom: 30px;
}
.why-choose-us .datas {
	margin-left: 1rem;
}
.why-choose-us .datas p {
	margin: 0;
}
.why-choose-us .list-icon {
	color: #181fa3;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	background-color: #fff;
	margin-right: 1rem;
}
.why-choose-us ul {
	margin-bottom: 20px;
}
.why-choose-us ul li {
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}
.why-choose-us img {
    margin-top: 50px;
    max-width: 100%;
}

/*首页联系表单*/
.contact-area {
	padding: 120px 0;
}
.title span {
    display: block;
	font-size: 24px;
	line-height: 2;
	margin-bottom: 5px;
	color: #181fa3;
	font-weight: bold;
}
.title h3 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 40px;
}
.title p {
	font-size: 18px;
	color: #666666;
}
.connected-info-text p {
	font-size: 18px;
	color: #666666;
	line-height: 28px;
}
.connected-info-text p span {
    font-weight: bold;
    color: #000;
}
.contact-area input {
	background: #f0f6fb;
	padding: 16px 10px 16px 20px;
	border: 0;
	width: 100%;
}
.contact-area input::placeholder {
	color: #919191;
	font-size: 16px;
}
.contact-area textarea {
	min-height: 180px;
	background-color: #f0f6fb;
	padding: 16px 10px 16px 20px;
	width: 100%;
	border: 0;
}
.contact-area textarea::placeholder {
	color: #919191;
	font-size: 16px;
}
.contact-area button {
	background: #F5D44B;
	color: #fff;
	border: 0;
	font-size: 16px;
	padding: 13px 65px;
	border-radius: 10px;
}
.contact-area button:hover {
    background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
}

/*首页促销*/
#floating-image {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 999;
}
#promotion-form {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    width: 650px;
    z-index: 1001;
}
#close-form {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #777;
    transition: color 0.3s ease;
}
#close-form:hover {
    color: #333;
}
/* 弹窗左右布局 */
.form-container {
    display: flex;
    flex-direction: row;
}
/* 左侧图片区域样式 */
.form-image {
    width: 50%;
    background-image: url('../image/discount-bg.jpg');
    background-size: cover;
    background-position: center;
}
/* 右侧表单区域样式 */
.form-content {
    width: 50%;
    padding: 35px 30px;
    box-sizing: border-box;
}
.form-content img {
    display: block;
    margin: 0 auto;
    width: 90px;
    margin-bottom: 15px;
}
.form-content p {
    color: #191FA3;
    font-size: 21px;
    text-align: center;
    font-weight: bold;
    margin: 8px auto;
}
.form-content span {
	font-size: 52px;
	font-weight: bold;
	color: #191FA3;
	display: block;
	text-align: center;
	margin: 8px auto;
	line-height: 55px;
}
.form-content input[type="text"],
.form-content input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
}
.form-content button {
    background: #F5D44B;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-image 0.3s ease;
    width: 100%;
    text-align: center;
}
.form-content button:hover {
    background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
}
/* 遮罩层样式 */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: none;
    z-index: 1000;
}

@media (max-width: 767px) {
    /*促销表单*/
    #promotion-form {
        width: 95%;
        max-width: 400px;
    }
    .form-container {
        flex-direction: column;
    }
    .form-image,
    .form-content {
        width: 100%;
    }
    .header-menu nav {
        display: none;
    }
    /*关于我们*/
    .about h2 {
    	font-size: 28px;
    	padding-right: 20px;
    	margin-bottom: 20px;
    }
    .about-icon-box {
    	margin-top: 10px;
    }
    .about-icon-box .col-md-4 {
        margin-bottom: 20px;
    }
    .index-service {
    	padding-top: 50px;
    	padding-bottom: 50px;
    	margin-top: 50px;
    }
    /*首页促销*/
    .promotion {
    	padding: 60px 0;
    }
    .promotion a {
    	padding: 10px 30px;
    	font-size: 18px;
    }
    .promotion h2 {
    	font-size: 32px;
    }
    .promotion .align-right {
	    text-align: left;
	    margin-top: 12px;
    }
    
    .why-choose-us {
    	padding-top: 60px;
    }
    .why-choose-us h2 {
    	font-size: 30px;
    	line-height: 35px;
    }
    .latest-blog {
    	margin-top: 60px;
    }
    .contact-area {
    	padding: 60px 0;
    }
    .title span {
    	font-size: 23px;
    }
    .title h3 {
    	font-size: 32px;
    	line-height: 1.25;
    	margin-bottom: 28px;
    }
}

/*产品栏目页*/
.third-banner {
	padding: 40px 0;
	height: 450px;
	position: relative;
	background-image: url(../images/bg1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.third-banner .container{
	z-index: 2;
}
.third-banner .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(0deg,rgba(13, 22, 151, 0.43),rgba(255, 255, 255, 0));*/
	background: linear-gradient(0deg,rgba(51, 51, 51, 0.43),rgba(255, 255, 255, 0));
	z-index: 1;
}
.third-banner .position {
	position: absolute;
	top: 1rem;
	color: #dedede;
}
.third-banner .position a {
	color: #fff;
}
.third-banner .position a:hover {
	color: #045cfd;
}
.third-banner .position i {
	margin: 0 6px;
}
.third-banner h1 {
	margin-bottom: 25px;
	color: #fff;
	font-size: 46px;
	font-weight: bold;
}
.third-banner h3 {
	color: #fff;
	font-size: 30px;
}
.third-banner p {
	font-size: 19px;
	line-height: 1.4;
}

.anchor-text {
	background-color: #181fa3;
}
.anchor-text ul {
	display: flex;
}
.anchor-text ul li{
	min-width: 180px;
	border-right: 2px solid #fbfbfb;
}
.anchor-text ul li a {
	color: #fff;
	padding: 10px 12px;
	font-size: 15px;
	letter-spacing: normal;
	transition: background-color .3s;
	display: block;
	text-align: center;
}
.anchor-text ul li a:hover, .anchor-text ul li a.active {
	border-bottom: 3px solid #f50c92;
	color: #fff;
	background-color: #111674;
}
.anchor-text i {
	color: #fff;
	display: inline-block;
	font-size: 15px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	border: 1px solid #58a3c7;
	border-radius: 50%;
	text-align: center;
	margin-right: 4px;
	background-color: transparent;
}
.anchor-text ul li a:hover i, .anchor-text ul li a.active i {
	background-color: #fff;
	color: #f50c92;
	border-color: #f50c92;
}

.category-overview {
	padding-top: 70px;
	padding-bottom: 70px;
}
.category-overview h2 {
	margin-bottom: 45px;
	font-size: 30px;
	padding-left: 12px;
	border-left: 8px solid #181fa3;
	line-height: 28px;
	color: #181fa3;
	font-weight: 600;
}

.category-desc {
  display: flex;
  gap: 20px; 
  align-items: center;
}
.category-words {
  flex: 1;
}
.category-words h4 {
	margin-bottom: 15px;
}
.category-words p {
	font-size: 16px;
	color: #434343;
}
.category-desc img {
	flex: 1;
	width: 100%;
	height: auto;
	object-fit: cover;
	max-height: 400px;
}

/*.category-desc {*/
/*	overflow: hidden;*/
/*}*/

/*.category-desc img {*/
/*	width: 48%;*/
/*	float: right;*/
/*	margin-left: 40px;*/
/*	margin-bottom: 20px;*/
/*}*/

@media (max-width: 767px) {
    .third-banner {
        padding: 20px 0;
        height: 350px;
    }
    .third-banner h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .third-banner p {
        font-size: 16px;
    }
    
    .anchor-text ul {
        /* 改为垂直排列 */
        flex-direction: column;
    }
    .anchor-text ul li {
        border-right: none;
        /* 移除最小宽度限制 */
        min-width: auto;
        border-bottom: 1px solid #fbfbfb;
    }
    .anchor-text ul li:last-child {
        border-bottom: none;
    }
    .anchor-text ul li a {
    	padding: 13px 12px;
    	text-align: left;
    }
    .category-overview {
    	padding-top: 50px;
    	padding-bottom: 50px;
    }
    .category-overview h2 {
    	margin-bottom: 30px;
    	font-size: 22px;
    	padding-left: 10px;
    	border-left: 5px solid #181fa3;
    	line-height: 26px;
    	font-weight: 600;
    }
    
    .category-desc {
        flex-direction: column; /* 改为垂直排列 */
        gap: 30px; /* 可以调整移动端的间隙 */
    }
    .category-words, .category-desc img {
        flex: none; /* 清除 flex 比例 */
        width: 100%; 
    }
    .category-desc img {
        max-height: 300px; 
    }
    
    /*.category-desc img {*/
    /*	float: none;*/
    /*	margin-left: 0;*/
    /*	margin-bottom: 20px;*/
    /*	display: block;*/
    /*	width: 100%;*/
    /*}*/
}

@media (min-width: 768px) {
    .modal-dialog {
    	max-width: 500px;
    	margin: 8rem auto;
    }
}

/*产品详情页*/
.product-page {
    padding: 40px 0 60px;
}
.product-top {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid #dbdcdf;
}
.product-top h4 {
	color: #65797c;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 18px;
}
.product-top h1 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 18px;
}
.product-top .right {
	margin-left: auto;
	margin-top: auto;
}
.product-tab .nav-tabs {
    border: none;
}
.product-tab .nav-tabs .nav-item {
	margin-left: 2rem;
}
.product-tab .nav-tabs .nav-link {
	padding: 8px 0;
	font-weight: 600;
	background: none;
	cursor: pointer;
	border: none;
	transition: initial;
}
.product-tab .nav-tabs .nav-link.active {
	border-bottom: 6px solid #f50c92;
}
.product-desc {
	padding-bottom: 25px;
	border-bottom: 1px solid rgb(220, 224, 224);
	margin-bottom: 40px;
	font-size: 15px;
	color: #686868;
}
.product-tab-content h2 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}
.product-tab-content .tab-pane {
	display: none;
}
.product-tab-content .active {
	display: block !important;
}
.product-tab-content .params {
	border: 1px solid #e8e8e8;
	padding: 34px 20px;
	border-radius: 8px;
	height: 362px;
}
.product-tab-content .params dl {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin: 0;
	height: 100%;
}
.product-tab-content .params dt {
	font-weight: 600;
	font-size: 16px;
}
.product-tab-content .params dd {
	margin-bottom: 24px;
	margin-left: 0;
}
.product-tab-content .params dd:last-of-type {
	margin-bottom: 0;
}
.single-product-img {
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
	padding: 0 !important;
}
.single-slide-menu {
	margin-bottom: 40px;
}
.single-tab-menu {
	padding: 0 5px;
}
.single-tab-menu > a {
	border: 1px solid #e5e5e5;
	display: block;
	width: 100%;
}
.single-tab-menu > a:hover{
    border-color: #abd373;
}
.product-menu {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	margin-top: 2px;
	padding: 10px 0;
	width: 100%;
}
.product-details-img  {
	padding: 0 25px;
}
.product-details-img img  {
	width: 100%;
}
.product-tab-menu .slick-arrow {
	position: absolute;
	border: 1px solid #e5e5e5;
    color: #e5e5e5;
    background: #fff;
    height: 28px;
    width: 22px;
    line-height: 26px;
	font-size: 18px;
    display: block;
	cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-align: center;
	z-index: 99;
}
.product-tab-menu .slick-next-btn.slick-arrow {
	left: auto;
    right: 0;
}
.product-tab-menu .slick-arrow:hover{
    color: #fff;
    border-color: #abd373;
    background-color: #abd373;
}
.product-tab-menu:hover .slick-arrow{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" 
}
.product-large-thumb{
    position: relative;
    overflow: hidden;
}
a.popup-img {
	position: absolute;
	width: 43px;
	height: 43px;
	line-height: 43px;
	text-align: center;
	background: #373737;
	color: #fff;
	border-radius: 4px;
	z-index: 999;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.product-large-thumb:hover a.popup-img{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
a.popup-img:hover {
	background-color: #191fa3;
	color: #fff;
}
.easyzoom-flyout img {
width: auto !important;
max-width: none !important;
}

.price-card {
	background-color: #FAE8A1;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 25px;
	padding-top: 20px;
	margin-top: 45px;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.price-content {
    padding: 5px 22px 15px;
}

.product-spec, .price-info, .delivery-info {
    margin-bottom: 18px;
    text-align: left;
}

.spec-label, .price-label, .delivery-label {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.spec-value, .delivery-value {
    display: block;
    color: #444;
    font-size: 16px;
    padding-left: 3px;
}

.price-info {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin: 20px 0;
}

.price-value {
    display: block;
    color: #F50C92;
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0;
}

.price-tax {
    display: block;
    color: #555;
    font-size: 13px;
    font-style: italic;
    margin-top: 3px;
}

.price-footer {
    padding: 0 22px 22px;
    text-align: center;
}

.quote-btn {
    display: inline-block;
    background: #F50C92;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 12, 146, 0.2);
    width: 100%;
}

.quote-btn:hover {
    background: #D4067E;
    color: white;
    box-shadow: 0 6px 12px rgba(245, 12, 146, 0.3);
}

/*相关推荐*/
.product-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(220, 224, 224);
}

.product-section-title i {
    font-size: 22px;
    color: #4f46e5;
}

.product-section-title h2 {
    font-size: 20px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.related-articles .product-section-title {
	margin-top: 50px;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 228px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 23, 23, 0.47);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-actions .btn-view {
    background: #fff;
    color: #183bc0;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-actions .btn-view:hover {
    background: #183bc0;
    color: #fff;
    transform: scale(1.05);
}

.product-item h4 {
	font-size: 16px;
	margin: 0;
	padding: 15px 0;
	text-align: center;
}

.product-item h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-item h4 a:hover {
    color: #40b8f2;
}

@media (max-width: 768px) {
    .price-card {
    	margin-top: 5px;
    }
    .price-content {
        padding: 5px 15px 15px;
    }
    
    .price-footer {
        padding: 0 15px 20px;
    }
    
    .product-section-title h2 {
        font-size: 18px;
    }
}

/*tab-2*/
.datasheet-download {
	padding-bottom: 18px;
	border-bottom: 1px solid #ccc;
	padding-top: 5px;
}
.datasheet-download button {
	color: #2d2d2d;
	padding: 7px 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	background: none;
	border: 1px solid #444;
	font-weight: 500;
}
.datasheet-download button i {
	margin-right: 7px;
	font-size: 16px;
}
.datasheet-download button:hover {
    color: #fff;
    background-color: #2635a9;
}
.datasheet-download button:hover i {
    color: #fff;
}
/* 下载中遮罩 */
.loading-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.datasheet-download p {
	color: #686868;
	margin-top: 15px;
	font-size: 15px;
}
.params-row {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.params-row-title {
    font-size: 24px;
    font-weight: bold;
}
.attribute-name {
    font-weight: bold;
}
.attribute-value {
    margin-top: 2px;
}
.font-normal {
    font-weight: normal;
}
.params-row .col-md-6 {
    margin: 14px 0;
}
/*tab-3*/
.download-list {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	padding-bottom: 45px;
	border-bottom: 1px solid #ccc;
}
.download-box {
	width: 120px;
	height: 120px;
	border: 1px solid #ddd;
	border-radius: 8px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 5px;
	box-shadow: 0 0 3px rgba(42, 42, 42, 0.11);
	cursor: pointer;
	transition: all 0.3s ease;
}
.download-box:hover {
	transform: scale(1.05);
	box-shadow: 0 0 2px #2635a970;
	border: 1px solid #2635a96e;
}
.download-box svg {
    position: absolute;
    top: 10px;
    left: 10px;
    fill: #00aaff;
    width: 24px;
    height: 24px;
}
.file-name {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: #333;
	font-weight: 500;
}
.product-note {
	margin-top: 30px;
}
.product-note p {
	color: #555;
	font-size: 14px;
	margin-bottom: 3px;
}
.product-note p a {
	color: #0af;
	text-decoration: underline;
}

@media (max-width: 767px) {
    .product-top {
	    flex-wrap: wrap;
    }
    .product-top .right {
    	margin: 0;
    }
    .product-tab .nav-tabs li:first-child {
        margin-left: 0;
    }
    .product-details .col-md-6 {
        margin-bottom: 30px;
    }
}

/*技术服务列表页*/
.service-page {
	padding-top: 30px;
	margin-bottom: 50px;
}
.serviceslist {
	padding-top: 46px;
	padding-left: 15px;
}
.serviceslist .col-md-4{
	margin-bottom: 20px;
}
.service img {
	width: 100%;
	margin-bottom: 20px;
	border-radius: 3px;
}
.service h2 {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #45425d;
}
.service p {
	margin: 3px 0;
}

/*联系我们页面*/
.contact-page {
	padding: 60px 0 80px;
}
.contact-page h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}
.contact-page .contact-form {
    padding: 0 15px;
}
.contact-page .contact-form > div {
	padding: 50px 40px;
	border-radius: 8px;
	margin-bottom: 48px;
}
.contact-page .contact-form .row {
    background-color: #fdf3f9;
}
.contact-page .contact-form p {
	font-size: 17px;
	color: #4d546f;
	line-height: 31px;
}
.contact-page .contact-form a {
	font-size: 17px;
	color: #181fa3;
}
.contact-page .contact-form a:hover {
	color: #F50C92;
}
.contact-page .form-control {
	height: 65px;
	width: 100%;
	background: #f7fafc;
}
.contact-page .form-control::placeholder {
	font-size: 16px;
}
.contact-page textarea.form-control {
	height: 157px;
}
.contact-page .btn-secondary {
	color: #fff;
	display: inline-block;
	padding: 12px 35px;
	text-align: center;
	background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
	border-radius: 6px;
	border: none;
}
.contact-page .btn-secondary:hover {
	background-image: linear-gradient(90deg, #F5D44B 0%, #F50C92 95%);
}
.contact-page .three-support {
    justify-content: center;
}
.contact-page .three-support .card {
    padding: 45px 40px;
}
.contact-page .three-support h5 {
	font-size: 20px;
	font-weight: 500;
	color: #091337;
	margin-bottom: 22px;
}
.contact-page .three-support p {
	font-weight: 300;
	color: #4d546f;
	font-size: 17px;
	line-height: 31px;
	font-family: "Poppins", sans-serif;
}
.contact-address li {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 18px;
	color: #4d546f;
}
.contact-address li i {
	font-size: 18px;
	color: #757575;
	margin-right: 4px;
}
.round-icon {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 50px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background-color: #181fa3;
	color: #fff;
}

@media (max-width: 767px) {
    .contact-page {
    	padding: 42px 0;
    }
    .contact-page h2 {
    	font-size: 30px;
    	line-height: 40px;
    	font-weight: 600;
    	margin-bottom: 20px;
    }
    .contact-page .contact-form > div {
    	padding: 20px 3px;
    	border-radius: 6px;
    	margin-bottom: 20px;
    }
    .contact-page .three-support .card {
    	padding: 30px 24px;
    }
    .contact-page .three-support h5 {
    	margin-bottom: 18px;
    }
    .contact-page .three-support p {
    	font-size: 17px;
    	line-height: 28px;
    }
}

/*关于我们页面*/
.about-page-part1 {
    padding: 80px 0 0;
}
.about-page-part1 h2 {
    font-size: 43px;
    margin-bottom: 35px;
    font-weight: 600;
	color: #091337;
	font-family: "Poppins", sans-serif;
}
.about-page-part1 p {
	font-weight: 300;
	color: #4d546f;
	font-size: 17px;
	line-height: 31px;
	font-family: "Poppins", sans-serif;
}
.about-page-part1 .about-desc {
    margin-bottom: 50px;
}
.about-page-part2 {
    padding: 100px 0;
	background-image: url(../image/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.about-page-part2 .show-products h2 {
    text-align: center;
    font-size: 43px;
    margin-bottom: 35px;
    font-weight: 600;
	color: #091337;
	font-family: "Poppins", sans-serif;
}
.about-page-part2 .show-products p {
	font-weight: 300;
	color: #4d546f;
	font-size: 17px;
	line-height: 31px;
	font-family: "Poppins", sans-serif;
	text-align: center;
}
.about-page-part2 .show-products .btn-primary {
	padding: 15px 60px;
	font-size: 18px;
	border-radius: 10px;
	background-image: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
	border: none;
}
.about-page-part2 .show-products .btn-primary:hover {
    border: none;
	background-image: linear-gradient(90deg, #F5D44B 0%, #F50C92 95%);
}
.about-page-part2 .our-vision {
	padding: 100px 0 0;
}
.about-page-part2 .our-vision .row {
    align-items: center;
}
.about-page-part2 .our-vision h2 {
    font-size: 43px;
    margin-bottom: 35px;
    font-weight: 600;
	color: #091337;
	font-family: "Poppins", sans-serif;
}
.about-page-part2 .our-vision p {
	font-weight: 300;
	color: #4d546f;
	font-size: 19px;
	line-height: 40px;
	font-family: "Poppins", sans-serif;
}
.about-page-part2 .our-vision img {
	width: 80%;
	margin-left: 10%;
}

/* 图片容器样式 */
.image-container {
    position: relative;
    display: block;
}
/* 产品名称样式 */
.product-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(208, 208, 208, 0.5); /* 半透明黑色背景 */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}



@media (max-width: 767px) {
    .about-page-part1 {
    	padding: 50px 0 0;
    }
    .about-page-part1 h2 {
    	font-size: 36px;
    	margin-bottom: 20px;
    }
    .about-page-part1 .about-desc {
    	margin-bottom: 30px;
    }
    .about-page-part2 {
    	padding: 60px 0;
    }
    .about-page-part2 .show-products h2 {
    	font-size: 43px;
    	margin-bottom: 20px;
    }
    .about-page-part2 .show-products p {
    	font-size: 17px;
    	line-height: 22px;
    }
    .about-page-part2 .our-vision {
    	padding: 60px 0 0;
    }
    .about-page-part2 .our-vision h2 {
    	font-size: 36px;
    	margin-bottom: 20px;
    }
    .about-page-part2 .our-vision p {
    	font-size: 18px;
    	line-height: 32px;
    }
}

/*博客列表页*/
.resources-page {
	padding: 20px 0 60px;
}
.resources-page h1 {
	font-size: 43px;
	margin-bottom: 30px;
	font-weight: 600;
	color: #181fa3;
	font-family: "Poppins", sans-serif;
}
.sublinks {
	display: flex;
	margin-bottom: 25px;
	flex-wrap: wrap;
}
.sublinks li {
	margin-right: 20px;
}
.sublinks li a {
	font-size: 16px;
	display: inline-block;
	padding: 3px 15px;
	border: 1px solid #f20c90;
	background-color: #fff;
	color: #f50c92;
	font-family: 'Poppins', sans-serif;
	border-radius: 12px;
}
.sublinks li a.active, .sublinks li a:hover {
    background-color: #f50c92;
    color: #fff;
}
.article-list ul li {
    margin-bottom: 32px;
}
.post .post-thumb {
    position: relative;
    display: block;
	height: 250px;
	overflow: hidden;
}
.post .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post .post-thumb span {
	position: absolute;
	background-color: #f50c92;
	left: 20px;
	bottom: 20px;
	color: #fff;
	display: inline-block;
	padding: 1px 10px;
	border-radius: 10px;
	font-size: 13px;
}
.post svg {
	fill: #fff;
	width: 16px;
	height: auto;
	margin-right: 2px;
	vertical-align: text-top;
}
.post {
    border-radius: 16px;
    background-color: #222227;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 5px #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.post-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-content h3 {
    flex-grow: 1;
    margin-bottom: 10px;
}
.post-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-content h3 a {
	color: #fff;
	line-height: 1.3;
	font-size: 20px;
}
.post-content h3:hover {
	background-image: linear-gradient(90deg, #f50c92 20%, #3fdbf0 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
.post-content .post-date {
	font-size: 13px;
	color: #bdbdbd;
	letter-spacing: 1px;
}
.post-content .post-comments {
	font-size: 13px;
	color: #bdbdbd;
}

@media (max-width: 767px) {
    .resources-page h1 {
    	font-size: 30px;
    	margin-bottom: 25px;
    }
    .sublinks {
    	margin-bottom: 15px;
    	justify-content: space-between;
    }
    .sublinks li {
    	width: 48%;
    	margin-right: 0;
    	margin-bottom: 10px;
    	box-sizing: border-box;
    }
    .sublinks li a {
        display: block;
        text-align: center;
        font-size: 14px;
    }
    .post {
    	border-radius: 10px;
    }
    .post .post-thumb {
    	height: 130px;
    }
    .post-content {
    	padding: 8px;
    }
    .post-content h3 a {
    	line-height: 1.1;
    	font-size: 14px;
    }
    .post-content .post-date {
    	font-size: 12px;
    }
    .post-content .post-comments {
    	font-size: 12px;
    }
}


/*博客详情页*/
.resources-article {
	padding: 20px 0 60px;
	background-color: #fbfcff;
}
.article__category {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 28px;
	min-width: 70px;
	width: auto;
	color: #fff;
	font-size: 13px;
	background-color: #f50c92;
	border-radius: 10px;
	padding: 0 15px;
}
.article__category:hover {
	color: #fff;
	background-color: #222227;
}
.article__date {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 13px;
	color: #bdbdbd;
	height: 28px;
}

.article__date svg {
	fill: #fff;
	width: 16px;
	height: auto;
	margin-right: 5px;
}
.article__content {
	position: relative;
}
.article__content img {
	display: block;
	width: 100%;
	margin-bottom: 25px;
	border-radius: 16px;
	max-height: 420px;
	object-fit: cover;
}
.article__content iframe {
	display: block;
	width: 100%;
	height: 240px;
	margin-bottom: 20px;
	border-radius: 16px;
	border: none;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
	margin-bottom: 15px;
	line-height: 140%;
    color: #181fa3;
    font-weight: 550;
    font-family: 'Poppins', sans-serif;
}
.article__content h1:last-child,
.article__content h2:last-child,
.article__content h3:last-child,
.article__content h4:last-child,
.article__content h5:last-child,
.article__content h6:last-child {
	margin-bottom: 0;
}
.article__content h1 {
	font-size: 30px;
}
.article__content h2 {
	font-size: 28px;
}
.article__content h3 {
	font-size: 24px;
}
.article__content h4 {
	font-size: 22px;
}
.article__content h5 {
	font-size: 18px;
}
.article__content h6 {
	font-size: 16px;
}
.article__content p {
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #555;
	margin-bottom: 20px;
}
.article__content p b {
	font-weight: 600;
}
.article__content p a {
	color: #f50c92;
	text-decoration: underline;
}
.article__content p a:hover,
.article__content p a:focus {
	color: #181fa3;
	text-decoration: none;
}
.article__content p:last-child {
	margin-bottom: 0;
}
.article__content blockquote {
	display: block;
	position: relative;
	font-family: 'Inter', sans-serif;
	padding: 0 0 0 20px;
	font-size: 16px;
	line-height: 28px;
	color: #9d9d9d;
	font-weight: 400;
	margin-bottom: 20px;
	font-style: italic;
}
.article__content blockquote:before {
	content: '';
	position: absolute;
	display: block;
	top: 2px;
	bottom: 2px;
	left: 0;
	width: 3px;
	background-color: #181fa3;
	border-radius: 3px;
}
.article__content blockquote:last-child {
	margin-bottom: 0;
}
.article__content ul {
	margin-bottom: 20px;
	display: block;
}
.article__content ul li {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #9d9d9d;
	padding-left: 20px;
	position: relative;
}
.article__content ul li:before {
	content: '';
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #181fa3;
	left: 0;
	top: 50%;
	margin-top: -2px;
}
.article__content ul:last-child {
	margin-bottom: 0;
}
.article__meta {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 20px;
}

@media (min-width: 576px) {
	.article__content iframe {
		height: 280px;
	}
}

@media (min-width: 768px) {
	.article {
		margin-top: 25px;
	}

	.article__content h1 {
		font-size: 34px;
	}

	.article__content h2 {
		font-size: 31px;
	}

	.article__content h3 {
		font-size: 28px;
	}

	.article__content h4 {
		font-size: 24px;
	}

	.article__content h5 {
		font-size: 20px;
	}

	.article__content h6 {
		font-size: 18px;
	}

	.article__content iframe {
		height: 400px;
	}

	.article__content img {
		margin-bottom: 30px;
	}

	.article__meta {
		margin-bottom: 25px;
	}
}

@media (min-width: 1200px) {
	.article__content iframe {
		height: 460px;
	}
}

/*------------------------
    7. Product Area CSS
--------------------------*/
.single-product {
	margin-top: 5px;
}
.product-slider-active {
	width: 100%;
}
.single-product:hover{
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
}
.product-content {
	padding: 15px 15px 15px 15px;
	text-align: center;
}
.product-content > h2 > a {
	color: #000;
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}
.product-content > h2 > a:hover{
    color: #abd373;
}
.product-price {
	position: relative;
}
.price-box {
    color: #555;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.price {
	text-decoration: line-through;
	color: #999;
	font-size: 14px;
	padding-right: 5px;
}
/*slider dot*/
.product-slider-active .slick-dots,
.offer-slider .slick-dots,
.brand-active .slick-dots,
.blog-slider-active .slick-dots,
.product-list-slider-active .slick-dots,
.blog-list-slider-active .slick-dots,
.banner-slider-active .slick-dots,
.indoor-product-active .slick-dots,
.product-offer-active .slick-dots,
.sidebar-product-active .slick-dots,
.store-slider-active .slick-dots,
.product-list-slider-active2 .slick-dots {
	text-align: center;
	margin-top: 5px;
}
.product-slider-active .slick-dots li,
.offer-slider .slick-dots li,
.brand-active .slick-dots li,
.blog-slider-active .slick-dots li,
.product-list-slider-active .slick-dots li,
.blog-list-slider-active .slick-dots li,
.banner-slider-active .slick-dots li,
.indoor-product-active .slick-dots li,
.product-offer-active .slick-dots li,
.sidebar-product-active .slick-dots li,
.store-slider-active .slick-dots li,
.product-list-slider-active2 .slick-dots li {
	display: inline-block;
	width: 13px;
	height: 13px;
	cursor: pointer;
	margin: 0 2px;
}
.brand-active .slick-dots,
.blog-slider-active .slick-dots,
.blog-list-slider-active .slick-dots,
.banner-slider-active .slick-dots,
.indoor-product-active .slick-dots,
.sidebar-product-active .slick-dots{
    margin-top: 25px;
}
.product-slider-active .slick-dots li button,
.offer-slider .slick-dots li button,
.brand-active .slick-dots li button,
.blog-slider-active .slick-dots li button,
.product-list-slider-active .slick-dots li button,
.blog-list-slider-active .slick-dots li button,
.banner-slider-active .slick-dots li button,
.indoor-product-active .slick-dots li button,
.product-offer-active .slick-dots li button,
.sidebar-product-active .slick-dots li button,
.store-slider-active .slick-dots li button,
.product-list-slider-active2 .slick-dots li button {
	background: none;
	border: 1px solid #000;
	border-radius: 100%;
	height: 100%;
	margin: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	overflow: hidden;
	padding: 0;
	position: static;
	text-indent: -9999px;
	visibility: visible;
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.product-slider-active .slick-dots li button:hover,
.product-slider-active .slick-dots li.slick-active button,
.offer-slider .slick-dots li button:hover,
.offer-slider .slick-dots li.slick-active button,
.brand-active .slick-dots li button:hover,
.brand-active .slick-dots li.slick-active button,
.blog-slider-active .slick-dots li button:hover,
.blog-slider-active .slick-dots li.slick-active button,
.product-list-slider-active .slick-dots li button:hover,
.product-list-slider-active .slick-dots li.slick-active button,
.blog-list-slider-active .slick-dots li button:hover,
.blog-list-slider-active .slick-dots li.slick-active button,
.banner-slider-active .slick-dots li button:hover,
.banner-slider-active .slick-dots li.slick-active button,
.indoor-product-active .slick-dots li button:hover,
.indoor-product-active .slick-dots li.slick-active button,
.product-offer-active .slick-dots li button:hover,
.product-offer-active .slick-dots li.slick-active button,
.sidebar-product-active .slick-dots li button:hover,
.sidebar-product-active .slick-dots li.slick-active button,
.store-slider-active .slick-dots li button:hover,
.store-slider-active .slick-dots li.slick-active button,
.product-list-slider-active2 .slick-dots li button:hover,
.product-list-slider-active2 .slick-dots li.slick-active button{
    background: #000;
}

/*------------------------------
    9. Banner Area CSS
-------------------------------*/
.banner-slider-active {
	width: 100%;
}
.banner-slider-active .col-md-4.slick-slide{
    padding: 0 30px;
}
.banner-img {
	overflow: hidden;
	position: relative;
}
.banner-img > a {
	display: block;
}
.banner-img > a:before {
	background-color: rgba(0,0,0,0.1);
	content: '';
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 9;
	filter: alpha(opacity=0);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s;
}
.banner-img img {
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-banner:hover .banner-img > a:before{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.single-banner:hover .banner-img img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
/*-----------------------------
    10. Testimonial Area CSS
-----------------------------*/
.testimonial-img {
    display: inline-block;
    margin-bottom: 45px;
    position: relative;
}
.testimonial-img:before {
    background: url(../image/testimonial-icon.png) center center no-repeat;
    bottom: 0;
    content: '';
    display: block;
    height: 37px;
    left: 10px;
    position: absolute;
    width: 37px;
    z-index: 9;
}
.testimonial-img img {
	border-radius: 65px;
	box-shadow: 0px 10px 30px 0px rgba(188,188,188,0.7);
	width: 150px !important;
	height: 150px;
}
.testimonial-content > p {
    font-size: 20px;
    line-height: 32px;
    margin: 0 auto 25px auto;
    max-width: 800px;
    position: relative;
    text-align: center;
}
.testimonial-author > h6 {
    color: #abd373;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.testimonial-author > h6 > span {
	color: #555;
	font-size: 14px;
	font-weight: 400;
	position: relative;
}
.testimonial-author > h6 > span:before {
	content: "-";
	display: inline-block;
	margin: 0 5px 0 2px;
	color: #555;
}
/*----------------------
   11. Brand Area CSS
------------------------*/
.brand-active .single-brand img {
	opacity: 0.3;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.brand-active .single-brand img:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.dropdown > li > a:hover, .mega-menu > li > ul > li > a:hover {
	background-image: linear-gradient(90deg, #191fa3 20%, #3fdbf0 50%, #f50c92 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
.blog-content p{
	margin-bottom: 6px;
}

/*------------------------
    Blog List Area CSS
-------------------------*/
.blog-list-slider-active {
	width: 100%;
}
.blog-list {
	background: #fff;
	min-height: 113px;
	padding: 35px 0 35px 166px;
	position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-list:hover{
    background: #abd373;
    color: #fff;
}
.blog-list .post-date {
	background: #abd373;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 11px;
	height: 100%;
	left: 0;
	letter-spacing: 1px;
	padding: 0 15px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	width: 100px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.blog-list .post-title{
    font-size: 18px;
}
.blog-list:hover .post-author,
.blog-list:hover .post-title,
.blog-list:hover .post-author a{
    color: #fff;
}
.blog-list .post-title a:hover{
    color: #fff;
}
.blog-list .post-author img {
	display: inline-block;
	height: 43px;
	left: 115px;
	position: absolute;
	top: 37px;
	width: 43px;
	border-radius: 100%;
}

/*blog sidebar css*/
.product-filter {
	display: block;
}

.single-post-tag {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	padding: 15px 0;
	margin: 30px 0;
    color: #222;
    text-align: left;
}
.single-post-tag > a{
    font-size: 13px;
    text-transform: uppercase;
    color: #222;
}
.single-post-tag > a:hover{
    color: #abd373;
}
.relatedposts > h3 {
	display: inline-block;
	font-size: 20px;
	margin: 0 0 30px;
    font-weight: 700;
	padding: 0 0 20px;
	position: relative;
	text-transform: uppercase;
}
.relatedthumb > h4 {
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	color: #444;
	text-transform: uppercase;
	margin: 0;
}
.image {
	margin-bottom: 25px;
}
.rl-post-date {
	color: #8c8c8c;
	display: inline-block;
	font-size: 12px;
	vertical-align: middle;
    font-style: italic;
}
.comments-area > h3,
.comment-box > h3 {
	font-size: 17px;
	line-height: 22px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.comments-area ol {
	list-style: none;
	padding-left: 0;
}
.comments-area > ol > li > ol{
    margin-left: 30px;
}
.comments-area .commentlist li .single-comment {
	background: #fff;
	border: 1px solid #ededed;
	margin: 0 0 20px;
	padding: 30px;
	width: 100%;
}
.comments-area .commentlist li .comment-avatar {
	float: left;
	margin-right: 20px;
}
.comments-area .commentlist li .comment-info {
	border: none;
	overflow: hidden;
	position: relative;
}
.comments-area .commentlist .comment-info a {
	color: #222;
	display: block;
	font-weight: 700;
	font-size: 14px;
}
.comments-area .commentlist li .comment-info .reply {
	display: inline-block;
	float: right;
	position: absolute;
	right: 0;
	top: 0;
}
.comments-area .commentlist li .comment-info .reply a {
	background: none;
	border: 1px solid #abd373;
	box-shadow: none;
	color: #abd373;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	height: 28px;
	line-height: 26px;
	padding: 0 20px;
	text-shadow: none;
	text-transform: uppercase;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	white-space: nowrap;
	border-radius: 500px;
}
.comments-area .commentlist li .comment-info .reply a:hover{
    background-color: #abd373;
    color: #fff;
}
.comments-area .commentlist .comment-info span.date {
	display: block;
	font-size: 13px;
	font-style: italic;
	margin-bottom: 15px;
	color: #222;
	line-height: 19px;
}
.comment-info > p {
	margin-bottom: 0;
	color: #222;
}
.comment-note {
	font-size: 12px;
	color: #666;
	line-height: 25px;
	margin-bottom: 10px;
}
.single-input {
	margin-bottom: 20px;
}
.single-input > label {
	color: #666;
    font-size: 14px;
    line-height: 25px;
}
.single-input > textarea {
	border: none;
	background: #f2f2f2;
	border-radius: 0;
	height: 135px;
	padding: 15px;
	margin-bottom: 20px;
	width: 100%;
}
.single-input > input {
	background: #f2f2f2;
	border: none;
	height: 46px;
	padding-left: 15px;
	width: 100%;
}
.single-input > input:focus,
.single-input > textarea:focus {
	outline: auto;
	outline-color: #abd373;
}

/*--------------------------------
    13. News Letter Area CSS
----------------------------------*/
.news-latter-box > p {
	font-size: 22px;
	text-align: center;
	margin-bottom: 50px;
}
.subscribe-form {
	display: inline-block;
	margin: auto;
	max-width: 100%;
	vertical-align: middle;
}
.subscribe-form input {
	background: #fff;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	color: #666;
	display: block;
	float: left;
	font-size: 1em;
	height: 48px;
	line-height: 48px;
	max-width: 100%;
	padding: 0 10px;
	position: relative;
	text-align: left;
	white-space: nowrap;
	width: 435px;
	border-radius: 4px;
}
.subscribe-form button {
	background: #abd373;
	border: none;
	color: #fff;
	float: left;
	font-size: 15px;
	font-weight: 500;
	height: 48px;
	letter-spacing: .03em;
	line-height: 48px;
    cursor: pointer;
	margin: 0 0 0 15px;
	max-width: 100%;
	padding: 0 32px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.subscribe-form button:hover {
	background: #94c74c;
	color: #fff;
}
/*-------------------------------------
    14. Footer Area CSS
---------------------------------------*/
/*--------------------------
    14.1 Footer Top Area CSS
----------------------------*/
footer {
	background-color: #191FA3;
	color: white;
	padding-top: 40px;
	font-size: 13px;
}
.single-footer {
	border-left: 2px solid rgba(238, 238, 238, 0.158);
	padding: 0 30px;
}
.single-footer h3 {
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin-bottom: 30px;
	color: #fff;
	margin-top: 10px;
}
.single-footer li {
	display: block;
	margin-bottom: 8px;
	color: #bbb;
}
.single-footer li a {
	font-size: 14px;
	font-weight: 400;
	color: #d3d3d3;
}
.single-footer li a:hover {
	color: #fff;
}
.single-footer i {
	font-size: 16px;
	margin-right: 5px;
}
.f-about .logo {
	margin-bottom: 20px;
}
.f-about {
	padding-right: 40px;
	padding-left: 0;
}
.copyright {
	text-align: center;
	padding: 8px 0;
	border-top: 1px solid #3b3b3b;
	margin-top: 20px;
	color: #d0d0d0;
}
.footer-contact {
    padding-right: 0;
}
.footer-contact ul{
    line-height: 20px;
}
@media (max-width:768px){
    .hidden-xs {
	    display: none !important;
    }
    .single-footer {
    	padding: 0 15px;
    	margin-top: 20px;
    }
    .single-footer h3 {
    	margin-bottom: 20px;
    }
    .footer-contact {
        padding: 0 15px;
    }
}


/*Latest blog*/
.latest-blog {
    overflow: hidden;
}
.latest-blog .item {
    padding: 10px;
}
.blog-item {
	box-shadow: 0 3px 10px rgba(101, 101, 101, 0.2);
	overflow: hidden;
}
.blog-date {
	color: #99999999;
	display: block;
}
.blog-content {
    padding: 20px;
}
.blog-content .title {
	font-weight: 700;
	line-height: 20px;
}
.blog-content .title a {
	color: #373737;
	font-size: 18px;
}
.blog-content .title:hover {
	background-image: linear-gradient(90deg, #191fa3 20%, #3fdbf0 50%, #f50c92 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}
.blog-content .short-desc {
	line-height: 28px;
	margin-bottom: 30px;
}
.img-full {
	width: 100%;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
}
.latestblog-carousel .owl-item img {
	width: 100%;
	height: 220px;
}

.footer-middle-area {
	padding-top: 70px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-info {
	padding: 10px 0;
}
.icon {
	float: left;
	padding-top: 6px;
	color: #abd373;
	font-size: 24px;
}
.footer-info > p {
	font-size: 15px;
	line-height: 21px;
    margin-left: 35px;
	color: #ececec;
	margin-bottom: 0;
}
/*------------------------------------
    14.3 Footer Bottom Area CSS
------------------------------------*/
.footer-payments-image {
	text-align: center;
	padding: 5px 0;
	margin-bottom: 35px;
}
.footer-menu ul > li {
	display: inline-block;
	list-style: none;
	border-right: 1px solid #999999;
	line-height: 13px;
}
.footer-menu ul > li:last-child{
    border-right: 0;
}
.footer-menu ul > li > a {
	color: #ececec;
	font-size: 12px;
	font-weight: 500;
    display: block;
	letter-spacing: 1px;
	padding: 0 15px;
	text-transform: uppercase;
}
.footer-menu ul > li:first-child > a{
    padding-left: 0;
}
.footer-menu ul > li:last-child > a{
    padding-right: 0;
}
.footer-menu ul > li > a:hover{
    color: #abd373;
    text-decoration: underline;
}
.footer-copyright > p {
	text-align: center;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
	color: #ececec;
	margin-top: 10px;
}
.footer-copyright > p > a {
	color: #abd373;
}
.footer-copyright > p > a:hover{
    text-decoration: underline;
}
/*----------------------------------------*/
/*   15. Modal Area CSS
/*----------------------------------------*/
.myform-row {
	margin-bottom: 0.6rem;
	display: flex;
	justify-content: space-between;
}
.myform-p {
    line-height: 20px;
}
.myform-row input {
    display: block;
	width: 49%;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.myform-row textarea {
    display: block;
	width: 100%;
	padding: .75rem;
	font-size: 1rem;
	line-height: 1;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.myform-radio{
    display: flex;
    flex-wrap: wrap;
}
.myform-radio > div {
    width: 50%;
}
.myform-h4 {
	margin-top: 20px;
	margin-bottom: 10px;
}
.myform-radio input{
    width: initial;
}
.myform-radio label{
	margin-bottom: 0.1rem;
}
.btn-primary {
	color: #fff;
	background-color: #191fa3;
	border-color: #007bff;
}
.modal-footer{
    justify-content: center;
}
.modal-product-price {
	color: #abd373;
	font-size: 16px;
	font-weight: 700;
}
.modal-product-price > span.old-price {
	text-decoration: line-through;
}
.see-all {
	color: #999;
	display: inline-block;
	margin-bottom: 40px;
	text-decoration: underline;
	width: 100%;
}

.modal-quantity {
	border: 1px solid #ededed;
	float: left;
	height: 50px;
	margin-right: 15px;
	width: auto;
}
.modal-quantity input {
	border: none;
	color: #555555;
	font-size: 14px;
	font-weight: normal;
	height: 48px;
	width: 60px;
}
.form-button {
	border: none !important;
	height: 48px !important;
	line-height: 48px !important;
	background: #000;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 38px;
	overflow: hidden;
	padding: 0 25px;
	text-shadow: none;
	text-transform: capitalize;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	vertical-align: middle;
	cursor: pointer;
}
.form-button:hover{
    background: #abd373;
    color: #fff;
}
.cart-description {
	border-bottom: 1px solid #ededed;
	color: #999;
	float: left;
	font-size: 14px;
	line-height: 21px;
	margin: 0 0 25px;
	padding: 0 0 15px;
	width: 100%;
}
.social-share > h3 {
	background: none;
	color: #222;
	float: left;
	font-size: 22px;
	line-height: 30px;
    font-weight: 700;
	margin: 0 0 15px;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
}
.socil-icon2 > li {
	display: inline-block;
	list-style: none;
    margin-right: 10px;
}
.socil-icon2 > li > a {
	font-size: 18px;
	color: #808080;
	width: 40px;
	height: 40px;
	display: block;
	border: 1px solid #ebebeb;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.socil-icon2 > li:nth-child(1) > a:hover {
    background: #3B579D;
    border-color: #3B579D;
    color: #fff;
}
.socil-icon2 > li:nth-child(2) > a:hover {
    background: #3ACAFF;
    border-color: #3ACAFF;
    color: #fff;
}
.socil-icon2 > li:nth-child(3) > a:hover {
    background: #CB2027;
    border-color: #CB2027;
    color: #fff;
}
.socil-icon2 > li:nth-child(4) > a:hover {
    background: #D11717;
    border-color: #D11717;
    color: #fff;
}
.socil-icon2 > li:nth-child(5) > a:hover {
    background: #0097BD;
    border-color: #0097BD;
    color: #fff;
}
.single-slide-menu .owl-dots {
	position: absolute;
	bottom: -35px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 99;
}
.single-slide-menu .owl-dot {
	height: 15px;
	width: 15px;
	border: 2px solid #e5e5e5;
	display: inline-block;
	margin: 0 5px;
	border-radius: 100%;
	background: transparent;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-slide-menu .owl-dot.active,
.single-slide-menu .owl-dot:hover {
	border-color: #abd373;
	background: #abd373;
}
/*----------------------------------
    16. Shop Collection Area CSS
------------------------------------*/
.shop-collection-area .col-left,
.shop-collection-area .col-right {
	margin-bottom: 60px;
}
.shop-collection-area .col-left {
	padding-right: 70px;
}
.shop-collection-area .col-right {
	padding-left: 70px;
}
.collection-content > h3 {
	color: #555;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 15px;
    line-height: 29px
}
.collection-content > h4 {
	color: #000;
	font-size: 14px;
	margin-bottom: 10px;
}
.collection-content > h4 > a {
	color: #abd373;
}
.collection-content > p{
    margin-bottom: 10px;
}
.collection-content > h2 {
	color: #000;
	font-size: 46px;
	font-weight: 500;
	margin-top: 15px;
    line-height: 62px;
    margin-bottom: 5px;
}
.collection-content > a {
	background: #abd373;
	color: #fff;
	display: inline-block;
	height: 48px;
	line-height: 48px;
	margin-top: 15px;
	padding: 0 20px;
}
.collection-content > a:hover {
	background: #94c74c;
}
/*-----------------------------------------
    17. Bestseller List Product Area CSS
-------------------------------------------*/
.product-list-slider-active {
	width: 100%;
}
.single-product.product-list {
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
}
.single-product.product-list:hover{
    box-shadow: none;
}
.list-col-4 {
	float: left;
	width: 40%;
}
.list-col-8 {
	float: left;
	width: 60%;
    padding: 20px 15px;
}
.single-product.product-list .product-content {
	text-align: left;
	padding: 0;
}
.single-product.product-list:hover .price-box{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.indoor-product-active{
    width: 100%;
}
.product-list-area {
	padding: 20px 0;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
    margin-bottom: 30px;
}
.product-list-area .single-product.product-list {
	border-bottom: 0;
	padding-bottom: 0;
	margin-top: 0;
}
.product-list-area .list-col-4 {
	width: 30%;
}
.product-list-area .list-col-8 {
	width: 70%;
}
/*------------------------------
    18. Home Product Layout Area
-------------------------------*/
.category-menu {
	position: relative;
}
.category-heading > h2 {
	background: #abd373;
	color: #fff;
	font-size: 35px;
	font-weight: normal;
	height: 52px !important;
	line-height: 52px;
	padding: 0 20px;
	border-radius: 3px 3px 0 0;
	position: relative;
	cursor: pointer;
	font-family: 'lavigne', cursive;
	text-transform: capitalize;
	text-align: center;
}
.category-heading > h2:after{
	font-size: 20px;
	vertical-align: top;
	margin-left: 15px;
    content: '\e874';
    font-family: 'Linearicons-Free';
    display: inline-block;
}
.category-menu-list > ul {
	background: #fff;
	border-radius: 0px 0px 4px 4px;
	margin-top: -2px;
}
.category-menu-list > ul > li{
    list-style: none;
    border-bottom: 1px solid #ebebeb;
}
.category-menu-list > ul > li{
	padding: 0 20px;
	position: relative;
	text-align: left;
}
.category-menu-list > ul > li > a,
.cat-dropdown > li > a {
	display: block;
	text-transform: capitalize;
	color: #7a7a7a;
	height: 40px;
	line-height: 39px;
	overflow: hidden;
	padding-left: 15px;
	font-size: 13px;
}
.category-menu-list > ul > li > a:hover,
.cat-dropdown > li > a:hover{
    color: #abd373;
}
.category-menu-list > ul > li > a:before {
	content: "";
	width: 11px;
	height: 11px;
	border: 1px solid #555;
	display: block;
	position: absolute;
	left: 15px;
	top: 15px;
	border-radius: 100%;
}
.category-menu-list > ul > li > a:hover:before{
    background: #abd373;
    border-color: #abd373;
}
.category-menu-list > ul > li:last-child > a:before{
    display: none;
}
.category-menu-list > ul > li.right-menu > a:after {
	content: "\f105";
	font-family: FontAwesome;
	float: right;
	vertical-align: top;
}
.category-menu-list > ul > li.rx-parent > a {
	font-size: 14px;
	font-weight: 600;
	color: #363f4d;
}
.rx-parent {
  cursor: pointer;
}
.category-menu-list ul > li span.fa {
	float: left;
	padding-top: 13px;
	margin-left: -15px;
	margin-right: 15px;
}
.rx-child, .category-menu-list ul li a.rx-show {
	display: none;
}
.category-menu-list ul li.rx-change a.rx-show {
	display: block;
}
.category-menu-list ul li.rx-change a.rx-default {
	display: none;
}
.cat-dropdown,.cat-mega-menu {
	position: absolute;
	top: 0;
	left: 100%;
    background: #ffffff;
	z-index: 999;
	width: 220px;
	border: 1px solid #e5e5e5;
    box-shadow: none;
    border: 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.cat-dropdown li,
.cat-mega-menu ul li{
    list-style: none;
}
.cat-dropdown > li > a{
    font-size: 12px;
}
.cat-dropdown > li > a:hover{
    color: #abd373;
}
.cat-mega-menu {
	width: 670px;
    padding: 4px 0 10px 0;
    overflow: hidden;
}
li.right-menu .cat-mega-menu > li {
	width: 33.33%;
	float: left;
	padding: 15px 20px 10px 30px;
	list-style: none;
}
.cat-mega-menu > li.cat-mega-title > a {
	font-weight: 700;
	text-transform: capitalize;
	font-size: 13px;
	margin-bottom: 15px;
	display: block;
	line-height: 36px;
    position: relative;
}
.cat-mega-menu > li.cat-mega-title > a:after {
	background: #e5e5e5;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	width: 80px;
}
.cat-mega-menu > li > ul > li > a{
    font-size: 13px;
    display: block;
    line-height: 25px;
}
.cat-mega-menu > li > ul > li > a:hover{
    color: #abd373;
}
.category-menu-list > ul > li:hover .cat-dropdown,.category-menu-list > ul > li:hover .cat-mega-menu{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
} 
.sidebar-layout .featured-product {
	border: 1px solid #e5e5e5;
	padding-bottom: 35px;
}
.sidebar-title > h3 {
	font-size: 35px;
	font-family: 'lavigne', cursive;
	padding-bottom: 25px;
	margin-bottom: 0;
}
.featured-product h3 {
	margin-top: 15px;
}
.featured-product .single-product.product-list {
	padding: 6px 15px;
}
.featured-product .single-product.product-list:last-child{
    border-bottom: none;
}
.product-tag > ul > li {
	list-style: none;
	display: inline-block;
}
.product-tag > ul > li > a {
	background: #ebebeb;
	border: none;
	color: #555;
	display: inline-block;
	font-size: 13px;
	margin: 0 5px 8px 0;
	padding: 4px 20px;
	text-transform: capitalize;
}
.product-tag > ul > li > a:hover{
    background: #abd373;
    color: #fff;
}
.store-product-menu {
	margin-bottom: 20px;
}
.store-product-menu > ul > li > a {
	color: #999;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	margin: 0 10px;
	text-transform: uppercase;
	vertical-align: middle;
}
.store-product-menu > ul > li > a.active,
.store-product-menu > ul > li > a:hover{
    color: #abd373;
}
.store-product-menu > ul > li:first-child:before {
	background: #abd373;
	content: '';
	display: inline-block;
	height: 1px;
	vertical-align: middle;
	width: 30px;
}
.store-product-menu > ul > li:after {
	background: #abd373;
	content: '';
	display: inline-block;
	height: 1px;
	vertical-align: middle;
	width: 30px;
}
.store-slider-active{
    width: 100%;
}
.product-list-slider-active2{
    width: 100%;
}
/*---------------------------
    19. Breadcrumb Area CSS
-----------------------------*/
.breadcrumb-one {
	position: relative;
}
.breadcrumb-content {
	position: absolute;
	bottom: 20px;
	left: 70px;
	z-index: 1;
}
.breadcrumb-content > ul > li{
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    position: relative;
}
.breadcrumb-content > ul > li > a{
    color: #fff;
}
.breadcrumb-content > ul > li > a:hover,
.breadcrumb-content > ul > li.active{
    color: #abd373;
}
.breadcrumb-content > ul > li:before {
	content: "";
	height: 13px;
	width: 1px;
	vertical-align: middle;
	background-color: #fff;
	display: inline-block;
	margin: 0 15px;
}
.breadcrumb-content > ul > li:first-child:before{
    display: none;
}
.search-area {
	padding: 64px 0 62px 0;
	background-image: url(../image/search-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.breadcrumb-title > h1 {
	font-size: 50px;
	text-align: center;
	color: #000;
	text-transform: capitalize;
	font-weight: 500;
	margin-bottom: 25px;
}
.breadcrumb-content.breadcrumb-content-tow {
	position: static;
	bottom: 0;
	left: 0;
	text-align: center;
}
.breadcrumb-content-tow > ul > li > a {
	color: #666;
}
.breadcrumb-content-tow > ul > li:before {
	background-color: #666;
}
/*---------------------
    20. Shop Page CSS
-----------------------*/

.shop-sidebar {
	margin-bottom: 30px;
}
.shop-sidebar > h4 {
	font-size: 24px;
	text-align: left;
	font-weight: 400;
	margin-bottom: 15px;
	margin-top: 8px;
}
.cate-li {
	box-shadow: 0px 0px 3px 1px #e3e3e3;
	position: relative;
	border-radius: 3px;
	margin-bottom: 15px;
}
.cate-name {
	display: block;
	background-color: #c0c0c0;
	padding: 8px 10px;
	font-size: 16px;
	font-weight: bold;
	color: white;
}
.cate-dropdown{
	line-height: 35px;
	padding: 10px;
	padding-left: 20px;
}
.cate-dropdown a{
	display: block;
}
.dropdown-btn {
	position: absolute;
	top: 0px;
	right: 5px;
	text-align: center;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.dropdown-btn i {
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-top: 5px;
	cursor: pointer;
	margin-left: 5px;
	color: white;
}
.dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.shop-layout{
	padding-left: 20px;
}
.cate-title {
	font-size: 25px;
	font-weight: bold;
	padding-left: 15px;
	border-left: 8px solid #191fa3;
	margin: 10px 0 25px;
}
.cate-content p {
	text-indent: 0;
}
.lookmore-btn {
	display: inline-block;
	padding: 7px 10px;
	background-color: #191fa3;
	color: white;
	font-size: 15px;
	border-radius: 3px;
	margin: 10px 0 35px;
}
.lookmore-btn:hover{
	color: white;
}
.cate-thumb{
	margin-bottom: 25px;
	width: 100%;
}
.pro-recommend{
	font-size: 20px;
	margin: 25px 0 15px;
	padding-left: 12px;
	border-left: 5px solid #191fa3;
}
.subscribe{
	padding: 15px;
	background: #f3f3f3;
	box-shadow: 0px 0px 3px 1px #e3e3e3;
	border-radius: 3px;
}
.subscribe h2 {
	margin-bottom: 15px;
	padding-left: 48px;
	background: url(../image/iconemail.png) no-repeat 3px center;
	font-weight: bold;
	color: #444;
	font-size: 18px;
	line-height: 28px;
}
.subscribe input {
	width: 100%;
	border: 1px solid #eaeaea;
	background: #fff;
	text-indent: 5px;
	margin-bottom: 10px;
	line-height: 34px;
	border-radius: 4px;
}
.subscribe button {
	border: none;
	margin-top: 5px;
	background-color: #191fa3;
	padding: 4px 8px;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
}
.subscribe button:hover{
    background-color: #a1ce62;
}

@media (max-width: 767px){
	.shop-layout {
		padding-left: 0px;
	}
}


.label-input label {
	color: #555;
	font-size: 14px;
	margin: 0;
	text-transform: capitalize;
}
.label-input input {
	background: transparent none repeat scroll 0 0;
	border: medium none;
	box-shadow: none;
	color: #555;
	font-size: 14px;
	height: inherit;
	padding-left: 5px;
	width: 99px;
}
.price-slider-amount > button,
.compare-btn {
	background: #999;
	color: #fff;
	font-size: 14px;
    display: inline-block;
	font-weight: normal;
    border: none;
    cursor: pointer;
	height: 35px;
	letter-spacing: .02em;
	line-height: 35px;
	padding: 0 15px;
	text-transform: capitalize;
}
.price-slider-amount > button:hover,
.compare-btn:hover{
	background: #abd373;
	color: #fff;
}
.compare-btn{
    float: right;
}
.clear-btn {
	float: left;
	height: 35px;
	line-height: 35px;
    display: inline-block;
}
.rc-product > ul {
	border: 1px solid #e5e5e5;
}
.rc-product > ul > li {
	line-height: normal;
	display: block;
	overflow: hidden;
	padding: 10px 15px;
	margin-bottom: 0px;
    border-bottom: 1px solid #e5e5e5;
}
.rc-product > ul > li:last-child{
    border-bottom: 0;
}
.rc-product-thumb {
	float: left;
	width: 30%;
}
.rc-product-content {
	float: left;
	padding: 5px 0;
	padding-left: 20px;
	width: 70%;
}
.rc-product-content > h6 {
	color: #555;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
}
.rc-product-review {
	font-size: 10px;
	color: #dcba00;
    margin-bottom: 5px;
}
.shop-topbar-wrapper{
	border-bottom: 1px solid #ededed;
	color: #222;
	margin-bottom: 40px;
	padding-bottom: 10px;
	width: 100%;
}
.grid-list-option > ul > li > a {
	width: 35px;
	height: 35px;
	font-size: 18px;
	display: block;
	text-align: center;
	line-height: 35px;
	margin-right: 5px;
}
.grid-list-option > ul > li > a {
	border: none;
	color: #222;
	height: 36px;
	line-height: 36px;
	margin-right: 1px;
	width: 36px;
	border-radius: 100%;
}
.grid-list-option > ul > li > a.active,
.grid-list-option > ul > li > a:hover{
    background-color: #abd373;
    color: #fff;
}
.toolbar-shorter {
	width: 280px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 35px;
}
.toolbar-shorter label {
	width: 120px;
	margin-bottom: 0;
	font-size: 14px;
	padding: 5px 15px;
	color: #555;
	text-transform: capitalize;
}
.nice-select {
	height: 36px;
	line-height: 36px;
    border-radius: 0;
}
.nice-select .option.selected{
    color: #555 !important;
}
.nice-select .option {
	line-height: 36px;
	min-height: 36px;
}
.nice-select .option{
    color: #555;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	color: #fff;
	background: #abd373;
}
.show-product {
	margin: 0;
	line-height: 36px;
	font-size: 14px;
	color: #555;
	vertical-align: middle;
}
/*shop list css*/
.product-list-item {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 30px;
}
.product-list-item:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
.product-list-item .single-product:hover {
	box-shadow: none;
}
.product-content.shop-list {
	text-align: left;
	padding-top: 0;
	padding-bottom: 0;
}
.product-reviews {
	margin-bottom: 15px;
	color: #dcba00;
}
.product-list-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    margin-top: 20px;
}
.add-btn a {
    background: #abd373;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    height: 40px;
    letter-spacing: 2px;
    line-height: 40px;
    padding: 0 25px;
    text-transform: uppercase;
    width: 100%;
}
.product-list-action > ul {
    background: #fff;
    padding: 0 9px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
    margin-left: 18px;
}
.product-list-action > ul > li {
	display: inline-block;
	list-style: none;
	margin: 0 5px 0 0;
	vertical-align: middle;
}
.product-list-action > ul > li > a {
	color: #555;
	display: block;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 30px;
	border-radius: 0;
}
.product-list-action > ul > li > a:hover {
	color: #abd373;
}
/*product pagination*/
.product-pagination > ul {
	text-align: right;
	padding-top: 30px;
	margin-bottom: 40px;
	border-top: 1px solid #e5e5e5;
}
.product-pagination > ul > li {
	display: inline-block;
	list-style: none;
    margin-right: 5px;
}
.product-pagination > ul > li:last-child{
    margin-right: 0px;
}
.product-pagination > ul > li > a {
	background: #fff;
	border: 1px solid #ededed;
	color: #222;
	font-size: 15px;
    display: block;
	font-weight: normal;
	height: 42px;
	line-height: 40px;
	min-width: 0;
	padding: 0 8px;
	text-align: center;
	width: 42px;
}
.product-pagination > ul > li > a > i {
	font-size: 20px;
}
.product-pagination > ul > li.active > a,
.product-pagination > ul > li > a:hover {
	background: #abd373;
	border-color: #abd373;
	color: #fff;
}


/*-------------------------
     22. Wishlist Page CSS 
---------------------------*/
.table-content table {
	background: #fff none repeat scroll 0 0;
	text-align: center;
	width: 100%;
	margin-bottom: 0;
	border: 1px solid #eee;
}
.table-content table thead {
	background-color: #f6f6f6;
}
.table-content table th,
.table-content table td {
	border-bottom: 1px solid #ebebeb;
}
.table-content table th {
	border-top: medium none;
	font-size: 15px;
	text-transform: capitalize;
	padding: 20px 10px;
	text-align: center;
	font-weight: 500;
	vertical-align: middle;
	white-space: nowrap;
}
.table-content table td {
	border-top: medium none;
	padding: 15px 10px;
	vertical-align: middle;
	font-size: 16px;
}
.product-thumbnail img {
	width: 90px;
	height: 66px;
}
.table-content table td.plantmore-product-remove {
	font-size: 16px;
}
.table-content table td.plantmore-product-name {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	width: 24%;
}
.table-content table td.plantmore-product-price {
	font-size: 16px;
	font-weight: 600;
}
.table-content table td.plantmore-product-add-cart a {
	font-size: 14px;
	text-transform: uppercase;
	background: #F5D44B;
	color: #fff;
	padding: 7px 18px;
	font-weight: 700;
	display: inline-block;
	border-radius: 5px;
}
.table-content table td.plantmore-product-add-cart a:hover {
	background: linear-gradient(90deg, #F50C92 0%, #F5D44B 95%);
	color: #fff;
}

/*-----------------------
    27. About Page CSS
------------------------*/
.about-us-content {
	padding: 100px 50px;
    text-align: center;
}
.about-us-content > h2 {
	font-size: 30px;
	font-weight: 900;
	line-height: 40px;
    color: #444;
	text-align: center;
	margin-bottom: 40px;
}
.about-us-content > p {
	font-size: 15px;
	color: #222;
	line-height: 25px;
    text-align: justify;
}
a.about-btn {
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
	text-transform: capitalize;
	border: 1px solid #222;
	height: 40px;
	padding: 0 25px;
	font-weight: 500;
	margin-top: 26px;
	vertical-align: middle;
}
a.about-btn:hover{
    background-color: #abd373;
    border-color: #abd373;
    color: #fff;
}

/*-----------------------------
    28. Service Page CSS
------------------------------*/
.service-title > h4 {
	font-size: 14px;
	line-height: 18px;
	font-weight: 900;
	font-family: 'Raleway', sans-serif;
	color: #444;
}
.service-content > p {
	font-size: 14px;
	color: #222;
	line-height: 25px;
	margin: 0;
}
.service-title > h4 {
	font-size: 14px;
	line-height: 18px;
	font-weight: 900;
	color: #444;
	margin-bottom: 20px;
}
.service-bg {
	background-image: url(../image/service-bg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
/*Our Service Area Css*/
.service-info {
	padding-left: 20px;
}
.service-icon {
	color: #4fc1f0;
	font-size: 34px;
	padding-top: 10px;
}
.service-info > h3 {
	font-size: 13px;
	color: #c6c6c6;
	text-align: left;
	font-weight: 700;
	font-style: normal;
}
.service-info > p {
	margin-bottom: 35px;
	font-size: 14px;
	line-height: 25px;
	color: #a4a4a4;
}
/*idea area css*/
.ideas-content {
	padding: 180px 80px;
	text-align: center;
}
.ideas-content > h2 {
	font-size: 30px;
	color: #444444;
	text-align: center;
	font-family: 'Raleway', sans-serif;;
	font-weight: 900;
	font-style: normal;
}
.ideas-content > p{
    font-size: 14px;
    line-height: 25px;
    color: #222;
    margin: 60px 0;
}
a.ideas-btn{
	display: inline-block;
	border: 2px solid #2A2A2A;
	padding: 13px 19px;
    position: relative;
	padding-right: 48px;
	position: relative;
	color: #2A2A2A;
	background: transparent;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a.ideas-btn:after {
	content: "\f105";
	font-family: FontAwesome;
	right: 20px;
	position: absolute;
}
a.ideas-btn:hover{
    background-color: #2A2A2A;
    border-color: ##2A2A2A;
    color: #fff;
}
.design-and-code-area {
	background-color: #f6f6f6;
}
/*pricing table area css*/
.pricing-table-area {
	background-color: #f6f6f6;
}
.service-bg-1 {
	background-image: url(../image/service-bg2.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.single-pricing {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px #fff inset, 0 1px 3px rgba(34,25,25,0.4);
	text-align: center;
}
.single-pricing:hover .pricing-head > h4{
    background-color: #abd373;
    color: #fff;
}
.pricing-head > h4 {
	padding: 20px;
	text-align: center;
	background: #3e3e3e;
	color: #fff;
    font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.pricing-body {
	padding: 0 20px 40px 20px;
	text-align: center;
}
.table-price {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	padding: 50px 0;
	text-transform: uppercase;
	color: #666;
	font-family: 'lavigne', cursive;
}
.desc-price {
	font-size: 12px;
}
.pricing-body > ul {
	padding-left: 15px;
	margin-bottom: 20px;
}
.pricing-body > ul > li {
	padding: 15px 0;
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 10px;
	list-style: none;
	color: #666;
}
.pricing-body > ul > li:first-child {
	border-top: 1px solid #ebebeb;
}
.pricing-button {
	background-color: #000;
	padding: 0 25px;
	line-height: 48px;
	margin: 40px 0 0;
	display: inline-block;
	text-transform: capitalize;
	font-size: 14px;
    font-weight: 500;
	color: #fff;
	height: 48px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.pricing-button:hover {
	background: #abd373;
	color: #fff;
}
/*What We Do Area CSS */
.service-bg-2 {
	background-image: url(../image/service-bg3.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.service-content{
    padding-left: 10px;
}
.service-content > h3 {
	font-size: 14px;
	color: #444444;
	text-align: left;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-style: normal;
}
.service-content > p {
	font-size: 14px;
	line-height: 25px;
	color: #222;
}
/*our service area 3 css*/
.section-title-img {
	background-image: url(../image/service-bg4.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 120px;
    padding-bottom: 100px;
}
.section-title-img .section-title2 > p {
	color: #fff;
	margin: 0 auto 0 auto;
}
.service-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 40px;
	width: 100%;
	height: 100%;
	bottom: 0;
	padding-top: 80px;
	background-color: #fff;
	z-index: 9;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* 产品搜索页 */
.search-box {
	padding: 65px 0;
	margin-bottom: 70px;
	background-image: url(../image/search-bg.jpg);
	background-size: 100% auto;
}
#searchForm {
	display: inline-flex;
	line-height: 48px;
	border: 3px solid #191fa3;
	border-radius: 30px;
}
#searchForm input::placeholder {
	color: #696969;
	font-size: 14px;
}
.search-form{
	text-align: center;
}
.search_input {
	display: flex;
}
.search_filter {
	position: relative;
	flex-shrink: 0;
}
.selected_type {
	height: 100%;
	border: none;
	background: none;
	padding: 0 16px 0 10px;
	border-right: 2px solid #191fa3;
	font-size: 13px;
	cursor: pointer;
}
.selected_type::after {
	border: 5px solid transparent;
	border-top: 6px solid #3a3e9b;
	width: 0;
	height: 0;
	position: absolute;
	top: 22px;
	right: 6px;
	content: ' ';
	transition: all .3s;
	-webkit-transition: all .3s;
}
.search_type {
	display: none;
	position: absolute;
	left: 0;
	background-color: #fff;
	text-align: left;
	border-radius: 5px;
	box-shadow: 0 0 5px #b5b5b5;
	padding: 10px 15px;
	z-index: 999;
	width: 225px;
	line-height: 30px;
}
.search_type dd {
	cursor: pointer;
	font-size: 14px;
	border-bottom: 1px dotted #aeaeae;
	margin: 0;
	white-space: nowrap;
	padding-left: 5px;
	color: #424242;
	line-height: 38px;
}
.search_type dd:hover {
	color: white;
	background-color: #2635A9;
}
.input_keyword {
	border: none;
	padding-left: 10px;
}
.keyword-box{
	position: relative;
}
.keyword-box ul {
	position: absolute;
	left: 0;
	right: 0;
	background-color: #fff;
	border: 1px solid #c2c2c2;
	z-index: 98;
	padding: 0 15px;
	text-align: left;
	line-height: 25px;
	border-radius: 3px;
	top: 46px;
	display: none;
}
.keyword-box ul li{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 10px 0;
}
.keyword-box ul li a{
	display: block;
}

.search_btn {
	border: none;
	color: white;
	padding: 0px 26px;
	background-color: #191fa3;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	cursor: pointer;
	font-size: 15px;
}
.search_btn:hover{
	background-color: #1f26c1;
}
.search_filter_selected::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	top: 17px;
}
.search_filter_selected + dl {
	display: block;
}

/*分页条*/
.paging {
	text-align: center;
	line-height: 38px;
	margin: 30px 0 40px;
}
.paging li {
	list-style: none;
}
.paging .disabled {
	opacity: 0.6;
    pointer-events: none;
}
.paging a {
	background-color: #fff;
	border-radius: 2px 0 0 2px;
	color: #333;
	font-size: 14px;
	display: inline-block;
	margin: 0 4px;
	border: 1px solid #e2e2e2;
	padding: 1px 17px;
}
.paging a:hover, .paging a.thisclass {
	background-image: linear-gradient(to bottom,#797ef3 0,#2026af 100%);
	color: #fff !important;
	border-color: #4d53d1;
}
.paging .total-count {
    margin-left: auto;
    color: #666;
    font-size: 0.9em;
}
.location {
	margin-bottom: 22px;
	color: #7d7d7d;
}
.location a {
	color: #7d7d7d;
}


/* 文章页 */
.article-content {
	padding-top: 20px;
	padding-left: 15px;
	position: relative;
}
.article-title {
	color: #444;
	font-size: 28px;
	line-height: 35px;
	font-weight: 600;
	margin: 10px 0 12px 0;
	letter-spacing: 1px;
	margin-bottom: 14px;
	text-align: center;
}
.get-a-quote {
	position: absolute;
	top: 26px;
	right: 5px;
	border: 1px solid #ededed;
	display: inline-block;
	font-size: 14px;
	font-weight: normal;
	height: 35px;
	line-height: 35px;
	text-align: center;
	width: 120px;
	border-radius: 0;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	color: white;
	background-color: #191fa3;
}
.get-a-quote:hover {
	background: #2c33c9;
	color: #fff;
}
.get-a-quote::before {
	content: '\f08a';
	display: inline-block;
	font-family: FontAwesome;
	font-size: 12px;
	margin-right: 5px;
	vertical-align: top;
}
.get-a-quote:hover::before {
	-webkit-animation: crFlipX 2s ease-in-out infinite both;
	animation: crFlipX 2s ease-in-out infinite both;
}
.article-infos {
	text-align: center;
	margin-bottom: 20px;
}
.article-body{
	padding: 5px;
}
.article-body p{
	text-align: justify;
}
.article-body img {
	max-width: 100%;
	height: auto;
}
.post-author {
	color: #626262;
	display: inline-block;
	font-size: 13px;
	vertical-align: middle;
}
.post-separator {
	color: #8c8c8c;
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}
.blog-post-date {
	color: #8c8c8c;
	display: inline-block;
	font-size: 13px;
	vertical-align: middle;
}

/* 博客列表页 */
.xinwen-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.xinwen-list li {
	padding: 18px;
	background-color: #f5f5f5;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 8px;
}
.xinwen-list img {
	float: left;
	margin-right: 3%;
	width: 25%;
	height: 138px;
}
.xinwen-word {
	float: left;
	width: 72%;
}
.xinwen-word h3 {
	text-align: left;
	color: #000;
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 20px;
	line-height: 24px;
}
.xinwen-word h3 a {
	color: #333;
}
.xinwen-word h3 a:hover {
	color: #8ec640;
}
.xinwen-word p {
	color: #8d8d8d;
	line-height: 24px;
	margin-top: 14px;
	margin-bottom: 0;
}
/* 博客列表页结束 */
.article-icon {
	text-align: center;
	color: #aaa;
	margin-bottom: 12px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
}

.big-banner {
    background-image: url(../image/coming.jpg);
	background-size: 100% 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
}
.big-banner h1{
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 64px;
	text-shadow: 0 0 3px #b7b7b7;
}
.big-banner h3{
    color: #fff;
    text-align: center;
    font-size: 28px;
    text-shadow: 0 0 3px #b7b7b7;
}
.solution-area {
	padding: 60px 0 0;
}
.section-title {
	line-height: 1;
	margin-bottom: 35px;
}
.section-title .title {
	font-size: 36px;
	font-family: Rubik, sans-serif;
	font-weight: 500;
	display: inline-block;
	color: #191fa3;
	margin: 0;
	line-height: 1.2;
	font-weight: bold;
	margin-bottom: 15px;
}
.section-title p {
	font-size: 18px;
	line-height: 26px;
	color: #888;
}
.text-center {
	text-align: center !important;
}
.solution-area ul{
	overflow: hidden;
}
.solution {
	display: flex;
	flex-wrap: wrap;
}
.solution-area li:nth-child(even) .solution {  
    flex-direction: row-reverse;
}
.solution .left{
	width: 50%;
	padding: 75px 60px 50px;
}
.solution .left h2 {
	margin-bottom: 16px;
	font-size: 32px;
}
.solution .left h2 a {
	color: #191fa3;
}
.solution .feature-list {
	font-size: 18px;
	color: #777;
	line-height: 27px;
}
.solution .left p{
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 30px;
	color: #7a7a7a;
}
.solution .right{
	width: 50%;
	overflow: hidden;
}
.solution img {
	width: 100%;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.solution .right:hover img {
	-webkit-transform: scale(1.1) rotate(3deg);
	transform: scale(1.1) rotate(3deg);
}
.lookmore-btn {
	color: #fff;
	background: #191fa3;
	padding: 12px 30px;
	border-radius: 5px;
	text-transform: uppercase;
	margin-top: 25px;
}
.solution img {
	width: 100%;
	max-width: 100%;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

@media (max-width: 768px) {
    .mt-115 {
    	margin-top: 60px;
    }
	.mt-120 {
		margin-top: 60px;
	}
	.mb-30 {
		margin-bottom: 20px;
	}
	.mb-25 {
		margin-bottom: 10px;
	}
	.mb-35 {
		margin-bottom: 20px;
	}
	.mb-50 {
		margin-bottom: 30px;
	}
	.mb-70 {
		margin-bottom: 40px;
	}
	.mb-100 {
		margin-bottom: 50px;
	}
	.mb-110 {
		margin-bottom: 50px;
	}
	.mb-115 {
		margin-bottom: 40px;
	}
	.mb-120 {
		margin-bottom: 60px;
	}
	.mt-85 {
		margin-top: 45px;
	}
	.section-title > h3 {
		font-size: 30px;
		padding-bottom: 10px;
	}
	.history-area-content {
		border-bottom: 1px solid #e5e5e5;
		padding-bottom: 40px;
	}
	.related-product{
		display: none;
	}
	.shop-sidebar > h4 {
		font-size: 26px;
		margin-bottom: 20px;
		margin-top: 25px;
	}
	.lookmore-btn {
		padding: 7px 10px;
		margin: 2px 0 22px;
	}
	.cate-dropdown {
		display: none;
	}
	.location {
		font-size: 13px;
	}
	.product-details-content {
		padding-top: 0px;
		padding-left: 0px;
	}
	.product-details-content > h2 {
		font-size: 19px;
		line-height: 35px;
		margin-bottom: 25px;
	}
	.wishlist-compare-btn {
		text-align: center;
		margin-top: 35px;
	}
	.selected_type {
		padding: 0 12px 0 6px;
		font-size: 12px;
	}
	.search_btn {
		padding: 0px 20px;
	}
	.paging a {
		padding: 1px 14px;
		line-height: 28px;
	}
	.serviceslist {
		padding-top: 20px;
		padding-left: 0;
	}
	.service{
		margin-bottom: 30px;
	}
	.article-content {
		padding-left: 0;
	}
	.get-a-quote{
	    display: none;
	}
	.brand-area-h2 {
    	font-size: 23px;
    }
    .xinwen-list li {
		padding: 12px;
		margin-bottom: 20px;
		border-radius: 8px;
	}
	.xinwen-thumb{
		display: none;
	}
	.xinwen-word {
		float: none;
		width: 100%;
	}
	.xinwen-word h3 {
		margin-top: 2px;
		margin-bottom: 0;
		font-size: 16px;
	}
	.xinwen-word p {
		line-height: 20px;
		margin-top: 10px;
		margin-bottom: 0;
		font-size: 13px;
	}
	.index-service .col-md-4{
        margin-bottom: 18px;
    }
    .hero-slider-content > h2 {
    	font-size: 38px;
    	line-height: 44px;
    	font-weight: 500;
    	color: #f4f4f4;
    }
    .slider-border {
    	margin: 10px 0;
    }
    .slider-btn > a {
    	padding: 11px 12px;
    	margin-top: 30px;
    }
    .big-banner h1 {
    	font-size: 42px;
    }
    .big-banner h3 {
    	font-size: 20px;
    }
    .section-title .title {
    	font-size: 30px;
    }
    .section-title p {
    	font-size: 16px;
    	line-height: 24px;
    }
    .solution-area {
		padding: 40px 0 0;
	}
	.solution .left h2 {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.solution-area li{
		margin-bottom: 25px;
	}
	.solution .left {
		width: 100%;
		padding: 0px 15px 20px;
	}
	.solution .left p {
		margin-bottom: 13px;
		font-size: 16px;
		line-height: 25px;
		color: #7a7a7a;
	}
	.solution .right {
		width: 100%;
		padding: 0 15px;
	}
}