
/* 
Table Of Contents

 1.)  Typography
 2.)  Default Styles
 3.)  Header
 4.)  Content - Main
 5.)  Footer

---------------------------------------- */


/*
 1.) Typography
----------------------------------------*/

@import url("bootstrap.min-17.css") all;
@import url("brands.min-28.css") all;
@import url("light.min-28.css") all;
@import url("regular.min-28.css") all;
@import url("solid.min-28.css") all;
@import url("../404.html") all;
@import url("fontawesome.min-28.css") all;

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeui.eot');
    src: url('../eot/segoeui.eot') format('embedded-opentype'),
         url('../woff2/segoeui.woff2') format('woff2'),
         url('../woff/segoeui.woff') format('woff'),
         url('../ttf/segoeui.ttf') format('truetype'),
         url('../svg/segoeui.svg#SegoeUI') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuiitalic.eot');
    src: url('../eot/segoeuiitalic.eot') format('embedded-opentype'),
         url('../woff2/segoeuiitalic.woff2') format('woff2'),
         url('../woff/segoeuiitalic.woff') format('woff'),
         url('../ttf/segoeuiitalic.ttf') format('truetype'),
         url('../svg/segoeuiitalic.svg#SegoeUI') format('svg');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuimedium.eot');
    src: url('../eot/segoeuimedium.eot') format('embedded-opentype'),
         url('../woff2/segoeuimedium.woff2') format('woff2'),
         url('../woff/segoeuimedium.woff') format('woff'),
         url('../ttf/segoeuimedium.ttf') format('truetype'),
         url('../svg/segoeuimedium.svg#SegoeUI') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuisemibold.eot');
    src: url('../eot/segoeuisemibold.eot') format('embedded-opentype'),
         url('../woff2/segoeuisemibold.woff2') format('woff2'),
         url('../woff/segoeuisemibold.woff') format('woff'),
         url('../ttf/segoeuisemibold.ttf') format('truetype'),
         url('../svg/segoeuisemibold.svg#SegoeUI') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuisemibolditalic.eot');
    src: url('../eot/segoeuisemibolditalic.eot') format('embedded-opentype'),
         url('../woff2/segoeuisemibolditalic.woff2') format('woff2'),
         url('../woff/segoeuisemibolditalic.woff') format('woff'),
         url('../ttf/segoeuisemibolditalic.ttf') format('truetype'),
         url('../svg/segoeuisemibolditalic.svg#SegoeUI') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuibold.eot');
    src: url('../eot/segoeuibold.eot') format('embedded-opentype'),
         url('../woff2/segoeuibold.woff2') format('woff2'),
         url('../woff/segoeuibold-4.woff') format('woff'),
         url('../ttf/segoeuibold-4.ttf') format('truetype'),
         url('../svg/segoeuibold.svg#SegoeUI') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../eot/segoeuibolditalic.eot');
    src: url('../eot/segoeuibolditalic.eot') format('embedded-opentype'),
         url('../woff2/segoeuibolditalic.woff2') format('woff2'),
         url('../woff/segoeuibolditalic.woff') format('woff'),
         url('../ttf/segoeuibolditalic.ttf') format('truetype'),
         url('../svg/segoeuibolditalic.svg#SegoeUI') format('svg');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/*
 2.) Default Styles
----------------------------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
ol,
ul,
li {
	padding: 0;
	margin: 0;
}


/* #Basic Styles */
body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "SegoeUI", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #212529;
	line-height: 26px; 
	background: #cde9df;
	margin: 0;
	padding: 0;
}

sub,
sup{
	font-size: 50%;
}

sup {
	top: -.6em;
}

sub,
sup{
	font-size: 50%;
}

img { 
	max-width: 100%;
	height: auto;
}


/*= Links
=======================================================*/
a { 
	color: #006c6c;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #cde9df;
	text-decoration: none;
}

a:visited {
	outline: 0;
}

a[href^="tel:"], 
a[href^="fax:"] {
	color: #006c6c;
	text-decoration: none;
}

a:hover[href^="tel:"], 
a:focus[href^="tel:"], 
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #cde9df;
	text-decoration: none;
}


/*= Heading H1, H2, H3, H4, H5, H6, P
=======================================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 { 
	font-weight: 700; 
	color: #232323;
	text-transform:uppercase; 
	padding-bottom: 20px;
}

h1,
.h1 {
	font-size: 37px;
	line-height: 47px;
}

h2,
.h2 {
	font-size: 32px;
	line-height: 42px;
}

h3,
.h3 {
	font-size:  22px;
	line-height: 32px;
}

h4,
.h4 {
	font-size:  20px;
	line-height: 30px;
}

h5,
.h5 {	
	font-size: 18px;
	line-height: 28px;
}

h6,
.h6 {	
	font-size: 16px;
	line-height: 26px;
}


h1.divider,
.h1.divider,
h2.divider,
.h2.divider,
h3.divider,
.h3.divider,
h4.divider,
.h4.divider,
h5.divider,
.h5.divider,
h6.divider,
.h6.divider { 
	text-align: center; 
	position: relative; 
	padding-bottom: 16px; 
	margin-bottom: 23px;
}

h1.divider:before,
.h1.divider:before,
h2.divider:before,
.h2.divider:before,
h3.divider:before,
.h3.divider:before,
h4.divider:before,
.h4.divider:before,
h5.divider:before,
.h5.divider:before,
h6.divider:before,
.h6.divider:before { 
	content: ""; 
	width: 40px; 
	height:2px;
	float: left; 
	background: #232323;
	position: absolute;
	left: 50%; 
	bottom:0;
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform:translate(-50%);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
	font-style: inherit;
	color: inherit;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 25px;
}

p:last-child {
	padding-bottom: 0;
}

em {
	font-style: italic; 
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal; 
}

strong {
	font-weight: 700; 
}

.lowercase { 
	text-transform: none;
}

.uppercase {
	text-transform: uppercase; 
}

@media (max-width: 1199px) {
h1,
.h1 {
	font-size: 32px;
	line-height: 42px;
}

h2,
.h2 {
	font-size: 28px;
	line-height: 38px;
}
}

@media (max-width: 767px) {
h1,
.h1 {
	font-size: 28px;
	line-height: 38px;
}

h2,
.h2 {
	font-size: 24px;
	line-height: 34px;
}
}


/*= Unorder List
=======================================================*/
ul,
ol {
	list-style: none; 
	padding-left: 20px; 
}

li {
	position: relative; 
	padding-left: 20px;
	padding-bottom: 10px;
}

li:last-child {
	padding-bottom: 25px;
}

ul li ul,
ol li ol {
	padding: 10px 0 0 0;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #8c8c8c;
	border-radius: 360px;
	position: absolute;
	top: 11px;
	left: 0;
}

/*= Order List
=======================================================*/
ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 25px;
}

ol > li:before {
	content: counter(item)".";
	color: #212529;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}


/* #Input
================================================= */
textarea, 
select, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

input, 
textarea, 
select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	font-family: "SegoeUI", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #232323;
	line-height: 26px;
	padding: 0 0 10px 0;
	margin: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	font-family: "SegoeUI", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #232323;
	line-height: 26px;
	white-space: nowrap;
	text-overflow: ellipsis;	
	background: #ffffff;
	box-shadow: none;
	border: 1px solid #cbcbcb;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 10px 20px;
	margin: 0;
}

textarea {
	height: 191px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 15px;
	padding-bottom: 15px;
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	color: #969696;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #969696;
}

::-moz-placeholder {
	color: #969696;
}

::-ms-input-placeholder {
	color: #969696;
}


/* #Button
================================================= */
button {
    background: none;
    border: none;
    box-shadow: none;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
    outline: 0;
}

.btn,
.button,
input[type="button"],
input[type="submit"] {
    width: auto;
    height: auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
    font-family: "SegoeUI", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #212529;
    line-height: 24px; 
	letter-spacing: normal;
    text-align: center;
    text-decoration: none; 
	text-transform: uppercase;
    white-space: normal;
	background: #cde9df;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    outline: 0;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    padding: 13px 30px 13px 30px;
    margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active,
.button:not(:disabled):not(.disabled):active {
    color: #212529;
    text-decoration: none;
    background: none;
    box-shadow: inset #212529 0 0 0 1px;
    outline: 0;
}

.btn-black,
.button.btn-black,
input.btn-black[type="button"],
input.btn-black[type="submit"] { 
	color: #ffffff; 
	background: #232323; 
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black:active:focus,
.btn-black.active,
.btn-black.active:focus,
.button.btn-black:hover,
.button.btn-black:focus,
.button.btn-black:active,
.button.btn-black:active:focus,
.button.btn-black.active,
.button.btn-black.active:focus,
input.btn-black[type="button"]:hover,
input.btn-black[type="button"]:focus,
input.btn-black[type="button"]:active,
input.btn-black[type="button"]:active:focus,
input.btn-black[type="button"].active,
input.btn-black[type="button"].active:focus,
input.btn-black[type="submit"]:hover,
input.btn-black[type="submit"]:focus,
input.btn-black[type="submit"]:active,
input.btn-black[type="submit"]:active:focus,
input.btn-black[type="submit"].active,
input.btn-black[type="submit"].active:focus,
.btn-black:not(:disabled):not(.disabled).active,
.button.btn-black:not(:disabled):not(.disabled):active {
	color: #232323;
	background: none;
	box-shadow: inset #232323 0 0 0 1px; 
}

.btn-blank,
.button.btn-blank,
input.btn-blank[type="button"],
input.btn-blank[type="submit"] { 
	color: #232323; 
	background: none; 
	box-shadow: inset #232323 0 0 0 1px; 
}

.btn-blank:hover,
.btn-blank:focus,
.btn-blank:active,
.btn-blank:active:focus,
.btn-blank.active,
.btn-blank.active:focus,
.button.btn-blank:hover,
.button.btn-blank:focus,
.button.btn-blank:active,
.button.btn-blank:active:focus,
.button.btn-blank.active,
.button.btn-blank.active:focus,
input.btn-blank[type="button"]:hover,
input.btn-blank[type="button"]:focus,
input.btn-blank[type="button"]:active,
input.btn-blank[type="button"]:active:focus,
input.btn-blank[type="button"].active,
input.btn-blank[type="button"].active:focus,
input.btn-blank[type="submit"]:hover,
input.btn-blank[type="submit"]:focus,
input.btn-blank[type="submit"]:active,
input.btn-blank[type="submit"]:active:focus,
input.btn-blank[type="submit"].active,
input.btn-blank[type="submit"].active:focus,
.btn-blank:not(:disabled):not(.disabled).active,
.button.btn-blank:not(:disabled):not(.disabled):active {
	color: #ffffff;
	background: #232323;
	box-shadow: inset #232323 0 0 0 1px; 
}

.btn:focus,
.button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: 2px;
}

.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-out {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 10px -10px -15px -10px;
}

.btn-out a {
    margin: 0 10px 15px 10px;
}

figure,
.figure {
	vertical-align: top;
}


/* #OWL
================================================= */
/* #Owl-carousel */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative; height: 100%;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	width: 100%;
	display: inline-block;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}


/* No Js */
.no-js .owl-carousel {
	display: block;
}


/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	animation-duration: 100ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* Owl Carousel - Auto Height Plugin */
.owl-height {
	transition: height 500ms ease-in-out;
}


/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
/**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}


/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("../404.html") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

/* Previous and Next */
.owl-nav button {
	width: 45px;
	height: 45px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-weight: inherit;
	font-size: 26px;
	color: #ffffff;
	line-height: 1em;
	text-decoration: none;
	text-align: center;
	background: #2c4099; 
	border: none;
	box-shadow: none;
	border-radius: 360px;
	position: absolute;
	top: 50%;	
	transform: translate(0, -50%);
	cursor: pointer;
	z-index: 2;
	outline: 0;
	padding: 0;
	margin: 0;
}

.owl-nav button:hover,
.owl-nav button:focus,
.owl-nav button:active {
	color: #ffffff;
	background: #4063F0;
	outline: 0;
}

.owl-nav button.owl-prev {
	left: 0; 
	padding-right: 2px;
}

.owl-nav button.owl-next {
	right: 0; 
	padding-left: 2px;
}

.owl-nav button.disabled {
	color: rgba(59, 67, 81, .20);
	cursor: default;
}

.owl-nav button.disabled:hover,
.owl-nav button.disabled:focus,
.owl-nav button.disabled:active {
	color: rgba(59, 67, 81, .20);
	background: #ffffff;
}

.owl-nav.disabled {
	display: none;
}


/* Bullets */
.owl-dots {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: .5em;
	margin: 28px 0 0 0;
}

.owl-dots button.owl-dot {
	width: 12px;
	height: 12px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: #232323;
	border-radius: 360px;
	box-shadow: none;
	border: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
	padding: 0;
	margin: 0 4px;
}

.owl-dots button.owl-dot:hover,
.owl-dots button.owl-dot:focus,
.owl-dots button.owl-dot:active,
.owl-dots button.owl-dot.active {
	background: none; box-shadow: inset 0 0 0 1px;
}

.owl-dots.disabled {
	display: none;
}


/*= Container - Main
=======================================================*/
.container-main {
	width: 100%;
	float: left; 
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

.hidden-body { 
	overflow:hidden;
}

.hidden-body .container-main { 
	width: 100%; 
	float: left; 
	position: relative; 
	overflow: hidden;
}

.hidden-body .container-main:before { 
	content: ""; 
	width:100%; 
	height:100%; 
	float:left; 
	background:rgba(35, 35, 35, 0.5); 
	position: fixed; 
	top: 0; 
	left:0; 
	z-index: 5;
}

.container {
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
}

@media (max-width: 767px) {
.container {
	max-width: 640px;
	padding: 0 30px;
}
}


/*= #Row
=======================================================*/
.row-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 70px;
}

.row-out:last-child {
	padding-bottom: 0;
}

.row {
	padding-bottom: 70px;
	margin: 0 -25px -50px -25px;
}

.row.v-align-middle {
	align-items: center;
}

.row:last-child {
	padding-bottom: 0;
}

.row > div {
	padding: 0 25px 50px 25px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}

@media (max-width: 767px) {
.row-out {
	padding-bottom: 60px;
}

.row {
	padding-bottom: 60px;
	margin: 0 -20px -40px -20px;
}

.row > div {
	padding: 0 20px 40px 20px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}
}


/* Tooltip */
.tooltip-inner {
    width: 70px;
    color: #232323;
    background-color: #cde9df;
    border-radius: 0;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}

.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #cde9df !important;
}

.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #cde9df !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #cde9df !important;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #cde9df !important;
}


/* Social - Links */
.social-links {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.social-links ul {
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0 -5px -10px -5px;
}

.social-links ul li {
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 0 5px 10px 5px;
    margin: 0;
}

.social-links ul li:before {
    display: none;
}

.social-links ul li a {
    width: 40px;
    height: 40px;
    float: left;
    font-size: 18px;
    color: #3c3c3c;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: #cde9df;
    border-radius: 360px;
}

.social-links ul li a span {
    display: none;
}

.social-links ul li a:hover {
    color: #ffffff;
}

.social-links ul li .fa-facebook-f:hover,
.social-links ul li.active .fa-facebook-f {
    background: #3b5998;
}

.social-links ul li .fa-twitter:hover,
.social-links ul li.active .fa-twitter {
    background: #55acee;
}

.social-links ul li .fa-instagram:hover,
.social-links ul li.active .fa-instagram {
    background: #497299;
}

.social-links ul li .fa-pinterest-p:hover,
.social-links ul li.active .fa-pinterest-p {
    background: #cb2027;
}

.social-links ul li .fa-snapchat-ghost:hover,
.social-links ul li.active .fa-snapchat-ghost {
    background: #f4e24c;
}


/* Heading - Txt */
.heading-txt {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding-bottom: 40px;
}

.heading-txt:last-child {
    padding-bottom: 0;
}

.heading-txt h3,
.heading-txt .h3 {
    text-transform: uppercase;
}

.heading-txt h3 em,
.heading-txt .h3 em {
    margin-right: 10px;
}

.heading-txt h3:last-child,
.heading-txt .h3:last-child {
    padding-bottom: 0;
}

.heading-txt .aside {
    width: 100%;
    max-width: 640px;
    float: none;
    display: inline-block;
}

@media (max-width: 767px) {
.heading-txt {
	padding: 0 0 30px 0;
}
}


/* Social - Share */
.social-share {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    margin-bottom: 25px;
}

.social-share:last-child {
    margin-bottom: 0;
}

.social-share p {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 15px 0 0;
}

.social-share ul {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 -5px -10px -5px;
}

.social-share ul li {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 5px 10px 5px;
}

.social-share ul li:before {
    display: none;
}

.social-share ul li img {
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.social-share ul li a {
    color: #232323;
}

.social-share ul li a span {
    display: none;
}

.social-share ul li a:hover,
.social-share ul li a:focus,
.social-share ul li a:active {
    color: #232323;
}


/* Check - Options */
.check-options {
    width: 100%;
    float: left;
}

.check-options input[type="checkbox"],
.check-options input[type="radio"] {
    display: none;
}

.check-options label {
    width: 100%;
    min-height: 14px;
    float: left;
    font-weight: 400;
    font-size: 16px;
    color: #232323;
    line-height: 20px;
    letter-spacing: normal;
    text-transform: none;
    position: relative;
    padding: 0 0 0 26px;
    margin: 0;
}

.check-options label:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    float: left;
    background-repeat: no-repeat;
    background-size: 14px auto;
    border-radius: 0;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 1;
}

.check-options input[type="checkbox"] + label:before {
    background-image: url(../png/checkbox-9.png);
    background-position: top;
}

.check-options input[type="checkbox"]:checked + label {
    color: #232323;
}

.check-options input[type="checkbox"]:checked + label:before,
.check-options input[type="checkbox"]:checked + label:focus:before {
    background-image: url(../png/checkbox-9.png);
    background-position: bottom;
}


/* Heading - Txt */
.heading-txt {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 50px;
}

.heading-txt:before {
    content: "";
    width: 252px;
    height: 1px;
    float: left;
    background: #a6a6a6;
    position: absolute;
    left: 50%;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
}

.heading-txt:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.heading-txt:last-child:before {
    display: none;
}

.heading-txt .aside {
    width: 100%;
    max-width: 920px;
    float: none;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 1199px) {
.heading-txt .aside {
	max-width: 560px;
}
}

@media (max-width: 767px) {
.heading-txt:before {
	width: 150px;
}

.heading-txt .aside {
	max-width: 100%;
}
}


/* Main - Heading */
.main-heading {
    width: 100%;
    min-height: 200px;
    float: none;
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    background: #cee9e0;
    padding: 31px 0 33px 0;
}

.main-heading h1,
.main-heading .h1,
.main-heading h2,
.main-heading .h2,
.main-heading h3,
.main-heading .h3,
.main-heading h4,
.main-heading .h4,
.main-heading h5,
.main-heading .h5,
.main-heading h6,
.main-heading .h6 { 
	color: inherit;
}

@media (max-width: 767px) {
.main-heading {
    min-height: 180px;
}
}


/* Search - Box */
.search-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.search-box .search-wrap {
	width: 100%;
	float: left;
}

.search-box form {
	width: 100%;
	float: left;
	position: relative;
	padding: 0;
	margin: 0;
}

.search-box form select, 
.search-box form textarea, 
.search-box form input[type="text"], 
.search-box form input[type="password"], 
.search-box form input[type="datetime"], 
.search-box form input[type="datetime-local"], 
.search-box form input[type="date"], 
.search-box form input[type="month"], 
.search-box form input[type="time"], 
.search-box form input[type="week"], 
.search-box form input[type="number"], 
.search-box form input[type="email"], 
.search-box form input[type="url"], 
.search-box form input[type="search"], 
.search-box form input[type="tel"], 
.search-box form input[type="color"], 
.search-box form .uneditable-input {
	height: 36px;
	font-size: 12px;
	color: #848484;
	line-height: 16px;
	background: #ffffff;
	border: none;
	box-shadow: inset #ebebeb 0 0 0 1px;
	border-radius: 0;
	padding: 8px 36px 8px 13px;
}

.search-box form select:focus, 
.search-box form textarea:focus, 
.search-box form input[type="text"]:focus, 
.search-box form input[type="password"]:focus, 
.search-box form input[type="datetime"]:focus, 
.search-box form input[type="datetime-local"]:focus, 
.search-box form input[type="date"]:focus, 
.search-box form input[type="month"]:focus, 
.search-box form input[type="time"]:focus, 
.search-box form input[type="week"]:focus, 
.search-box form input[type="number"]:focus, 
.search-box form input[type="email"]:focus, 
.search-box form input[type="url"]:focus, 
.search-box form input[type="search"]:focus, 
.search-box form input[type="tel"]:focus, 
.search-box form input[type="color"]:focus, 
.search-box form .uneditable-input:focus {
	box-shadow: inset #2378ba 0 0 0 1px;
}

.search-box form .btn, 
.search-box form .button, 
.search-box form input[type="button"], 
.search-box form input[type="submit"] {
	min-width: inherit;
	width: 36px;
	height: 36px;
	float: right;
	background: url(../svg/icon-search-5.svg) no-repeat center center;
	background-size: 14px auto;
	box-shadow: none;
	border-radius: 0;
	border: none;
	text-indent: -9999px;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.search-box form .btn:hover,
.search-box form .btn:focus,
.search-box form .btn:active,
.search-box form .btn:active:focus,
.search-box form .btn.active,
.search-box form .btn.active:focus,
.search-box form .button:hover,
.search-box form .button:focus,
.search-box form .button:active,
.search-box form .button:active:focus,
.search-box form .button.active,
.search-box form .button.active:focus,
.search-box form input[type="button"]:hover,
.search-box form input[type="button"]:focus,
.search-box form input[type="button"]:active,
.search-box form input[type="button"]:active:focus,
.search-box form input[type="button"].active,
.search-box form input[type="button"].active:focus,
.search-box form input[type="submit"]:hover,
.search-box form input[type="submit"]:focus,
.search-box form input[type="submit"]:active,
.search-box form input[type="submit"]:active:focus,
.search-box form input[type="submit"].active,
.search-box form input[type="submit"].active:focus,
.search-box form .btn:not(:disabled):not(.disabled).active, 
.search-box form .btn:not(:disabled):not(.disabled):active  {
	background: url(../svg/icon-search-5.svg) no-repeat center center;
	background-size: 14px auto;
}

@media (max-width: 1199px) {
.search-box form select, 
.search-box form textarea, 
.search-box form input[type="text"], 
.search-box form input[type="password"], 
.search-box form input[type="datetime"], 
.search-box form input[type="datetime-local"], 
.search-box form input[type="date"], 
.search-box form input[type="month"], 
.search-box form input[type="time"], 
.search-box form input[type="week"], 
.search-box form input[type="number"], 
.search-box form input[type="email"], 
.search-box form input[type="url"], 
.search-box form input[type="search"], 
.search-box form input[type="tel"], 
.search-box form input[type="color"], 
.search-box form .uneditable-input {
	height: 40px;
	font-size: 13px;
	padding: 9px 40px 9px 15px;
}

.search-box form .btn, 
.search-box form .button, 
.search-box form input[type="button"], 
.search-box form input[type="submit"] {
	width: 40px;
	height: 40px;
}
}


/* Header - Main */
.overlay-1,
.overlay-2 {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(0, 0, 0, .60);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 7;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.overlay-1.active,
.overlay-2.active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.hidden-body { 
	overflow:hidden;
}

.header-main {
	width: 100%;
	float: left;
	background: #ffffff;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199px) {
.header-main .container {
	max-width: 100%;
	padding: 0 40px;		
}
}

@media (max-width: 767px) {
.header-main .container {
	max-width: 100%;
	padding: 0 20px;		
}
}

.header-main .alert-info {
	width: 100%;
	height: 40px;
	float: left;
	font-weight: 500;
	font-size: 12px;    
	color: #ffffff;
	line-height: 40px;    
	letter-spacing: .05em;
	text-align: center;
	text-transform: uppercase;			
	position: relative;
	z-index: 1;
}

.header-main .alert-info:before {
	content: "";
	width: 10000px;
	height: 100%;
	float: left;
	background: #000000;
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;		
}

.header-main .canvas-box {
	width: 100%;
	float: left;
	padding: 25px 20px;	
}

.header-main .canvas-box .close-btn {
	width: 100%;
	float: left;
	font-weight: 400;
    color: #3c3c3c;    
	font-size: 13px;
	line-height: 13px;
	text-align: right;
	text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 30px;
}

.header-main .canvas-box .close-btn em {
	font-size: 130%;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

.header-main .canvas-box h2 {
	width: 100%;
	float: left;
	font-weight: 600;
    color: #3c3c3c;    
	font-size: 13px;
	line-height: 19px;
	letter-spacing: .05em;
	text-transform: uppercase;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 17px;
	margin-bottom: 25px;
}

.header-main .canvas-box .sml-txt {
	width: 100%;
	float: left;
	font-weight: 400;
    color: #3c3c3c;    
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-bottom: 15px;
}

.header-main .canvas-box .btn-out {
	width: 100%;
	float: left;
	margin: 0;
}

.header-main .canvas-box .btn-out .btn {
	width: 100%;
	font-size: 13px;
	padding: 8px 15px;
	margin: 0;
}

.header-main .canvas-box .form-block {
	width: 100%;
	float: left;
}

.header-main .canvas-box .form-block ul {
	width: 100%;
	float: left;
	padding: 0 0 15px 0;
	margin: 0 0 -10px 0;
}

.header-main .canvas-box .form-block ul li {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 10px 0;
}

.header-main .canvas-box .form-block ul li:before {
	display: none;
}

.header-main .canvas-box .form-block ul li label {
	font-weight: 500;
	font-size: 12px;
	color: #232323;
	line-height: 18px;
	padding-bottom: 7px;
}

.header-main .canvas-box .form-block ul li label .required {
	color: #ff0000;
}

.header-main .canvas-box .form-block ul li select, 
.header-main .canvas-box .form-block ul li textarea, 
.header-main .canvas-box .form-block ul li input[type="text"], 
.header-main .canvas-box .form-block ul li input[type="password"], 
.header-main .canvas-box .form-block ul li input[type="datetime"], 
.header-main .canvas-box .form-block ul li input[type="datetime-local"], 
.header-main .canvas-box .form-block ul li input[type="date"], 
.header-main .canvas-box .form-block ul li input[type="month"], 
.header-main .canvas-box .form-block ul li input[type="time"], 
.header-main .canvas-box .form-block ul li input[type="week"], 
.header-main .canvas-box .form-block ul li input[type="number"], 
.header-main .canvas-box .form-block ul li input[type="email"], 
.header-main .canvas-box .form-block ul li input[type="url"], 
.header-main .canvas-box .form-block ul li input[type="search"], 
.header-main .canvas-box .form-block ul li input[type="tel"], 
.header-main .canvas-box .form-block ul li input[type="color"], 
.header-main .canvas-box .form-block ul li .uneditable-input {
	height: 36px;
	font-size: 12px;
	color: #232323;
	line-height: 16px;
	padding: 8px 15px;
}

.header-main .canvas-box .form-block .btn-out {
	margin-bottom: 17px;
}

.header-main .canvas-box .form-block .forgot-txt {
	width: 100%;
	float: left;
	font-weight: 400;
    color: #3c3c3c;    
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-bottom: 23px;
}

.header-main .canvas-box .form-block .forgot-txt a {
    color: #3c3c3c;    
}

.header-main .login-box {
	width: 90%;
	max-width: 335px;
	height: 100%;
	float: left;	
	background: #ffffff;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;	
	overflow: auto;
	overflow-x: hidden;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
}

.header-main .login-box.active {
	visibility: visible;
	right: 0;
}

.header-main .cart-box {
	width: 90%;
	max-width: 335px;
	height: 100%;
	float: left;	
	background: #ffffff;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;	
	overflow: auto;
	overflow-x: hidden;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
}

.header-main .cart-box.active {
	visibility: visible;
	right: 0;
}

@media (min-width: 1200px) {
.header-main .nav-bar,
.header-main .nav-wrap {
	width: 100%;		
	float: left;
}

.header-main .top-menu {		
	float: right;
}

.header-main .top-menu ul {		
	float: left;
	padding: 0;
	margin: 0 -13px 0 -12px;
}

.header-main .top-menu ul li {		
	float: left;
	padding: 0 13px 0 12px;
	margin: 0;
}

.header-main .top-menu ul li:before {		
	display: none;
}

.header-main .top-menu ul li:after {
	content: "";
	width: 1px;
	height: 14px;
	float: left;
	background: #b3b3b3;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 0 0 0;		
}

.header-main .top-menu ul li:last-child:after {		
	display: none;
}

.header-main .top-menu ul li > a {
	height: 32px;
	float: left;
	font-weight: 400;
	font-size: 12px;
	color: #232323;
	line-height: 32px;
	text-decoration: none;
}

.header-main .top-menu ul li:hover > a,
.header-main .top-menu ul li.current-menu-item > a, 
.header-main .top-menu ul li.current-menu-parent > a, 
.header-main .top-menu ul li.current-menu-ancestor > a {
	color: #666666;
	text-decoration: underline;
}

.header-main .main-menu {
	width: 100%;		
	float: left;
	text-align: center;
}

.header-main .main-menu ul {		
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -19px;
}

.header-main .main-menu ul li {		
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 19px;
}

.header-main .main-menu ul li:before {		
	display: none;
}

.header-main .main-menu ul li .dropdown-link {
	display: none;
}

.header-main .main-menu ul li > a {
	height: 40px;
	float: left;
	font-weight: 700;
	font-size: 11px;
	color: #232323;
	line-height: 40px;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .main-menu ul li > a:before {
	content: "";
	width: 0;
	height: 1px;
	float: left;
	background: #006c6c;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 10px;
	left: 50%;
	margin: 0;
	opacity: 0;
}

.header-main .main-menu ul li:hover > a,
.header-main .main-menu ul li.active > a {
	color: #006c6c;
	text-decoration: none;
}

.header-main .main-menu ul li:hover > a:before,
.header-main .main-menu ul li.active > a:before {
	width: 100%;
	left: 0;
	opacity: 1;
}

.header-main .main-menu ul li > ul {
	width: 225px;
	float: left;
	background: #ffffff;
	border: 1px solid #ededed;
	box-shadow: rgba(0, 0, 0, .10) 0 5px 10px;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	display: block!important;
	position: absolute;
	top: 40px;
	left: -20px;
	padding: 9px 20px;
	margin: 0;
}

.header-main .main-menu ul li:hover > ul {
	visibility: visible;
	opacity: 1;	 
}

.header-main .main-menu ul li > ul li {
	width: 100%;
	height: auto;
	float: left;
	line-height: 1em;
	border-bottom: 1px solid #ebebeb;
	padding: 0;
	margin: 0;
}

.header-main .main-menu ul li > ul li:before {
	display: none;
}

.header-main .main-menu ul li > ul li:last-child {
	border-bottom: none;
}

.header-main .main-menu ul li > ul li > a {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 11px;
	line-height: 17px;
	text-align: left;
	text-transform: none;
	padding: 11px 0;
	margin: 0;	
}

.header-main .main-menu ul li > ul li > a:before {
	display: none;
}

.header-main.fixed .main-menu ul li > a {
	height: 50px;
	line-height: 50px;
}

.header-main.fixed .main-menu ul li > ul {
	top: 50px;
}

.header-main.fixed .main-menu ul li > ul li a {
	height: auto;
	line-height: 17px;
}

.header-main .brand {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
}

.header-main .brand img {
	height: 40px;
}

.header-main.fixed .brand {
	line-height: 50px;
	position: fixed;
	top: 0;
	left: 15px;
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	z-index: 9;
}

.header-main.fixed .brand img {
	height: 17px;
}

.header-main .search-box {
	width: 180px;
	float: left;
	margin-left: 25px;
}

.header-main .search-box .close-btn {
	display: none;
}

.header-main.fixed .search-box {
	width: 555px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	visibility: hidden;
	position: fixed;
	top: 50px;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	opacity: 0;
	z-index: -100;
}

.header-main.fixed .search-box form select, 
.header-main.fixed .search-box form textarea, 
.header-main.fixed .search-box form input[type="text"], 
.header-main.fixed .search-box form input[type="password"], 
.header-main.fixed .search-box form input[type="datetime"], 
.header-main.fixed .search-box form input[type="datetime-local"], 
.header-main.fixed .search-box form input[type="date"], 
.header-main.fixed .search-box form input[type="month"], 
.header-main.fixed .search-box form input[type="time"], 
.header-main.fixed .search-box form input[type="week"], 
.header-main.fixed .search-box form input[type="number"], 
.header-main.fixed .search-box form input[type="email"], 
.header-main.fixed .search-box form input[type="url"], 
.header-main.fixed .search-box form input[type="search"], 
.header-main.fixed .search-box form input[type="tel"], 
.header-main.fixed .search-box form input[type="color"], 
.header-main.fixed .search-box form .uneditable-input {
	height: 40px;
	font-size: 13px;
	padding: 9px 40px 9px 15px;
}

.header-main.fixed .search-box form .btn, 
.header-main.fixed .search-box form .button, 
.header-main.fixed .search-box form input[type="button"], 
.header-main.fixed .search-box form input[type="submit"] {
	width: 40px;
	height: 40px;
}

.header-main.fixed .search-box .close-btn {
	width: 100%;
	float: left;
	display: inline-block;
	font-size: 22px;
	color: #ffffff;
	line-height: 22px;
	text-align: center;
	cursor: pointer;
	margin-bottom: 20px;
}

.header-main.fixed .search-box.active {
	visibility: visible;
	opacity: 1;
	z-index: 100;
}

.header-main .search-btn {
	float: left;
	margin-left: 25px;
	display: none;
}

.header-main .search-btn a {
	height: 36px;
	float: left;
	font-size: 20px;
	color: #000000;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .search-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main.fixed .search-btn {
	border-left: 1px solid #dedede;
	margin: 0;
	display: block;
}

.header-main.fixed .search-btn a {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.header-main .wishlist-btn {
	float: left;
	margin-left: 25px;
}

.header-main .wishlist-btn a {
	height: 36px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .wishlist-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main.fixed .wishlist-btn {
	border-left: 1px solid #dedede;
	margin: 0;
}

.header-main.fixed .wishlist-btn a {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.header-main .myaccount-btn {
	float: left;
	margin-left: 25px;
	display: none;
}

.header-main .myaccount-btn a {
	height: 36px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .myaccount-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main.fixed .myaccount-btn {
	border-left: 1px solid #dedede;
	margin: 0;
}

.header-main.fixed .myaccount-btn a {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.header-main .cart-btn {
	float: left;
	margin-left: 25px;
}

.header-main .cart-btn a {
	height: 36px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
	position: relative;
}

.header-main .cart-btn a .count {
	width: 23px;
	height: 23px;
	float: left;
	font-weight: 700;
	font-size: 10px;
	color: #ffffff;
	line-height: 23px;
	text-align: center;
	background: #e95144;
	border-radius: 900px;
	position: absolute;
	top: -5px;
	right: -5px;
}

.header-main .cart-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main.fixed .cart-btn {
	border-left: 1px solid #dedede;
	margin: 0;
}

.header-main.fixed .cart-btn a {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.header-main.fixed .cart-btn a .count {
	top: 0;
	right: 0;
}

.header-main .menu-btn {
	display: none;
}

.header-main .right-wrap {
	float: right;
	margin: 32px 0 0 0;
}

.header-main.fixed .right-wrap {
	position: fixed;
	top: 0;
	right: 0;
	margin: 0;
	z-index: 2;
}


.header-main .header-top {		
	width: 100%;
	height: 32px;
	float: left;
	position: relative;
	z-index: 1;
}

.header-main .header-top:before {
	content: "";
	width: 10000px;
	height: 100%;
	float: left;
	background: #cde9df;
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;		
}

.header-main .header-wrap,
.header-main .header-maxi {
	width: 100%;
	float: left;
}

.header-main .header-midd {
	width: 100%;
	height: 100px;		
	float: left;
	position: relative;
}

.header-main .header-btm {
	width: 100%;		
	float: left;
	text-align: center;
	position: relative;
	z-index: 1;
}

.header-main .header-btm:before {
	content: "";
	width: 10000px;
	height: 100%;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .10) 0 1px 1px;	
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;		
}

.header-main .header-btm .top-menu,
.header-main .header-btm .close-btn {
	display: none;		
}

.header-main .header-btm.fixed {		
	position: fixed;
	top: 0;
	left:0;
}
}

@media (max-width: 1199px) {
.header-main .top-menu {
	width: 100%;		
	float: left;
	border-bottom: 1px solid #ebebeb;
	display: none;
	padding: 22px 0;
}

.header-main .top-menu ul {		
	width: 100%;		
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .top-menu ul li {		
	width: 100%;		
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .top-menu ul li:before {		
	display: none;
}

.header-main .top-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 12px;
	color: #232323;
	line-height: 18px;
	text-decoration: none;
	padding: 8px 20px;
}

.header-main .top-menu ul li:hover > a,
.header-main .top-menu ul li.current-menu-item > a, 
.header-main .top-menu ul li.current-menu-parent > a, 
.header-main .top-menu ul li.current-menu-ancestor > a {
	color: #006c6c;
	text-decoration: none;
}

.header-main .main-menu {
	width: 100%;		
	float: left;
}

.header-main .main-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .main-menu ul li {
	width: 100%;
	float: left;
	font-weight: inherit;
	border-bottom: 1px solid #ebebeb;
	position: relative;
	padding: 0;
	margin: 0;
}

.header-main .main-menu ul li:before {
	display: none;
}

.header-main .main-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 13px;
	color: #232323;
	line-height: 19px;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	padding: 15px 20px;
	margin: 0;
}

.header-main .main-menu ul li .dropdown-link {
	display: none;
}

.header-main .main-menu ul li.has-children > .dropdown-link {
	display: block;
	width: 100px;
	height: 49px;
	float: right;
	text-align: right;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 20px;
	z-index: 2;
}

.header-main .main-menu ul li.has-children > .dropdown-link:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 300;
	font-size: 20px;
	color: #b4b4b4;
	line-height: 49px;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
	position: relative;
	top: 0;
}

.header-main .main-menu ul li.has-children > .dropdown-link.active:after {
	content: "\f077";
}

.header-main .main-menu ul li:hover > a,
.header-main .main-menu ul li.active > a {
	color: #006c6c;
	background: #f8f8f8;
}

.header-main .main-menu ul li ul {
	border-top: 1px solid #ebebeb;
	display: none;
	padding: 0 0 0 20px;
	margin: 0;
}

.header-main .brand {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
}

.header-main .brand img {
	height: 20px;
}

.header-main .search-box {
	width: 100%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 100;
}

.header-main .search-box .close-btn {
	width: 30px;
	height: 30px;
	float: left;
	font-size: 20px;
	color: #ffffff;
	line-height: 30px;
	text-align: center;
	background: #e95144;		
	cursor: pointer;
	margin: 10px 0 10px 45px;
}

.header-main .search-box.active {
	visibility: visible;
	opacity: 1;
}

.header-main.fixed .search-box {
	padding: 0 40px;
}

.header-main .menu-btn {
	width: 24px;
	height: 18px;
	float: left;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	margin: -9px 0 0 0;
}

.header-main .menu-btn .icon-bar {
	width: 100%;
	float: left;
	text-decoration: none;
	position: relative;
}

.header-main .menu-btn .icon-bar span {
	width: 100%;
	height: 2px;
	float: left;
	background: #232323;
	border-radius: 900px;
	position: relative;
	margin: 8px 0;
}

.header-main .menu-btn .icon-bar span:before {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #232323;
	border-radius: 900px;
	position: absolute;
	top: -8px;
	left: 0;
}

.header-main .menu-btn .icon-bar span:after {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #232323;
	border-radius: 900px;
	position: absolute;
	top: 8px;
	left: 0;
}

.header-main.fixed .menu-btn {
	left: 40px;
}

.header-main .search-btn {
	float: left;
	position: absolute;
	top: 0;
	left: 50px;
}

.header-main .search-btn a {
	height: 50px;
	float: left;
	font-size: 20px;
	color: #000000;
	line-height: 48px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .search-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main.fixed .search-btn {
	left: 90px;
}

.header-main .wishlist-btn {
	float: left;
	margin-left: 30px;
	display: none;
}

.header-main .wishlist-btn a {
	height: 50px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .wishlist-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main .myaccount-btn {
	float: left;
	margin-left: 30px;
}

.header-main .myaccount-btn a {
	height: 50px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
}

.header-main .myaccount-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main .cart-btn {
	float: left;
	margin-left: 30px;
}

.header-main .cart-btn a {
	height: 50px;
	float: left;
	font-size: 22px;
	color: #000000;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .0s ease-out;
	-moz-transition: all .0s ease-out;
	-o-transition: all .0s ease-out;
	transition: all .0s ease-out;
	position: relative;
}

.header-main .cart-btn a .count {
	width: 23px;
	height: 23px;
	float: left;
	font-weight: 700;
	font-size: 10px;
	color: #ffffff;
	line-height: 23px;
	text-align: center;
	background: #e95144;
	border-radius: 900px;
	position: absolute;
	top: 5px;
	right: -11px;
}

.header-main .cart-btn a:hover {
	color: #006c6c;
	text-decoration: none;
}

.header-main .right-wrap {
	float: right;
	margin: 0;
}

.header-main .header-top {		
	display: none;
}

.header-main .header-wrap {		
	width: 100%;
	height: 50px;		
	float: left;
	position: relative;
	z-index: 1;
}

.header-main .header-wrap:before {
	content: "";
	width: 10000px;
	height: 100%;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .10) 0 1px 1px;	
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;		
}

.header-main .header-maxi {
	width: 100%;
	margin: 0 auto;		
}

.header-main .header-wrap.fixed {		
	position: fixed;
	top: 0;
	left:0;
}

.header-main .header-wrap.fixed .header-maxi {
	padding: 0 40px;		
}

.header-main .nav-bar {
	width: 100%;
	max-width: 400px;
	height: 100%;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 9;
	padding: 0 40px 0 0;
}

.header-main .nav-bar.active {
	visibility: visible;
	left: 0;
}

.header-main .nav-bar .nav-wrap {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;	
	overflow: auto;
	overflow-x: hidden;
}

.header-main .nav-bar .top-menu {
	display: block;
}

.header-main .nav-bar .close-btn {
	width: 40px;
	height: 40px;
	float: left;
	font-size: 28px;
	color: #ffffff;
	line-height: 40px;
	text-align: center;
	background: #e95144;		
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	display: block;
}
}

@media (max-width: 767px) {
.header-main.fixed .search-box {
	padding: 0 20px;
}

.header-main.fixed .menu-btn {
	left: 20px;
}

.header-main .search-btn {
	left: 50px;
}

.header-main.fixed .search-btn {
	left: 70px;
}

.header-main .header-wrap.fixed .header-maxi {
	padding: 0 20px;		
}
}


/*
 4.) Content - Main
----------------------------------------*/

.content-main {
    width: 100%;
    float: left;
    overflow: hidden;
}


/* Banner */
.banner-main {
    width: 100%;
    background: #cce9e0;
    overflow: hidden;
}

.banner-main .item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner-main .item .aside {
    width: 100%; 
	text-align: center;
}

.banner-main .item .aside .btn,
.banner-main .item .aside .button,
.banner-main .item .aside input[type="button"],
.banner-main .item .aside input[type="submit"] {
    min-width: 270px;
}

.banner-main .item .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.banner-main .item .figure img {
    width: 100%;
}

@media (min-width: 768px) {
.banner-main .item .aside {
	width: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
	right: 50%;
	padding: 40px 0 40px 40px;
}

.banner-main .item .aside .txt-max {
	width: 100%;
	max-width: 600px;
	float: right;
}

.banner-main .item .figure {
	width: 50%;
	position: relative;
	left: 50%;
}

.banner-main .item .figure img {
	height: 100%;
}
}

@media (max-width: 767px) {
.banner-main {
	background: none;
	padding: 0 0 40px 0;
}

.banner-main .item .aside {
	padding: 40px 20px 0 20px;
}
}


/* Split - Cont */
.split-cont {
    width: 100%;
    text-align: center;
    color: #323232;
    overflow: hidden;
    padding: 80px 0;
}

.split-cont .row {
    align-items: center;
    padding: 0;
    margin: 0 0 -40px 0;
}

.split-cont .row > div {
    padding: 0;
    margin: 0 0 40px 0;
}

.split-cont .row > div .figure {
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
}

.split-cont .row > div .figure img {
    max-width: 100%;
}

.split-cont .row > div .asdie {
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
.split-cont .row {
	padding: 0;
	margin: 0 -20px;
}

.split-cont .row > div {
	padding: 0 20px;
	margin: 0;
}
}

@media (max-width: 1199px) {
.split-cont {
	padding: 60px 0;
}
}

@media (max-width: 767px) {
.split-cont {
	padding: 50px 0;
}
}


/* Product - Benifits */
.product-benifits {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    overflow: hidden;
}

.product-benifits img {
    width: 100%;
}


/* Products - List */
.product-list {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 30px 0 80px 0;
}

.product-list .row {
    padding: 0;
    margin: 0 0 -50px 0;
}

.product-list .row > div {
    padding: 0 0 50px 0;
    margin: 0;
}

.product-list .row > div .box {
    width: 100%;
    height: 100%;
    font-weight: inherit;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    padding: 0 0 81px 0;
}

.product-list .row > div .box .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.product-list .row > div .box .figure img {
    width: 100%;
    max-width: 322px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.product-list .row > div .box .aside {
    width: 100%;
    float: left;
}

.product-list .row > div .box .aside p {
    padding: 0;
}

.product-list .row > div .box .aside h3,
.product-list .row > div .box .aside .h3 {
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    padding-bottom: 20px;
}

.product-list .row > div .box .aside h3 a,
.product-list .row > div .box .aside .h3 a {
    color: #212529;
    text-decoration: none;
}

.product-list .row > div .box .aside .btn,
.product-list .row > div .box .aside .button,
.product-list .row > div .box .aside input[type="button"],
.product-list .row > div .box .aside input[type="submit"] {
    min-width: 160px;
}

.product-list .row > div .box .aside .btn-out {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 5px 0 0 0;
}

.product-list .row > div .box .aside .btn-out a {
    margin: 0;
}

.product-list .row > div .box:hover .figure img,
.product-list .row > div .box.active .figure img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.product-list .row > div .box:hover .aside h3 a,
.product-list .row > div .box:hover .aside .h3 a,
.product-list .row > div .box.active .aside h3 a,
.product-list .row > div .box.active .aside .h3 a {
    color: #006c6c;
}

@media (min-width: 768px) {
.product-list .row {
	padding: 0;
	margin: 0 -20px -50px -20px;
}

.product-list .row > div {
	padding: 0 20px 50px 20px;
	margin: 0;
}
}

@media (max-width: 1199px) {
.product-list {
	padding: 60px 0;
}
}

@media (max-width: 767px) {
.product-list {
	padding: 50px 0;
}

.product-list .row > div .box .figure {
	margin-bottom: 20px;
}
}


/* Instagram - Sections */
.instagram-sections {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background: #cde9df;
    padding: 80px 0;
}

.instagram-sections .heading-txt {
    margin-bottom: 0;
}

.instagram-sections .heading-txt:before {
    display: none;
}

.instagram-sections .heading-txt h3,
.instagram-sections .heading-txt .h3 {
    padding-bottom: 10px;
}

.instagram-sections .item {
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
}

.instagram-sections .item img {
    width: 100%;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.instagram-sections .item a {
    width: 100%;
    float: left;
    position: relative;
}

.instagram-sections .item a:hover img,
.instagram-sections .item a:focus img,
.instagram-sections .item a:active img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 11ppx) {
.instagram-sections {
	padding: 60px 0;
}
}

@media (max-width: 767px) {
.instagram-sections {
	padding: 50px 0;
}
}


/*
 5.) Footer
----------------------------------------*/

.footer-main {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #232323;
}

.footer-main .pre-footer {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    padding: 60px 0;
}

.footer-main .pre-footer h4,
.footer-main .pre-footer .h4 {
    font-size: 17px;
	color: #ffffff;
    line-height: 27px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.footer-main .pre-footer h4:last-child,
.footer-main .pre-footer .h4:last-child {
    padding-bottom: 0;
}

.footer-main .pre-footer .footer-links {
    width: 61.8%;
    float: left;
    padding-right: 15px;
}

.footer-main .pre-footer .footer-links .article {
    width: 28%;
    padding: 0 15px;
}

.footer-main .pre-footer .footer-links .article ul {
    padding: 0;
    margin: 0;
}

.footer-main .pre-footer .footer-links .article ul li {
    padding: 0 0 10px 0;
    margin: 0;
}

.footer-main .pre-footer .footer-links .article ul li:last-child {
    padding-bottom: 0;
}

.footer-main .pre-footer .footer-links .article ul li:before {
    display: none;
}

.footer-main .pre-footer .footer-links .article ul li a {
    color: #969696;
    text-decoration: none;
}

.footer-main .pre-footer .footer-links .article ul li a:hover,
.footer-main .pre-footer .footer-links .article ul li a:focus,
.footer-main .pre-footer .footer-links .article ul li.active a {
    color: #cde9df;
    display: inline;
    border-bottom: 1px solid #cde9df;
}

.footer-main .pre-footer .footer-links .article:first-child {
    width: 44%;
}

.footer-main .pre-footer .footer-links .article-out {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-main .pre-footer .footer-newsletter {
    width: 38.2%;
    float: left;
    padding-left: 15px;
}

.footer-main .pre-footer .footer-newsletter .social-links {
    margin-bottom: 40px;
}

.footer-main .pre-footer .footer-newsletter .social-links:last-child {
    margin-bottom: 0;
}

.footer-main .pre-footer .footer-newsletter .newsletter {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.footer-main .pre-footer .footer-newsletter .newsletter h4,
.footer-main .pre-footer .footer-newsletter .newsletter .h4 {
    padding-bottom: 20px;
}

.footer-main .pre-footer .footer-newsletter .newsletter .input-out {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 155px 0 0;
}

.footer-main .pre-footer .footer-newsletter .newsletter input[type="text"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="password"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="datetime"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="datetime-local"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="date"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="month"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="time"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="week"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="number"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="email"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="url"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="search"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="tel"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="color"],
.footer-main .pre-footer .footer-newsletter .newsletter .uneditable-input {
    height: 50px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
    letter-spacing: normal;
    background: #ffffff;
    border: none;
    border-radius: 0;
    outline: none;
    position: relative;
    padding: 13px 20px;
}

.footer-main .pre-footer .footer-newsletter .newsletter ::-webkit-input-placeholder,
.footer-main .pre-footer .footer-newsletter .newsletter ::-webkit-textarea-placeholder {
    color: #a3a3a3;
}

.footer-main .pre-footer .footer-newsletter .newsletter input::-moz-placeholder,
.footer-main .pre-footer .footer-newsletter .newsletter textarea::-moz-placeholder {
    color: #a3a3a3;
}

.footer-main .pre-footer .footer-newsletter .newsletter ::-moz-placeholder {
    color: #a3a3a3;
}

.footer-main .pre-footer .footer-newsletter .newsletter ::-ms-input-placeholder {
    color: #a3a3a3;
}

.footer-main .pre-footer .footer-newsletter .newsletter .btn,
.footer-main .pre-footer .footer-newsletter .newsletter button,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}

.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"],
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"] {
    color: #212529;
}

.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"]:hover,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"]:focus,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"]:active,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"]:active:focus,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"].active,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="button"].active:focus,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"]:hover,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"]:focus,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"]:active,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"]:active:focus,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"].active,
.footer-main .pre-footer .footer-newsletter .newsletter input[type="submit"].active:focus,
.footer-main .pre-footer .footer-newsletter .newsletter .btn:not(:disabled):not(.disabled).active,
.footer-main .pre-footer .footer-newsletter .newsletter .button:not(:disabled):not(.disabled):active {    
	color: #cde9df;
    box-shadow: inset #cde9df 0 0 0 1px;
}

.footer-main .pre-footer .footer-newsletter .newsletter .btn-out {
    width: 140px;
    float: right;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.footer-main .pre-footer .footer-newsletter .newsletter .btn-out a {
    margin: 0;
}

.footer-main .copyrights {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background: #cde9df;
    padding: 25px 0;
}

.footer-main .copyrights a {
    color: #212529;
}

.footer-main .copyrights a:hover,
.footer-main .copyrights a:focus,
.footer-main .copyrights a:active {
    color: #006c6c;
}

@media (max-width: 991px) {
.footer-main .pre-footer .footer-links {
	width: 100%;
	padding: 0 0 60px 0;
}

.footer-main .pre-footer .footer-links:last-child {
	padding-bottom: 0;
}

.footer-main .pre-footer .footer-newsletter {
	width: 100%;
	max-width: 66.66%;
	padding-left: 0;
}
}

@media (max-width: 767px) {
.footer-main .pre-footer .footer-links .article {
	width: 100%;
	padding: 0 0 30px 0;
}

.footer-main .pre-footer .footer-links .article:first-child {
	width: 100%;
}

.footer-main .pre-footer .footer-links .article-out {
	margin: 0 0 -30px 0;
}

.footer-main .pre-footer .footer-newsletter {
	max-width: 100%;
}
}


/* Content - Product */
.content-product {
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

@media (max-width: 767px) {
.content-product {
	padding: 60px 0;
}
}


/* Product - Details */
.product-details {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 60px;
}

.product-details:last-child {
    padding-bottom: 0;
}

.product-details .row {
    padding: 0;
    margin: 0 0 -40px 0;
}

.product-details .row > div {
    padding: 0 0 40px 0;
    margin: 0;
}

.product-details .row > div .product-img {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top; 
	padding: 0 35px;
    margin-bottom: 40px;
}

.product-details .row > div .product-img:last-child {
    margin-bottom: 0;
}

.product-details .row > div .product-img .show {
    width: 100%;
    float: left;
    position: relative;
    z-index: 20;
    margin-bottom: 10px;
}

.product-details .row > div .product-img #show-img {
    width: 308px;
    height: 308px;
    z-index: 25;
}

.product-details .row > div .product-img .small-img {
    width: 100%;
    height: 94px;
    float: left;
    position: relative; 
}

.product-details .row > div .product-img .small-container {
    width: 100%;
    height: 94px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
}

.product-details .row > div .product-img .small-container div {
    width: 800%;
    position: relative;
}

.product-details .row > div .product-img .small-container .show-small-img {
    width: 94px;
    height: 94px;
    float: left;
    cursor: pointer;
    margin: 0 10px 0 0;
}

.product-details .row > div .product-img .small-container .show-small-img:last-of-type {
    margin-right: 0;
}

.product-details .row > div .product-img .icon-left,
.product-details .row > div .product-img .icon-right {
    width: 13px;
    height: 22px; 
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.product-details .row > div .product-img .icon-left {
    left: -35px;
}

.product-details .row > div .product-img .icon-right {
    right: -35px;
}

.product-details .row > div .product-img .panel-box,
.product-details .row > div .product-img .layer-box {
    display: none !important;
}

.product-details .row > div .product-shop {
    width: 100%;
    float: left;
}

.product-details .row > div .product-shop h3,
.product-details .row > div .product-shop .h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: none;
    padding-bottom: 15px;
}

.product-details .row > div .product-shop .price {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}

.product-details .row > div .product-shop .price:last-child {
    margin-bottom: 0;
}

.product-details .row > div .product-shop .colors {
    width: 100%;
    float: left;
    margin-bottom: 35px;
}

.product-details .row > div .product-shop .colors:last-child {
    padding-bottom: 0;
}

.product-details .row > div .product-shop .colors p {
    padding: 0 0 10px 0;
}

.product-details .row > div .product-shop .colors ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -4px -10px -4px;
}

.product-details .row > div .product-shop .colors ul li {
    padding: 0 4px 10px 4px;
    margin: 0;
}

.product-details .row > div .product-shop .colors ul li:before {
    display: none;
}

.product-details .row > div .product-shop .colors ul li a {
    width: 36px;
    height: 36px;
    float: left;
    line-height: 36px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 0 1px #e6e6e6;
    border-radius: 360px;
}

.product-details .row > div .product-shop .colors ul li a img {
    width: 100%;
    border-radius: 360px;
    vertical-align: top;
}

.product-details .row > div .product-shop .colors ul li a.active {
    box-shadow: 0 0 1px 2px #232323;
}

.product-details .row > div .product-shop .select-quantity {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.product-details .row > div .product-shop .select-quantity p {
    padding-bottom: 10px;
}

.product-details .row > div .product-shop .select-quantity p:last-child {
    padding-bottom: 0;
}

.product-details .row > div .product-shop .select-quantity .qty {
    width: 144px;
    float: left;
    border: 1px solid #cbcbcb;
    position: relative;
    padding: 0 33px;
}

.product-details .row > div .product-shop .select-quantity .qty .bgnumber {
    width: 78px;
    float: left;
}

.product-details .row > div .product-shop .select-quantity .qty .number {
    width: 100%;
    height: 34px;
    float: left;
    font-size: 16px;
    color: #232323;
    line-height: 34px;
    text-align: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.product-details .row > div .product-shop .select-quantity .qty .plusminus {
    width: 33px;
    float: left;
}

.product-details .row > div .product-shop .select-quantity .qty .increment,
.product-details .row > div .product-shop .select-quantity .qty .decrement {
    width: 33px;
    height: 34px;
    float: right;
    background: url(../png/arrow-plus.png) no-repeat center center;
    background-size: 32px auto;
    border: none;
    box-shadow: none;
    border-left: 1px solid #cbcbcb;
    outline: none !important;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
}

.product-details .row > div .product-shop .select-quantity .qty .decrement {
    background-image: url(../png/arrow-minus.png);
    border-left: none;
    border-right: 1px solid #cbcbcb;
    right: auto;
    left: 0;
}

.product-details .row > div .product-shop .sub-total {
    width: 100%;
    float: left;
    padding-bottom: 30px;
}

.product-details .row > div .product-shop .sub-total:last-child {
    padding-bottom: 0;
}

.product-details .row > div .product-shop .shoping-btns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 25px 0;
    margin: 0 -10px -20px -10px;
}

.product-details .row > div .product-shop .shoping-btns:last-child {
    padding-bottom: 0;
}

.product-details .row > div .product-shop .shoping-btns .btn-out {
    width: 50%;
    padding: 0 10px 20px 10px;
    margin: 0;
}

.product-details .row > div .product-shop .shoping-btns .btn-out .btn,
.product-details .row > div .product-shop .shoping-btns .btn-out .button,
.product-details .row > div .product-shop .shoping-btns .btn-out input[type="button"],
.product-details .row > div .product-shop .shoping-btns .btn-out input[type="submit"] {
	width: 100%;
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0;
}

.product-details .row > div .product-shop .shoping-btns .btn-out .btn em,
.product-details .row > div .product-shop .shoping-btns .btn-out .button em {
    margin-right: 5px;
}

.product-details .row > div .product-shop .check-options {
    margin-bottom: 20px;
}

.product-details .row > div .product-shop .check-options:last-child {
    margin-bottom: 0;
}

.product-details .row > div .product-shop .buynow-btn {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}

.product-details .row > div .product-shop .buynow-btn:last-child {
    margin-bottom: 0;
}

.product-details .row > div .product-shop .buynow-btn .btn,
.product-details .row > div .product-shop .buynow-btn .button,
.product-details .row > div .product-shop .buynow-btn input[type="button"],
.product-details .row > div .product-shop .buynow-btn input[type="submit"] {
    width: 100%;
    margin: 0;
}

.product-details .row > div .product-shop .views {
    width: 100%;
    float: left;
    padding-bottom: 25px;
}

.product-details .row > div .product-shop .views:last-child {
    padding-bottom: 0;
}

.product-details .row > div .product-shop .views em {
    position: relative;
    top: 1px;
    margin-right: 5px;
}

.product-details .row > div .product-shop .social-share {
    width: 100%;
    text-align: left;
    border-top: 1px solid #e6e6e6;
    overflow: hidden;
    padding-top: 18px;
}

@media (min-width: 768px) {
.product-details .row {
	padding: 0;
	margin: 0 -20px -20px -20px;
}

.product-details .row > div {
	padding: 0 20px 40px 20px;
	margin: 0;
}
}

@media (max-width: 991px) {
.product-details .row > div .product-shop .shoping-btns {
	width: 100%;
	margin: 0 0 -20px 0;
}

.product-details .row > div .product-shop .shoping-btns .btn-out {
	width: 100%;
	padding: 0 0 20px 0;
}
}


/* Product - Tabs2 */
.product-tabs2 {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 60px;
}

.product-tabs2:last-child {
    padding-bottom: 0;
}

.product-tabs2 .tab-links {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
}

.product-tabs2 .tab-links ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 1px 1px 1px;
    margin: 0;
}

.product-tabs2 .tab-links ul li {
    padding: 0;
    margin: 0 -1px -1px -1px;
}

.product-tabs2 .tab-links ul li:before {
    display: none;
}

.product-tabs2 .tab-links ul li a {
    float: left;
    font-weight: 700;
    font-size: 16px;
    color: #232323;
    line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    position: relative;
    padding: 13px 30px 15px 30px;
}

.product-tabs2 .tab-links ul li a:hover {
    color: #232323;
}

.product-tabs2 .tab-links ul li a.active {
    background: #ffffff;
    border-bottom-color: #ffffff;
    box-shadow: inset #232323 0 2px 0 0;
}

.product-tabs2 .tab-links .dropdown-toggle {
    width: 100%;
    float: left;
    display: none;
    font-size: 16px;
    color: #232323;
    line-height: 26px;
    text-align: left;
    text-transform: uppercase;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    position: relative;
    padding: 10px 55px 12px 20px;
}

.product-tabs2 .tab-links .dropdown-toggle:after {
    display: none;
}

.product-tabs2 .tab-links .dropdown-toggle:before {
    content: "\f107";
    width: 50px;
    height: 50px;
    float: left;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 20px;
    color: #232323;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.product-tabs2 .tab-links .dropdown-toggle.active:before {
    content: "\f106";
}

.product-tabs2 .tab-content {
    width: 100%;
    float: left;
    padding: 30px 0 0 0;
}

.product-tabs2 .tab-content h4,
.product-tabs2 .tab-content .h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 10px;
}

.product-tabs2 .tab-content .txt-box {
    width: 100%;
    float: left;
    background: #fafafa;
    padding: 30px 40px;
    margin-bottom: 25px;
}

.product-tabs2 .tab-content .txt-box:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
.product-tabs2 .tab-links {
	text-align: left;
	margin: 0 0 40px 0;
}

.product-tabs2 .tab-links .dropdown-toggle {
	display: block;
}

.product-tabs2 .tab-links ul {
	width: 100%;
	display: none;
	background: #fafafa;
	position: absolute;
	top: 49px;
	left: 0;
	padding: 0;
	margin: 0;
}

.product-tabs2 .tab-links ul li {
	width: 100%;
	border-bottom: 1px solid #e6e6e6;
	padding: 0;
	margin: 0;
}

.product-tabs2 .tab-links ul li:last-child {
	border-bottom: none;
}

.product-tabs2 .tab-links ul li a {
	width: 100%;
	height: auto;
	padding: 10px 20px 12px 20px;
	margin: 0;
}

.product-tabs2 .tab-links ul li a:hover {
	color: #232323;
}

.product-tabs2 .tab-links ul li a.active {
	background: #ffffff;
	box-shadow: none;
}

.product-tabs2 .tab-links:hover ul {
	display: block;
}
}


/* Customer - Reviews */
.customer-reviews {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.customer-reviews h2,
.customer-reviews .h2 {
    text-transform: none;
    padding-bottom: 25px;
}

.customer-reviews .row {
    padding: 0;
    margin: 0 0 -20px 0;
}

.customer-reviews .row > div {
    padding: 0 0 20px 0;
    margin: 0;
}

.customer-reviews .row > div .box {
    width: 100%;
    height: 100%;
    float: left;
    border: 1px solid #dddddd;
    padding: 20px 20px;
}

.customer-reviews .row > div .box p {
    padding-bottom: 10px;
}

.customer-reviews .row > div .box p:last-child {
    padding-bottom: 0;
}

.customer-reviews .row > div .box .name {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 10px;
}

.customer-reviews .row > div .box .rating-star {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.customer-reviews .row > div .box .rating-star:last-child {
    margin-bottom: 0;
}

.customer-reviews .row > div .box .product-title {
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
}

@media (min-width: 768px) {
.customer-reviews .row {
	padding: 0;
	margin: 0 -10px -20px -10px;
}

.customer-reviews .row > div {
	padding: 0 10px 20px 10px;
	margin: 0;
}
}


/* Content - Inner */
.content-inner {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 30px 0;
}


/* Two - Col - Articles */
.two-col-articles {
    width: 100%;
    overflow: hidden;
}

.two-col-articles .row {
    background: #fafafa;
    padding: 0;
    margin: 0;
}

.two-col-articles .row > div {
    position: relative;
    padding: 0;
    margin: 0;
}

.two-col-articles .row > div .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.two-col-articles .row > div .figure img {
    width: 100%;
}

.two-col-articles .row > div .aside {
    width: 100%;
    height: 100%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 40px;
}

.two-col-articles .row > div .aside ul { 
	padding: 0;
}

.two-col-articles .row > div .aside ul li {
    padding-left: 0;
}

.two-col-articles .row > div .aside ul li:before {
    display: none;
}

.two-col-articles .row > div .aside .txt-max {
    width: 100%;
    max-width: 500px;
    float: none;
    display: inline-block;
    vertical-align: top;
}

@media (min-width: 768px) {
.two-col-articles .row {
	padding: 0;
	margin: 0;
}

.two-col-articles .row > div {
	padding: 0;
	margin: 0;
}

.two-col-articles .row > div .figure {
	height: 100%;
}

.two-col-articles .row > div .figure img {
	height: 100%;
}

.two-col-articles .row:nth-child(even) > div:first-child {
	left: 50%;
}

.two-col-articles .row:nth-child(even) > div:nth-child(even) {
	right: 50%;
}
}

@media (max-width: 1199px) {
.two-col-articles .container {
	padding: 0;
}
}

@media (max-width: 767px) {
.two-col-articles .row > div .aside {
	padding: 40px 30px;
}
}


/* Top - Cont */
.top-cont {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 20px 0 50px 0;
}

.top-cont .aside {
    width: 100%;
    max-width: 920px;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.top-cont.cont2 {
    padding-top: 50px;
}


/* About - Cont - Box*/
.about-cont-box {
    width: 100%;
    overflow: hidden;
}

.about-cont-box .box {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background: #fafafa;
    padding: 60px 40px;
    margin: 0 0 80px 0;
}

.about-cont-box:last-child {
    margin-bottom: 0;
}

.about-cont-box .box .figure {
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.about-cont-box .box .figure img {
    width: 100%;
}

.about-cont-box .box .inner-cont {
    width: 100%;
    max-width: 1000px;
    float: none;
    display: inline-block;
    vertical-align: top; 
	text-align: left;
}

@media (max-width: 1199px) {
.about-cont-box .container {
	padding: 0;
}

.about-cont-box .box {
	padding: 50px 40px;
	margin: 0 0 60px 0;
}
}

@media (max-width: 767px) {
.about-cont-box .box {
	padding: 40px 30px;
	margin: 0 0 50px 0;
}
}


/* Article - List */
.article-list {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 0 0 50px 0;
}

.article-list .row {
    padding: 0;
    margin: 0 0 -30px 0;
}

.article-list .row > div {
    padding: 0 0 30px 0;
    margin: 0;
}

.article-list .row > div .box {
    width: 100%;
    font-weight: inherit;
    text-decoration: none;
}

.article-list .row > div .box p:last-child {
    padding-bottom: 0;
}

.article-list .row > div .box .icon {
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.article-list .row > div .box .icon:last-child {
    margin-bottom: 0;
}

.article-list .row > div .box .icon img {
    max-height: 160px;
}

.article-list .row > div .box .aside {
    width: 100%;
    float: left;
}

.article-list .row > div .box:hover h3 a,
.article-list .row > div .box:hover.h3 a,
.article-list .row > div .box.active h3 a,
.article-list .row > div .box.active .h3 a {
    color: #54a26b;
}


@media (min-width: 768px) {
.article-list .row {
	padding: 0;
	margin: 0 -25px -40px -25px;
}

.article-list .row > div {
	padding: 0 25px 40px 25px;
	margin: 0;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.article-list {
	padding: 0 0 30px 0;
}

.article-list .row {
	margin: 0 -20px -40px -20px;
}

.article-list .row > div {
	padding: 0 20px 40px 20px;
}
}

@media (max-width: 1199px) {
.article-list {
	padding: 0 0 20px 0;
}
}

@media (max-width: 767px) {
.article-list {
	padding: 0 0 50px 0;
}
}


/* Two - Col - Articles */
.two-col-articles2 {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.two-col-articles2 .row-item {
    width: 100%;
    overflow: hidden;
}

.two-col-articles2 .row {
    align-items: center;
    padding: 0;
    margin: 0;
}

.two-col-articles2 .row > div {
    position: relative;
    padding: 0;
    margin: 0;
}

.two-col-articles2 .row > div .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.two-col-articles2 .row > div .figure img {
    width: 100%;
}

.two-col-articles2 .row > div .aside {
    width: 100%;
    float: left;
    padding: 50px 0;
}

.two-col-articles2 .row > div .aside ul li {
    padding-left: 0;
}

.two-col-articles2 .row > div .aside ul li:before {
    display: none;
}

.two-col-articles2 .row > div .aside .txt-max {
    width: 100%;
    max-width: 500px;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.two-col-articles2 .row-item:nth-child(even) {
    background: #cee9e0;
}

@media (min-width: 768px) {
.two-col-articles2 .row {
	padding: 0;
	margin: 0;
}

.two-col-articles2 .row > div {
	padding: 0;
	margin: 0;
}

.two-col-articles2 .row-item:nth-child(odd) .row > div:first-child {
	left: 50%;
}

.two-col-articles2 .row-item:nth-child(odd) .row > div:nth-child(even) {
	right: 50%;
}
}

@media (max-width: 767px) {
.two-col-articles2 .row > div .aside {
	padding: 40px 0;
}
}


/* Testimonials */
.testimonials {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.testimonials .row {
    background: #cde9df;
    padding: 0;
    margin: 0;
}

.testimonials .row > div {
    position: relative;
    padding: 0;
    margin: 0;
}

.testimonials .row > div .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.testimonials .row > div .figure img {
    width: 100%;
}

.testimonials .row > div .aside {
    width: 100%;
    height: 100%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
}

.testimonials .row > div .aside h3,
.testimonials .row > div .aside .h3 {
    font-weight: 400;
}

.testimonials .row > div .aside ul li {
    padding-left: 0;
}

.testimonials .row > div .aside ul li:before {
    display: none;
}

.testimonials .row > div .aside .txt-max {
    width: 100%;
    max-width: 640px;
    float: none;
    display: inline-block;
    vertical-align: top; 
	text-align: left;
}

.testimonials .row:nth-child(even) {
    background: #fafafa;
}

@media (min-width: 768px) {
.testimonials .row {
	padding: 0;
	margin: 0;
}

.testimonials .row > div {
	padding: 0;
	margin: 0;
}

.testimonials .row > div .figure {
	height: 100%;
}

.testimonials .row > div .figure img {
	height: 100%;
}

.testimonials .row:nth-child(odd) > div:first-child {
	left: 58.33333333%;
}

.testimonials .row:nth-child(odd) > div:nth-child(even) {
	right: 41.66666667%;
}
}

@media (max-width: 767px) {
.testimonials .row > div .aside {
	padding: 50px 30px;
}
}


/* Features - Box */
.features-box {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.features-box .box {
    width: 100%;
    max-width: 900px;
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #f8f8f8;
}

.features-box .box .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.features-box .box .figure img {
    width: 100%;
}

.features-box .box .inner-box {
    width: 100%;
    float: left; 
	text-align: left;
    padding: 40px 40px;
}

@media (max-width: 767px) {
.features-box .box .inner-box {
	padding: 40px 25px;
}
}


/* Features - List */
.features-list {
    width: 100%;
    overflow: hidden;
}

.features-list .article {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.features-list .article:last-child {
    margin-bottom: 0;
}

.features-list .article .icon {
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: center;
    background: #ceeae1;
    border-radius: 360px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-right: -80px;
}

.features-list .article .icon img {
    max-height: 60px;
    vertical-align: middle;
    border-radius: 360px;
}

.features-list .article .aside {
    width: 100%;
    min-height: 80px;
    text-align: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 100px;
}

.features-list .article .aside h3,
.features-list .article .aside .h3 {
    text-transform: none;
}

.features-list .article .aside ul { 
	padding: 0; 
	margin: 0;
}

.features-list .article .aside ul li {
    padding-left: 18px;
}

.features-list .article .aside ul li:before { 
	width: 6px; 
	height: 2px; 
	float: left; 
	background: #212529; 
	border-radius: 0; 
	top: 13px;
}

.features-list .article-out {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 767px) {
.features-list .article .icon {
	margin: 0 0 15px 0;
}

.features-list .article .aside {
	padding-left: 0;
}
}


/* Lip - Health */
.lip-health-box {
    width: 100%;
    min-height: 500px;
    text-align: center;
    overflow: hidden;
    padding: 50px 0;
}


/* News - List */
.news-list {
    width: 100%;
    overflow: hidden;
}

.news-list .row {
    padding: 0;
    margin: 0 0 -40px 0;
}

.news-list .row > div {
    padding: 0 0 40px 0;
    margin: 0;
}

.news-list .row > div .row {
    padding: 0;
    margin: 0 0 -40px 0;
}

.news-list .row > div .row > div {
    padding: 0 0 40px 0;
    margin: 0;
}

.news-list .row > div .box {
    width: 100%;
    height: 100%;
    float: left;
}

.news-list .row > div .box .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.news-list .row > div .box .figure img {
    width: 100%;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.news-list .row > div .box .aside {
    width: 100%;
    float: left;
}

.news-list .row > div .box .aside h3,
.news-list .row > div .box .aside .h3 { 
	font-weight: 600;
    font-size: 22px;
    color: #232323;
    line-height: 32px;
    text-transform: none;
    padding-bottom: 10px;
}

.news-list .row > div .box .aside h3:last-child,
.news-list .row > div .box .aside .h3:last-child {
    padding-bottom: 0;
}

.news-list .row > div .box .aside h3 a,
.news-list .row > div .box .aside .h3 a {
    color: #232323;
    text-decoration: none;
}

.news-list .row > div .box .aside .date {
    color: #969696;
    padding-bottom: 20px;
}

.news-list .row > div .box .aside .date:last-child {
    padding-bottom: 0;
}

.news-list .row > div .box .aside .btn,
.news-list .row > div .box .aside .button,
.news-list .row > div .box .aside input[type="button"],
.news-list .row > div .box .aside input[type="submit"] {
    min-width: 160px;
}

.news-list .row > div .box:hover .figure img,
.news-list .row > div .box.active .figure img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.news-list .row > div .box:hover .aside h3 a,
.news-list .row > div .box:hover .aside h3 a,
.news-list .row > div .box.active .aside h3 a { 
	color: #006c6c;
}

@media (min-width: 768px) {
.news-list .row {
	padding: 0;
	margin: 0 -15px -60px -15px;
}

.news-list .row > div {
	padding: 0 15px 60px 15px;
	margin: 0;
}
}


/* Blog - List */
.blog-list {
    width: 100%;
    overflow: hidden;
}

.blog-list .sidebar-btn {
    float: none;
    display: none;
    vertical-align: top;
    font-weight: 500;
    font-size: 16px;
    color: #232323;
    line-height: 26px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 30px;
}

.blog-list .sidebar-btn em {
    position: relative;
    top: 0;
    margin-right: 3px;
}

.blog-list .right-panel {
    width: 100%;
    padding-left: 240px;
}

.blog-list .left-sidebar {
    width: 210px;
    float: left;
    position: relative;
    z-index: 5;
    margin-right: -210px;
}

.blog-list .left-sidebar .article {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.blog-list .left-sidebar .article h3,
.blog-list .left-sidebar .article .h3 {
    font-size: 16px;
    line-height: 26px;
    color: #232323;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.blog-list .left-sidebar .article h3:last-child,
.blog-list .left-sidebar .article .h3:last-child {
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .aside {
    width: 100%;
    float: left;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.blog-list .left-sidebar .article .aside:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .aside h4,
.blog-list .left-sidebar .article .aside .h4 {
    font-weight: 500;
    font-size: 16px;
    color: #232323;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0 0 10px 0;
}

.blog-list .left-sidebar .article .aside .date {
    color: #999999;
}

.blog-list .left-sidebar .article:last-child {
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .product-tabs {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.blog-list .left-sidebar .article .product-tabs .product-content {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}

.blog-list .left-sidebar .article .product-tabs .product-content:last-child {
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .product-tabs .product-content .item {
    width: 100%;
    float: left;
    text-align: center;
}

.blog-list .left-sidebar .article .product-tabs .product-content .item .figure {
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-list .left-sidebar .article .product-tabs .product-content .item .figure:last-child {
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .product-tabs .product-content .item .figure img {
    width: 100%;
    max-width: 160px;
}

.blog-list .left-sidebar .article .product-tabs .product-items {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-align: center;
    margin-bottom: 20px;
}

.blog-list .left-sidebar .article .product-tabs .product-items:last-child {
    margin-bottom: 0;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 -3px -10px -3px;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul li {
    padding: 0 4px 10px 4px;
    margin: 0;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul li:before {
    display: none;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul li a {
    width: 36px;
    height: 36px;
    float: left;
    line-height: 36px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 0 1px #e6e6e6;
    border-radius: 360px;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul li a img {
    width: 100%;
    border-radius: 360px;
    vertical-align: top;
}

.blog-list .left-sidebar .article .product-tabs .product-items ul li a.active {
    box-shadow: 0 0 1px 2px #e95144;
}

.blog-list .left-sidebar .article .product-tabs .btn,
.blog-list .left-sidebar .article .product-tabs .button,
.blog-list .left-sidebar .article .product-tabs input[type="button"],
.blog-list .left-sidebar .article .product-tabs input[type="submit"] {
    width: 100%;
}

.blog-list .left-sidebar .article .product-tabs .btn-out {
    width: 100%;
    margin: 0;
}

.blog-list .left-sidebar .article .product-tabs .btn-out a {
    margin: 0;
}

.blog-list .left-sidebar .icon-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 20px;
}

.blog-list .left-sidebar .icon-close button {
    font-size: 25px;
    color: #232323;
    line-height: 1em;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
.blog-list .left-sidebar {
	display: block !important;
}
}

@media (max-width: 767px) {
.blog-list .sidebar-btn {
	display: inline-block;
}

.blog-list .left-sidebar {
	width: 100%;
	max-width: 270px;
	height: 100%;
	float: left;
	display: none;
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	overflow: auto;
	padding: 57px 20px;
	margin: 0;
}

.blog-list .right-panel {
	padding-left: 0;
}

.blog-list .left-sidebar .icon-close {
	display: inline-block;
}
}


/* Blog - Details */
.blog-details {
    width: 100%;
    overflow: hidden;
}

.blog-details .inner-cont {
    width: 100%;
    float: left;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.blog-details .inner-cont:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-details h2,
.blog-details .h2 {
    font-size: 20px;
    color: #232323;
    line-height: 30px;
    text-transform: none;
    padding-bottom: 30px;
}

.blog-details h2:last-child,
.blog-details .h2:last-child {
    padding-bottom: 0;
}

.blog-details h3,
.blog-details .h3 {
    text-transform: none;
}

.blog-details ul {
    padding-bottom: 25px;
}

.blog-details ul:last-child {
    padding-bottom: 0;
}

.blog-details ul li:last-child {
    padding-bottom: 0;
}

.blog-details .figure {
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-details .figure img {
    width: 100%;
}

.blog-details .figure:last-child {
    margin-bottom: 0;
}

.blog-details .figure-left {
    width: 220px;
    float: left;
    margin: 0 25px 25px 0;
}

.blog-details .figure-left img {
    width: 100%;
}

.blog-details .figure-left:last-child {
    margin-bottom: 0;
}

.blog-details .aside {
    width: 100%;
    overflow: hidden;
    padding-bottom: 25px;
}

.blog-details .aside:last-child {
    padding-bottom: 0;
}

.blog-details .action-btn {
    width: 100%;
    overflow: hidden;
}

.blog-details .action-btn a {
    float: none;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #006c6c;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 3px 0;
}

.blog-details .action-btn a:before {
    content: "";
    width: 100%;
    height: 1px;
    float: left;
    background: #006c6c;
    position: absolute;
    bottom: 1px;
    left: 0;
}

.blog-details .action-btn a em {
    font-size: 90%;
    margin-right: 5px;
}

.blog-details .action-btn a:hover,
.blog-details .action-btn a:focus,
.blog-details .action-btn a:active {
    color: #232323;
}

.blog-details .action-btn a:hover:before,
.blog-details .action-btn a:focus:before,
.blog-details .action-btn a:active:before {
    background: #232323;
}

.blog-details .action-btn .btn-left,
.blog-details .action-btn .btn-right {
    width: 50%;
    float: left;
    padding-right: 15px;
}

.blog-details .action-btn .btn-right {
    text-align: right;
    padding-right: 0;
    padding-left: 15px;
}

.blog-details .action-btn .btn-right a em {
    margin-right: 0;
    margin-left: 5px;
}


/* Contact Form */
.contact-form {
    width: 100%;
    overflow: hidden;
}

.contact-form h3,
.contact-form .h3 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.05em;
    padding-bottom: 25px;
}

.contact-form h3:last-child,
.contact-form .h3:last-child {
    padding-bottom: 0;
}

.contact-form .form-field {
    width: 59.75%;
    float: left;
    padding-right: 85px;
}

.contact-form .form-field ul {
    width: 100%;
    float: left;
    padding: 0 0 25px 0;
    margin: 0 0 -25px 0;
}

.contact-form .form-field ul:last-child {
    padding-bottom: 0;
}

.contact-form .form-field ul li {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-form .form-field ul li:before {
    display: none;
}

.contact-form .form-field .btn,
.contact-form .form-field .button,
.contact-form .form-field input[type="button"],
.contact-form .form-field input[type="submit"] {
    min-width: 205px;
}

.contact-form .form-field .btn-out {
    margin: 0;
}

.contact-form .form-field .btn-out a {
    margin: 0;
}

.contact-form .address-box {
    width: 40.25%;
    float: right;
    background: #fafafa;
    padding: 40px 55px;
}

.contact-form .address-box .aside {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.contact-form .address-box .aside:last-child {
    margin-bottom: 0;
}

.contact-form .address-box .aside .btn,
.contact-form .address-box .aside .button,
.contact-form .address-box .aside input[type="button"],
.contact-form .address-box .aside input[type="submit"] {
    min-width: 205px;
}

@media (max-width: 1199px) {
.contact-form .form-field {
	width: 52%;
	padding-right: 40px;
}

.contact-form .address-box {
	width: 48%;
	padding: 40px 30px;
}
}

@media (max-width: 767px) {
.contact-form .form-field {
	width: 100%;
	padding: 0 0 40px 0;
}

.contact-form .form-field:last-child {
	padding-bottom: 0;
}

.contact-form .address-box {
	width: 100%;
	padding: 40px 30px;
}
}


/* Colors */
.red {
    color: #e95144 !important;
}


/* Accord - List */
.accord-list {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 50px;
}

.accord-list:last-child {
    margin-bottom: 0;
}

.accord-list .accord-item {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    border-radius: 0;
    margin-bottom: 15px;
}

.accord-list .accord-item:last-child {
    margin-bottom: 0;
}

.accord-list .accord-header {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.accord-list .accord-header a {
    width: 100%;
    min-height: 48px;
    float: left;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    background: #232323;
    border: none;
    outline: none;
    position: relative;
    padding: 12px 85px 12px 115px;
}

.accord-list .accord-header a:after {
    content: "\Question";
    width: 80px;
    float: left;
    font-family: "SegoeUI", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    background: #ef6454;
    border-radius: 1px;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
}

.accord-list .accord-header a:before {
    content: "\Hide";
    float: right;
    font-family: "SegoeUI", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(0, -50%);
}

.accord-list .accord-header a.collapsed {
    color: #232323;
    background: #fafafa;
}

.accord-list .accord-header a.collapsed:before {
    content: "\Show";
    color: #999999;
}

.accord-list .accordion-body {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 28px 85px 15px 115px;
    margin: 0;
}

.accord-list .accordion-body:after {
    content: "\ Answer";
    width: 80px;
    float: left;
    font-family: "SegoeUI", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    background: #69c69c;
    border-radius: 1px;
    padding: 0 10px;
    position: absolute;
    top: 30px;
    left: 12px;
}

.accord-list .accordion-body p a {
    color: #ef6454;
}

.accord-list .accordion-body p a:hover,
.accord-list .accordion-body p a:focus,
.accord-list .accordion-body p a:active {
    color: #3788e4;
    text-decoration: underline;
}

@media (max-width: 767px) {
.accord-list {
	margin-bottom: 40px;
}

.accord-list .accord-header a {
	padding: 45px 70px 12px 12px;
}

.accord-list .accord-header a:after {
	top: 12px;
	transform: none;
}

.accord-list .accord-header a:before {
	right: 20px;
}

.accord-list .accordion-body {
	padding: 70px 0 15px 12px;
}

.accord-list .accordion-body:after {
	top: 30px;
}
}


/* FAQ - List */
.faq-list {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 60px 0;
}

.faq-list h2 {
    font-weight: 700;
    font-size: 18px;
    color: #232323;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-bottom: 40px;
}

.faq-list h2:last-child {
    padding-bottom: 0;
}

.faq-list p {
    padding-bottom: 30px;
}

.faq-list p:last-child {
    padding-bottom: 0;
}

.faq-list p a {
    color: #3788e4;
    text-decoration: none;
}

.faq-list p a:hover,
.faq-list p a:focus,
.faq-list p a:active {
    color: #3788e4;
    text-decoration: underline;
}

.faq-list .bottom-cont {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.faq-list .bottom-cont p {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 20px 0 0;
}

.faq-list .bottom-cont .btn-out {
    vertical-align: middle;
    margin: 0;
}

.faq-list .bottom-cont .btn-out a {
    margin: 0;
}

@media (max-width: 767px) {
.faq-list {
	padding: 50px 0;
}

.faq-list h2 {
	padding-bottom: 30px;
}

.faq-list .bottom-cont {
	text-align: center;
}

.faq-list .bottom-cont p {
	width: 100%;
	margin: 0 0 20px 0;
}

.faq-list .bottom-cont .btn-out {
	width: 100%;
}
}


/* Signup - Form */
.signup-form {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top; 
	text-align: center;
    padding: 60px 0;
}

.signup-form h2 {
    font-weight: 700;
    font-size: 18px;
    color: #232323;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.signup-form .form-field {
    width: 100%;
    max-width: 420px;
    float: none; 
	display: inline-block; 
	vertical-align: top; 
	text-align: left;
}

.signup-form .form-field ul {
    width: 100%;
    float: left;
    padding: 0 0 25px 0;
    margin: 0 0 -18px 0;
}

.signup-form .form-field ul:last-child {
    padding-bottom: 0;
}

.signup-form .form-field ul li {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 18px 0;
}

.signup-form .form-field ul li:before {
    display: none;
}

.signup-form .form-field .btn,
.signup-form .form-field .button,
.signup-form .form-field input[type="button"],
.signup-form .form-field input[type="submit"] {
    min-width: 232px;
}

.signup-form .form-field .btn-out {
    margin: 0;
}

.signup-form .form-field .btn-out a {
    margin: 0;
}


/* Wish List */
.wish-list-cont {
    width: 100%;
    min-height: 500px;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 60px 0;
}

.wish-list-cont h2 {
    font-weight: 700;
    font-size: 18px;
    color: #232323;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    padding-bottom: 25px;
}

.wish-list-cont .table-out {
    width: 100%;
    float: left;
    overflow-x: auto;
    margin-bottom: 35px;
}

.wish-list-cont .table-info {
    width: 1200px;
    min-height: 50px;
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #fafafa;
    border-bottom: 1px solid #e7e7e7;
    padding: 0;
    margin: 0;
}

.wish-list-cont .table-info ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

.wish-list-cont .table-info ul li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    aligh-items: center;
    padding: 0;
    margin: 0;
}

.wish-list-cont .table-info ul li:before {
    display: none;
}

.wish-list-cont .table-info ul li .col-1,
.wish-list-cont .table-info ul li .col-2,
.wish-list-cont .table-info ul li .col-3,
.wish-list-cont .table-info ul li .col-4,
.wish-list-cont .table-info ul li .col-5 {
    width: 14.33%;
    font-weight: 500;
    font-size: 16px;
    color: #5a5a5a;
    line-height: 24px;
    text-transform: uppercase;
    padding: 13px 20px;
}

.wish-list-cont .table-info ul li .col-2 {
    width: 39.68%;
}

.wish-list-cont .table-info ul li .col-3 {
    width: 22.66%;
}

.wish-list-cont .table-info ul li .col-4 {
    width: 15%;
}

.wish-list-cont .table-info ul li .col-5 {
    width: 8.33%;
}

.wish-list-cont .email-box {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.wish-list-cont .email-box a {
    color: #232323;
    text-decoration: none;
}

.wish-list-cont .email-box a em {
    position: relative;
    margin-right: 5px;
}

.wish-list-cont .email-box a:hover,
.wish-list-cont .email-box a:focus,
.wish-list-cont .email-box a:active {
    color: #006c6c;
}


