
@keyframes BounceUpDown {
  0%{
    transform: translateY(0);
  }
  25%{
    transform: translateY(-5px);
  }
  50%{
    transform: translateY(0);
  }
  75%{
    transform: translateY(-2px);
  }
  100%{
    transform: translateY(0);
  }
}

@keyframes BounceDownUp {
  0%{
    transform: translateY(0);
  }
  25%{
    transform: translateY(5px);
  }
  50%{
    transform: translateY(0);
  }
  75%{
    transform: translateY(2px);
  }
  100%{
    transform: translateY(0);
  }
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/*======================
1.0. General
========================*/

.andro_preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: .3s;
}
.andro_preloader.hidden{
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;

  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #634832;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body,
canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed,
fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p,
pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table,
tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video{
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .50;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}
.dark-overlay{
  position: relative;
  z-index: 1;
}
.dark-overlay::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  z-index: -1;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}
.dark-overlay.dark-overlay-2::before{
  background-color: rgba(0,0,0,.6);
}
.andro_sticky-section{
  position: sticky;
  top: 30px;
}


/*======================
1.0. General
========================*/

img {
  max-width: 100%;
  height: auto;
}
.imgs-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.imgs-wrapper img {
  position: absolute;
  max-width: 300px;
}


/*banner背景图片动画*/
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
/*banner */
.index_main{
	background: #f7f7f7;
}
.index_main .section1{
	position: relative;

}
.index_main .section1 .index_banner .item{
	background-size: cover;
	-webkit-background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height:100vh;
	position: relative;
}
.index_main .section1 .index_banner .item.slick-current .scaleBg{
	visibility: visible;
	-webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards;
}
.index_main .section1 .index_banner .items{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.index_main .section1 .index_banner .items:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
}
.index_main .section1 .index_banner .item .inner .block_txt{
	position: absolute;
	top: 44%;
	right: 10px;
	left:10px;
	opacity: 0;
	transform: translateY(40px);
	-webkit-transform: translateY(40px);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.index_main .section1 .index_banner .item.active .inner .block_txt{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}
.index_main .section1 .index_banner .item .inner .block_txt h4{
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}
.index_main .section1 .index_banner .item .inner .block_txt h2{
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	text-align:center;
	letter-spacing:5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h2 span{
	color: #f5c920;
	display: inline-block;
	letter-spacing: 5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h3{
	color: #fff;
	font-size: 22px;
	text-align:center;
	margin-top: 10px;
	letter-spacing: 3px;
}
.index_main .section1 .slick_txt{
	width:30%;
	height: 100%;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	font-size: 0;
	outline: none;
	border:0;
}
.index_main .section1 .left{
	left: 0;
}
.index_main .section1 .right{
	right:0;
}
.index_main .section1 .slick_txt:hover .slick_arrow{
	opacity: 1;
	visibility: visible;
}
.index_main .section1 .slick_txt .slick_arrow{
	width: 20px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
.index_main .section1 .slick_txt .prev{
	background-image:url(../image/ban_prev.png);
	left:60px;
}
.index_main .section1 .slick_txt .next{
	background-image:url(../image/ban_next.png);
	right:60px;
}
.index_main .section1 .slick_txt .prev:hover{
	background-image:url(../image/ban_prev_hover.png);
}
.index_main .section1 .slick_txt .next:hover{
	background-image:url(../image/ban_next_hover.png);
}
.index_main .section1 .number{
	position: absolute;
	bottom:8%;
	left: 50%;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	display: table;
	padding: 0 20px;
	width: auto;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.index_main .section1 .number span{
	font-family: "Myriad Pro","Microsoft YaHei";
	font-size: 14px;
	color: #fff;
	margin-right:100px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span:last-child{
	margin-right: 0;
}
.index_main .section1 .number span:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	bottom:-20px;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span.active:after{
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.index_main .section5{
	width: 100%;
	height: 100%;
	background:url(../../public/images/big1.jpg) no-repeat;
	background-size: 100% 100%;
}

.index_main .section2{
	background:url(../../public/images/big2.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section2 h3{
	text-align: center;
}
.index_main .section3{
	width: 100%;
	height: 100%;
	background:url(../../public/images/big3.jpg) no-repeat;
	background-size: 100% 100%;
}
/*
.index_main .section3 h3{
	text-align: center;
}*/
.index_main .section4{
	background:url(../../public/images/big4.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section4 h3{
	text-align: center;
}

@media only screen and (max-width: 1600px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 28px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1440px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 24px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 18px;
		margin-top: 5px;
	}
}
@media only screen and (max-width: 1366px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 20px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 26px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 16px;
	}
	.index_main .section1 .index_banner .slick-arrow{
		background-size: auto 30px;
	}
}
@media only screen and (max-width: 1300px){

}
@media only screen and (max-width: 1199px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 18px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 22px;
		}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 14px;
	}
}
@media only screen and (max-width: 992px){
	.index_main .section1 .index_banner .item{
		height: 100vh;
	}
	.index_main .section1 .index_banner .item .inner .block_txt{
		left: 0;
		right:0;
		margin: 0 auto;
		padding: 0 20px;
		top: 42%;
	}
	.index_main .section1 .index_banner .slick-arrow{
		display: none !important;
	}
    .index_main .section1 .index_banner .slick-dots{
    	position: absolute;
    	bottom: 12px;
    }
    .index_main .section1 .index_banner .slick-dots li{
    	width: 12px;
    	height: 12px;
    	border-radius: 50%;
    	border:2px solid #fff;
    }
    .index_main .section1 .index_banner .slick-dots li button{
    	display: none;
    }
    .index_main .section1 .index_banner .slick-dots li.slick-active{
    	background: #fff;
    }
	.index_main .section1 .number{
		bottom: 12%;
		display: none;
	}
	.index_main .section1 .number span{
		margin-right: 22px;
	}
	.index_main .section1 .number span:after{
		bottom: -14px;
	}




}
@media only screen and (max-width: 767px){

}
@media only screen and (max-width: 340px){

}
@media only screen and (max-width: 320px){

}


.box_one{
	width:80%;
  height:auto;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius:2px;
  color:#0059aa;
  font-size:0.5rem;
  text-align:left;
	margin-top:20px;

}
.box_one dl{
	padding:20px 20px 40px 20px;
}
.box_one dt{
  font-size:1.5rem;
}
.span_line{
	display:block;
	margin-top:15px;
	width:80px;
	height:4px;
	background:#f6cc1a;
}
.box_one dd{
	font-size:1.5rem;
  display:block;
  height:30px;
	line-height:30px;
	padding:20px 0;
}


.box_two{
	 width:88%;
    position:absolute;
		top:70px;
		left:10px;
		font-size:12px;
}
.box_two h4{
  color:#0059aa;
	font-weight:bold;
}
.box_two p{
	text-indent:20px;
	padding:10px 0 0 0;
}
.two_p1{
	display:none;
}
.two_a{
	width:60%;
	margin:0 auto;
	display:block;
	height:30px;
	line-height:30px;
	color:#fff;
	text-align:center;
	font-weight:bold;
	background:rgb(252, 208, 23);
	border-radius:30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
	border-radius:10px;
	padding:30px 0;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 30px 30px 30px;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3194db;
}

.copyright{
	text-align: center;
	font-size:12px;
	margin-top:30px;
	padding:15px 0;
	color: #888;
}
.foot_ma{
	width:25%;
}
.foot_ma img{
	display:block;
	width:100%;
}


/*-- Top Category picks start */

/*======================
1.2 Section Spacings

.section {
  position: relative;
  padding: 50px 0;
}
.section.section-padding{
  padding: 50px 0 20px;
}
.andro_section-fw{
  padding: 0 50px;
}
.mb-30{
  margin-bottom: 30px;
}
.mr-lg-30{
  margin-left: 30px;
}
.section.section-padding.category_section{
  margin-top: -50px;
  padding-top: 0;
}



========================*/




.section-title .title{
  position: relative;
  margin: 0 auto;
  width:100%;
  padding:20px 0;
  text-align:center;
  font-size:28px;
}
.title_span{
  display:block;
  text-align:center;
  color:#999;
  font-size:18px;
}
.section-title{
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #F0F2F3;
}
.section-title::after{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #F0F2F3;
}
.section-title.flex-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-title.flex-title .nav{
  margin:0 auto;
}
.section-title.flex-title .nav-item{
  margin: 0;
}
.section-title.flex-title .nav-item + .nav-item{
  margin-left: 30px;
}
.section-title.flex-title .nav-item .nav-link{
  margin: 0;
}


/*==================
1.3. Forms
====================*/
textarea{
  resize: none;
}
.form-control::-webkit-input-placeholder{
  color: #a5a5a5;
}
.form-control::-moz-placeholder{
  color: #a5a5a5;
}
.form-control:-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::placeholder{
  color: #a5a5a5;
}
.form-control {
  height: 50px;
  padding: 8px 15px;
  border-radius: 0;
  border: 1px solid #F0F2F3;
  border-radius: 0;
  width: 100%;
  color: #6e6e6e;
  background-color: #fff;
  letter-spacing: 0.1px;
  font-size: 14px;
}
.form-control:focus {
  border: 1px solid #efefef;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-group{
  margin-bottom: 20px;
}
.input-with-icon{
  position: relative;
}
.input-with-icon input,
.input-with-icon select{
  padding-left: 40px;
}
.input-with-icon i{
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #a5a5a5;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.input-with-icon input:focus + i,
.input-with-icon select:focus + i{
  color: #454545;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #38220F;
}
.custom-control label{
  line-height: 23px;
}

/*==================
1.4. Buttons
====================*/
.btn-link{
  color: #18181D;
  font-weight: 700;
}
.btn-link:hover{
  color: #2b2b2b;
}
.andro_btn-custom {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  word-break:break-all;
  word-wrap:break-word;
  position: relative;
	background-color: #634832;
  border: 0;
	color: #fff;
	font-size: 10px;
	font-weight: normal;
	padding: 12px 30px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
  text-transform: uppercase;
  border-radius: 0;
  z-index: 1;
  box-shadow: 0 3px 24px rgba(0,0,0,.1);
  display:block;
}

.andro_btn-custom:hover,
.andro_btn-custom:focus{
  color: #fff;
  background-color: #634832;
  outline: none;
}
.andro_btn-custom.primary{
  background-color: #634832;
}
.andro_btn-custom.primary:hover,
.andro_btn-custom.primary:focus{
  background-color: #def1fc;
}
.andro_btn-custom.light{
  background-color: #F0F2F3;
  color: #2b2b2b;
}
.andro_btn-custom.light:hover,
.andro_btn-custom.light:focus{
  background-color: #def1fc;
}
.andro_btn-custom.secondary{
  background-color: #5d5d5d;
  color: #fff;
}
.andro_btn-custom.secondary:hover,
.andro_btn-custom.secondary:focus{
  background-color: #383838;
}

.andro_btn-custom.btn-sm{
  padding: 12px 16px;
  font-size: 13px;
}
.btn-group .andro_btn-custom:first-child{
  border-radius: 0;
}
.btn-group .andro_btn-custom + .andro_btn-custom{
  border-radius: 0;
  padding: 12px 14px;
}
.btn-group .andro_btn-custom.btn-sm + .andro_btn-custom.btn-sm{
  padding: 12px 16px;
}
.input-group-append .andro_btn-custom,
.input-group-append .andro_btn-custom::before{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .andro_btn-custom.dropdown-toggle.dropdown-toggle-split:hover::after{
  animation-name: BounceUpDown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.btn-group.dropup .andro_btn-custom.dropdown-toggle.dropdown-toggle-split:hover::after{
  animation-name: BounceDownUp;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/*==================
1.5. Colors & Badges
====================*/
.custom-primary{
  color: #38220F;
}
.custom-secondary{
  color: #b682e1;
}
.twitter{
  background-color: rgb(44, 170, 225) !important;
  color: #fff;
}
.twitter:hover{
  background-color: #2caae1;
  color: #fff;
}

.facebook {
  background-color: rgb(59, 87, 157) !important;
  color: #fff;
}
.facebook:hover{
  background-color: #3b579d;
  color: #fff;
}

.google {
  background-color: rgb(220, 74, 56) !important;
  color: #fff;
}
.google:hover{
  background-color: #dc4a38;
  color: #fff;
}

.linkedin{
  background-color: rgb(1, 119, 181) !important;
  color: #fff;
}
.linkedin:hover{
  background-color: #0177b5;
  color: #fff;
}

.pinterest {
  background-color: rgb(204, 33, 39) !important;
  color: #fff;
}
.pinterest:hover{
  background-color: #cc2127;
  color: #fff;
}

.youtube{
  background-color: rgb(229, 45, 39);
  color: #fff;
}
.youtube:hover{
  background-color: #e52d27;
  color: #fff;
}

.github {
  background-color: rgb(51, 51, 51) !important;
  color: #fff;
}
.github:hover{
  background-color: #333333 !important;
  color: #fff;
}

.behance {
  background-color: rgb(23, 105, 255) !important;
  color: #fff;
}
.behance:hover{
  background-color: #1769ff;
  color: #fff;
}

.dribbble {
  background-color: rgb(234, 76, 137) !important;
  color: #fff;
}
.dribbble:hover{
  background-color: #ea4c89;
  color: #fff;
}

.reddit{
  background-color: rgb(255, 69, 0) !important;
  color: #fff;
}
.reddit:hover{
  background-color: #ff4500;
  color: #fff;
}

.light-bg{
  background-color: #F0F2F3;
}
.primary-bg{
  background-color: #634832;
}
.secondary-bg{
  background-color: #5d5d5d;
}
.pattern-bg{
  position: relative;
  z-index: 1;
}
.pattern-bg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

/*=============================
1.6 Modal, Popups & Dropdowns
==============================*/
.modal-header .close{
  background-color: #020202;
  opacity: 1;
  margin: 0;
  border-radius: 0;
  height: 30px;
  width: 30px;
  padding: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: none;
}
.modal-header{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-header .close:not(:disabled):not(.disabled):hover{
  background-color: #dd3333;
  opacity: 1;
}
.modal-lg{
  max-width: 1000px;
}
.modal-content{
  border-radius: 0;
  border: 0;
}
.modal-body{
  padding: 40px;
}
.dropdown-menu{
  padding: 10px;
  font-size: 14px;
  color: #838383;
  border: 1px solid #F0F2F3;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.dropdown-item{
  padding: 6px 10px;
  font-weight: 600;
  color: #838383;
  border-radius: 0;
}
.dropdown-item i{
  display: inline-block;
  width: 25px;
}
.dropdown-item.active, .dropdown-item:active{
  background-color: #f8f9fa;
  color: #16181b;
}

/*======================
1.7 Tables
========================*/
table th,
table td {
  padding: 15px;
  vertical-align: middle;
  background-color: #fff;
}
table th{
  font-weight: 600;
  color: #18181D;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #F0F2F3;
}
table {
  width: 100%;
  margin-bottom: 30px;
}
table td{
  border: 1px solid #F0F2F3;
}
table img{
  width: 40px;
  border-radius: 0;
}

/*======================
1.8 Tabs
========================*/
.tab-content{
  margin-top: 20px;
}
.nav-item{
  margin: 0;
}
.nav-link{
  padding: 10px 20px;
  background-color: #F0F2F3;
  margin-right: 10px;
  border-radius: 0;
  color: #18181D;
  border-radius: 0;
}
.nav-link.active{
  background-color: #0299f0;
  color: #fff;
}
.tab-content>.tab-pane{
  display: block;
  height: 0;
}
.tab-content>.active{
  height: auto;
}

/*======================
1.9. Social media links
========================*/
.andro_sm{
  display: flex;
  align-items: center;
  margin: 0;
}
.andro_sm li{
  margin: 0;
}
.andro_sm li a{
  display: inline-block;
}
.andro_sm li + li{
  margin-left: 20px;
}

/*======================
2. Header
========================*/

.andro_header.sticky.header-1 .andro_header-bottom,
.andro_header.header-3.sticky .andro_header-bottom{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 190;
}

.andro_header.header-2.sticky .andro_header-middle{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 190;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border-bottom: 1px solid #F0F2F3;
}

.andro_header-top{
  background-color: #38220F;
  padding: 0;
}
.andro_header-top-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_header-top-links{
  display: flex;
  align-items: center;
  margin: 0;
}
.andro_header-top-links li{
  margin: 0;
}
.andro_header-top-links > li + li{
  margin-left: 15px
}
.andro_header-top-sm li a,
.andro_header-top-links a{
  color: #fff;
}
.andro_header-top-sm li a:hover,
.andro_header-top-links a:hover{
  color: #634832;
}
.andro_header-top-links a{
  font-weight: 600;
  font-size: 13px;
  padding: 10px 0;
  display: block;
}
.andro_header-middle{
  background-color: #fff;
}
.andro_header-middle .navbar{
  padding: 15px 0;
}
.navbar-brand{
  padding: 10px 0;
  width: 170px;
}
.andro_header-controls{
  display: flex;
  align-items: center;
}
.andro_header-controls-inner{
  display: flex;
  align-items: center;
  margin: 0;
}
.andro_header-controls-inner li{
  margin: 0;
}
.andro_header-controls-inner li a{
  width: 58px;
  height: 58px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  margin: 0 10px 0 0;
}
.andro_header-controls-inner li a i{
  font-size: 21px;
  color: #838383;
}
.andro_header-controls-inner li a:hover{
  background-color: #F0F2F3;
}
.andro_header-controls-inner li:last-child a{
  margin-right: 0;
}
.andro_header-controls-inner li.andro_header-cart a{
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 5px 15px;
  display: flex;
  align-items: center;
}
.andro_header-controls-inner li.andro_header-cart a i{
  font-size: 26px;
  color: #838383;
}
.andro_header-controls-inner li.andro_header-cart .andro_header-cart-content{
  margin-left: 15px;
}
.andro_header-controls-inner li.andro_header-cart .andro_header-cart-content span{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #18181D;
}
.andro_header-controls-inner li.andro_header-cart .andro_header-cart-content span + span{
  color: #634832;
}
.andro_header-bottom{
  background-color: #38220F;
}
.andro_header-bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_header-bottom-inner .navbar-nav,
.andro_header-middle .navbar-nav{
  display: flex;
  align-items: center;
  flex-direction: row;
}
.andro_header-bottom-inner .navbar-nav .menu-item,
.andro_header-middle .navbar-nav .menu-item{
  margin: 0;
}
.andro_header-bottom-inner > .navbar-nav > .menu-item > a,
.andro_header-middle .navbar > .navbar-nav > .menu-item > a{
  position: relative;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  display: block;
}
.andro_header-middle .navbar > .navbar-nav > .menu-item > a{
  color: #18181D;
  padding: 30px 20px;
}
.andro_header-bottom-inner > .navbar-nav > .menu-item > a:hover,
.andro_header-middle .navbar > .navbar-nav > .menu-item > a:hover{
  color: #634832;
}
.andro_header-bottom-inner > .navbar-nav > .menu-item:first-child > a,
.andro_header-middle .navbar > .navbar-nav > .menu-item:first-child > a{
  padding-left: 0;
}

.andro_header-bottom-inner .navbar-nav .menu-item-has-children,
.andro_header-middle .navbar-nav .menu-item-has-children{
  position: relative;
}

.andro_header .sub-menu,
.andro_flex-menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: .3s;
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  transform-origin: 0% 0%;
  visibility: hidden;
  z-index: 998;
  min-width: 230px;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
}
.andro_header .sub-menu.sub-menu-left,
.andro_flex-menu .sub-menu.sub-menu-left{
  left: auto;
  right: 0;
}
.andro_header-middle .navbar-nav .menu-item-has-children:hover > .sub-menu,
.andro_header-bottom-inner .navbar-nav .menu-item-has-children:hover > .sub-menu,
.andro_search-adv-cats:hover .sub-menu,
.andro_header-top-links .menu-item-has-children:hover .sub-menu,
.andro_flex-menu .menu-item-has-children:hover .sub-menu{
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.andro_header .sub-menu a,
.andro_flex-menu .sub-menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: #838383;
  font-weight: 400;
  border-bottom: 1px solid #F0F2F3;
}
.andro_header .sub-menu a:hover,
.andro_flex-menu .sub-menu a:hover{
  background-color: #F0F2F3;
}
.andro_header .sub-menu .sub-menu,
.andro_flex-menu .sub-menu .sub-menu{
  top: 0;
  left: 100%;
}
.andro_header .sub-menu .menu-item-has-children > a::after,
.andro_flex-menu .sub-menu .menu-item-has-children > a::after{
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  margin-left: auto;
  font-size: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  color: #838383;
}

.andro_search-adv form{
  display: flex;
}
.andro_search-adv-cats{
  position: relative;
  background-color: #F0F2F3;
  border-radius: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.andro_search-adv-cats label{
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #838383;
  font-weight: 400;
  border-bottom: 1px solid #F0F2F3;
  cursor: pointer;
  margin: 0;
  transition: .3s;
}
.andro_header .sub-menu label:hover{
  background-color: #F0F2F3;
}
.andro_search-adv-cats label input{
  position: absolute;
  opacity: 0;
  visibility: hidden
}
.andro_search-adv-cats label input + i{
  color: #30ca71;
  transition: .3s;
  visibility: hidden;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  font-size: 12px;
}
.andro_search-adv-cats label input:checked + i{
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.andro_search-adv-cats > span{
  color: #18181D;
  font-size: 13px;
  font-weight: 600;
}
.andro_search-adv-input .form-control{
  border-radius: 0;
}
.sidebar-widget .andro_search-adv-input{
  width: 100%;
}
.sidebar-widget .custom-control-label{
  font-weight: 400;
}
.sidebar-widget .andro_search-adv-input .form-control{
  border-radius: 0;
}
.sidebar-widget.widget-search{
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
}
.andro_search-adv-input{
  position: relative;
  width: 400px;
}
.andro_search-adv-input button{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 0;
  color: #838383;
  transition: .3s;
  border-left: 1px solid #F0F2F3;
}
.andro_search-adv-input button:hover{
  background-color: #F0F2F3;
}

.andro_search-adv-cats .sub-menu li,
.andro_search-adv-cats .sub-menu{
  margin: 0;
}

/* Mega Menu */
.navbar-nav .menu-item.mega-menu-wrapper{
  position: static;
}
.navbar-nav .menu-item.mega-menu-wrapper .sub-menu{
  width: 100%;
}
.navbar-nav .menu-item.mega-menu-wrapper .sub-menu li{
  margin: 0;
  padding: 20px;
}
.mega-menu-promotion-wrapper{
  margin-top: 30px;
}
.navbar-nav .mega-menu-promotion{
  text-align: center;
}
.navbar-nav .mega-menu-promotion > a{
  display: block;
  padding: 0;
}
.navbar-nav .mega-menu-promotion img{
  width: 150px;
  margin-bottom: 5px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.navbar-nav .mega-menu-promotion:hover img{
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}
.mega-menu-promotion-text h4{
  margin-bottom: 5px;
  font-size: 18px;
}
.mega-menu-promotion-text span{
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #848486;
}
.navbar-nav .mega-menu-promotion-text h4 a{
  display: block;
  padding: 0;
  color: #18181D;
}
.navbar-nav .mega-menu-promotion-text h4 a:hover{
  color: #ED4E53;
}
.navbar-nav .mega-menu-item h6{
  margin-bottom: 10px;
  font-weight: 700;
}
.navbar-nav .mega-menu-item p{
  padding: 10px 0;
}
.navbar-nav .mega-menu-item a{
  display: block;
  font-weight: 400;
  padding: 10px 0;
}
.navbar-nav .mega-menu-item a:last-child{
  border-bottom: 0;
}
.navbar-nav .mega-menu-item a:hover{
  background-color: transparent;
  color: #634832;
}
.navbar-nav .mega-menu-item .andro_btn-custom{
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
}
.navbar-nav .mega-menu-item .andro_btn-custom:hover{
  color: #fff;
  background-color: #634832;
}
.navbar-nav .mega-menu-item a.coming-soon{
  color: #b7b7b7;
  cursor: default;
}
.navbar-nav .mega-menu-item a.coming-soon span{
  margin-left: 5px;
  font-size: 12px;
}

/* Mobile sidenav */
.aside-toggler{
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}
.aside-toggler.desktop-toggler{
  display: flex;
  height: 65px;
  width: 65px;
  align-items: center;
  justify-content: center;
  background-color: #634832;
  transition: .3s;
}
.aside-toggler.desktop-toggler span{
  background-color: #fff;
}
.aside-toggler.desktop-toggler:hover{
  background-color: #634832;
}
.aside-toggler span {
  display: block;
  margin-bottom: 4px;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #18181D;
  transition: .3s;
  transform-origin: right;
}
.aside-toggler span:nth-child(3){
  margin-bottom: 0;
}
.andro_aside{
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  transition: .3s;
  overflow: auto;
}
.andro_aside-overlay.aside-trigger-left,
.andro_aside.andro_aside-left{
  display: none;
}
.andro_aside.andro_aside-right{
  left: auto;
  right: -400px;
  padding: 30px;
  width: 400px;
}
.andro_aside.andro_aside-right::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/products/14.png');
  opacity: .3;
  z-index: -1;
  background-position: 0 130%;
  background-repeat: no-repeat;

}
.andro_aside.andro_aside-right .sidebar{
  display: none;
}
.andro_aside.open{
  left: 0;
}
.andro_aside.andro_aside-right.open{
  left: auto;
  right: 0;
}
.andro_aside.open + .andro_aside-overlay{
  opacity: 1;
  visibility: visible;
}
.andro_aside-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: rgba(0,0,0,.7);
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.andro_aside ul{
  margin: 0;
}
.andro_aside ul .menu-item {
  margin: 0;
}
.andro_aside ul .menu-item a{
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #18181D;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.andro_aside ul .menu-item a:hover,
.andro_aside ul .menu-item a.active{
  color: #634832;
}
.andro_aside ul .menu-item.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  margin-left: auto;
  font-size: 10px;
}
.andro_aside ul .menu-item .sub-menu{
  display: none;
  background-color: #F0F2F3;
}
.andro_aside .navbar-brand{
  padding: 10px 15px;
  display: block;
  width: 200px;
  margin: 0;
}

.andro_aside.andro_aside-right .sidebar-widget .widget-title{
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
  font-size: 18px;
}
.andro_aside.andro_aside-right .sidebar-widget.widget-categories-icons + .sidebar-widget{
  margin-top: 0;
}
.andro_aside.andro_aside-right .sidebar-widget .widget-title::after{
  display: none;
}

/* -- Aside trigger Hover sequence -- */
.aside-toggler:hover span{
  margin: 0;
}
.aside-toggler:hover span:nth-child(1){
  width: 10px;
  transform: rotate(45deg) translate(7px, -3px);
}
.aside-toggler:hover span:nth-child(3){
  width: 10px;
  transform: rotate(-45deg) translate(7px, 3px);
}

/* 2.1. Header Style 2 */
.andro_header.header-2 .andro_header-middle .navbar{
  padding: 0;
}
.andro_header.header-2 .andro_header-bottom-inner .andro_search-adv{
  height: 65px;
}
.andro_header.header-2 .andro_header-bottom-inner .andro_search-adv form,
.andro_header.header-2 .andro_search-adv-input .form-control,
.andro_header.header-2 .andro_search-adv-input button,
.andro_header.header-2 .andro_search-adv-cats{
  height: 100%;
  border-radius: 0;
}
.andro_header.header-2 .andro_header-bottom{
  background-color: #fff;
  border-top: 1px solid #F0F2F3;
}

/* 2.2. Header Style 3 */
.andro_header.header-3 .andro_header-bottom-inner .navbar-nav{
  margin-right: auto;
}
.andro_header.header-3 .andro_header-bottom-inner > .navbar-nav > .menu-item:first-child > a{
  padding: 20px;
}
.andro_header.header-3 .andro_category-mm{
  height: 65px;
  width: 250px;
}
.andro_header.header-3 .andro_category-mm .andro_category-mm-header{
  height: 100%;
  border-radius: 0;
  cursor: pointer;
  transition: .3s;
}
.andro_header.header-3 .andro_category-mm .andro_category-mm-header:hover{
  background-color: #634832;
}
.andro_header.header-3 .andro_category-mm .andro_category-mm-header h6{
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.andro_header.header-3 .andro_category-mm .andro_category-mm-header h6::after{
  color: #f1f1f1;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  margin-left: auto;
  font-size: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.andro_header.header-3 .andro_category-mm-body{
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  z-index: 99;
  min-width: 250px;
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-75deg);
  transform: rotateX(-75deg);
  transform-origin: 0% 0%;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.andro_header.header-3 .andro_category-mm.open .andro_category-mm-body{
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.andro_header.header-3 .andro_category-mm.open .andro_category-mm-header h6::after{
  transform: rotate(180deg);
}
/*======================
3. Footer
========================*/
.andro_footer {
  background-color: #F0F2F3;
  padding: 50px 0 0;
}
.andro_footer p{
  margin-bottom: 20px;
  color: #515151;
}
.andro_footer-top{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.andro_footer-middle a,
.andro_footer-middle i{
  color: #515151;
}
.andro_footer-middle a:hover{
  color: #634832;
}
.andro_footer-middle a.andro_btn-custom,
.andro_footer-middle a.andro_btn-custom:hover{
  color: #fff;
}
.andro_footer-bottom ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  margin-bottom: 20px;
}
.andro_footer-bottom ul li{
  margin: 0;
}
.andro_footer-bottom ul li a{
  padding-right: 20px;
  color: #515151;
}
.andro_footer-bottom ul li a:hover{
  color: #634832;
}
.andro_footer-bottom .andro_footer-copyright{
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.andro_footer-bottom .andro_footer-copyright p{
  margin: 0;
}
.andro_footer-bottom .andro_footer-copyright > a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #18181D;
  font-size: 14px;
  font-weight: 600;
}
.andro_footer-bottom .andro_footer-copyright > a:hover{
  color: #634832;
}
.andro_footer-bottom .andro_footer-copyright > a i{
  width: 30px;
  height: 30px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4e4e4e;
  color: #fff;
  margin-left: 20px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.andro_footer-bottom .andro_footer-copyright > a:hover i{
  background-color: #634832;
  color: #fff;
}
.footer-widget {
  padding-bottom: 50px;
}
.andro_footer-buttons a{
  display: inline-block;
  width: 150px;
}
.footer-widget .widget-title{
  margin-bottom: 20px;
  font-weight: 700;
}
.andro_footer-logo{
  width: 180px;
}
.footer-widget ul {
  margin: 0;
}
.footer-widget ul li + li{
  margin: 10px 0 0;
}
.footer-widget ul li a {
  position: relative;
  display: block;
  -webkit-transform: translateX(-15px);
      -ms-transform: translateX(-15px);
          transform: translateX(-15px);
}
.footer-widget ul li a::before{
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  margin-left: auto;
  font-size: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  color: #634832;
  padding-right: 10px;
}
.footer-widget ul li a i{
  font-weight: 400;
}
.footer-widget ul li a:hover{
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.footer-widget ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.footer-widget ul.social-media li {
  display: inline-block;
  margin-top: 0;
}
.footer-widget ul.social-media li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
  margin-bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 18px;
  border: 0;
  color: #fff;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-widget ul.social-media li a::before{
  display: none;
}
.footer-widget ul.social-media li a i{
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer-widget ul.social-media li a:hover i{
  color: #fff;
}
.andro_footer-offer{
  margin-top: 15px;
}
.andro_footer .footer-widget .andro_footer-offer {
    margin-top: 0;
}
.andro_footer-offer p{
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}
.andro_footer-offer .btn-custom,
.andro_footer-offer .btn-custom:hover{
  color: #fff;
}
.andro_instagram{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.andro_ig-item{
  display: block;
  overflow: hidden;
}
.andro_ig-item:hover img{
  transform: scale(1.1);
}
.andro_ig-item img{
  transition: .3s;
}

/* Dark Footer */
.andro_footer.andro_footer-dark{
  background-color: #18181D;
}
.andro_footer.andro_footer-dark p,
.andro_footer.andro_footer-dark .footer-widget ul li a::before,
.andro_footer.andro_footer-dark .andro_footer-bottom ul li a:hover,
.andro_footer.andro_footer-dark .footer-widget ul li a:hover,
.andro_footer.andro_footer-dark .andro_footer-bottom .andro_footer-copyright > a,
.andro_footer.andro_footer-dark .footer-widget .widget-title{
  color: #fff;
}

.andro_footer.andro_footer-dark .andro_footer-bottom ul li a,
.andro_footer.andro_footer-dark .footer-widget ul li a{
  color: #b7b7b7;
}
.andro_footer.andro_footer-dark .andro_footer-bottom ul{
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/*======================
5. Subheader
========================*/
.andro_subheader{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.andro_subheader-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
.andro_subheader h1{
  font-size: 30px;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.andro_subheader .breadcrumb{
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.andro_subheader .breadcrumb li{
  margin: 0;
  color: #f1f1f1;
}
.andro_subheader .breadcrumb li a{
  color: #f1f1f1;
  font-weight: 700;
}
.andro_subheader .breadcrumb li a:hover{
  color: #fff;
}
.andro_subheader .breadcrumb .breadcrumb-item.active{
  color: #fff;
}
.andro_subheader .breadcrumb-item+.breadcrumb-item::before{
  color: #f1f1f1;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  margin-left: auto;
  font-size: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/*======================
6. Components
========================*/

/* 6.1. Blog Posts */
.andro_post{
  position: relative;
  margin-bottom: 30px;
}
.andro_post .andro_post-thumb a,
.gallery-thumb{
  position: relative;
  display: block;
  overflow: hidden;
}
.andro_post .andro_post-thumb a::before,
.gallery-thumb::before{
  content: '';
  position: absolute;
  left: 0;
  top: -50%;
  width: 10%;
  height: 190%;
  background-color: rgba(255,255,255,.2);
  transition: .3s ease-in;
  opacity: 0;
  visibility: hidden;
  transform: rotate(45deg);
}

.andro_post .andro_post-thumb a:hover::before,
.gallery-thumb:hover::before{
  opacity: 1;
  visibility: visible;
  left: 190%;
}
.andro_post .andro_post-thumb a,
.andro_post .andro_post-thumb a img{
  border-radius: 0;
}
.andro_post .andro_post-categories{
  margin: 0 0 17px;
}
.andro_post .andro_post-categories a{
  background-color: rgba(99,72,50, .25);
  display: inline-block;
  padding: 5px 8px;
  color: #634832;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 0;
  font-weight: 600;
  margin: 0 3px 3px 0;
}
.andro_post .andro_post-categories a:hover{
  background-color: #634832;
  color: #fff;
}
.andro_post .andro_post-body{
  padding: 20px;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border-radius: 0 0 8px 8px;
}
.andro_post .andro_post-body h5{
  margin: 0 0 15px;
  word-break: break-word;
}
.andro_post .andro_post-body h5 a{
  color: #18181D;
}
.andro_post .andro_post-body h5 a:hover,
.andro_post .andro_post-body .andro_post-desc > span a:hover{
  color: #634832;
}
.andro_post .andro_post-body .andro_post-desc > span{
  display: block;
  color: #18181D;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.andro_post .andro_post-body .andro_post-desc > span a{
  color: #18181D;
  text-decoration: underline;
}
.andro_post .andro_post-body .andro_post-desc p{
  margin-bottom: 20px;
}

/* 6.1.1. Blog Posts list */
.andro_post.andro_post-list{
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border-radius: 0;
}
.andro_post.andro_post-list .andro_post-body{
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  padding: 0 20px;
}
.andro_post.andro_post-list .andro_post-body,
.andro_post.andro_post-list .andro_post-thumb{
  flex: 1;
}
.andro_post.andro_post-list .andro_post-thumb a,
.andro_post.andro_post-list .andro_post-thumb a img{
  border-radius: 0;
}

/* 6.1.2. Blog Post Details */
.comment-form{
  margin-bottom: 50px;
}
.comments-list ul{
  margin: 0;
}
.comments-list .comment-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.comments-list .comment-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.comments-list .comment-item img {
  width: 65px;
  margin-right: 20px;
  border-radius: 0;
}
.comments-list .comment-item .comment-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.comments-list .comment-item h5 {
  margin-bottom: 15px;
  font-size: 18px;
}
.comments-list .comment-item span {
  display: inline-block;
  margin-bottom: 15px;
  color: #848486;
  font-size: 13px;
  line-height: 21px;
  position: absolute;
  top: 4px;
  right: 0;
}
.comments-list .comment-item p {
  margin-bottom: 15px;
}
.reply-link {
  position: relative;
  color: #18181D;
  font-weight: 600;
}

.andro_post-single .andro_post-share{
  margin-top: 50px;
}
.andro_post-single-thumb img{
  margin-bottom: 30px;
}
.andro_post-single-author{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.andro_post-single-author img{
  width: 45px;
  border-radius: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
.andro_post-single-author-content p{
  font-weight: 600;
  color: #18181D;
  margin-bottom: 0;
}
.andro_post-single-author-content span{
  font-size: 13px;
}
.andro_post-single-meta{
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.andro_post-single-meta-item{
  flex: 1;
}
.andro_post-share .andro_sm li + li{
  margin-left: 10px;
}
.andro_post-share .andro_sm li a{
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  background-color: #fff;
}
.andro_post-share .andro_sm li a i{
  color: #838383;
}
.andro_post-share .andro_sm li a:hover{
  background-color: #F0F2F3;
}
.andro_single-pagination{
  margin: 30px 0;
}
.andro_single-pagination-item + .andro_single-pagination-item{
  margin-top: 10px;
}
.andro_single-pagination-thumb{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  background-color: #fff;
  border-radius: 15px;
  margin-right: 10px;
}
.andro_single-pagination a{
  display: flex;
  align-items: center;
}
.andro_single-pagination a h6{
  margin: 0;
  font-size: 14px;
}
.andro_single-pagination a img{
  max-width: 40px;
}
.andro_single-pagination-prev,
.andro_single-pagination-next{
  padding: 10px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  transition: .3s;
}
.andro_single-pagination-prev:hover,
.andro_single-pagination-next:hover{
  background-color: #F0F2F3;
}
.andro_single-pagination i{
  color: #838383;
  margin-left: auto;
  margin-right: 20px;
  transition: .3s;
}
.andro_single-pagination-prev:hover i{
  transform: translateX(-3px);
}
.andro_single-pagination-next:hover i{
  transform: translateX(3px);
}

/* 6.2. Sidebar */
.sidebar-widget + .sidebar-widget{
  margin-top: 30px;
}
.sidebar-widget .widget-title{
  position: relative;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 3px solid #F0F2F3;
}
.sidebar-widget .widget-title::after{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #634832;
}

.sidebar-widget ul.sidebar-widget-list{
  margin: 0;
  padding: 0;
}
.sidebar-widget ul.sidebar-widget-list ul{
  padding-left: 20px;
}
.sidebar-widget ul.sidebar-widget-list li{
  margin: 0;
}
.sidebar-widget ul.sidebar-widget-list li ul li:first-child{
  margin-top: 20px;
}
.sidebar-widget ul.sidebar-widget-list li + li{
  margin-top: 20px;
}
.sidebar-widget ul.sidebar-widget-list li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #838383;
}
.sidebar-widget ul.sidebar-widget-list li a:hover{
  color: #634832;
}
.widget-about-author{
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border: 1px solid #F0F2F3;
  border-radius: 0;
}
.widget-about-author-inner{
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
  text-align: center;
}
.widget-about-author-inner img{
  border-radius: 0;
  width: 100px;
  margin: 0 auto 20px;
}
.widget-about-author-inner h5{
  margin-bottom: 10px;
}
.widget-about-author .andro_sm{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
.widget-about-author .andro_sm li + li{
  margin: 0;
}
.widget-about-author .andro_sm li{
  flex: 1;
}
.widget-about-author .andro_sm li:first-child a{
  border-radius: 0 0 0 8px;
}
.widget-about-author .andro_sm li:last-child a{
  border-radius: 0 0 8px 0;
}
.widget-about-author .andro_sm li a{
  background-color: #F0F2F3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #838383;
}
.widget-about-author .andro_sm li a:hover{
  background-color: #38220F;
  color: #fff;
}

.widget-recent-posts .post > a{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 10px;
}
.widget-recent-posts .post > a img{
  transition: .3s;
  border-radius: 0;
}
.widget-recent-posts .post > a img:hover{
  transform: scale(1.1) rotate(2deg);
}
.widget-recent-posts .post h6{
  margin-bottom: 10px;
}
.widget-recent-posts .post h6 a{
  color: #18181D;
}
.widget-recent-posts .post h6 a:hover,
.widget-recent-posts .post span a:hover{
  color: #634832;
}
.widget-recent-posts .post span{
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
  color: #18181D;
}
.widget-recent-posts .post span a{
  font-weight: 400;
  text-decoration: underline;
  color: #18181D;
}
.widget-recent-posts .post + .post{
  margin-top: 30px;
}

.tags a,
.tagcloud a,
.entry-content .wp-block-tag-cloud a{
  display: inline-block;
  font-size: 13px;
  padding: 3px 12px;
  color: #848486;
  border: 1px solid #F0F2F3;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #fff;
  margin: 6px 6px 0 0;
  border-radius: 0;
}
.tags a:hover,
.tagcloud a:hover,
.entry-content .wp-block-tag-cloud a:hover{
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #848486;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.andro_newsletter-form{
  position: relative;
  background-color: #F0F2F3;
  padding: 20px;
  border-radius: 0;
}
.andro_newsletter-form.primary-bg{
  background-color: #634832;
}
.andro_newsletter-form h5{
  margin-bottom: 15px;
  color: #fff;
}

.deals-slider .slick-dots{
  justify-content: center;
  margin: 10px 0 0;
}
.deals-slider .andro_product:hover .andro_countdown-timer{
  background-color: #F0F2F3;
}

.andro_countdown-timer{
  text-align: center;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  padding: 10px;
  font-weight: 600;
  margin: 20px 0 0;
  transition: .3s;
}

/* 6.3. Products */
.andro_product{
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border-radius: 0;
  margin-bottom: 30px;
}
.andro_product .andro_product-thumb{
  margin: 0 0 20px;
  overflow: hidden;
}
.andro_product .andro_product-thumb.thumb-sm{
  max-width: 200px;
  margin: 0 auto 20px;
}
.andro_product .andro_product-thumb img{
  transition: .3s;
}
.andro_product .andro_product-thumb:hover img{
  transform: scale(1.1) rotate(1deg);
}
.andro_product .andro_product-body h5{
  margin: 0 0 15px;
  word-break: break-word;
}
.andro_product .andro_product-body .andro_product-title a{
  color: #18181D;
}
.andro_product .andro_product-body .andro_product-title a:hover{
  color: #634832;
}
.andro_product .andro_badge-featured{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #38220F;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 13px;
  padding: 3px 12px;
}
.andro_product .andro_badge-featured i{
  margin-right: 5px;
  display: inline-block;
}
.andro_product .andro_badge-sale{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background-color: #5d5d5d;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
}
.andro_product .andro_rating-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_product .andro_rating-wrapper span{
  font-weight: 600;
}
.andro_product .andro_product-footer{
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #F0F2F3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_product-price span{
  display: block;
}
.andro_product-price span:first-child{
  font-size: 18px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  color: #18181D;
  font-weight: 700;
}
.andro_product-price span + span{
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #634832;
  font-weight: 700;
  text-decoration: line-through;
}
.andro_product.andro_product-has-controls .andro_product-body .andro_product-price{
  margin-bottom: 10px;
}
.andro_product.andro_product-has-controls .andro_product-body .andro_product-price span{
  display: inline-block;
}
.andro_product.andro_product-has-controls .andro_product-body .andro_product-price span:first-child{
  font-size: 16px;
}
.andro_product.andro_product-has-controls .andro_product-body .andro_product-price span + span{
  margin-left: 5px;
}
.andro_product.andro_product-has-buttons .andro_product-footer{
  border-top: 0;
  padding: 0;
  margin: 20px -20px -20px -20px;
}
.andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons a{
  flex: 1;
  box-shadow: none;
}
.andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons a{
  border-radius: 0;
}
.andro_product-stock{
  font-weight: normal;
}
.andro_product-stock.instock{
  color: #58da58;
}
.andro_product-stock.outofstock{
  color: #f54978;
}

.andro_product .andro_rating{
  margin-bottom: 0;
}
.andro_product-controls{
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.andro_product-controls a{
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #F0F2F3;
}
.andro_product-controls a i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}
.andro_product-controls a:hover{
  background-color: #634832;
  color: #fff;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
}

/* 6.3.1 Products (List View) */
.andro_product.andro_product-list{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.andro_product.andro_product-list .andro_product-thumb{
  width: 125px;
  margin-right: 15px;
}
.andro_product.andro_product-list  .andro_product-body{
  flex: 1;
}
.andro_product.andro_product-list  .andro_product-footer{
  padding-top: 0;
  border-top: 0;
}
.andro_product.andro_product-list .andro_rating-wrapper{
  margin-bottom: 10px;
}
.andro_product.andro_product-list .andro_product-controls{
  justify-content: space-between;
}
.andro_product.andro_product-list.andro_product-has-buttons .andro_product-footer{
  width: calc(100% + 40px);
}
.andro_product.andro_product-list.andro_product-has-buttons .andro_product-footer{
  margin: 10px -20px -20px -20px;
}

/* 6.3.2 Products (Minimal View) */
.andro_product.andro_product-minimal{
  text-align: center;
}
.andro_product.andro_product-minimal .andro_product-title{
  margin-bottom: 10px;
  font-size: 16px;
}
.andro_product.andro_product-minimal .andro_product-footer{
  border: 0;
  padding-top: 0;
  margin-top: 5px;
  display: block;
  text-align: center;
}
.andro_product.andro_product-minimal .andro_product-price{
  margin: 15px 0;
}
.andro_product.andro_product-minimal .andro_product-price span{
  font-size: 14px;
  display: inline-block;
  line-height: 1.7;
}
.andro_product.andro_product-minimal .andro_product-price span + span{
  margin-left: 5px;
  font-size: 13px;
}
.andro_product.andro_product-minimal .andro_rating-wrapper{
  justify-content: center;
}
.andro_product.andro_product-minimal.andro_product-has-buttons .andro_product-footer .andro_product-buttons{
  margin-top: 20px;
}

.andro_shop-global{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 0;
  border: 1px solid #F0F2F3;
  background-color: #fff;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
}
.andro_shop-global p{
  margin-bottom: 0;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single,
.irs--flat .irs-bar,
.irs--flat .irs-handle>i:first-child{
  background-color: #38220F;
}
.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before{
  border-top-color: #38220F;
}
.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child{
  background-color: #383838;
}

/* 6.3.3 Products Quick View & Details */
.andro_quick-view-modal .andro_product-single-content{
  padding: 0 40px;
}
.andro_quick-view-modal .close-btn{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}
.andro_product-single-content .andro_rating-wrapper{
  margin-bottom: 0;
}
.andro_product-single-content .andro_product-excerpt,
.andro_product-single-content .andro_product-variation-wrapper{
  margin-bottom: 25px;
}
.andro_product-single-content .andro_product-price{
  margin-bottom: 20px;
}
.andro_product-single-content .andro_product-price span:first-child{
  font-size: 22px;
}
.andro_product-single-content .andro_product-price span{
  display: inline-block;
}
.andro_product-single-content .andro_product-price span + span{
  margin-left: 10px;
}

.andro_product-atc-form .qty-outter{
  display: flex;
  align-items: center;
}
.andro_product-atc-form .qty-outter .andro_btn-custom + .qty{
  margin-left: 20px;
}
.qty{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qty input {
  background-color: #fff;
  border: 0;
  outline: none;
  width: 50px;
  height: 50px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #F0F2F3;
}
.qty span.qty-subtract {
  border-right: 0;
  border-radius: 0;
}
.qty span.qty-add {
  border-left: 0;
  border-radius: 0;
}
.qty span:hover {
  background-color: #F0F2F3;
}
.qty span {
  cursor: pointer;
  width: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  font-size: 13px;
  background-color: #fff;
  transition: .3s;
}

.andro_product-additional-info .nav{
  flex-direction: column;
}
.andro_product-additional-info .nav-link{
  margin: 0;
  border-radius: 0;
}
.andro_product-additional-info .nav-item + .nav-item .nav-link{
  margin-top: 10px;
}
.andro_product-additional-info .tab-content{
  padding: 40px;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  border-radius: 0;
  z-index: 1;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  margin-top: 0;
}
.andro_product-additional-info .tab-content table{
  margin: 0;
}
.andro_product-additional-info .andro_rating-wrapper,
.andro_product-additional-info .comment-body .andro_rating{
  margin-bottom: 20px;
}
.andro_product-additional-info .comment-form {
  margin-bottom: 50px;
}

.andro_product-single-controls{
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_product-single-controls .andro_add-to-favorite{
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  margin: 0 10px 0 0;
}
.andro_product-single-controls .andro_add-to-favorite:hover{
  background-color: #F0F2F3;
}
.andro_product-single-controls .andro_add-to-favorite i{
  font-size: 21px;
  color: #838383;
}

.andro_product-meta{
  margin: 20px 0 0;
}
.andro_product-single-2 .andro_product-meta{
  margin: 20px 0 30px;
}
.andro_product-meta li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.andro_product-meta li > span{
  font-weight: 600;
  color: #18181D;
  width: 120px;
}
.andro_product-meta li .andro_product-meta-item span,
.andro_product-meta li a{
  color: #838383;
}
.andro_product-meta li a:hover{
  color: #634832;
}

.andro_product-single-thumb,
.andro_product-single-zoom > img{
  background-color: #fff;
}

/* 6.3.4. Cart & Wishlist */
td.remove{
  width: 30px;
}
.andro_cart-product-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.andro_cart-product-wrapper img {
  width: 50px;
  margin-right: 15px;
}
.andro_cart-product-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.andro_cart-product-wrapper h6{
  margin-bottom: 0;
  font-size: 14px;
}
.andro_cart-product-wrapper h6 a{
  color: #18181D;
}
.andro_cart-product-wrapper h6 a:hover{
  color: #634832;
}
.andro_cart-product-wrapper p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 21px;
  color: #848486;
}

/* 6.3.5. Checkout */
.andro_notice {
  background-color: #F0F2F3;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 0;
}
.andro_notice p {
  margin: 0;
  font-weight: 600;
}
.andro_notice p a:hover {
  text-decoration: underline;
}
.andro_notice-content {
  margin-bottom: 30px;
  display: none;
}

/* 6.3.6 Products (Recent View) */
.andro_product-recent{
  position: relative;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border-radius: 0;
  transition: .3s;
}
.andro_product-recent:hover{
  background-color: #F0F2F3;
}
.andro_product-recent .andro_product-recent-thumb{
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}
.andro_product-recent + .andro_product-recent{
  margin-top: 10px;
}
.andro_product-recent img{
  width: 75px;
  margin-right: 10px;
}

.andro_product-recent-content .andro_product-price span{
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
.andro_product-recent-content .andro_product-price span + span{
  margin-left: 5px;
}
.andro_product-recent-content h6{
  margin-bottom: 5px;
  font-weight: 600;
}
.andro_product-recent button{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  margin-left: auto;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
  height: 40px;
}

/* 6.4. Categories Megamenu */
.andro_category-mm{
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
}
.andro_category-mm-header{
  background-color: #634832;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 15px 20px;
}
.andro_category-mm-header h6{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.andro_category-mm-header i{
  color: #fff;
  width: 20px;
  font-size: 12px;
}
.andro_category-mm-body{
  position: relative;
  background-color: #fff;
  border: 1px solid #F0F2F3;
  border-radius: 0 0 8px 8px;
}
.andro_category-mm-body ul{
  margin: 0;
}
.andro_category-mm-body .andro_category-mm-item-has-children > a::after{
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-left: auto;
  font-size: 11px;
  transition: transform .3s;
}
.andro_category-mm-body .andro_category-mm-item-has-children > a:hover::after{
  transform: translateX(3px);
}
.andro_category-mm-body .andro_category-mm-item-has-children > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.andro_category-mm-body .andro_category-mm-item.andro_category-mm-item-expand{
  position: static;
}
.andro_category-mm-body .andro_category-mm-item.andro_category-mm-item-expand > ul{
  height: 100%;
  border-radius: 0;
}
.andro_category-mm-body ul li{
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 20px 10px 20px;
}
.andro_category-mm-body > ul > li:last-child{
  padding: 10px 20px 20px 20px;
}
.andro_category-mm-body ul li + li{
  padding: 10px 20px;
}
.andro_category-mm-body > ul > li > ul{
  position: absolute;
  top: 0;
  left: 95%;
  transition: .3s;
  background-color: red;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  background-color: #fff;
  border: 1px solid #F0F2F3;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  width: 100%;
  border-radius: 0;
}
.andro_category-mm-body > ul > li > ul.andro_category-mm-2-cols{
  min-width: 400px;
}
.andro_category-mm-body > ul > li > ul.andro_category-mm-1-cols{
  min-width: 200px;
}
.andro_category-mm-body > ul > li:hover > ul{
  opacity: 1;
  visibility: visible;
  left: 100%;
}
.andro_category-mm-body ul li a{
  color: #18181D;
  display: block;
}
.andro_category-mm-body ul li a i{
  width: 20px;
  font-size: 12px;
}
.andro_category-mm-body ul li a:hover{
  color: #634832;
}
.andro_category-mm-body > ul > li > ul > li{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0;
}
.andro_category-mm-body > ul > li > ul > li ul li:last-child{
  padding: 10px 20px 20px 20px;
}
.andro_category-mm-body > ul > li > ul > li img{
  display: block;
  width: 100%;
  flex: 0 100%;
  border-radius: 0;
}
.andro_category-mm-banner{
  position: relative;
  z-index: 1;
  width: 100%;
}
.andro_category-mm-banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.andro_category-mm-banner-desc{
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
}
.andro_category-mm-banner-desc h6,
.andro_category-mm-banner-desc p{
  margin-bottom: 0;
  color: #fff;
}

/* 6.5. Banners */
.andro_banner .slick-track,
.andro_banner .slick-slide{
  margin: 0;
}
.andro_banner{
  padding: 15px 40px;
  background-color: #F0F2F3;
  border-radius: 0;
}
.andro_banner h1{
  font-size: 32px;
}
.andro_banner p:first-child{
  margin-bottom: 10px;
}
.andro_banner p{
  margin-bottom: 20px;
}
.andro_banner-slider .slick-track{
  padding: 10px 0;
}
.andro_flex-menu > ul{
  display: flex;
  margin: 0;
  align-items: center;
}
.andro_flex-menu ul li{
  margin: 0;
}
.andro_flex-menu > ul > li > a{
  padding: 0 10px 20px 10px;
  display: block;
  font-weight: 600;
  color: #18181D;
}
.andro_flex-menu > ul > li > a:hover{
  color: #634832;
}
.andro_flex-menu > ul > li:first-child > a{
  padding-left: 0;
}
.andro_banner .slick-dots{
  padding: 0 0 10px;
}
.andro_banner .slick-dots li button{
  background-color: #fff;
}
.andro_banner .slick-dots li.slick-active button{
  background-color: #634832;
}


/* Style 2 */
.banner-2.andro_banner,
.banner-2.andro_banner .slick-track{
  padding: 0;
}
.banner-2.andro_banner .andro_banner-slider-inner{
  padding: 120px 15px 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-2.andro_banner .andro_banner-slider-text{
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  overflow: hidden;
  position: relative;
}
.banner-2.andro_banner .andro_banner-slider-text img.img-1{
  position: absolute;
  bottom: -40px;
  right: -70px;
  width: 210px;
}
.banner-2.andro_banner .andro_banner-slider-text p:first-child{
  margin-bottom: 10px;
}
.banner-2.andro_banner .andro_banner-slider-text p{
  max-width: 500px;
  margin: 0 auto 20px;
}
.banner-2.andro_banner .andro_banner-slider-text h1{
  text-transform: uppercase;
  font-size: 64px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #fff;  /* Fallback: assume this color ON TOP of image */
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-2.andro_banner .slick-track,
.banner-3.andro_banner .slick-track{
  display: flex;
}
.banner-2.andro_banner .slick-slide,
.banner-3.andro_banner .slick-slide{
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}


/* Style 3 */
.banner-3.andro_banner{
  position: relative;
  padding: 60px 0 30px;
  background-color: #fff;
  background-image: url('../img/banner.png');
  background-position: -110px 0;
}
.banner-3.andro_banner > img{
  position: absolute;
  top: 0;
  right: 0;
}

/* 6.6. Icon Blocks */
.andro_icon-block{
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #F0F2F3;
  background-color: #fff;
  border-radius: 0;
  z-index: 1;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  transition: .3s;
}
.andro_icon-block i{
  font-size: 40px;
  line-height: 1;
  margin: 0 0 15px;
  color: #838383;
  display: inline-block;
}
.andro_icon-block.has-link:hover{
  background-color: #F0F2F3;
}
.andro_icon-block a{
  display: block;
}
.andro_icon-block a h5{
  font-size: 14px;
}
.andro_icon-block h5{
  font-size: 18px;
  margin-bottom: 0;
}
.andro_icon-block h5 + p{
  margin-top: 10px;
}
.andro_icon-block p{
  margin-bottom: 0;
}
.andro_icon-block svg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.andro_icon-block .andro_svg-stroke-shape-anim{
  stroke-dasharray: 100 1000;
  stroke-dashoffset: -620;
  stroke: #634832;
  stroke-width: 5px;
  fill: transparent;
  -webkit-transition: stroke-width 1s,stroke-dashoffset 1s,stroke-dasharray 1s;
  transition: stroke-width 1s,stroke-dashoffset 1s,stroke-dasharray 1s;
  width: 100%;
  height: 100%;
}
.andro_icon-block:hover .andro_svg-stroke-shape-anim{
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke-dasharray: 1110;
}

/* Style 2 */
.andro_icon-block.icon-block-2{
  padding: 0;
  background-color: #fff;
  border: 0;
  box-shadow: none;
}
.andro_icon-block.icon-block-2 i{
  color: #634832;
}

/* 6.7. Call to Actions */
.andro_cta-notice{
  padding: 40px;
  border-radius: 0;
}
.andro_cta-notice-inner{
  max-width: 600px;
}
.andro_cta-notice-inner p{
  margin-bottom: 25px;
}

.andro_cta{
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  border-radius: 0;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  overflow: hidden;
}
.andro_cta::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  border-radius: 0;
  transition: .3s;
}
.andro_cta:hover::before{
  background-color: rgba(0,0,0,.3);
}
.andro_cta img{
  border-radius: 0;
  width: 100%;
}

.andro_cta-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.andro_cta-content h4{
  margin-bottom: 10px;
}
.andro_cta-content p{
  margin-bottom: 30px;
  max-width: 350px;
}

.fresh_arrivals-bg{
  padding: 40px 40px 240px 40px;
}
.fresh_arrivals-section{
  margin-top: -200px;
  display: block;
  position: relative;
  z-index: 3;
}
.fresh_arrivals-section .section-title .title{
  color: #fff;
}
.fresh_arrivals-section .section-title{
  border-bottom: 0;
  padding: 0;
}
.fresh_arrivals-section .section-title::after{
  display: none;
}
/* 6.8. Login & Signup */
.andro_auth-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 3px 12px -4px rgba(0,0,0,.1);
          box-shadow: 0 3px 12px -4px rgba(0,0,0,.1);
}
.andro_auth-description{
  width: 600px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.andro_auth-description-inner{
  text-align: center;
  max-width: 400px;
}
.andro_auth-description-inner h2{
  margin: 0;
  color: #fff;
}
.andro_auth-description-inner p{
  margin: 30px 0;
  color: #fff;
}
.andro_auth-description-inner i{
  color: #fff;
  line-height: 1;
  font-size: 40px;
  margin-bottom: 30px;
  display: block;
}
.andro_social-login{
  margin-bottom: 20px;
}
.andro_social-login + p a{
  display: inline-block;
}
.andro_auth-form{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F0F2F3;
  padding: 60px;
  text-align: center;
}
.andro_auth-form h2{
  margin-bottom: 50px;
}
.andro_auth-form form{
  max-width: 400px;
  margin: 0 auto;
}
.andro_auth-form .andro_btn-custom{
  margin-top: 20px;
}
.andro_auth-form a{
  display: block;
  color: #18181D;
  text-decoration: underline;
}
.andro_auth-seperator{
  margin: 30px 0;
  text-align: center;
}
.andro_auth-seperator span{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9F9E9E;
  font-size: 13px;
  font-weight: 500;
}
.andro_auth-seperator span::before{
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-right: 20px;
}
.andro_auth-seperator span::after{
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-left: 20px;
}
.andro_social-login-btn{
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 24px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 0;
}
.andro_social-login-btn i{
  margin-right: 5px;
}
.andro_auth-mini{
  background-color: #F0F2F3;
  padding: 20px;
  border-radius: 0;
}
.andro_auth-mini h5{
  margin-bottom: 15px;
}
.andro_auth-mini a{
  display: block;
  color: #18181D;
  text-decoration: underline;
}
.andro_auth-mini a:hover{
  color: #634832;
}

/* 6.9. Error 404 */
.andro_404-container{
  text-align: center;
}
.andro_404-container img{
  margin-bottom: 30px;
}
.andro_404-container p{
  max-width: 500px;
  margin: 0 auto 20px;;
}

/* 6.10. Testimonials */
.andro_testimonials .slick-dots{
  justify-content: center;
  margin: 10px 0 0;
}
.andro_testimonials-inner{
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border: 1px solid #F0F2F3;
  border-radius: 0;
}
.andro_testimonials-inner::before{
  content: '\f113';
  font-family: flaticon;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  line-height: 1;
  opacity: .3;
}
.andro_testimonials-inner img{
  border-radius: 0;
  width: 100px;
  margin: 0 auto 20px;
}
.andro_testimonials-inner span{
  display: block;
  margin: 0 0 10px;
  font-weight: 600;
}
.andro_testimonials-inner p{
  margin: 0;
}
.andro_testimonials-inner h5{
  margin-bottom: 10px;
}
.andro_testimonials .andro_sm{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
.andro_testimonials .andro_sm li + li{
  margin: 0;
}
.andro_testimonials .andro_sm li{
  flex: 1;
}
.andro_testimonials .andro_sm li:first-child a{
  border-radius: 0 0 0 8px;
}
.andro_testimonials .andro_sm li:last-child a{
  border-radius: 0 0 8px 0;
}
.andro_testimonials .andro_sm li a{
  background-color: #F0F2F3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #838383;
}
.andro_testimonials .andro_sm li a:hover{
  background-color: #38220F;
  color: #fff;
}

/* Style 2 */
.andro_testimonial{
  margin-bottom: 30px;
}
.andro_testimonial-body{
  position: relative;
  border-radius: 0;
  background-color: #F0F2F3;
  padding: 20px;
}
.andro_testimonial-body::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F0F2F3;
}
.andro_testimonial-body h5{
  margin-bottom: 5px;
}
.andro_testimonial-body p {
  margin-bottom: 0;
}
.andro_testimonial-body::after {
  content: '\f113';
  position: absolute;
  font-family: flaticon;
  font-size: 34px;
  opacity: .3;
  display: block;
  top: 20px;
  right: 20px;
}
.andro_testimonial-author {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.andro_testimonial-author img {
  width: 80px;
  border-radius: 0;
  margin-right: 15px;
}
.andro_testimonial-author-inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.andro_testimonial-author-inner h6 {
  margin-bottom: 0;
}
.andro_testimonial-author-inner span {
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #848486;
}

/* 6.11. Companies */
.andro_companies{
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.andro_companies .andro_companies-item{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F0F2F3;
  cursor: pointer;
  position: relative;
}
.andro_companies .andro_companies-item img{
  transition: .3s;
}
.andro_companies .andro_companies-item-name{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.andro_companies .andro_companies-item-name span{
  font-weight: 600;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: .3s;
}
.andro_companies .andro_companies-item:hover img{
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
}
.andro_companies .andro_companies-item:hover span{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* 6.12. Newsletter Popup */

#androNewsletterPopup .modal-dialog{
  max-width: 600px;
  margin: .5rem auto;
}
.andro_newsletter-popup-modal .modal-header{
  padding: 0;
  height: 300px;
  overflow: hidden;
}
.andro_newsletter-popup-modal .modal-header .close,
.andro_newsletter-popup-modal .modal-header .close:hover,
.andro_newsletter-popup-modal .modal-header .close:not(:disabled):not(.disabled):hover{
  background-color: transparent;
}

.andro_newsletter-popup-modal .modal-body{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  background-size: cover;
}

.andro_newsletter-popup-modal .modal-body h3{
  font-size: 30px;
  margin: 0 0 10px;
}
.andro_newsletter-popup-modal .modal-body p{
}
.andro_newsletter-popup-text-wrapper{
  text-align: center;
}
.andro_newsletter-popup-modal .close-btn{
  position: absolute;
  top: 10px;
  right: 10px;
}
.andro_newsletter-popup-modal .form-control{
  width: 300px;
  margin-bottom: 10px;
}
.andro_newsletter-popup-modal .mc4wp-form-fields .btn-custom{
  width: 100%;
}
.andro_newsletter-popup-modal .andro_btn-custom + span{
  display: block;
  cursor: pointer;
  margin-top: 20px;
}
.andro_newsletter-popup-modal .andro_btn-custom + span:hover{
  text-decoration: underline;
}

/*======================
7. Misc
========================*/
.slick-list{
  margin: 0 -15px;
}
.slick-slide{
  outline: none;
  margin: 0 15px;
}

/* Arrows */
.andro_arrows{
  display: flex;
  align-items: center;
  margin-left: auto;
}
.andro_arrows .slick-arrow{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #F0F2F3;
  transition: .3s;
  cursor: pointer;
  color: #18181D;
}
.andro_arrows .slick-arrow:hover{
  color: #fff;
  background-color: #634832;
  box-shadow: 4px 3px 24px rgba(99,72,50, 0.5);
}
.andro_arrows .slick-arrow.slider-prev{
  margin-right: 10px;
}

.slick-prev,
.slick-next{
  background-color: #F0F2F3;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #18181D;
  transition: .3s;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.section:hover .slick-next{
  right: -55px;
  opacity: 1;
  visibility: visible;
}
.section:hover .slick-prev{
  left: -55px;
  opacity: 1;
  visibility: visible;
}

.slick-prev:before,
.slick-next:before{
  color: #18181D;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 1.7;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 14px;
}
.slick-prev:before{
  content: "\f060";
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
  color: #fff;
  background-color: #0299f0;
  box-shadow: 4px 3px 24px rgba(99,72,50, 0.5);
}
.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before{
  color: #fff;
}

/* Dots */
.slick-dots{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.slick-dots li{
  margin: 0 5px;
  text-align: center;
}
.slick-dots li button{
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #F0F2F3;
  border: 0;
  border-radius: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}
.slick-dots li.slick-active button{
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  background-color: #5d5d5d;
}
.slick-slide{
  outline: none;
}

/* pagination */
.pagination{
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
.pagination .page-item{
  margin: 0;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link,
.pagination .page-item .page-link{
  border-radius: 0;
}

.pagination .page-link{
  color: #18181D;
  border: 0;
  background-color: #F0F2F3;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  margin-left: 15px;
}
.pagination .page-item.active .page-link{
  background-color: #38220F;
}
.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus{
  color: #38220F;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tooltip{
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}

.load-more{
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  padding: 10px;
  border: 1px solid #F0F2F3;
  border-radius: 0;
  font-weight: 600;
  background-color: #fff;
}
.load-more:hover{
  background-color: #F0F2F3;
}

/* Accordion */
.accordion .card {
  margin-bottom: 0;
}
.accordion .card .card-header {
  position: relative;
  background-color: #fff;
  border-bottom: 0;
  padding: .75rem 1.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  font-weight: 700;
  color: #18181D;
}

.accordion .card-header[aria-expanded="true"] {
  background-color: #f8f9fa;
  color: #18181D;
}

.accordion .card-header::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.accordion .card-header::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion .card-header[aria-expanded="true"]::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}

.accordion .card-header[aria-expanded="true"]::after, .accordion .card-header[aria-expanded="true"]::before {
  background-color: #18181D;
}

.accordion .card-header i {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;
  font-size: 20px;
}

.accordion .card-header[aria-expanded="true"] i {
  color: #38220F;
}

.accordion .card {
  border: #F0F2F3;
}

.accordion.with-gap .card-header {
  border-radius: 3px 3px;
}

.accordion.with-gap .card {
  margin-bottom: 20px;
}
.accordion.with-gap .card:last-child{
  margin-bottom: 0;
}
.accordion.with-gap .card:first-of-type, .accordion.with-gap .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid #F0F2F3;
}

/* Rating */
.andro_rating-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.andro_rating-wrapper > span{
  margin-left: 10px;
  color: #848486;
  font-size: 13px;
}
.andro_rating{
  margin-bottom: 5px;
}
.andro_rating i{
  margin-right: 5px;
  font-size: 12px;
  color: #848486;
}
.andro_rating i.active{
  color: #38220F;
}

/*======================
8. Repsonsive
========================*/

@media(max-width: 1199px){

  .andro_auth-description {
    width: 450px;
  }
  .checkout-billing{
    margin-top: 50px;
  }

}

@media (max-width: 991px) {

  .andro_grid-slider .slick-prev,
  .andro_grid-slider .slick-next{
    display: none;
  }

  .banner-3.andro_banner .andro_arrows{
    margin-top: 10px;
  }
  .banner-3.andro_banner .andro_arrows .slick-arrow{
    background-color: #fff;
  }
  .banner-3.andro_banner .andro_arrows .slick-arrow:hover{
    background-color: #634832;
  }
  .banner-2.andro_banner .andro_banner-slider-inner{
    padding: 80px 15px;
  }
  .banner-2.andro_banner .andro_banner-slider-text{
    padding: 20px;
  }
  .banner-3.andro_banner{
    background-image: none;
    padding: 30px 15px;
    background-color: #F0F2F3;
    border-radius: 0;
  }

  .mb-lg-20{
    margin-bottom: 20px;
  }
  .mb-lg-30,
  .andro_upsells{
    margin-bottom: 30px;
  }
  .mr-lg-30{
    margin-left: 0;
  }
  .section.section-padding.category_section{
    margin-top: 0;
    padding-top: 40px;
  }
  .section {
    padding: 40px 0;
  }
  .section.section-padding{
    padding: 40px 0 10px;
  }
  .andro_section-fw{
    padding: 0 15px;
  }
  .checkout-billing{
    margin-top: 40px;
  }

  .navbar-brand{
    width: 150px;
  }
  .andro_header-controls .aside-toggler{
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F0F2F3;
    border-radius: 0;
    margin-left: 10px;
  }
  .andro_header-controls .aside-toggler:hover{
    background-color: #F0F2F3;
  }
  .andro_header-bottom,
  .andro_header-bottom .navbar-nav,
  .andro_header-middle .navbar-nav,
  .andro_header .andro_search-adv{
    display: none;
  }
  .andro_header.header-2 .andro_header-middle .navbar{
    padding: 15px 0;
  }
  .aside-toggler{
    display: block;
  }
  .andro_aside-overlay.aside-trigger-left,
  .andro_aside.andro_aside-left{
    display: block;
  }
  .andro_post-single .andro_post-share{
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .andro_category-mm{
    margin-bottom: 30px;
  }
  .andro_category-mm-body .andro_category-mm-item.andro_category-mm-item-expand > ul{
    height: auto;
  }
  .andro_category-mm-body > ul > li > ul{
    top: 100%;
    left: 0;
  }
  .andro_category-mm-body > ul > li:hover > ul{
    left: 0;
  }
  .andro_category-mm-body > ul > li > ul > li img{
    border-radius: 0;
  }
  .sidebar{
    margin-top: 10px;
  }
  .sidebar .sidebar-widget:last-child{
    margin-bottom: 40px;
  }
  .load-more{
    margin: 40px 0 30px;
  }
  .pagination{
    margin: 10px 0 30px;
  }
  .andro_icon-block svg{
    display: none;
  }
  .andro_footer{
    padding: 40px 0 0 0;
  }
  .andro_footer-top{
    margin-bottom: 40px;
  }
  .footer-widget{
    padding-bottom: 40px;
  }
  .andro_instagram{
    max-width: 400px;
    padding: 40px;
  }
  .andro_post.andro_post-list{
    padding: 20px;
    align-items: flex-start;
  }
  .andro_post.andro_post-list .andro_post-thumb a,
  .andro_post.andro_post-list .andro_post-thumb a img{
    border-radius: 0;
  }
  .andro_product-additional-info .tab-content{
    margin-top: 30px;
  }
  .andro_auth-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .andro_auth-description {
    width: 100%;
  }
  .andro_companies .andro_companies-item{
    min-height: 110px;
  }

}

@media (max-width: 768px){

  h1{
    font-size: 34px;
  }
  h2{
    font-size: 30px;
  }
  h3{
    font-size: 26px;
  }
  h4{
    font-size: 22px;
  }
  .andro_banner{
    padding: 15px;
  }
  .banner-2.andro_banner .andro_banner-slider-text h1{
    font-size: 44px;
  }
  .andro_responsive-table thead {
    display: none;
  }
  .andro_responsive-table td {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    padding: 10px;
    border-bottom: 0;
  }
  .andro_responsive-table tr.total td::before{
    display: none;
  }
  .andro_responsive-table tr.total td:first-child{
    border-top: 0;
    border-right: 0;
  }
  .andro_responsive-table tr.total td:last-child{
    border-left: 0;
    border-top: 0;
  }
  .andro_responsive-table tr.total td:nth-child(2){
    display: none;
  }
  .andro_responsive-table tr.total td{
    width: auto;
    text-align: left;
  }
  .andro_responsive-table tr.total{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .andro_responsive-table td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }
  .andro_responsive-table td.remove::before {
    display: none;
  }
  .andro_responsive-table tr {
    border-bottom: 1px solid #F0F2F3;
  }

  .andro_responsive-table .cart-product-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: 0;
  }
  .andro_responsive-table .cart-product-wrapper img {
    margin-right: 0;
    margin-left: 10px;
  }
  .andro_quick-view-modal .andro_product-single-content{
    padding: 0;
  }
  .andro_quick-view-modal img{
    margin-bottom: 30px;
  }
  .andro_post.andro_post-list{
    display: block;
    padding: 0;
  }
  .andro_post.andro_post-list .andro_post-body{
    padding: 20px;
  }
  .andro_post.andro_post-list .andro_post-thumb a,
  .andro_post.andro_post-list .andro_post-thumb a img{
    border-radius: 0;
  }
  .andro_subheader-inner{
    display: block;
  }
  .andro_subheader .breadcrumb{
    margin-top: 20px;
  }
  .andro_newsletter-popup-modal .modal-header{
    height: auto;
  }

}

@media (max-width: 767px){


  .footer-widget{
    text-align: center;
  }
  .andro_footer .social-media{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .andro_footer-buttons a{
    margin-bottom: 5px;
  }
  .footer-widget ul li a{
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .footer-widget ul li a::before{
    display: none;
  }
  .andro_footer-top{
    display: block;
    text-align: center;
  }
  .andro_footer-logo{
    margin: 0 auto 20px;
  }
  .andro_footer-bottom ul{
    display: block;
    text-align: center;
  }
  .andro_footer-bottom ul li + li{
    margin-top: 10px;
  }
  .andro_footer-bottom .andro_footer-copyright{
    display: block;
    text-align: center;
  }
  .andro_footer-bottom .andro_footer-copyright > a{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 575px){

  .andro_newsletter-popup-modal .modal-body{
    padding: 20px;
  }
  .andro_newsletter-popup-modal .form-control{
    width: 100%;
  }
  .andro_header.header-2 .andro_header-middle .navbar{
    padding: 10px 0;
  }

  .banner-2.andro_banner .andro_banner-slider-text h1{
    font-size: 34px;
  }
  .section-title.flex-title .nav{
    width: 100%;
    margin: 20px 0 0;
  }
  .modal-body{
    padding: 20px;
  }
  .andro_product-atc-form .qty-outter,
  .andro_product-atc-form .qty-outter .andro_btn-custom{
    display: block;
  }
  .andro_product-atc-form .qty-outter .andro_btn-custom + .qty{
    margin-left: 0;
    margin-top: 20px;
  }
  .qty input{
    width: 100%;
  }
  .andro_product.andro_product-list{
    display: block;
  }
  .andro_product.andro_product-list .andro_product-thumb{
    width: auto;
    margin-right: 0;
  }
  .andro_cta-notice{
    padding: 20px;
  }
  .andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons a{
    flex: 0 100%;
    width: 100%;

  }
  .andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons a:first-child{
    border-radius: 0;
  }
  .andro_product.andro_product-has-buttons .andro_product-footer .andro_product-buttons a + a{
    border-radius: 0 0 8px 8px;
  }
  .andro_header-cart-content,
  .andro_header-controls-inner li.andro_header-favorites,
  .andro_current-currency-text{
    display: none;
  }
  .andro_header-controls-inner li.andro_header-cart a,
  .andro_header-controls-inner li a,
  .andro_header-controls .aside-toggler{
    padding: 0;
    width: 40px;
    height: 40px;
  }
  .andro_header-controls-inner li.andro_header-cart a i{
    font-size: 21px;
  }
  .andro_header-middle .navbar{
    padding: 10px 0;
  }
  .andro_shop-global{
    display: block;
  }
  .andro_shop-global p{
    margin-bottom: 20px;
  }
  .andro_product-additional-info .tab-content{
    padding: 20px;
  }
  .comments-list .comment-item span{
    position: relative;
    top: auto;
    right: auto;
    display: block;
  }
  .comments-list .comment-item img{
    width: 45px;
    margin-right: 15px;
  }
  .andro_post-single-meta{
    display: block;
  }
  .andro_post-single-meta-item + .andro_post-single-meta-item{
    margin-top: 20px;
  }
  .andro_auth-form{
    padding: 30px;
  }
  .andro_cta-content p{
    margin-bottom: 10px;
    max-width: 100%;
  }

}

/*-- Top Category picks start */





@media only screen and (min-width: 960px) {
  .header{
		height:70px;
	}
	.header .left a img{
		height: 60px;
		margin-top: 2px;
	}
	.box_one{
	  width:48%;
	}
	.box_one dt{
	  font-size:2.5rem;
	}
	.box_one dd{
		font-size:1.5rem;
	}

	.box_two{
		  width:30%;
	    position:absolute;
			top:200px;
			left:50%;
	}

	.box_two h4{
     font-size:18px;
	}
	.box_two p{
		text-indent:20px;
		padding:10px 0 0 0;
		line-height:180%;
		font-size:14px;
	}
	.two_p1{
		display:block;
	}
	.two_a{
		margin-top:30px;
	}

}


/*关于科哲*/
.gy_cont{
 padding:30px 0;
}
.gy_banner{
  width:100%;
  height:auto;

}
.gy_banner img{
  width:100%;
}
.gy_h4{
  width:100%;
  padding:20px 30px;
  font-size:22px;
  line-height:22px;
  text-align:center;
  color:#fff;
  background-color:rgb(23, 98, 158);
  border-bottom:4px solid #fff;
  border-top-left-radius:40px;
}
.gy_h4 span{
  display:block;
  padding-top:5px;
  font-size:16px;
}
.gy_ul{
  background-color:rgb(23, 98, 158);
}
.gy_ul li{
  text-align:center;
  color:#fff;
}
.gy_ul li a{
  display:block;
  padding:15px 0;
  width:100%;
  color:#fff;
}
.gy_ul li a:hover{
    color:#00042c;
    background-color:#ffba00;
}
.gy_top{
  width:100%;
  padding:15px 20px 15px 30px;
  font-size:12px;
  background:rgb(245,245,245) url(../../public/images/ban_next2.png) no-repeat 10px center;
}
.gy_right_cont{
   width:100%;
   padding:15px 10px 15px 18px;
   font-size:10px;
}
.gy_right_cont img{
  display:block;
}
p.gy_p{
  text-indent:23px;
  line-height:180%;
  padding:10px 0;
  font-size:12px;
}
p.gy_p2{
  line-height:220%;
}
p.gy_p3{
  width:60%;
  float:left;
}
.gy_footer{
  padding:30px 0;
  background:rgb(30, 30, 30);
}
.gy_logo{
  padding:10px 0 20px 0;
  border-bottom:1px solid rgb(52,52,52);
}
.gy_logo img{
  display:block;
  height:60px;
  margin:0 auto;
}
.gy_icp{
  text-align:center;
  padding:15px 0 0 0;
  font-size:10px;
  color:#73777a;
}
.gy_icp a{
  color:#73777a;
}

.gy_ul li a.gy_active{
  color:#00042c;
  background-color:#ffba00;
}

.gy_ul li a.gy_active:hover{
  color:#00042c;
}
.sh_biaoti{
  display:inline-block;
  font-size:14px;
  padding-top:20px;
  color:#055eb2;
}
.lx_ma{
  display:block;
  margin-top:20px;
  width:13%;
  float:left;
}
/*关于科哲end*/

/*新闻动态*/
.gy_indent{

}
.gy_indent i{
  color:#d81b00;
}
.news_box{
  padding:15px 0;
  border-bottom:1px dotted #969696;
}
.news_box dl{
  overflow:hidden;
}
.news_dt{
  width:20%;
  height:120px;
  background:#999;
  float:left;
}
.news_dt img{
  display:block;
  height:120px;
}
.news_dd{
  width:80%;
  float:right;
}
.news_h5{
  padding-top:10px;
  padding-left:20px;
  font-size:14px;
  font-weight:bold;
}
.news_p{
  padding-top:10px;
  padding-left:20px;
  color:#bbb;
}
.news_date{
  padding-top:30px;
  padding-left:20px;
  color:#bbb;
}
.news_date i{
  display:inline-block;
  text-align:right;
  padding-left:23px;
  float:right;
  background: url(../../public/images/icon_eye.png) no-repeat 0 2px;
}
.newsxq_wenben{
  text-align:center;
  line-height:220%;
  font-size:12px;
}
.newsxq_wenben2{
  line-height:220%;
  text-align:left;
  font-size:12px;
}
.newsxq_img{
  padding-top:15px;
}
.canzhan_img{
  display:block;
  margin:0 auto;
  width:50%;
  padding-top:10px;
  padding-bottom:10px;
}
.canzhan_bt{
  text-align:center;
  font-weight:800;
  padding-top:10px;
  padding-bottom:10px;
}
/*新闻动态end*/



/*解决方案*/


/*解决方案end*/

/*人才招聘*/
.rc_i i{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:8px;
  background:#999;
  margin-right:5px;
}
.rc_jiyu{
  width:158px;
  margin-top:15px;
  padding:10px 15px 10px 40px;
  font-size:14px;
  font-weight:400;
  color:#fff;
  background:rgb(23, 98, 158) url(../../public/images/rc_jiyu.png) no-repeat 5px 2px;
}
.rc_box{
  padding-top:30px;
  overflow:hidden;
}
.rc_box1{
  width:22.75%;
  padding:30px;
  background:#eee;
  border-radius:8px;
  text-align:center;
  font-size:14px;
  margin-right:3%;
  float:left;
}
.rc_box1_delete{
  margin-right:0;
}
.rc_h5{
  font-size:36px;
  font-weight:bold;
  color:rgb(23, 98, 158);
  padding-bottom:20px;
}
.rc_h5 span{
  display:block;
  width:18%;
  margin-left:41%;
  margin-top:5px;
  border-bottom:1px solid rgb(23, 98, 158);
}
.sz_ul{
  padding-top:20px;
  font-size:12px;
}
.sz_ul li{
  height:40px;
  line-height:40px;
  padding-left:25px;
  border-bottom:1px dotted #969696;
  background:url(../../public/images/rc_3.png) no-repeat -10px 3px;
}
.sz_ul li span{
   display:inline-block;
   float:right;
}
p.mb_mubiao{
  text-indent:0;
}
.mubiao{
  display:block;
  padding:15px 0 5px 0;
}
.mubiao strong{
  font-size:14px;
}
.fx_biaoti{
  padding:10px 0;
  text-align:center;
  font-size:20px;
  font-weight:400;
}
.fx_riqi{
  text-align:center;
  padding-bottom:20px;
  color:#999999;
}
.fx_neirong{
  padding:15px 0;
  border-top:1px solid #c9c9c9;
  border-bottom:1px solid #c9c9c9;
}
.fx_tu{
  display:block;
  margin:0 auto;
}



/*人才招聘end*/

/*产品中心模块*/
.cp_wrap{
   padding:30px 0;
}
.page-sidebar-menu{
  color:#fff;
  background:rgb(23, 98, 158);
  margin-top:0;
}
.page-sidebar-menu ul li a{
  color:#fff;
}
.accordion-menu .sub-menu li a {
  font-size:12px;
  color:#fff;
}
.open:not(.active-page)>a{
  color:#00042c;
  background-color:#ffba00;
}
.accordion-menu .sub-menu li a {
color:#fff;
}
.accordion-menu .sub-menu li a:hover {
  color:#00042c;
}
.page-sidebar-menu ul li a i.accordion-icon{
  color:#fff;
}

.logo-box, .page-sidebar{
  background:#fff;
}
.accordion-menu .sub-menu{
  color:#fff;
  background:rgb(23, 98, 158);
}
.cp_bgcolor{
  width:100%;
  color:#00042c;
  display:block;
}
.page-sidebar-menu ul li a:link {

}

.page-sidebar-menu>ul>li>a:hover{
  background-color:#ffba00;
  opacity: 1;
}
.accordion-menu .sub-menu li.animation a:hover{
  color:#ffba00;
}
.page-header {
    display:none;
}
.page-inner{
  padding: 0px 0px 30px 30px;

}
.page-right-sidebar{
  background:blue;
}
.cp_tongji{
  padding:15px 0 15px 20px;
  font-size:10px;
}
.cp_tongji span{
  color:#d81b00;
}
.page-sidebar-menu ul li a:hover span {
    color:#00042c;
}
/*================================================
Blog Area CSS
=================================================*/
.single-blog {
  margin-bottom: 30px;
  border:1px solid #eee;
  background:#fff;
}
.single-blog:hover{
  border:1px solid rgb(23, 98, 158);
}
.single-blog .blog-image {
  overflow: hidden;
}

.single-blog .blog-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .blog-content {
  margin-top: 15px;
  font-size:12px;
}

.single-blog .blog-content span {
  font-size: 12px;
  color: #656565;
  font-weight: 400;
}

.single-blog .blog-content h3 {
  font-size: 12px;
  margin-top: 12px;
  height:38px;
  text-align:center;
  padding:0 10px;
}

.single-blog .blog-content h3 a {
  color: #292929;
}

.single-blog .blog-content .post-meta {
  color: #a4a4a4;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.single-blog .blog-content .post-meta a {
  color: #a4a4a4;
}

.single-blog .blog-content p {
  margin-bottom: 0;
}

.single-blog .blog-content .blog-btn {
  margin-top: 20px;
}

.single-blog .blog-content .blog-btn .default-btn {
  color: #ffffff !important;
}

.single-blog .blog-content .blog-btn .default-btn span {
  background-color: #292929;
}

.single-blog:hover .blog-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-blog:hover .blog-content h3 a {
  color: #17629e;
}

.single-blog:hover .blog-content .post-meta a {
  color: #ed1d24;
}

.blog-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.blog-area.bg-color {
  border-bottom: 1px solid #eeeeee;
}

.cp_content{
  width:100%;
  padding:30px 0 30px 0;
  font-size:12px;
  overflow:hidden;
}
.cp_cont_pic{
  width:400px;
  margin-right:30px;
  float:left;
}
.cp_cont_text{
  width:500px;
  float:left;
}
.cp_cont_text h4{
  font-size:18px;
  padding:20px 0;
  margin-bottom:20px;
  font-weight:800;
  border-bottom:1px dotted #969696;
}
.cp_cont_text p{
  color:#999;
  line-height:220%;
}
.cp_cont_box2{
  padding-top:30px;
  clear:both;
}
.cp_cont_ul{
  padding-bottom:15px;
}
.cp_cont_ul li{
  font-size:12px;
  line-height:180%;
}
li.cp_ul_title{
  font-size:18px;
  font-weight:800;
  color:#17629e;
  padding:5px 0;
  margin-bottom:10px;
  border-bottom:2px solid #17629e;
}
.cp_ul_images{
  display:block;
  margin:15px 0;
}
.cp_ul_strong{
  font-weight:800;
}

p.cp_table_bt{
  padding-bottom:15px;
}
span.cp_td_span{
  display:inline-block;
  width:6px;
  height:6px;
  background:#333;
  border-radius:10px;
}
.cp_td_delete{
  margin-left:10px;
}
.cp_cont_h4{
  font-size:18px;
  font-weight:800;
  padding:10px 0;
}
/*详情banner*/

#wrapper{
	width:400px;
	height:400px;
	position:relative;
	color:#fff;
	text-shadow:rgba(0,0,0,0.1) 2px 2px 0px;
}

#slider-wrap{
	width:400px;
	height:400px;
	position:relative;
	overflow:hidden;
}

#slider-wrap ul#slider{
	width:100%;
	height:100%;

	position:absolute;
	top:0;
	left:0;
}

#slider-wrap ul#slider li{
	float:left;
	position:relative;
	width:400px;
	height:400px;
}

#slider-wrap ul#slider li > div{
	position:absolute;
	top:20px;
	left:35px;
}

#slider-wrap ul#slider li > div h3{
	font-size:36px;
	text-transform:uppercase;
}

#slider-wrap ul#slider li > div span{
	font-family: Neucha, Arial, sans serif;
	font-size:21px;
}

#slider-wrap ul#slider li i{
	text-align:center;
	line-height:400px;
	display:block;
	width:100%;
	font-size:90px;
}
.slider_img{
  width:100%;
}

/*btns*/
.btns{
	position:absolute;
	width:50px;
	height:60px;
	top:50%;
	margin-top:-25px;
	line-height:57px;
	text-align:center;
	cursor:pointer;
	background:rgba(0,0,0,0.1);
	z-index:100;


	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-ms-user-select: none;

	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.btns:hover{
	background:rgba(0,0,0,0.3);
}

#next{right:-50px; border-radius:7px 0px 0px 7px;}
#previous{left:-50px; border-radius:0px 7px 7px 7px;}
#counter{
	top: 30px;
	right:35px;
	width:auto;
	position:absolute;
}

#slider-wrap.active #next{right:0px;}
#slider-wrap.active #previous{left:0px;}

/*bar*/
#pagination-wrap{
	min-width:20px;
	margin-top:350px;
	margin-left: auto;
	margin-right: auto;
	height:15px;
	position:relative;
	text-align:center;
}

#pagination-wrap ul {
	width:100%;
}

#pagination-wrap ul li{
	margin: 0 4px;
	display: inline-block;
	width:5px;
	height:5px;
	border-radius:50%;
	background:#dddddd;
	opacity:0.5;
	position:relative;
  top:0;


}

#pagination-wrap ul li.active{
  width:12px;
  height:12px;
  top:3px;
	opacity:1;
	box-shadow:rgba(0,0,0,0.1) 1px 1px 0px;
}
/*Header*/
h1, h2{text-shadow:none; text-align:center;}
h1{	color: #666; text-transform:uppercase;	font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}

/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
	-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	transition: all 0.3s cubic-bezier(1,.01,.32,1);
}



/*产品中心模块end*/


@media only screen and (max-width: 960px) {
	.box_one dt{
	  font-size:1.2rem;
	}
	.box_one dd{
		font-size:0.5rem;
	}

	#footer {
		width:92%;
    position:absolute;
		top:70px;
	}
.delete_con{
	display:none;
}
#footer .footer-top {
  padding: 10px 30px 0px 30px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 10px;
}
.copyright{
	padding:5px 0;
	font-size:10px;
}

.section-title.flex-title .nav-item{
  margin: 10px 0 0 0;
}
.section-title{
  margin-bottom: 10px;
  padding-bottom: 10px;

}

.section-title .title{
  padding:5px 0;
}
.nav-link{
  padding: 5px 10px;
  font-size:10px;
}

.gy_right_cont{

   padding:15px 10px 15px 10px;

}

.gy_ul{
  overflow:hidden;
  background-color:rgb(23, 98, 158);
}
.gy_ul li{
  width:30%;
  float:left;
  margin-left:10px;
  margin-top:10px;
  text-align:center;
  color:#fff;
}
.gy_ul li a{
  padding:5px 0;
}


.news_dt{
  width:30%;
  height:60px;

}
.news_dt img{
  display:block;
  height:60px;
}
.news_dd{
  width:70%;
  font-size:10px;
}
.news_h5{
  padding:0 0 0 8px;
  font-size:10px;
}
.news_p{
  padding-left:8px;
  font-size:10px;

}
.news_date{
  padding-top:5px;
  padding-left:8px;
  font-size:10px;

}

.rc_box1{
  width:100%;
  margin-right:0;
  margin-bottom:20px;
}



.page-header {
    padding: 0;
    display:block;
}
.cp_wrap{
  padding: 0;
}
.logo-sm .logo-box {
   font-size:10px;
   margin: 0px 0px 8px 8px;
  }
  .logo-box {
    font-size:14px;
    color:#666;
    font-weight:500;
    line-height: 19px;
  }
.logo-sm #sidebar-toggle-button {
  margin:0;
  padding:0;
}
.page-inner:not(.login-page) {
    padding: 5px 0px 30px 0px;
}


#wrapper{
	width:300px;
	height:300px;
}

#slider-wrap{
	width:300px;
	height:300px;

}

#slider-wrap ul#slider{
	width:100%;
	height:100%;
}

#slider-wrap ul#slider li{
	width:300px;
	height:300px;
}

.cp_cont_pic{
  width:100%;
}
.cp_cont_text{
  width:100%;
}




}
