




body {
	background: #ffffff none repeat scroll 0 0;
    color: #888888;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
	line-height: 24px;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5,h6 {
	color: #292b2c;
	font-family: 'Courgette', cursive;
}
p {
	color:#888888;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
}
a {
	color: #2f303c;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a:hover {
	color: #e8272e;
	text-decoration: none;
}
a:focus {
	outline: none;
	text-decoration: none;
}
button {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
img {
	max-width: 100%;
}
ul,li,ol {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}
input:focus,
textarea:focus {
	outline: none;
	box-shadow:  none !important;
}
iframe {
	border: 0;
}
section {
	padding: 100px 0;
	position:relative;
	width: 100%;
}
section.small_pt,
.top_footer.small_pt {
	padding-top: 50px;
}
section.small_pb,
.top_footer.small_pb {
	padding-bottom: 50px;
}
.small_padding {
    padding: 30px;
}
.medium_padding {
    padding: 50px;
}
.large_padding {
    padding: 100px;
}
.small_divider {
	height: 30px;
}
.medium_divider {
	height: 50px;
}
.large_divider {
	height: 100px;
}
.padding_eight_all {
	padding: 8%;
}
.padding_eight_lr {
	padding: 0 8%;
}
.padding_eight_tb {
	padding: 8% 0;
}
.list_none li {
	list-style:none;
}
.order_list,
.disc_list {
	padding-left: 15px;
}
.btn:focus,.btn:hover,.btn.active {
	outline: medium none;
}
button:focus {
	outline:none;
}
.btn {
	border-width: 2px;
	cursor: pointer;
	line-height: normal;
	padding: 12px 30px;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-default {
	background-color: #e8272e;
	border: 0;
	box-shadow: 0px 3px #90040a;
	color: #ffffff !important;
	padding: 15px 30px;
}
.btn-default:hover,.btn-default.focus, .btn-default:focus {
	color: #fff;
	box-shadow: 0px 3px #90040a;
}
.btn-default:before,
.btn-white:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.btn-default:before {
    background: #d8171e;
}
.btn-white:before {
    background: #f1f1f1;
}
.btn-default:hover:before,
.btn-white:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn-white {
	background-color: #ffffff;
	border: 0;
	box-shadow: 0px 3px #c9c9c9;
	color: #e8272e !important;
	padding: 15px 30px;
}
.btn-white:hover,.btn-white.focus, .btn-white:focus {
	box-shadow: 0px 3px #c9c9c9;
}

.btn-black:hover {
	background-color: #ffffff;
	color: #333;
}
.btn-outline-white {
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 15px 30px;
}
.btn-outline-white:hover {
	color: #e8272e;
}
.btn-outline-white::before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background-color: #fff;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-outline-white::after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.btn-outline-white:hover::before {
	left: 0%;
	right: auto;
	width: 100%;
}
.btn-outline-black {
	background-color: transparent;
	border: 2px solid #333;
	color: #333;
	padding: 15px 30px;
}
.btn-outline-black:hover {
	color: #fff;
}
.btn-outline-black::before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background-color: #333;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-outline-black::after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.btn-outline-black:hover::before {
	left: 0%;
	right: auto;
	width: 100%;
}
.btn-outline-default {
	background-color: transparent;
	border: 2px solid #e8272e;
	color: #e8272e !important;
	padding: 15px 30px;
}
.btn-outline-default:hover {
	color: #fff !important;
}
.btn-outline-default::before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background-color: #e8272e;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-outline-default::after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.btn-outline-default:hover::before {
	left: 0%;
	right: auto;
	width: 100%;
}
.btn-radius,
.pr-radius {
	border-radius: 50px !important;
}
.btn + .btn {
	margin-left: 10px;
}
.btn i {
	font-size: 22px;
	vertical-align: middle;
	line-height: 1;
}
.btn span {
    font-size: 14px;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 7px 15px;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 14px 35px;
}
.btn-xs {
    padding: 4px 15px;
    font-size: 12px;
}
.btn-md {
    padding: 12px 30px;
    font-size: 16px;
}
.btn.btn-xs i {
    font-size: 12px;
}
.btn.btn-sm i {
    font-size: 16px;
}
.btn.btn-lg i {
    font-size: 28px;
}
.radius_all_5 {
	border-radius: 5px;
}
.radius_all_10 {
	border-radius: 10px;
}
.radius_ltrt_5 {
	border-radius: 5px 5px 0 0;
}
.radius_ltrt_10 {
	border-radius: 10px 10px 0 0;
}
.radius_lbrb_5 {
	border-radius: 0 0 5px 5px;
}
.radius_lbrb_10 {
	border-radius: 0 0 10px 10px;
}
.radius_ltlb_5 {
	border-radius: 5px 0 0 5px;
}
.radius_ltlb_10 {
	border-radius: 10px 0 0 10px;
}
.radius_rtrb_10 {
	border-radius: 0 10px 10px 0;
}
.box_shadow1 {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.box_shadow2 {
	box-shadow: 0px 4px 20px rgba(101, 101, 101, 0.1);
}
.box_shadow3 {
	box-shadow: 0 5px 5px rgba(0,0,0,0.15);
}
.heading_s1 {
	text-transform: capitalize;
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
}
.heading_s1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 1px;
	background-color: #e8272f;
}
.heading_s1::after {
	content: "";
	position: absolute;
	left: 10px;
	bottom: -3px;
	width: 45px;
	height: 1px;
	background-color: #e8272f;
}
.heading_s1.text-center::before,
.heading_s1.text-center::after {
	margin: 0 auto;
	display: table;
	right: 0;
}
.heading_s1.text-center::before {
	left: -10px;
}
.heading_s1 h2 {
	font-size: 34px;
}
.heading_s1 h1,.heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
	margin-bottom: 0px;
	text-transform: capitalize;
}
.heading_s1 p {
	margin-bottom: 0;
}
.heading_light > * {
	color: #fff;
}
.heading_s1.heading_light::before,
.heading_s1.heading_light::after {
	background-color: #ffffff;
}
.text_uppercase * {
	text-transform: uppercase;
}	
.form-control,
.form-control:focus,
.custom-file-input:focus ~ .custom-file-label {
	color: #666666;
	box-shadow: none;
}
.form-control {
	height: 45px;
	padding: 10px 20px;
	font-size: 14px;
}
.form-control::-webkit-input-placeholder {
	color:#888888;
	opacity:1
}
.form-control::-moz-placeholder {
	color:#888888;
	opacity:1
}
.form-control:-ms-input-placeholder {
	color:#888888;
	opacity:1
}
.form-control::-ms-input-placeholder {
	color:#888888;
	opacity:1
}
.form-control::placeholder {
	color:#888888;
	opacity:1
}
.form_style1 .form-control,.form_style1 .form-control:focus {
	border-radius: 50px;
}
.form_style1 textarea.form-control,.form_style1 textarea.form-control:focus {
	border-radius: 35px;
}
.form_style1 .form-control,.form_style1 .form-control:focus {
	border-radius: 50px;
}
.form_transparent .form-control,.form_transparent .form-control:focus, .form_transparent .custom-file-input:focus ~ .custom-file-label {
	background-color: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
.form_transparent .form-control::placeholder {
    color: #fff;
}
.form_transparent .form-control::placeholder {
    color: #fff;
}
.form_transparent .form-control::placeholder {
    color: #fff;
}
.form_transparent .form-control::placeholder {
    color: #fff;
}
.text_white * {
	color: #fff;
}
.text_dark * {
	color: #333 !important;
}
.text_default {
	color: #e8272e !important;
}
.text_light_green {
	color: #B3D369 !important;
}
.text_danger {
	color: #F5576C !important;
}
.text_warning {
	color: #f5bf2f !important;
}
.overflow_hide {
	overflow: hidden;
}
.scrollup {
	background-color: #2f2f2f;
	border-radius: 100%;
	bottom: 20px;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 40px;
	z-index: 99;
}
.scrollup:hover {
	background-color: #e8272e;
	color: #fff;
}
.scrollup:focus {
	color:#fff;
}
.bg_size_auto {
    background-size: auto !important;
}
.bg_size_contain {
	background-size: contain !important;
}
.bg_repeat {
    background-repeat: repeat !important;
}
.position_top_center {
    background-position: top center !important;
}
.position_center_bottom {
    background-position: center bottom !important;
}
.position_right_center {
    background-position: right center !important;
}
.position_right_bottom {
    background-position: right bottom !important;
}
.bg_fixed {
    background-attachment: fixed !important;
}
.z_index_minus1 * {
	z-index: -1;
	position: relative;
}
.overlay_bg_90,
.overlay_bg_80,
.overlay_bg_70,
.overlay_bg_60,
.overlay_bg_50,
.overlay_bg_40,
.overlay_bg_30,
.overlay_bg_30,
.overlay_bg_20,
.overlay_bg_10,
.overlay_bg_dark_90,
.overlay_bg_dark_80,
.overlay_bg_dark_70,
.overlay_bg_dark_60,
.overlay_bg_dark_50,
.overlay_bg_dark_40,
.overlay_bg_dark_30,
.overlay_bg_dark_30,
.overlay_bg_dark_20,
.overlay_bg_dark_10,
.overlay_bg_default_90,
.overlay_bg_default_80,
.overlay_bg_default_70,
.overlay_bg_default_60,
.overlay_bg_default_50,
.overlay_bg_default_40,
.overlay_bg_default_30,
.overlay_bg_default_20,
.overlay_bg_default_10 {
	position: relative;
}
.overlay_bg_90::before,
.overlay_bg_80::before,
.overlay_bg_70::before,
.overlay_bg_60::before,
.overlay_bg_50::before,
.overlay_bg_40::before,
.overlay_bg_30::before,
.overlay_bg_30::before,
.overlay_bg_20::before,
.overlay_bg_10::before,
.overlay_bg_dark_90:before,
.overlay_bg_dark_80:before,
.overlay_bg_dark_70:before,
.overlay_bg_dark_60:before,
.overlay_bg_dark_50:before,
.overlay_bg_dark_40:before,
.overlay_bg_dark_30:before,
.overlay_bg_dark_20:before,
.overlay_bg_dark_10:before,
.overlay_bg_default_90:before,
.overlay_bg_default_80:before,
.overlay_bg_default_70:before,
.overlay_bg_default_60:before,
.overlay_bg_default_50:before,
.overlay_bg_default_40:before,
.overlay_bg_default_30:before,
.overlay_bg_default_20:before,
.overlay_bg_default_10:before {
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.overlay_bg_90::before {
	background-color: rgba(0, 0, 0, 0.90);
}
.overlay_bg_80::before {
	background-color: rgba(0, 0, 0, 0.80);
}
.overlay_bg_70::before {
	background-color: rgba(0, 0, 0, 0.70);
}
.overlay_bg_60::before {
	background-color: rgba(0, 0, 0, 0.60);
}
.overlay_bg_50::before {
	background-color: rgba(0, 0, 0, 0.50);
}
.overlay_bg_40::before {
	background-color: rgba(0, 0, 0, 0.40);
}
.overlay_bg_30::before {
	background-color: rgba(0, 0, 0, 0.30);
}
.overlay_bg_20::before {
	background-color: rgba(0, 0, 0, 0.20);
}
.overlay_bg_10::before {
	background-color: rgba(0, 0, 0, 0.10);
}
.overlay_bg_default_90:before {
	background-color: rgba(255, 188, 9, 0.90);
}
.overlay_bg_default_80:before {
	background-color: rgba(255, 188, 9, 0.80);
}
.overlay_bg_default_70:before {
	background-color: rgba(255, 188, 9, 0.70);
}
.overlay_bg_default_60:before {
	background-color: rgba(255, 188, 9, 0.60);
}
.overlay_bg_default_50:before {
	background-color: rgba(255, 188, 9, 0.50);
}
.overlay_bg_default_40:before {
	background-color: rgba(255, 188, 9, 0.40);
}
.overlay_bg_default_30:before {
	background-color: rgba(255, 188, 9, 0.30);
}
.overlay_bg_default_20:before {
	background-color: rgba(255, 188, 9, 0.20);
}
.overlay_bg_default_10:before {
	background-color: rgba(255, 188, 9, 0.10);
}
.overlay_bg_dark_90::before {
	background-color: rgba(47, 48, 60, 0.90);
}
.overlay_bg_dark_80::before {
	background-color: rgba(47, 48, 60, 0.80);
}
.overlay_bg_dark_70::before {
	background-color: rgba(47, 48, 60, 0.70);
}
.overlay_bg_dark_60::before {
	background-color: rgba(47, 48, 60, 0.60);
}
.overlay_bg_dark_50::before {
	background-color: rgba(47, 48, 60, 0.50);
}
.overlay_bg_dark_40::before {
	background-color: rgba(47, 48, 60, 0.40);
}
.overlay_bg_dark_30::before {
	background-color: rgba(47, 48, 60, 0.30);
}
.overlay_bg_dark_20::before {
	background-color: rgba(47, 48, 60, 0.20);
}
.overlay_bg_dark_10::before {
	background-color: rgba(47, 48, 60, 0.10);
}
.bg_dark {
	background-color: #2f303c !important;
}
.bg_gray {
	background-color: #F7F7F7 !important;
}
.bg_default {
	background-color: #e8272e !important;
}
.radius_all_5[class*="overlay_bg_"]:before{
	border-radius: 5px;
}
.radius_all_10[class*="overlay_bg_"]:before {
	border-radius: 10px;
}
.border_top_tran {
	border-top: 1px solid rgba(255,255,255,0.5);
}
.ripple {
	background-color: #FFFFFF;
	border-radius: 100%;
	color: #e8272e;
	position: relative;
	display: inline-block;
	margin-right: 25px;
	line-height: 50px;
	font-size: 18px !important;
	vertical-align: middle;
	margin-left: 0;
	height: 50px;
    width: 50px;
	text-align: center;
}
.ripple::before,.ripple::after {
	 -webkit-animation: ripple 1.8s infinite ;
    -moz-animation: ripple 1.8s infinite ;
    -o-animation: ripple 1.8s infinite ;
    -ms-transition:ripple 1.8s infinite ;
	animation: ripple 1.8s infinite ;
	background-color: #ffffff;
	border-radius: 100%;
	margin: -20px;
	bottom: 0px;
	content: "";
	display: block;
	left: 0px;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index:-1;
}
.ripple::before {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.ripple::after {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
@-webkit-keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.5;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}


#preloader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
	z-index: 999999;
}
.sk-folding-cube {
	margin: 0px auto;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s cubic-bezier(.68,-0.55,.27,1.55);
	-moz-transform: translateY(-50%) translate3d(0, 0, 0);
	-webkit-transform: translateY(-50%) translate3d(0, 0, 0);
	transform: translateY(-50%) translate3d(0, 0, 0);
}
.sk-folding-cube-box {
	margin: 0px auto 30px;
	width: 40px;
	height: 40px;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #E8272E;
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
	transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
	transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
	transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}



.navbar-brand {
	padding: 10px 0;
}
.nav-fixed .navbar-brand {
	padding: 5px 0;
}
.dark_skin .logo_light, .dark_skin .logo_default,
.light_skin .logo_default, .light_skin .logo_dark {
	display: none;
}
.dark_skin .logo_dark,
.light_skin .logo_light {
	display: block;
}
.light_skin .navbar-nav a,
.light_skin .navbar-toggler {
	color: #ffffff;
}
.navbar {
	padding: 0;
}
.header_wrap {
	transition: all 0.5s ease 0s;
}
.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
	background-color: #fff;
}
.navbar .navbar-nav li {
	position: relative;
	list-style: none;
}
.navbar-nav .dropdown-menu {
	border: 0 none;
	border-radius: 0;
	margin: 0;
	min-width: 12rem;
	padding: 0;
}
.navbar-nav .dropdown-menu:not([class*="bg_"]):not([class*="bg-"]) {
	background-color: #333333;
}
.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
	background-color: #252525;
}
.dark_skin:not([class*="bg_"]):not([class*="bg-"]) .navbar-nav .dropdown-menu {
	background-color: #fff;
	box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
	border-top: 2px solid #e8272e;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
}
.dark_skin .mega-menu-col,
.dark_skin .cart_list li {
	border-color: #ddd;
}
.dark_skin .navbar .navbar-nav .dropdown-menu li a.active, 
.dark_skin .navbar .navbar-nav .dropdown-menu li a:hover, 
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > li:hover > a, 
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	color: #e8272e;
}
.dark_skin .navbar .navbar-nav .dropdown-item, 
.dark_skin .navbar .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total {
	color: #444444;
}
.dark_skin .cart_list a {
	color: #444444 !important;
}
.dark_skin .cart_list a:hover, .dark_skin .item_remove:hover {
	color: #444444 !important;
}

.dropdown-toggle::after, .dropdown-toggler::after {
	border: 0 none;
	content: "\f3d0";
	font-family: "Ionicons";
	height: auto;
	line-height: normal;
	margin-left: 5px;
	vertical-align: middle;
	width: auto;
	transition: all 0.3s ease-in-out;
	font-weight: 100;
}
.dd_main_arrow_none .navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
	content: normal;
}
.dropdown-toggler::after {
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.dropdown-menu .dropdown-toggler::after {
	position: absolute;
	right: 10px;
	top: 10px;
}
.navbar .navbar-nav > li > .nav-link {
	font-size: 16px;
	font-weight: 600;
    padding: 30px 13px;
    text-transform: uppercase;
}
.nav-fixed .navbar .navbar-nav > li > .nav-link {
	padding: 25px 10px;
}
.navbar .navbar-nav > li > a.active, 
.navbar .navbar-nav > li:hover > a {
	color: #e8272e;
}
.main_menu_capitalize .navbar .navbar-nav > li > .nav-link {
	text-transform: capitalize;
}
.main_menu_weight_100 .navbar .navbar-nav > li > .nav-link {
	font-weight: 100;
}
.main_menu_weight_200 .navbar .navbar-nav > li > .nav-link {
	font-weight: 200;
}
.main_menu_weight_300 .navbar .navbar-nav > li > .nav-link {
	font-weight: 300;
}
.main_menu_weight_400 .navbar .navbar-nav > li > .nav-link {
	font-weight: 400;
}
.main_menu_weight_500 .navbar .navbar-nav > li > .nav-link {
	font-weight: 500;
}
.main_menu_weight_600 .navbar .navbar-nav > li > .nav-link {
	font-weight: 600;
}
.main_menu_weight_700 .navbar .navbar-nav > li > .nav-link {
	font-weight: 700;
}
.main_menu_weight_800 .navbar .navbar-nav > li > .nav-link {
	font-weight: 800;
}
.main_menu_weight_900 .navbar .navbar-nav > li > .nav-link {
	font-weight: 900;
}
.main_menu_size_16 .navbar .navbar-nav > li > .nav-link {
	font-size: 16px;
}
.bottom-header .navbar .navbar-nav > li > .nav-link {
	padding: 20px 10px;
}
.navbar .navbar-nav .dropdown-item {
	padding: 8px;
	color: #ffffff;
	font-size: 14px;
	text-transform: capitalize;
	border-bottom: 1px solid #e6e6e6;
}
.navbar .navbar-nav .dropdown-header {
    color: #fff;
    padding: 10px 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.nav-fixed .navbar .attr-nav li .nav-link {
	padding: 25px 15px;
}
.navbar .attr-nav li .nav-link {
	padding: 30px 15px;
	position: relative;
}
.navbar .attr-nav li .search_trigger::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	height: 12px;
	width: 1px;
	background-color: #2f303c;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.navbar .attr-nav li .nav-link i {
	font-size: 16px;
}
.hover_menu_style2 .navbar .navbar-nav.attr-nav > li > .nav-link {
	margin: 0;
	padding: 20px 10px;
}
.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.navbar .navbar-nav.attr-nav .dropdown-menu li a.active, 
.navbar .navbar-nav.attr-nav .dropdown-menu li a:hover, 
.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
	background-color: rgba(0,0,0,0);
}
.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a, 
.navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
	color: #e8272e;
}
.search-overlay {
	border: 1px solid #ddd;
	right: 0;
	opacity: 0;
	position: absolute;
	min-width: 300px;
	top: 100%;
	transition: all 0.25s ease-in-out 0s;
	visibility: hidden;
	width: 100%;
	z-index: 999;
	background-color: #fff;
	padding: 15px;
	-webkit-transform: scale(0);
    transform: scale(0);
	-webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: calc(100% - 30px) 0;
}
.search-overlay.open {
    visibility: visible;
    opacity: 1;
	-webkit-transform: scale(1);
    transform: scale(1);
}
.search_trigger.open i::before {
	content: "\f129";
	font-family: "Ionicons";
}
.navbar .attr-nav li .search_trigger i {
	width: 15px;
}
.search_wrap {
	position: relative;
}
.search_icon {
	font-size: 18px;
	position: absolute;
	right: 15px;
	top: 10px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
}
.search_wrap .form-control {
	padding: 10px 15px;
	height: auto;
}
.header_wrap.nav-fixed {
	box-shadow: 0 0 1px rgba(0,0,0,0.5);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 999;
}
.header_wrap.fixed-top.nav-fixed {
	padding-top: 0 !important;
}
.nav-fixed.border_bottom_tran {
	border: 0;
}
.header_wrap.nav-fixed.no-sticky {
	position: relative;
}
.bg-dark.light_skin.nav-fixed .logo_dark {
    display: none;
}
.bg-dark.light_skin.nav-fixed .logo_light {
    display: block;
}
.header_wrap.nav-fixed.bg-dark {
    border-bottom: 0;
}
.bg-dark.light_skin.nav-fixed .navbar-nav > li > a, .bg-dark.light_skin.nav-fixed .navbar-toggler {
    color: #fff;
}
.bg-dark.hover_menu_style2.nav-fixed .navbar .navbar-nav > li > .nav-link::before {
    background-color: #fff;
}
.header_wrap.nav-fixed[class*="overlay_"]:before {
	content: normal;
}
.mega-menu {
	display: table;
	padding: 15px 0;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.navbar .navbar-nav li.dropdown-mega-menu {
	position: static;
}
.dropdown-mega-menu .dropdown-menu {
	right: 0;
}
.mega-menu-col {
	border-right: 1px solid #5d5d5d;
}
.mega-menu-col:last-child {
	border-right: 0;
}
.dropdown-menu li a i {
    font-size: 14px;
    width: 20px;
    display: inline-block;
	text-align: center;
}
.cart_list li {
	list-style: outside none none;
}
.cart_count {
	position: absolute;
	top: 13px;
	right: 2px;
	font-size: 10px;
	background-color: #e8272e;
	border-radius: 50px;
	height: 16px;
	line-height: 16px;
	padding: 0 5px;
	color: #fff;
	font-weight: normal;
}
.nav-fixed .cart_count {
	top: 8px;
}
.cart_box {
	background-color: #333333;
	width: 300px;
	position: absolute !important;
	-webkit-transform: scale(0);
    transform: scale(0);
	-webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: calc(100% - 30px) 0;
	display: block;
	transition: all 0.25s ease-in-out;
}
.navbar .navbar-nav li.show > .dropdown-menu.cart_box {
	-webkit-transform: scale(1);
    transform: scale(1);
}
.cart_list li {
	border-bottom: 1px solid #777777;
	padding: 20px;
}
.item_remove {
	float: right;
}
.cart_list img {
	background-color: #ffffff;
	float: left;
	margin-right: 10px;
	max-width: 60px;
	vertical-align: top;
}
.cart_list a {
	color: #fff !important;
	font-size: 14px;
	vertical-align: top;
	padding: 0 !important;
}
.cart_list a:hover,.item_remove:hover {
	color: #ddd !important;
}
.cart_quantity {
	color: #ffffff;
	display: inline-block;
	font-weight: 500;
}
.cart_list {
    display: table;
}
.cart_total {
	color: #ffffff;
	margin: 0;
	padding: 10px 20px;
	text-align: right;
	font-weight: bold;
}
.cart_total strong {
	float: left;
}
.cart_buttons {
	margin: 0;
	padding: 10px 20px 20px;
	text-align: center;
}
.cart_buttons .view-cart, .cart_buttons .checkout {
	margin: 0 5px !important;
	padding: .375rem .75rem !important;
	float: none !important;
}
.top-header,
.middle-header {
    padding: 10px 0;
}
.light_skin  .top-header,
.light_skin  .middle-header {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.dark_skin .top-header,
.dark_skin .middle-header {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.social_icons, .contact_detail {
	font-size: 0;
}
.contact_detail li,
.header_list li {
    display: inline-block;
	padding: 2px 10px;
}
.social_icons li {
	display: inline-block;
}
.social_icons li a {
	font-size: 18px;
    height: 38px;
    width: 38px;
	line-height: 38px;
    display: inline-block;
    text-align: center;
	vertical-align: middle;
	margin-right: 10px;
}
.social_icons.social_small li a {
	height: 25px;
	width: 25px;
	line-height: 26px;
	font-size: 16px;
}
.social_white .social_icons li a, .social_white.social_icons li a {
	color: #fff;
	border-color: #fff;
}
.border_social .social_icons li a:hover, .border_social.social_icons li a:hover {
	background-color: #e8272e;
	border-color: #e8272e;
	color: #fff;
}
.border_social li a {
	border: 1px solid #292b2c;
}
.social_icons li:last-child a {
	margin-right: 0px;
}
.radius_social li a {
	border-radius: 5px;
}
.rounded_social li a {
	border-radius: 50px;
}
.contact_detail i {
	margin-right: 2px;
	vertical-align: middle;
}
.contact_detail li {
	color: #000;
	font-size: 14px;
	vertical-align: middle;
}
.contact_detail li:first-child {
	margin-left: 0px;
}
.contact_detail li a span {
	vertical-align: middle;
}
.top-header.light_skin .contact_detail li,
.top-header.light_skin .contact_detail li a {
	color: #fff;
}
.top-header.dark_skin .contact_detail li {
	color: #000;
}
header .social_icons li a {
	font-size: 16px;
	height: 30px;
	width: 30px;
	line-height: 30px;
}
.nav-fixed .top-header,
.nav-fixed .middle-header {
	display: none !important;
}
.navbar-toggler {
	float: right;
    margin: 22px 0;
    font-size: 28px;
	transition: all 0.5s ease 0s;
}
.navbar-toggler:hover {
	color: #e8272e;
}
.navbar-toggler[aria-expanded="true"] span::before {
    content: "\f129";
    font-size: 20px;
    width: 21px;
    line-height: 28px;
	vertical-align: top;
}
header .attr-nav + .social_icons {
	border-left: 1px solid #333;
	margin-left: 5px;
	padding-left: 5px;
}
header .attr-nav + .social_icons li {
	padding: 0;
}
header.light_skin .attr-nav + .social_icons {
	border-color: #fff;
}
header.light_skin.nav-fixed .attr-nav + .social_icons {
	border-color: #333;
}
header.light_skin.nav-fixed .social_icons li a {
	color: #000;
}
header.light_skin.nav-fixed .social_icons li a:hover {
    color: #0E93D8;
}
.navbar .btn {
	padding: 10px 25px;
}
.header_info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.header_info li {
	display: -ms-flexbox;
	display: flex;
	padding-left: 30px;
}
.header_info li:first-child {
	padding-left: 0px;
}
.header_info li i {
    width: 30px;
	font-size: 28px;
	height: 30px;
	color: #0e93d8;
}
.header_info li p{
	margin: 0;
	color: #292b2c;
}
.header_info li .hd_info {
    padding-left: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.43;
}
.custome_dropdown {
	position: relative;
}
.custome_dropdown .ddTitleText img, .custome_dropdown .ddChild li img {
	float: left;
	max-width: 25px;
	margin-right: 8px;
}
.custome_dropdown .ddlabel {
	vertical-align: middle;
	text-transform: capitalize;
	font-size: 14px;
	white-space: nowrap;
}
.custome_dropdown #pr_select_msdd .ddlabel {
	margin-left: 0;
}
.custome_dropdown .dd.ddcommon {
	cursor: pointer;
	padding-right: 15px;
	position: relative;
	width: auto !important;
	outline: none;
}
.custome_dropdown .ddTitleText {
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
}
.custome_dropdown .ddChild li {
	cursor: pointer;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-align:center;
	align-items: center;
	line-height: normal;
	list-style: outside none none;
	padding: 5px 10px;
	width: 100%;
	border-top: 1px solid #e6e6e6;
}
.arrowoff::before {
	content: "\f3d0";
	font-family: "Ionicons";
	position: absolute;
	right: 0;
	top: 0px;
	color: #fff;
}
.custome_dropdown.custome_dropdown_white .ddTitleText ,
.custome_dropdown_white .ddArrow::before {
	color: #fff;
}
.search_box {
	position: relative;
}
.search_box input {
	padding-right: 30px;
}
.search_box button {
	border: 0;
	padding: 0 10px;
	background-color: transparent;
	font-size: 22px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
}
.header_list > li {
	position: relative;
}
.header_list > li a {
	font-size: 14px;
}
.border_list li {
	position: relative;
}
.border_list li::before {
	content: "";
	position: absolute;
	left: 0;
	height: 12px;
	width: 1px;
	background-color: #eee;
	top: 50%;
	transform: translateY(-50%);
}
.border_list li:first-child:before {
	content: normal;
}
.header_wrap.light_skin.nav-fixed .btn-outline-white {
	border: 2px solid #333;
	color: #333;
}
.header_wrap.light_skin.nav-fixed .btn-outline-white:hover {
	background-color: #333;
	border: 2px solid #333;
	color: #fff;
}
.top-header.light_skin .header_list li a,
.top-header.light_skin .ddArrow::before {
	color: #fff;
}
.top-header.light_skin .header_list > li::before {
	background-color: #fff;
}
.top-header .custome_dropdown .ddChild {
	background-color: #fff;
	border: 0 !important;
	min-width: 10rem;
	left: -10px;
}
.top-header.light_skin .header_list li a:hover,
.top-header.light_skin .contact_detail li a:hover {
	color: #e8272e;
}




.full_screen,.full_screen .carousel-item {
	min-height: 100vh;
}
.banner_section:not(.full_screen),.banner_section:not(.full_screen) .carousel-item {
	height: 700px;
}
.banner_content_wrap .carousel-item {
	padding: 100px 0;
}
.banner_content h2 {
	font-size: 46px;
	margin-bottom: 15px;
	letter-spacing: 0;
}
.banner_content p {
	color: #333;
	font-size: 16px;
	margin-bottom: 25px;
}
.banner_content.text_white p {
	color: #fff;
}
.banner_section .banner_slide_content {
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.carousel-control-next, .carousel-control-prev {
	background-color: rgba(0,0,0,0.5);
	font-size: 20px;
	height: 50px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
	 opacity: 0;
}
.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel_style1 .carousel-control-next, .carousel_style1 .carousel-control-prev {
	border-radius: 100%;
}
.carousel-indicators {
	bottom: 20px;
}
.carousel-indicators li {
	background-color: transparent;
	border: 1px solid #fff;
	cursor: pointer;
	width: 12px;
	height: 12px;
	margin: 0 15px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 1;
}
.carousel-indicators li.active,
.carousel-indicators li:hover {
	background-color: #fff;
}

.carousel-indicators li::before {
	content: "";
	position: absolute;
	right: -17px;
	width: 15px;
	background-color: #fff;
	height: 1px;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -10px;
}
.carousel-indicators li:last-child:before {
	content: normal;
}
.carousel-indicators.horis_indicators {
	display: block;
	margin-left: 20px;
	margin-right: 0;
	bottom: auto;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: auto;
}
.carousel-indicators.horis_indicators li {
	margin: 25px 0px;
}
.carousel-indicators.horis_indicators li::before {
	width: 1px;
	height: 10px;
	right: auto;
	left: 19px;
	top: 15px;
}
.content_overlay_bg {
	padding: 50px;
	position:relative;
}
.content_overlay_bg::before {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.banner_head2 {
	 font-size: 40px;
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}
.carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
	opacity: 1;
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.carousel-indicators.justify-content-end {
	left: auto;
}
.carousel-indicators.justify-content-start {
	right: auto;
}
.carousel-item img {
	position: relative;
	z-index: -1;
}



.about_img {
	position: relative;
	display: inline-block;
	width: 100%;
}
.about_img1, .about_img2 {
	float: left;
	width: 50%;
	padding: 0 15px;
}
.about_img1 img, .about_img2 img {
	width: 100%;
}
.about_img2 {
	margin-top: 60px;
}
.about_arrow {
	position: absolute;
	bottom: 0;
	left: 37%;
}
.about_content p {
	margin-bottom: 15px;
}
.shape1 {
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -1;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.shape2 {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.shape3,
.shape6 {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.shape4 {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 300px;
	z-index: -1;
}
.shape5 {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 300px;
	z-index: -1;
}



.icon_box {
	padding: 15px;
	z-index: 9;
	margin-top: 30px;
	transition: all 0.5s ease-in-out;
}
.box_icon,
.intro_desc {
	position: relative;
}
.box_icon {
	margin-bottom: 15px;
}
.box_icon i {
	font-size: 40px;
}
.box_icon img {
	max-width: 60px;
}
.intro_desc h5 {
	text-transform: capitalize;
}
.intro_desc p:last-child {
	margin: 0;
}
.icon_box_style1 {
	background-color: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.2);
	margin-top: 72px;
}
.icon_box_style2 {
	background-color: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.2);
	margin-top: 40px;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-align: center;
	align-items: center;
}
.icon_box_style2 .box_icon {
	margin-right: 20px;
	margin-bottom: 0;
}
.icon_box_style2 .box_icon img {
	max-width: 68px;
	height: 68px;
}
.icon_box_style1 .box_icon {
	background-color: #fff;
	display: table;
	border-radius: 100%;
	margin: -55px auto 15px;
	height: 70px;
	width: 70px;
	line-height: 70px;
	color: #e8272f;
	transition: all 0.5s ease-in-out;
}
.icon_box_style1:hover,
.icon_box_style2:hover {
	background-color: #E8272F;
	border-color: #E8272F;
}
.icon_box_style1:hover .box_icon {
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}




.menu_list {
	margin-right: -15px;
	margin-left: -15px;
	display: table;
}
.menu_list li {
	padding: 0 15px;
	float: left;
	width: 50%;
}
.single_menu_product {
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px;
}
.menu_product_img {
	margin-right: 15px;
	position: relative;
	padding-left: 10px;
}
.menu_product_img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid #cacaca;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	transition: all 0.5s ease-in-out;
}
.single_menu_product .menu_product_img::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(232,39,47,0.7);
	height: 90px;
	width: 90px;
	border-radius: 100%;
	transition: all 0.5s ease-in-out;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.single_menu_product:hover .menu_product_img::after {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.single_menu_product:hover .menu_product_img::before {
	border-color: #e8272f;
}
.single_menu_product:hover .menu_title *,
.single_menu_product:hover .menu_price span {
	color: #e8272f;
}
.menu_product_img img {
	border-radius: 100%;
	position: relative;
	max-width: 90px;
}
.menu_product_info {
	width: 100%;
}
.menu_title_price {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}
.menu_title * {
	transition: all 0.5s ease-in-out;
}
.menu_price span {
	color: #292b2c;
	font-family: 'Courgette', cursive;
	font-size: 16px;
	transition: all 0.5s ease-in-out;
}
.menu_list li:nth-child(2n+1) .single_menu_product,
.menu_list li:nth-child(2n+1) .menu_title_price {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.menu_list li:nth-child(2n+1) .menu_product_img {
	margin-right: 0;
	position: relative;
	padding-left: 0;
	padding-right: 10px;
	margin-left: 15px;
}
.menu_list li:nth-child(2n+1) .menu_product_img::before {
	left: 10px;
}
.menu_list li:nth-child(2n+1) .single_menu_product .menu_product_img::after {
	left: 0px;
}
.menu_list li:nth-child(2n+1) .menu_product_info {
	text-align: right;
}
.menu_product_info p:last-child {
	margin: 0;
}
.list_border::before {
	content: "";
	position: absolute;
	left: 0;
	top: 70px;
	height: -webkit-calc(100% - 120px);
	height: -moz-calc(100% - 120px);
	height: calc(100% - 120px);
	width: 1px;
	background-color: #ddd;
	right: 0;
	margin: 0 auto;
}
.list_border {
	position: relative;
}



.book_table {
	padding: 30px 20px;
}
.mdtp__wrapper {
	bottom: auto;
	top: 50%;
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.mdtp__clock .mdtp__minute_holder .mdtp__digit:not(.marker) span {
	top: -4px;
	position: relative;
}
.input_group {
	position: relative;
}
.input_group .form-control {
	padding: 10px 45px 10px 20px;
}
.input_icon {
	position: absolute;
	right: 20px;
	top: 0;
	padding: 10px 0px;
	pointer-events: none;
}
.opening_time {
	padding-top: 15px;
	border-top: 1px solid rgba(255,255,255,0.4);
	margin-top: 15px;
}
.time_info h6 {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}
.time_info span {
	color: rgba(255,255,255,0.5);
	font-style: italic;
}
.chef_img {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	overflow: hidden;
}



.team_title {
	background-color: #fff;
	margin-top: 15px;
	text-transform: capitalize;
}
.team_title span {
	font-size: 16px;
	color: #e8272e;
}
.team_img {
	position: relative;
	overflow: hidden;
}
.team_style1 .hover_info {
	position: absolute;
	bottom: 0;
	text-align: center;
	left: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	padding: 10px;
}
.team_contact  {
	margin-top: 15px;
}
.team_contact_white li a {
	color: #fff;
}
.team_contact li {
	padding: 10px 0;
	line-height: normal;
}
.team_style1 .social_icons li {
	opacity: 0;
	-moz-transform: translateY(130px);
	-webkit-transform: translateY(130px);
	transform: translateY(130px);
	transition: all 0.5s ease 0s;
	visibility: hidden;
}
.team_style1:hover .social_icons li {
	opacity: 1;
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	visibility: visible;
}
.team_style1 .team_contact li {
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
.team_style1:hover .team_contact li {
	-webkit-animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-duration: 0.6s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}
.team_style1 .team_contact li:nth-child(2n) {
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
.team_style1:hover .team_contact li:nth-child(2n) {
	-webkit-animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-duration: 0.7s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

.team_style1 .social_icons li:nth-child(2n) {
	transition: all 0.6s ease 0s;
}
.team_style1 .social_icons li:nth-child(3n) {
	transition: all 0.7s ease 0s;
}
.team_style1 .social_icons li:nth-child(4n) {
	transition: all 0.8s ease 0s;
}
.team_style1 .social_icons li:nth-child(5n) {
	transition: all 0.9s ease 0s;
}
.team_style1 .social_icons li:nth-child(6n) {
	transition: all 1s ease 0s;
}
.team_img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}
.team_style1 .team_img::before {
	content: "";
	position: absolute;
	left: 100%;
	right: 100%;
	background-color: rgba(47,48,60,0.8);
	top: 0;
	bottom: 0;
	transition: all 0.4s ease-in-out;
}
.team_style1:hover .team_img::before {
	left: 0;
	right: 0;
}
.team_style1.team_box:hover .team_img:before {
	opacity: 1;
}
.team_style1 {
	border-radius: 10px;
	margin-top: 30px;
}
.team_style1 .team_img,
.team_style1 .team_img img,
.team_style1 .team_img:before {
	border-radius: 10px 10px;
}
.team_single_info {
	padding: 15px;
	display: inline-block;
	width: 100%;
}
.contact_info span {
	color: #e8272e;
	float: left;
	margin-right: 10px;
	line-height: normal;
	max-width: 15px;
	width: 100%;
}
.team_name {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}
.team_style2 .social_icons {
	margin-top: 15px;
}
.team_style2:hover img {
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}




.testimonial_box {
	margin-bottom: 20px;
}
.testimonial_img img {
	max-width: 66px;
}
.testi_user span,
.author_intro span {
	font-style: italic;
}
.testi_user,
.author_intro {
	margin-bottom: 10px;
}
.testi_meta,
.author_meta {
	overflow: hidden;
}
.testimonial_style1 .testi_desc {
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid rgba(47,48,60,0.15);
	padding: 40px 30px 60px 30px;
	position: relative;
	text-align: center;
	z-index: 1;
}
.testimonial_style1 .testi_desc::before {
	content: "\f10d";
	position: absolute;
	left: 80px;
	top: 0px;
	font-family: "Font Awesome 5 Free";
	font-size: 140px;
	line-height: normal;
	font-weight:900;
	z-index: -1;
	color: #ececec;
}
.testimonial_style1 .testimonial_img img {
	border-radius: 100%;
}
.testimonial_style1 .testimonial_img {
	margin: 0 auto 15px;
	display: table;
}
.testi_user h6 {
	font-size: 18px;
}
.testimonial_style1 .testi_meta {
	text-align: center;
	margin-top: -30px;
	position: relative;
	z-index: 9;
}
.testi_desc p:last-child,
.author_desc p:last-child {
	margin: 0;
}
.testimonial_style2 .testimonial_box {
	text-align: center;
	border: 2px solid #eee;
	padding: 20px;
	margin-top: 60px;
	background-color: #fff;
}
.testimonial_style2 .testimonial_img{
	float: none;
	margin: -80px auto 20px;
	display: table;
	padding: 10px;
	border: 2px solid #eee;
	background-color: #fff;
}
.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 0;
}
.owl-theme .owl-dots .owl-dot span::before {
	content: "";
	position: absolute;
	right: -16px;
	width: 12px;
	background-color: #e8272f;
	height: 1px;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -10px;
}
.owl-theme .owl-dots .owl-dot:last-child span::before {
	content: normal;
}
.owl-theme .owl-dots .owl-dot span {
	background-color: transparent;
	border-radius: 0;
	border: 1px solid #e8272f;
	cursor: pointer;
	width: 12px;
	height: 12px;
	margin: 0 15px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 1;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #e8272f;
}



.blog_post {
	margin-top: 30px;
	overflow: hidden;
	background-color: #f9f9f9
}
.blog_title {
	margin-bottom: 15px;
}
.blog_img {
	position: relative;
	overflow: hidden;
}
.blog_img img {
	width: 100%;
}
.blog_meta {
	display: table;
	width: 100%;
	margin-bottom: 10px;
}
.blog_meta li {
	display: inline-block;
	margin-right: 8px;
	padding-right: 10px;
	position: relative;
}
.blog_meta li::before {
	content: "";
	position: absolute;
	right: 0;
	height: 14px;
	width: 2px;
	background-color: #b5b5b5;
	top: 5px;
}
.blog_meta li:last-child:before {
	content: normal;
}
.blog_meta li:last-child {
	margin-right: 0px;
	padding-right: 0;
}
.blog_meta li i {
	margin-right: 8px;
	color: #e8272e;
}
.blog_meta li a {
	color: #181818;
	text-transform: capitalize;
}
.blog_meta li a:hover {
	color: #e8272e;
}
.blog_content {
	padding:15px;
}
.blog_content p {
	margin-bottom: 10px;
}
.blog_img img {
    transition: all 0.5s ease-in-out;
}
.blog_img img {
    width: 100%;
}
.blog_post:hover .blog_img img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.blog_list .blog_post {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.blog_list .blog_img {
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	max-width: 32%;
	width: 100%;
}
.blog_list .blog_content {
	padding: 20px 30px;
}
.blog_list .blog_content p {
	overflow: hidden;
	height: 48px;
}
.blog_list .blog_post:first-child {
	margin-top: 0px;
}
.blog_grid div[class*=col-]:nth-child(-n+2) .blog_post {
	margin-top: 0px;
}
.single_post .blog_content {
	padding: 0px;
}
.single_post .blog_title {
	font-size: 34px;
}
.single_post .blog_img {
	margin-bottom: 15px;
}



.contact_map {
	position: absolute;
	left: 0;
	right: 0;
	top: 110px;
	z-index: 0;
}
.contact_map iframe {
	height: 400px;
	width: 100%;
	display: block;
}
.map_radius_rtrb {
	border-radius: 0 10px 10px 0;
}
.contact_form {
	padding: 25px 20px;
	position: relative;
	z-index: 1;
}
.contact_info_box {
	padding: 30px;
}
.map_contact iframe {
	width: 100%;
	height: 100%;
}
.contact_info_box .icon_box {
	margin-top: 20px;
}
.contact_info_box li:first-child .icon_box {
	margin-top: 0px;
}



.overlap_bottom {
	margin-bottom: -70px;
	position: relative;
	z-index: 1;
}
.newsletter_form {
	position: relative;
}
.newsletter_form input,
.newsletter_form input:focus {
	background-color: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.4);
	padding: 15px 160px 15px 30px;
	width: 100%;
	color: #fff;
	height: 70px;
}
.rounded_input input {
	border-radius: 50px;
}
.newsletter_form button {
	position: absolute;
	right: 9px;
	top: 9px;
}
.newsletter_form .form-control::placeholder {
    color: #fff;
}
.newsletter_form .form-control::placeholder {
    color: #fff;
}
.newsletter_form .form-control::placeholder {
    color: #fff;
}
.newsletter_form .form-control::placeholder {
    color: #fff;
}
.newslatter_section {
	padding: 30px;
}



.footer_logo {
	margin-bottom: 15px;
}
.top_footer {
	padding: 100px 0;
}
.widget_links li {
	padding: 0 0 10px;
}
.widget_links li:last-child {
	padding-bottom: 0;
}
.widget_links li a {
	color: #888888;
	font-size: 14px;
	position: relative;
}
.widget_links.links_style1 li a:hover,
.widget_links.links_style2 li a:hover {
	padding-left: 5px;
}
.links_style2 li a::before {
	content: "\f3d3";
	font-family:"Ionicons";
	font-size: 18px;
	vertical-align: middle;
	margin-right: 10px;
}
.contact_info > li > i {
	font-size: 18px;
	vertical-align: middle;
	max-width: 30px;
	width: 100%;
	text-align: center;
	margin-right: 5px;
}
.contact_info li:first-child {
	margin-top: 0;
}
.contact_info > li {
	margin-top: 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.contact_info i + *,
.contact_info span + * {
	font-size: 14px;
	color: #888888;
	margin: 0;
	vertical-align: top;
}
footer .widget_title {
	font-size: 18px;
	margin-top: 10px;
}
.widget_title {
	margin-bottom: 20px;
	text-transform: capitalize;
	position: relative;
}
.bottom_footer {
	padding: 30px 0;
	position: relative;
}
.footer_link li {
	display: inline-block;
	position: relative;
}
.footer_link li::before {
	content: "";
	height: 12px;
	width: 1px;
	background-color: #fff;
	display: inline-block;
	vertical-align: middle;
}
.footer_link li:first-child:before {
	content: normal;
}
.footer_link li a {
	font-size: 14px;
	padding: 0 10px;
	color: #888;
}
.post_footer {
	display: -ms-flexbox;
	display: flex;
}
.post_img {
	margin-right: 12px;
	max-width: 86px;
	width: 100%;
	overflow: hidden;
}
.post_img img {
	border-radius: 10px;
}
.post_date {
	font-size: 80%;
}
.recent_post > li {
	display: inline-block;
	width: 100%;
	margin-bottom: 17px;
	border-bottom: 1px solid #cacaca;
	padding-bottom: 15px;
}
.recent_post > li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}
.recent_post > li:last-child {
	margin-bottom: 0;
}
.post_content h6 {
	line-height: normal;
	margin-bottom: 5px;
}
.footer_dark h1,.footer_dark h2,.footer_dark h3,.footer_dark h4,.footer_dark h5,.footer_dark h6,
.footer_dark p,
.footer_dark .contact_info li i,
.footer_dark .contact_info i + *,
.footer_dark .widget_links li a,
.footer_dark .footer_link li a,
.footer_dark .post_content h6 a {
	color: #fff;
}
.footer_dark .post_date {
	color: rgba(255,255,255,0.6);
}
.footer_dark .widget_links li a:hover,
.footer_dark .footer_link li a:hover,
.footer_dark .post_content h6 a:hover,
.footer_dark .contact_info a:hover {
	color: #e8272e;
}
.border_top_transparent {
	border-top: 1px solid rgba(255,255,255,0.3);
}



.error_txt * {
	color: #333;
	font-size: 200px;
	font-weight: bold;
	line-height: 0.75;
	font-family: 'Roboto', sans-serif;
}
.error_txt {
	margin-bottom: 40px;
}
.error_content h3 {
	font-size: 34px;
	margin-bottom: 25px;
}
.error_content p {
	margin-bottom: 25px;
}



.grid_filter {
	margin-bottom: 30px;
}
.grid_filter li {
	display: inline-block;
	margin: 0 3px;
}
.grid_filter li a {
	background-color: #eee;
	padding: 5px 25px;
	display: block;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 4px;
}
.grid_filter li a.current,
.grid_filter li a:hover {
	background-color: #e8272e;
	color: #fff;
}
.grid_container {
	list-style: none;
}
.gutter_small {
    margin: 0 -7.5px -15px -7.5px;
}
.gutter_small > li {
    padding: 0 7.5px 15px 7.5px;
}
.gutter_medium {
    margin: 0 -15px -30px -15px;
}
.gutter_medium > li {
    padding: 0px 15px 30px 15px;
}
.grid_col3 > li {
	width: 33.33%;
	float: left;
}
.grid_col4 > li {
    width: 25%;
	float: left;
}
.gallery_item {
	overflow: hidden;
	position: relative;
}
.gallery_item img {
	width: 100%;
}
.gallery_content {
	bottom: 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	position: absolute;
	top: 60px;
	opacity: 0;
	visibility: hidden;
	right: 0;
	left: 0;
	text-align: center;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}
.gallery_item:hover .gallery_content {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.gallery_item::before {
	background-color: rgba(47,48,60,0.80);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	top: 0;
	bottom: 0;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}
.gallery_item:hover:before {
	opacity: 1;
	visibility: visible;
}

.grid_container .owl-carousel.owl-theme .owl-dots {
	margin: 0 !important;
	position: absolute;
	bottom: 5px;
	right: 15px;
	z-index: 9;
}
.grid_container .owl-carousel {
	z-index: inherit;
}
.grid_container .owl-carousel.owl-theme .owl-dots span {
	margin: 5px 2px;
}

.gallery_content .ripple {
	margin: 0;
}
.gallery_content .image_icon i {
	font-size: 34px;
	color: #fff;
}
.text_holder {
	margin-top: 25px;
	text-transform: capitalize;
}




.owl-theme .owl-nav {
	margin-top: 0;
}
.owl-theme .owl-nav [class*="owl-"] {
	box-shadow: 0 0 8px rgba(0,0,0,0.15);
	color: #000;
	font-size: 18px;
	margin: 0;
	padding: 6px 16px;
	background: #fff;
	border-radius: 0;
	position: absolute;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkittransform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.owl-theme .owl-nav .owl-prev {
	left: 0;
}
.owl-theme .owl-nav .owl-next {
	right: 0;
}
.owl-theme .owl-nav [class*="owl-"] {
	color: #000;
	font-size: 18px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
	background-color: #fff;
	color: #e8272e;
}
.nav_style1.owl-theme .owl-nav .owl-prev {
	left: -50px;
	opacity: 0;
}
.nav_style1.owl-theme .owl-nav .owl-next {
	right: -50px;
	opacity: 0;
}
.nav_style1.owl-theme:hover .owl-nav .owl-prev {
	left: 0px;
	opacity: 1;
}
.nav_style1.owl-theme:hover .owl-nav .owl-next {
	right: 0px;
	opacity: 1;
}
.video_play {
	position: absolute;
	right: 0;
	display: table;
	left: 50%;
	top: 50%;
	-moz-transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
}
.content_box {
	margin-top: 30px;
}
.content_desc {
	position: relative;
	padding: 15px;
}
.content_title {
	font-size: 18px;
}
.content_meta li a {
	color: #888;
}
.content_meta li a:hover {
	color: #e8272e;
}
.content_img {
	overflow: hidden;
	position: relative;
}
.content_img a {
	display: block;
}
.content_img img {
	transition: all 0.5s ease-in-out;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	width: 100%;
}
.content_box:hover .content_img img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.box_counter i {
	font-size: 50px;
}
.box_counter img {
	max-width: 60px;
	margin-bottom: 15px;
}
.counter_text {
	font-size: 60px;
	line-height: 55px;
	color: #181818;
}
.counter_content {
	text-transform: capitalize;
}
.counter_pattern i {
	font-size: 16px;
	color: #181818;
}
.counter_pattern {
	position: relative;
	display: inline-block;
	padding: 0 27px;
	margin-bottom: 5px;
}
.counter_pattern::before {
	content: "";
	left: 0;
	width: 20px;
	background-color: #181818;
	height: 1px;
	position: absolute;
	top: 11px;
}
.counter_pattern::after {
	content: "";
	right: 2px;
	width: 20px;
	background-color: #181818;
	height: 1px;
	position: absolute;
	top: 11px;
}
.box_counter p {
	margin: 0;
	font-size: 16px;
	color: #181818;
}
.content_desc p:last-child {
	margin: 0;
}
.counter_white .counter_text,
.counter_white .counter_pattern i,
.counter_white p {
	color: #fff;
}
.counter_white .counter_pattern::before,
.counter_white .counter_pattern::after {
	background-color: #fff;
}
.custom_select {
	position: relative;
}
.custom_select select option {
    color: #000;
}
.form_style1 .custom_select::before {
	right: 20px;
}
.custom_select::before {
	content: "\f3d3";
	font-family:"Ionicons";
	position: absolute;
	display: block;
	top: 50%;
	right: 10px;
	pointer-events: none;
	font-size: 18px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.custom_select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 5px 40px 5px 20px;
	width: 100%;
}
.custome-checkbox .form-check-label {
	position: relative;
	cursor: pointer;
	color: #888888;
	padding: 0;
	vertical-align: middle;
	padding-left: 25px;
}
.custome-checkbox .form-check-input {
	display: none;
}
.custome-checkbox .form-check-label::before {
	content: "";
	border: 2px solid #cfcfcf;
	height: 19px;
	width: 19px;
	position: absolute;
	vertical-align: middle;
	margin: 0px 8px 0 0;
	left: 0;
	top: 2px;
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
	opacity: 1;
}
.custome-checkbox input[type="checkbox"] + .form-check-label::after {
	content: "";
	width: 11px;
	position: absolute;
	top: 7px;
	left: 4px;
	opacity: 0;
	height: 6px;
	border-left: 2px solid #cfcfcf;
	border-bottom: 2px solid #cfcfcf;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.lr_form {
	padding: 30px 70px;
}
.different_login h5 {
	margin: 20px 0;
}
.login_footer > a {
	float: right;
	color: #908f8f;
}
.login_footer a:hover {
	color: #e8272e;
}
.chek-form {
	float: left;
	text-align: left;
}
.btn-login li {
	margin: 0px 5px 0;
	display: inline-block;
}
.btn-login li a {
	border-radius: 5px;
	padding: 10px 20px;
	color: #fff;
	display: block;
}
.btn-login li a i {
	margin-right: 10px;
	font-size: 18px;
}
.btn-facebook {
	background: #3b5998;
	border-color: #3b5998;
}
.btn-facebook:hover {
	color: #fff;
	background: #344e86;
	border-color: #344e86;
}
.btn-google {
	background: #d85040;
	border-color: #d85040;
}
.btn-google:hover {
	color: #fff;
	background: #d33d2b;
	border-color: #d33d2b;
}
.form-note {
	padding-top: 15px;
	border-top: 1px solid #ddd;
	margin-top: 20px;
	color: #2f303c;
}
.tab-content {
	margin-top: 10px;
}
.nav-tabs {
    border: 0;
}
.nav-tabs .nav-item {
	position: relative;
}
.nav-tabs li.nav-item::before {
	content: "/";
	position: absolute;
	right: -2px;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #cacaca;
}
.nav-tabs li.nav-item:last-child:before {
	content: normal;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
	color: #e8272e;
}
.nav-tabs li.nav-item a {
	background-color: transparent;
    border: 0;
	color: #181818;
	font-size: 16px;
	font-weight: 500;
    text-align: center;
    text-transform: capitalize;
	padding: 5px 25px;
}
.page-title h1 {
	font-size: 36px;
	margin: 0;
}
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
}
.breadcrumb li a, .breadcrumb li {
	font-size: 16px;
	text-transform: capitalize;
}
.page-title-light *, .page-title-light .breadcrumb-item, .page-title-light .breadcrumb-item::before {
	color: #fff;
}
.pagination li {
	margin-right: 10px;
}
.pagination .page-item a,
.page-item.disabled .page-link {
	border: 1px solid #b5b5b5;
	border-radius: 50px !important;
	color: #b5b5b5;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	padding: 0;
	font-size: 20px;
}
.pagination .page-item a i {
	font-size: 24px;
	vertical-align: middle;
}
.page-item.active .page-link, .page-item .page-link:hover {
	background-color: #e8272e;
	border-color: #e8272e;
	color: #fff;
}
.page-link:focus {
	box-shadow: none;
}
.sidebar ul {
    list-style: none;
}
.search_form {
	position: relative;
}
.search_form .form-control {
	padding: 10px 45px 10px 15px;
	height: 45px;
	font-size: 16px;
	border-radius: 50px;
	border-width: 2px;
}
.search_form button {
	background-color: transparent;
	border: 0;
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px 20px;
	font-size: 22px;
	height: 46px;
}
.search_form button:hover {
	color: #e8272e;
}
.sidebar .widget {
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.sidebar .widget_title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.sidebar .widget_title::after {
	background-color: #cacaca;
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	bottom: 0;
	width: 100%;
	content: "";
	z-index: 0;
}
.widget_categories .categories_num {
	float: right;
}
.widget_categories ul li,
.widget_archive ul li {
    padding-bottom: 8px;
}
.widget_categories ul li:last-child,
.widget_archive ul li:last-child {
    padding-bottom: 0px;
}
.widget_categories a {
	font-size: 16px;
	color: #888888;
}
.widget_categories a:hover {
	color: #e8272e;
}
.widget_categories a::before,
.widget_archive a:before {
	content: "\f0a4";
	font-family: "Font Awesome 5 Free";
	margin-right: 10px;
}
.widget_countdown {
	padding: 15px;
}
.widget_countdown .countdown_box .countdown {
	font-size: 26px;
}
.widget_countdown .countdown_box::before {
	font-size: 20px;
	top: 5px;
}
.widget_countdown .countdown_time .cd_text {
	font-size: 12px;
}
.ads_banner {
	padding: 30px 20px;
	position: relative;
	z-index: 1;
}
.ads_banner h3 {
	font-size: 36px;
	line-height: 60px;
	margin: 0;
}
.ads_banner h3 span {
	font-size: 56px;
}
.ads_banner::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(47,48,60,0.85);
	z-index: -1;
}
.tags a {
	background-color: #f4f4f4;
	font-size: 14px;
	padding: 9px 15px;
	float: left;
	margin-bottom: 8px;
	color: #181818;
	border-radius: 50px;
	line-height: normal;
	margin-right: 5px;
}
.tags a:hover {
	background-color: #2f303c;
	color: #fff;
}
.widget_instagram ul {
	margin: -4px;
	display: table;
}
.widget_instagram li {
	float: left;
	width: 33.33%;
	padding: 4px;
}
.widget_instagram .gallery_content .image_icon i {
	font-size: 24px;
	color: #fff;
}
.countent_detail_meta {
	display: inline-block;
	width: 100%;
}
.countent_detail_meta ul {
	list-style: none;
}
.countent_detail_meta li {
	float: left;
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #dad1b9;
}
.countent_detail_meta label {
	display: block;
	font-weight: bold;
	color: #333;
	margin: 0;
}
.countent_detail_meta li:last-child {
	margin: 0;
	padding: 0;
	border: 0;
}
.accordion .card-header {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.accordion .card-header a {
	display: block;
	padding: 20px 100px 20px 50px;
	font-size: 18px;
	text-transform: capitalize;
	border-bottom: 1px solid #ddd;
	line-height: normal;
}
.accordion .card-header a::after {
	content: "\f126";
	font-family: "Ionicons";
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	left: 20px;
	top: 22px;
}
.accordion .card-header a.collapsed::after {
	content: "\f123";
}
.tab_box {
	padding:15px;
}
.card-body p:last-child {
	margin: 0;
}
.countdown_time {
	display: inline-block;
	width: 100%;
}
.countdown_time .countdown_box {
	float: left;
	width: 25%;
	text-align: center;
	position: relative;
}
.countdown_time .cd_text {
	display: block;
	color: #333;
}
.countdown_box .countdown {
	color: #333;
	font-size: 70px;
	font-weight: bold;
	line-height: normal;
}
.countdown_white .countdown_box .countdown, .countdown_white .countdown_box .cd_text {
    color: #fff;
}
.countdown_box::before {
	content: "";
	font-size: 40px;
	font-weight: bold;
	color: #000;
	position: absolute;
	right: 0;
	border-right: 1px solid rgba(255,255,255,0.2);
	top: 0;
	bottom: 0;
}
.countdown_white .countdown_box::before {
	color: #fff;
}
.countdown_box:last-child:before {
	content: normal;
}
.social_icons [class*="sc_"] {
	color: #fff !important;
}
.social_icons [class*="sc_"]:hover {
	opacity: 0.8;
}
.sc_facebook {
	background-color: #3b5998 !important;
	border-color: #3b5998 !important;
}
.sc_gplus,
.sc_google {
	background-color:#dd4b39 !important;
	border-color: #dd4b39 !important;
}
.sc_linkedin {
	background-color:#0e76a8 !important;
	border-color: #0e76a8 !important;
}
.sc_rss {
	background-color:#ee802f !important;
	border-color: #ee802f !important;
}
.sc_skype {
	background-color:#00aff0 !important;
	border-color: #00aff0 !important;
}
.sc_twitter {
	background-color:#00acee !important;
	border-color: #00acee !important;
}
.sc_youtube {
	background-color:#c4302b !important;
	border-color: #c4302b !important;
}
.sc_vimeo {
	background-color:#86c9ef !important;
	border-color: #86c9ef !important;
}
.sc_yahoo {
	background-color:#720e9e !important;
	border-color: #720e9e !important;
}
.sc_tumblr {
	background-color:#34526f !important;
	border-color: #34526f !important;
}
.sc_instagram {
	background-color:#3f729b !important;
	border-color: #3f729b !important;
}
.sc_pinterest {
	background-color:#c8232c !important;
	border-color: #c8232c !important;
}
.sc_dribbble {
	background-color:#EA4C89 !important;
	border-color: #EA4C89 !important;
}
.sc_reddit {
	background-color: #C6C6C6 !important;
	border-color: #C6C6C6 !important;
}
.sc_github {
	background-color: #171515 !important;
	border-color: #171515 !important;
}
.sc_android {
	background-color: #A4C639 !important;
	border-color: #A4C639 !important;
}
.sc_windows {
	background-color: #00A7E7 !important;
	border-color: #00A7E7 !important;
}
.sc_tux {
	background-color: #C1C1C1 !important;
	border-color: #C1C1C1 !important;
}
.sc_delicious {
    background-color: #205cc0!important;
	border-color: #205cc0 !important;
}
.sc_paypal {
    background-color: #00588b!important;
	border-color: #00588b !important;
}
.sc_blogger {
    background-color: #fc4f08!important;
	border-color: #fc4f08!important;
}
.sc_flickr {
    background-color: #ff0084!important;
	border-color: #ff0084!important;
}
.sc_yahoo {
    background-color: #720e9e!important;
	border-color: #720e9e!important;
}
.sc_dropbox {
    background-color: #3d9ae8!important;
	border-color: #3d9ae8!important;
}
.sc_ebay {
    background-color: #89c507!important;
	border-color: #89c507!important;
}
.sc_wordpress {
    background-color: #1e8cbe!important;
	border-color: #1e8cbe !important;
}
.sc_yelp {
    background-color: #c41200!important;
}
blockquote {
	padding: 25px;
	background-color: #2f303c;
	position: relative;
	border-left: 3px solid #e8272e;
	border-radius: 10px;
	border-right: 3px solid #e8272e;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
}
blockquote p {
	color: #fff;
}
blockquote p:last-child {
	margin: 0;
}
blockquote::before {
	content: "\f10d";
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight:900;
	font-size: 120px;
	right: 60px;
	top: 5px;
	color: rgba(255,255,255,0.05);
	line-height: 120px;
}
.single_post .single_post_content {
	margin-top: 15px;
}
.single_post .blog_text .blog_meta {
	margin: 10px 0;
}
.post_navigation i {
	font-size: 16px;
}
.post_navigation a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #2f303c;
	color: #fff !important;
	border-radius: 50px;
	font-size: 16px;
	margin-right: 5px;
}
.post_navigation a:hover {
	background-color: #e8272e;
}
.post_navigation span {
	display: block;
	font-weight: 500;
	text-transform: capitalize;
}
.single_post .blog_post_footer {
	padding: 30px 0 50px;
}
.single_post .comment_list {
	margin-bottom: 40px;
}
.book_table_online h2 {
	font-size: 34px;
	margin-bottom: 20px;
}
.book_table_online p {
	font-size: 16px;
}
.btn img {
	max-width: 30px;
	margin-right: 10px;
}
.btn-big {
	font-size: 26px;
	font-weight: bold;
	padding: 20px 40px;
}
.content_info {
	padding: 30px;
}
.author_content {
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
}
.author_img {
	padding-right: 15px;
}
.author_img img {
	max-width: 110px;
}
.author_info p:last-child {
	margin: 0;
}
.related_post, 
.comment-list, 
.comment_form {
	margin-top: 50px;
}
.comment_form {
	padding: 30px 20px;
}
.comment_info {
	box-shadow: 0 5px 5px rgba(0,0,0,0.15);
	background-color: #f9f9f9;
	margin-top: 15px;
	padding: 20px;
	border-radius: 10px;
}
.comment_info.reply {
	margin-left: 60px;
}
.comment_info:first-child {
	margin: 0;
}
.user_img img {
	border-radius: 100%;
	height: auto;
	max-width: 80px;
}
.comment_content {
	padding-left: 20px;
}
.comment-reply {
	line-height: normal;
}
.comment-reply i,
.comment-time i {
	margin-right: 5px;
}
.meta_data {
	margin-bottom: 10px;
}
.comment_content p {
	margin-bottom: 12px;
}
.meta_data * {
	display: inline-block;
	margin: 0;
}
.comment-time {
	position: relative;
	vertical-align: top;
}
.comment-time::before {
	content: "";
	width: 7px;
	height: 1px;
	display: inline-block;
	background-color: #181818;
	vertical-align: middle;
	margin: 0 7px;
}
.maintenance_wrap {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.maintenance_content .main_logo {
	margin-bottom: 50px;
	display: block;
}
.maintenance_content .countdown_time {
	padding: 30px 0;
}
.maintenance_text h2 {
	font-size: 34px;
	margin-bottom: 15px;
}
.maintenance_content .newsletter_form {
	margin: 10px 0px 30px;
	display: inline-block;
	width: 90%;
}



.alert-msg-failure {
	color: #721c24;
	background-color: #efa0a0;
	border-radius: 3px;
	margin-top: 10px;
}
.alert-msg-success {
	color: #155724;
	background-color: #d4edda;
	border-radius: 3px;
	margin-top: 10px;
}


span.statcounter {
    display: none;
}
.demo_switcher {
	position: fixed;
	right: 0;
	z-index: 9999;
	top: 20%;
}
.demo > ul > li > a {
	font-size: 22px;
	text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	transition: all 0.5s ease-in-out;
}
.demo > ul > li > a.menu_icon {
	line-height: 44px;
	font-size: 25px;
}

.demo_list ul {
	list-style: none;
	display: inline-block;
}
.demo_list {
	background-color: #fff;
	position: fixed;
	right: -360px;;
	max-width: 360px;
	padding: 5px;
	overflow: auto;
	top: 0;
	bottom: 0;
	transition: all 0.5s ease-in-out;
	z-index: 9999;
}
.demo_list.switch-active {
	right: 0;
}
.demo_list li {
	float: left;
	 width: 50%;
	 padding: 5px;
}
.demo_list li a {
	display: block;
	border: 1px solid #ddd;
	padding: 4px;
	position: relative;
}
.demo_list li a::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 4px;
	bottom: 4px;
	right: 4px;
	opacity: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 9;
	transition: all 0.5s ease-in-out;
}
.demo_list li a:hover:before {
	opacity: 1;
}
body.switch-open {
	overflow: hidden;
	padding-right: 15px;
}
.switch-open::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 9999;
}
.demo li {
	position: relative;
}
.demo > ul > li > a.demo_icon.switch-active {
	position: relative;
	transition: all 0.5s ease-in-out;
	-moz-transform: translateX(-360px);
	-webkit-transform: translateX(-360px);
	transform: translateX(-360px);
}
.demo > ul > li > a.demo_icon.switch-active i::before {
	content: "\f129";
	font-size: 20px;
	vertical-align: middle;
}
.demo > ul > li > a.menu_icon.switch-active {
	line-height: 36px;
}
.demo_list h5 {
	margin: 10px 0;
}
.demo li.switch-active .color_icon {
	transition: all 0.5s ease-in-out;
	-moz-transform: translateX(-200px);
	-webkit-transform: translateX(-200px);
	transform: translateX(-200px);
}
.option_box {
	background: #000;
	right: -200px;
	padding: 10px;
	position: absolute;
	top: 0;
	transition: all .5s ease-in-out;;
	width: 200px;
	z-index: 999;
}
.switch-active {
	right: 0;
}
.color-switch li {
	float: left;
}
.color-switch ul li button::after {
	color: #ffffff;
	content: "\f122";
	font-family: "Ionicons";
	font-size: 18px;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 2px;
}
.color-switch ul li.active button::after {
	opacity: 1;
}
.color-switch button {
	border: 0 none;
	border-radius: 3px;
	cursor: pointer;
	display: block;
	height: 25px;
	line-height: 20px;
	margin: 2px;
	padding: 0;
	position: relative;
	text-align: center;
	width: 25px;
}
.bg_black {
	background-color: #000;
}
.default {
	background-color: #e8272e;
}
.green {
	background-color: #6C8E01;
}
.orange {
	background-color: #FD5A38;
}
.blue-light {
	background-color: #00C3CB;
}
.pink {
	background-color: #96053E;
}
.dark-gold {
	background-color: #B07926;
}
.demo_list li a span {
	position: absolute;
	left: 0;
	right: 0;
	color: #fff;
	z-index: 9;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-shadow: 0 0 4px rgba(0,0,0,0.8);
	opacity: 0;
	padding: 0 10px;
	transition: all 0.5s ease-in-out;
}
.demo_list li a:hover span {
    opacity: 1;
}
.layout_option input {
	display: none;
}
.layout_option span {
	padding: 5px 20px;
	background-color: #fff;
	text-transform: capitalize;
	line-height: normal;
	cursor: pointer;
	margin: 5px 5px 0 0;
	color: #000;
	display: inline-block;
}
.layout_option span.active {
	background-color: #88C74A;
	color: #fff;
}
.layout_bg_img li {
	float: left;
	width: 33.33%;
	padding: 5px;
}
.wide {
	background-image: none !important;
}
.layout_option {
	display: inline-block;
}
.boxed_layout::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: #fff;
	z-index: -1;
}
.layout_bg_img li a {
	border: 1px solid transparent;
	display: block;
}
.layout_bg_img li a.active::before {
	background-color: rgba(0,0,0,0.5);
	content: "";
	left: 0;
	position: absolute;
	bottom: 0;
	top: 0px;
	right: 0;
}
.layout_bg_img li a.active::after {
	color: #ffffff;
	content: "\f122";
	font-family: "Ionicons";
	font-size: 18px;
	left: 0;
	position: absolute;
	top: 10px;
	z-index: 9999;
	right: 0;
	text-align: center;
}
.layout_bg_img:not(.open) {
	opacity: 0.3;
	pointer-events: none;
}
@media only screen and (max-width: 480px) {
.demo_list {
	right: -270px;
	max-width: 270px;
}
.demo > ul > li > a.icon.switch-active {
	-moz-transform: translateX(-270px);
	-webkit-transform: translateX(-270px);
	transform: translateX(-270px);
}
}

