/** Reset **/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,
acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,
sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,
footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}
body {
	line-height: 1;
}
ol,ul {
	list-style: none;
}
blockquote,q {
	quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}

/** Custom Animation */
@-webkit-keyframes jump {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40% {
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes jump {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40% {
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes rotated {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotated {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes rotatedHalf {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}
@keyframes rotatedHalf {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}
@-webkit-keyframes rotatedHalfTwo {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	100% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}
@keyframes rotatedHalfTwo {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	100% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

@-webkit-keyframes scale-upOne {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
	}
}
@keyframes scale-upOne {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
	}
}
@-webkit-keyframes scale-right {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	50% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
	}
	100% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@keyframes scale-right {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	50% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
	}
	100% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@-webkit-keyframes fade-in {
	0% {
		opacity: 0.7;
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 0.7;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0.7;
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 0.7;
	}
}
@keyframes hvr-ripple-out {
	0% {
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		opacity: 1;
	}
	100% {
		top: -6px;
		right: -6px;
		bottom: -6px;
		left: -6px;
		opacity: 0;
	}
}
@keyframes hvr-ripple-out-two {
	0% {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 1;
	}
	100% {
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}
@-webkit-keyframes scale-up-one {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	40% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes scale-up-one {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	40% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes scale-up-two {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	40% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}
@keyframes scale-up-two {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	40% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}
@-webkit-keyframes scale-up-three {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
	40% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	100% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
}
@keyframes scale-up-three {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
	40% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	100% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
}
@keyframes animationFramesOne {
	0% {
		transform: translate(0px, 0px) rotate(0deg);
	}
	20% {
		transform: translate(73px, -1px) rotate(36deg);
	}
	40% {
		transform: translate(141px, 72px) rotate(72deg);
	}
	60% {
		transform: translate(83px, 122px) rotate(108deg);
	}
	80% {
		transform: translate(-40px, 72px) rotate(144deg);
	}
	100% {
		transform: translate(0px, 0px) rotate(0deg);
	}
}
@-webkit-keyframes animationFramesOne {
	0% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
	}
	20% {
		-webkit-transform: translate(73px, -1px) rotate(36deg);
	}
	40% {
		-webkit-transform: translate(141px, 72px) rotate(72deg);
	}
	60% {
		-webkit-transform: translate(83px, 122px) rotate(108deg);
	}
	80% {
		-webkit-transform: translate(-40px, 72px) rotate(144deg);
	}
	100% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
	}
}
@keyframes animationFramesTwo {
	0% {
		transform: translate(0px, 0px) rotate(0deg) scale(1);
	}
	20% {
		transform: translate(73px, -1px) rotate(36deg) scale(0.9);
	}
	40% {
		transform: translate(141px, 72px) rotate(72deg) scale(1);
	}
	60% {
		transform: translate(83px, 122px) rotate(108deg) scale(1.2);
	}
	80% {
		transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
	}
	100% {
		transform: translate(0px, 0px) rotate(0deg) scale(1);
	}
}
@-webkit-keyframes animationFramesTwo {
	0% {
		-webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
	}
	20% {
		-webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
	}
	40% {
		-webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
	}
	60% {
		-webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
	}
	80% {
		-webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
	}
	100% {
		-webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
	}
}
@keyframes animationFramesThree {
	0% {
		transform: translate(165px, -179px);
	}
	100% {
		transform: translate(-346px, 617px);
	}
}
@-webkit-keyframes animationFramesThree {
	0% {
		-webkit-transform: translate(165px, -179px);
	}
	100% {
		-webkit-transform: translate(-346px, 617px);
	}
}
@keyframes animationFramesFour {
	0% {
		transform: translate(-300px, 151px) rotate(0deg);
	}
	100% {
		transform: translate(251px, -200px) rotate(180deg);
	}
}
@-webkit-keyframes animationFramesFour {
	0% {
		-webkit-transform: translate(-300px, 151px) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(251px, -200px) rotate(180deg);
	}
}
@keyframes animationFramesFive {
	0% {
		transform: translate(61px, -99px) rotate(0deg);
	}
	21% {
		transform: translate(4px, -190px) rotate(38deg);
	}
	41% {
		transform: translate(-139px, -200px) rotate(74deg);
	}
	60% {
		transform: translate(-263px, -164px) rotate(108deg);
	}
	80% {
		transform: translate(-195px, -49px) rotate(144deg);
	}
	100% {
		transform: translate(-1px, 0px) rotate(180deg);
	}
}
@-webkit-keyframes animationFramesFive {
	0% {
		-webkit-transform: translate(61px, -99px) rotate(0deg);
	}
	21% {
		-webkit-transform: translate(4px, -190px) rotate(38deg);
	}
	41% {
		-webkit-transform: translate(-139px, -200px) rotate(74deg);
	}
	60% {
		-webkit-transform: translate(-263px, -164px) rotate(108deg);
	}
	80% {
		-webkit-transform: translate(-195px, -49px) rotate(144deg);
	}
	100% {
		-webkit-transform: translate(-1px, 0px) rotate(180deg);
	}
}
@keyframes gradientBG {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 300% 0;
	}
	100% {
		background-position: 0 0;
	}
}
@-webkit-keyframes gradientBG {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 300% 0;
	}
	100% {
		background-position: 0 0;
	}
}
@keyframes imageBgAnim {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 120% 0;
	}
	100% {
		background-position: 0 0;
	}
}
@-webkit-keyframes gradientBG {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 120% 0;
	}
	100% {
		background-position: 0 0;
	}
}
@keyframes alltuchtopdown {
	0% {
		-webkit-transform: rotateX(0deg) translateY(0px);
		-moz-transform: rotateX(0deg) translateY(0px);
		-ms-transform: rotateX(0deg) translateY(0px);
		-o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
	50% {
		-webkit-transform: rotateX(0deg) translateY(-10px);
		-moz-transform: rotateX(0deg) translateY(-10px);
		-ms-transform: rotateX(0deg) translateY(-10px);
		-o-transform: rotateX(0deg) translateY(-10px);
		transform: rotateX(0deg) translateY(-10px);
	}
	100% {
		-webkit-transform: rotateX(0deg) translateY(0px);
		-moz-transform: rotateX(0deg) translateY(0px);
		-ms-transform: rotateX(0deg) translateY(0px);
		-o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
}
@-webkit-keyframes alltuchtopdown {
	0% {
		-webkit-transform: rotateX(0deg) translateY(0px);
		-moz-transform: rotateX(0deg) translateY(0px);
		-ms-transform: rotateX(0deg) translateY(0px);
		-o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
	50% {
		-webkit-transform: rotateX(0deg) translateY(-20px);
		-moz-transform: rotateX(0deg) translateY(-20px);
		-ms-transform: rotateX(0deg) translateY(-20px);
		-o-transform: rotateX(0deg) translateY(-20px);
		transform: rotateX(0deg) translateY(-20px);
	}
	100% {
		-webkit-transform: rotateX(0deg) translateY(0px);
		-moz-transform: rotateX(0deg) translateY(0px);
		-ms-transform: rotateX(0deg) translateY(0px);
		-o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
}
@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}


/*
 * DX Good stuff
 */
.adm-pos-tr {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}
.adm-pos-tl {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.adm-pos-br {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 100;
}
.adm-pos-bl {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 100;
}
.btn-adm, a.btn-adm {
	position: relative;
	display: inline-block;
	min-width: 30px;
	height: 30px;
	padding: 0;
	background-color: #c5c7ca;
	line-height: 30px;
	text-align: center;
	color: #3d3833;
	font-size: 18px;
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.btn-adm .on-label {
	display: inline-block;
	padding: 0 5px;
}
.btn-adm * {
	position: relative;
	z-index: 3;
}
.btn-adm:before,
.btn-adm:after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background-color: #2555a5;
	z-index: 0;
	content: "";
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.btn-adm:after {
	background-color: #e52b54;
	z-index: 1;
}
.btn-adm:hover {
	color: #fff;
}
.btn-adm:hover:before {
	width: 100%;
}
.btn-adm:hover:after {
	width: 4px;
}
.btn-adm.sm {
	min-width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
}
.hide-adm-ui .btn-adm {
	display: none;
}

.form-error-msg {
	display: none;
	padding-top: 4px;
	font-size: 14px;
	color: #d00;
}
.form-error-msg.vis {
	display: block;
}
.form-error-msg.inline.vis {
	display: inline;
}

.dx-g-recaptcha {
	display: none;
}
.dx-recaptcha-notice {
	color: #666;
	font-size: 14px;
}
.dx-recaptcha-notice a {
	color: #666;
	text-decoration: underline;
}
.dx-recaptcha-notice a:hover {
	color: #f2b83a;
}

/** YT video showcase **/
.welcome-video-fs {
    position: relative;
    width: 100%;
	height: 100vh;
    display: block;
    background-color: #ebebeb;
	z-index: 90;
	overflow: hidden;
}
.welcome-video-fs .player-container {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: 0;
}
.welcome-video-fs .video-blind {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000 url("../img/default/vid-blind-bg.jpg") scroll 50% 50% no-repeat;
	background-size: cover;
    opacity: 1;
    -webkit-transition: opacity .5s linear 0s;
    -moz-transition: opacity .5s linear 0s;
    -ms-transition: opacity .5s linear 0s;
    -o-transition: opacity .5s linear 0s;
    transition: opacity .5s linear 0s;
}
.welcome-video-fs .video-blind.reveal {
    opacity: 0;
}
.welcome-video-fs .video-blind .video-loader {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
.welcome-video-fs .video-blind .video-loader:after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	border-top: 10px solid #f2b83a;
	z-index: 2;
	content: "";
	-ewbkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-animation: underswipe 1s linear infinite;
	animation: underswipe 1s linear infinite;
}
.welcome-video-fs .video-blind .video-loader.ontop,
.welcome-video-fs .video-blind .video-loader.ontop:after {
	top: 0;
	bottom: auto;
}
.welcome-video-fs .mute-button {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: #f2b83a url("../img/mute-sound.png") scroll 50% 50% no-repeat;
	opacity: 0.8;
	cursor: pointer;
	border-radius: 50%;
}
.welcome-video-fs .mute-button:hover {
	opacity: 1;
}
.welcome-video-fs .mute-button.muted {
	background-image: url("../img/mute-sound-muted.png");
}
.welcome-video-fs .player-container>iframe {
    margin: auto;
}

@keyframes underswipe {
	0% {
		transform: translateX(0) scaleX(0);
	}
	50% {
		transform: translateX(0) scaleX(1);
	}
	100% {
		transform: translateX(-100%) scaleX(0);
	}
}
@-webkit-keyframes underswipe {
	0% {
		-webkit-transform: translateX(0) scaleX(0);
	}
	50% {
		-webkit-transform: translateX(0) scaleX(1);
	}
	100% {
		-webkit-transform: translateX(-100%) scaleX(0);
	}
}

.bfold:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10%;
	background-color: #f2b83a;
	z-index: 0;
	content: "";
	-webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.read-on-gizmo {
	position: absolute;
	bottom: 130px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
}
.read-on-gizmo a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}
.read-on-gizmo .jumper {
	display: inline-block;
	width: auto;
	height: auto;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-animation: updown 2s ease infinite;
	animation: updown 2s ease infinite;
}
@media (min-width: 576px){
	.read-on-gizmo {
		bottom: 20px;
	}
}
@keyframes updown {
	0% {
		transform: scale(1,1) translateY(0);
	}
	10% {
		transform: scale(1.1,0.6) translateY(0);
	}
	30% {
		transform: scale(0.9,1.1) translateY(-60px);
	}
	37% {
		transform: scale(1.05,0.7) translateY(0);
	}
	47% {
		transform: scale(1,1) translateY(-15px);
	}
	56% {
		transform: scale(1.05,0.9) translateY(0);
	}
	75% {
		transform: scale(1,1) translateY(0);
	}
	100% {
		transform: scale(1,1) translateY(0);
	}
}
@-webkit-keyframes updown {
	0% {
		-webkit-transform: scale(1,1) translateY(0);
	}
	10% {
		-webkit-transform: scale(1.1,0.6) translateY(0);
	}
	30% {
		-webkit-transform: scale(0.9,1.1) translateY(-60px);
	}
	37% {
		-webkit-transform: scale(1.05,0.7) translateY(0);
	}
	47% {
		-webkit-transform: scale(1,1) translateY(-15px);
	}
	56% {
		-webkit-transform: scale(1.05,0.9) translateY(0);
	}
	75% {
		-webkit-transform: scale(1,1) translateY(0);
	}
	100% {
		-webkit-transform: scale(1,1) translateY(0);
	}
}

.alert-dismissible.rtl {
	padding-left: 4rem;
	padding-right: 1.25rem;
}
.alert-dismissible.rtl .close {
	left: 0;
	right: auto;
}

/** ---[Helper]--- **/

body {
	direction: rtl;
	text-align: right;
	font-family: 'Heebo', Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 80px;
	line-height: 80px;
	font-weight: 700;
}

h2 {
	font-size: 36px;
	font-style: italic;
}

h3 {
	font-size: 24px;
	font-style: italic;
	line-height: 32px;
	color: #172c3f;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 19px;
}

h6 {
	font-size: 18px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 600;
}

h5,
h6 {
	margin: 0;
	font-weight: 500;
}

p, .p {
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	color: #111;
}

a {
	text-decoration: none;
	outline: none;
}

button {
	outline: none;
}

.btn-1 {
	display: inline-block;
	padding: 20px 50px;
	font-size: 18px;
	color: #fff;
	background-color: #f2b83a;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-1:hover {
	background: #fff !important;
	color: #f2b83a !important;
}
.btn-1.tight {
	padding: 12px 30px;
}

.btn-2 {
	display: inline-block;
	padding: 20px 50px;
	font-size: 18px;
	color: #fff;
	border: 2px solid #fff;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}

.btn-2:hover {
	background: #172c3f !important;
	border: 2px solid #172c3f;
	color: #fff !important;
}
.btn-3 {
	color: #f2b83a;
	border: 2px solid #f2b83a;
	font-size: 14px;
	padding: 12px 24px;
	margin-top: 18px;
	display: inline-block;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-3:hover {
	background: #172c3f !important;
	border: 2px solid #172c3f;
	color: #fff !important;
}

.btn-4 {
	color: #fff;
	background-color: rgba(242, 184, 58, 0.1);
	font-size: 14px;
	padding: 12px 24px;
	margin-top: 18px;
	display: inline-block;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-4:hover {
	background: #fff !important;
	color: #f2b83a !important;
}

.btn-5 {
	display: inline-block;
	padding: 20px 50px;
	font-size: 18px;
	color: #50cd37;
	border: 2px solid #50cd37;

	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-5:hover {
	background: #50cd37 !important;
	border: 2px solid #50cd37;
	color: #fff !important;
}

.btn-6 {
	display: inline-block;
	padding: 0 30px;
	height: 55px;
	font-size: 17px;
	color: #fff;
	background: #212529;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-6:hover {
	background: #50cd37 !important;
	color: #fff !important;
}

.btn-7 {
	display: inline-block;
	padding: 20px 50px;
	font-size: 18px;
	color: #fff;
	background-color: #f2b83a;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-7:hover {
	background-color: #172c3f;
	color: #fff;
}

.btn-8 {
	display: inline-block;
	padding: 20px 50px;
	font-size: 18px;
	color: #fff;
	background-color: #172c3f;
	font-weight: 700;
	border-radius: 0;
	transition: .5s;
	cursor: pointer;
}
.btn-8:hover {
	color: #172c3f;
	background-color: #f2b83a;
}

.container {
	max-width: 1180px;
}

/*=========================================================
		  [ text color ]
=========================================================*/
.text-white {
	color: #FFF;
}

.text-black {
	color: #000;
}

.text-extra-dark-gray {
	color: #232323;
}

.text-dark-gray {
	color: #626262;
}

.text-extra-medium-gray {
	color: #757575;
}

.text-medium-gray {
	color: #939393;
}

.text-extra-light-gray {
	color: #b7b7b7;
}

.text-light-gray {
	color: #d6d5d5;
}

.text-very-light-gray {
	color: #ededed;
}

.title-extra {
	font-weight: 800;
	margin-bottom: 15px;
}

.title-extra .icon {
	padding-right: 5px;
}

.title-extra-sm {
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.title-extra-sm .icon {
	padding-right: 5px;
}

/*=========================================================
		  [ font-weight ]
=========================================================*/
.fw-100 {
	font-weight: 100 !important;
}
.fw-200 {
	font-weight: 200 !important;
}
.fw-300 {
	font-weight: 300 !important;
}
.fw-400 {
	font-weight: 400 !important;
}
.fw-500 {
	font-weight: 500 !important;
}
.fw-600 {
	font-weight: 600 !important;
}
.fw-700 {
	font-weight: 700 !important;
}
.fw-800 {
	font-weight: 800 !important;
}
.fw-900 {
	font-weight: 900 !important;
}

/*=========================================================
		  [ font-size ]
=========================================================*/
.fz-10 {
	font-size: 10px !important;
}
.fz-12 {
	font-size: 12px !important;
}
.fz-14 {
	font-size: 14px !important;
}
.fz-15 {
	font-size: 15px !important;
}
.fz-16 {
	font-size: 16px !important;
}
.fz-18 {
	font-size: 18px !important;
}
.fz-20 {
	font-size: 20px !important;
}
.fz-22 {
	font-size: 22px !important;
}
.fz-25 {
	font-size: 25px !important;
}
.fz-30 {
	font-size: 30px !important;
}
.fz-40 {
	font-size: 40px !important;
}
.fz-50 {
	font-size: 50px !important;
}

/*=========================================================
		  [ line-height ]
=========================================================*/

.line-height-10 {
	line-height: 10px;
}

.line-height-13 {
	line-height: 13px;
}

.line-height-18 {
	line-height: 18px;
}

.line-height-20 {
	line-height: 20px;
}

.line-height-24 {
	line-height: 24px;
}

.line-height-22 {
	line-height: 22px;
}

.line-height-26 {
	line-height: 26px;
}

.line-height-28 {
	line-height: 28px;
}

.line-height-30 {
	line-height: 30px;
}

.line-height-35 {
	line-height: 35px;
}

.line-height-40 {
	line-height: 40px;
}

.line-height-45 {
	line-height: 45px;
}

.line-height-50 {
	line-height: 50px;
}

.line-height-55 {
	line-height: 55px;
}

.line-height-60 {
	line-height: 60px;
}

.line-height-65 {
	line-height: 65px;
}

.line-height-70 {
	line-height: 70px;
}

.line-height-75 {
	line-height: 75px;
}

.line-height-80 {
	line-height: 80px;
}

.line-height-85 {
	line-height: 85px;
}

.line-height-90 {
	line-height: 90px;
}

.line-height-95 {
	line-height: 95px;
}

.line-height-100 {
	line-height: 100px;
}

.line-height-110 {
	line-height: 110px;
}

.line-height-120 {
	line-height: 120px;
}


/*=========================================================
		  [ text-transform ]
=========================================================*/

.text-u {
	text-transform: uppercase !important;
}

.text-l {
	text-transform: lowercase !important;
}

.text-c {
	text-transform: capitalize !important;
}

.text-non {
	text-transform: none !important;
}

.text-i {
	font-style: italic;
}


/*=========================================================
		  [ letter-spacing ]
=========================================================*/

.ls0 {
	letter-spacing: 0px !important;
}

.ls1 {
	letter-spacing: 1px !important;
}

.ls2 {
	letter-spacing: 2px !important;
}

.ls3 {
	letter-spacing: 3px !important;
}

.ls4 {
	letter-spacing: 4px !important;
}

.ls5 {
	letter-spacing: 5px !important;
}

.ls10 {
	letter-spacing: 10px !important;
}


/*=========================================================
		  [ Overlay Effect Bg image ]
=========================================================*/

[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

[data-overlay-dark]:before {
	background: #000;
}

[data-overlay-light]:before {
	background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
	color: #fff;
}

[data-overlay-dark] p {
	color: #bbb;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
	opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}

/*=========================================================
		[ margin-top  (0/100) +5 ]
=========================================================*/
.mt-0 {
	margin-top: 0 !important;
}
.mt-5 {
	margin-top: 5px !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-15 {
	margin-top: 15px !important;
}
.mt-20 {
	margin-top: 20px !important;
}
.mt-25 {
	margin-top: 25px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mt-35 {
	margin-top: 35px !important;
}
.mt-40 {
	margin-top: 40px !important;
}
.mt-45 {
	margin-top: 45px !important;
}
.mt-50 {
	margin-top: 50px !important;
}
.mt-55 {
	margin-top: 55px !important;
}
.mt-60 {
	margin-top: 60px !important;
}
.mt-62 {
	margin-top: 62px !important;
}
.mt-65 {
	margin-top: 65px !important;
}
.mt-70 {
	margin-top: 70px !important;
}
.mt-75 {
	margin-top: 75px !important;
}
.mt-80 {
	margin-top: 80px !important;
}
.mt-85 {
	margin-top: 85px !important;
}
.mt-90 {
	margin-top: 90px !important;
}
.mt-95 {
	margin-top: 95px !important;
}
.mt-100 {
	margin-top: 100px !important;
}
.mt-105 {
	margin-top: 105px !important;
}
.mt-110 {
	margin-top: 110px !important;
}
.mt-115 {
	margin-top: 115px !important;
}
.mt-120 {
	margin-top: 120px !important;
}

/*=========================================================
			[ margin-bottom  (0/100) +5 ]
=========================================================*/
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-5 {
	margin-bottom: 5px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-15 {
	margin-bottom: 15px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-25 {
	margin-bottom: 25px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-35 {
	margin-bottom: 35px !important;
}
.mb-40 {
	margin-bottom: 40px !important;
}
.mb-45 {
	margin-bottom: 45px !important;
}
.mb-50 {
	margin-bottom: 50px !important;
}
.mb-55 {
	margin-bottom: 55px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}
.mb-62 {
	margin-bottom: 62px !important;
}
.mb-65 {
	margin-bottom: 65px !important;
}
.mb-70 {
	margin-bottom: 70px !important;
}
.mb-75 {
	margin-bottom: 75px !important;
}
.mb-80 {
	margin-bottom: 80px !important;
}
.mb-85 {
	margin-bottom: 85px !important;
}
.mb-90 {
	margin-bottom: 90px !important;
}
.mb-95 {
	margin-bottom: 95px !important;
}
.mb-100 {
	margin-bottom: 100px !important;
}
.mb-105 {
	margin-bottom: 105px !important;
}
.mb-110 {
	margin-bottom: 110px !important;
}
.mb-115 {
	margin-bottom: 115px !important;
}
.mb-120 {
	margin-bottom: 120px !important;
}
.no-margin {
	margin: 0px !important;
}

/*=========================================================
			[ padding-top  (0/100) +5 ]
=========================================================*/
.pt-0 {
	padding-top: 0 !important;
}
.pt-5 {
	padding-top: 5px !important;
}
.pt-10 {
	padding-top: 10px !important;
}
.pt-15 {
	padding-top: 15px !important;
}
.pt-20 {
	padding-top: 20px !important;
}
.pt-25 {
	padding-top: 25px !important;
}
.pt-30 {
	padding-top: 30px !important;
}
.pt-35 {
	padding-top: 35px !important;
}
.pt-40 {
	padding-top: 40px !important;
}
.pt-45 {
	padding-top: 45px !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pt-55 {
	padding-top: 55px !important;
}
.pt-60 {
	padding-top: 60px !important;
}
.pt-65 {
	padding-top: 65px !important;
}
.pt-70 {
	padding-top: 70px !important;
}
.pt-75 {
	padding-top: 75px !important;
}
.pt-80 {
	padding-top: 80px !important;
}
.pt-85 {
	padding-top: 85px !important;
}
.pt-90 {
	padding-top: 90px !important;
}
.pt-95 {
	padding-top: 95px !important;
}
.pt-100 {
	padding-top: 100px !important;
}
.pt-105 {
	padding-top: 105px !important;
}
.pt-110 {
	padding-top: 110px !important;
}
.pt-115 {
	padding-top: 115px !important;
}
.pt-120 {
	padding-top: 120px !important;
}
.pt-130 {
	padding-top: 130px !important;
}
.pt-140 {
	padding-top: 140px !important;
}
.pt-150 {
	padding-top: 150px !important;
}

/*=========================================================
		[ padding-bottom  (0/100) +5 ]
=========================================================*/
.pb-0 {
	padding-bottom: 0 !important;
}
.pb-5 {
	padding-bottom: 5px !important;
}
.pb-10 {
	padding-bottom: 10px !important;
}
.pb-15 {
	padding-bottom: 15px !important;
}
.pb-20 {
	padding-bottom: 20px !important;
}
.pb-25 {
	padding-bottom: 25px !important;
}
.pb-30 {
	padding-bottom: 30px !important;
}
.pb-35 {
	padding-bottom: 35px !important;
}
.pb-40 {
	padding-bottom: 40px !important;
}
.pb-45 {
	padding-bottom: 45px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.pb-55 {
	padding-bottom: 55px !important;
}
.pb-60 {
	padding-bottom: 60px !important;
}
.pb-65 {
	padding-bottom: 65px !important;
}
.pb-70 {
	padding-bottom: 70px !important;
}
.pb-75 {
	padding-bottom: 75px !important;
}
.pb-80 {
	padding-bottom: 80px !important;
}
.pb-85 {
	padding-bottom: 85px !important;
}
.pb-90 {
	padding-bottom: 90px !important;
}
.pb-95 {
	padding-bottom: 95px !important;
}
.pb-100 {
	padding-bottom: 100px !important;
}
.pb-105 {
	padding-bottom: 105px !important;
}
.pb-110 {
	padding-bottom: 110px !important;
}
.pb-115 {
	padding-bottom: 115px !important;
}
.pb-120 {
	padding-bottom: 120px !important;
}
.pb-130 {
	padding-bottom: 130px !important;
}
.pb-140 {
	padding-bottom: 140px !important;
}
.pb-150 {
	padding-bottom: 150px !important;
}
.no-padding {
	padding: 0 !important;
}
.left-0 {
	padding-left: 0;
	margin-left: 0;
}
.right-0 {
	padding-right: 0;
	margin-right: 0;
}
.width-100 img {
	width: 100%;
	height: auto;
}
.width-50 img {
	width: 50%;
	height: auto;
}
.width-10 img {
	width: 10%;
	height: auto;
}

.bg-theme {
	background-color: #f2b83a;
}
.bg-theme.v2 {
	background-color: #172c3f;
}

.a-hotspot {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}

.hilite, .free-text h2 {
	position: relative;
	margin: 0 0 20px;
	padding-right: 24px;
	line-height: 1.5;
	font-size: 36px;
	font-weight: 600;
	font-style: italic;
}
.hilite:before, .free-text h2:before {
	position: absolute;
	top: 5px;
	right: 0;
	content: url("../img/brush-stroke.png");
	z-index: -1;
}
.free-text h2 {
	margin-top: 40px;
}

/*=========================================================
		[ Section ]
=========================================================*/
.section-title h2 {
	line-height: 60px;
	margin-top: -15px;
	padding-bottom: 21px;
	font-size: 48px;
	color: #172c3f;
	font-weight: 700;
	font-style: italic;
}
.section-title h2 span {
	color: #f2b83a;
}
.section-title p, .section-title .p {
	font-size: 24px;
	line-height: 1.4;
	color: #111;
	font-weight: 400;
}
p.form-message.error {
	color: #f2b83a;
	padding-top: 20px;
}
p.form-message.success {
	color: #28a745;
	padding-top: 20px;
}

/*
========================================
Preloader
========================================
*/

/* preloader 1 */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #172c3f;
	z-index: 9999;
}

.lds-css {
	display: block;
	position: relative;
	left: 46%;
	top: 46%;
	width: 70px;
	height: 70px;
}

.preloader-1 {
	position: relative;
	width: 100%;
	height: 100%;
}
.preloader-1 span {
	position: absolute;
	-webkit-animation: lds-eclipse 1.3s linear infinite;
	animation: lds-eclipse 1.3s linear infinite;
	width: 160px;
	height: 160px;
	top: 20px;
	left: 20px;
	border-radius: 50%;
	box-shadow: 0 4px 0 0 #f2b83a;
	-webkit-transform-origin: 80px 82px;
	transform-origin: 80px 82px;
}
.preloader-1 {
	width: 90px !important;
	height: 90px !important;
	-webkit-transform: translate(-45px, -45px) scale(0.45) translate(45px, 45px);
	transform: translate(-45px, -45px) scale(0.45) translate(45px, 45px);
}

@keyframes lds-eclipse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes lds-eclipse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* preloader 2 */
.preloader-2 {
	position: relative;
	width: 100%;
	height: 100%
}
.preloader-2 span {
	box-sizing: content-box;
	position: absolute;
	border-width: 4px;
	border-style: solid;
	opacity: 1;
	border-radius: 50%;
	-webkit-animation: lds-ripple 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: lds-ripple 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.preloader-2 span:nth-child(1) {
	border-color: #f2b83a;
}
.preloader-2 span:nth-child(2) {
	border-color: #172c3f;
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}
.preloader-2 {
	width: 97px !important;
	height: 97px !important;
	-webkit-transform: translate(-48.5px, -48.5px) scale(0.485) translate(48.5px, 48.5px);
	transform: translate(-48.5px, -48.5px) scale(0.485) translate(48.5px, 48.5px);
}

@keyframes lds-ripple {
	0% {
		top: 96px;
		left: 96px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 18px;
		left: 18px;
		width: 156px;
		height: 156px;
		opacity: 0;
	}
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 96px;
		left: 96px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 18px;
		left: 18px;
		width: 156px;
		height: 156px;
		opacity: 0;
	}
}


/* preloader 3 */
.preloader-3 {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
}
.preloader-3 span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #f2b83a;
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite;
}
.preloader-3 span:last-child {
	animation-delay: -0.8s;
	-webkit-animation-delay: -0.8s;
}

@keyframes preloader {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes preloader {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/** ---[Menu]--- **/
/*
  ========================================
  Navigation
  ========================================
*/

header {
	position: relative;
	width: 100%;
}

.top-nav {
	position: absolute;
	z-index: 222;
}

.topnav {
	background-color: #172c3f;
}

.logo img {
	width: 80%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#cssmenu.sticky .logo img {
	width: 60%;
}

.top-nav2 #cssmenu.sticky .logo img {
	width: 100%;
	padding: 12px 0;
}


/*
  ========================================
  Top Address
  ========================================
*/

.top-address {
	position: relative;
	padding: 17px 0;
}
.top-address.semidark {
	background-color: rgba(23, 44, 63, 0.7);
}

.top-address::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(242, 184, 58, 0)), to(rgba(242, 184, 58, 1)));
	background: -o-linear-gradient(left, rgba(242, 184, 58, 0) 25%, rgba(242, 184, 58, 1) 100%);
	background: linear-gradient(90deg, rgba(242, 184, 58, 0) 25%, rgba(242, 184, 58, 1) 100%);
}

.top-address-ditels {
	display: inline-block;
}

.top-address-ditels ul li {
	display: inline-block;
	padding-left: 35px;
}

.top-address-ditels ul li i {
	color: #f2b83a;
	margin-left: 10px;
}

.top-address-ditels ul li a {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	display: inline-block;
	text-decoration: none;
}

.top-address-ditels ul li span {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	display: inline-block;
}

.top-social {
	display: inline-block;
	padding-right: 55px;
	padding-left: 100px;
}

.top-social a {
	font-size: 16px;
	color: #fff;
	padding: 0 5px;
	-webkit-transition: background .3s ease;
	transition: background .3s ease;
}

.top-social a:hover {
	color: #f2b83a;
	text-decoration: none;
}


/*
  ========================================
  Top Menu
  ========================================
*/

.shopping-bag {
	display: inline-block;
	padding: 0 12px;
}

.shopping-bag a {
	text-decoration: none;
	position: relative;
}

.shopping-bag a i {
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: #f2b83a;
}

.shopping-bag a span {
	background: #fff;
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 20px;
	text-align: center;
	font-size: 9px;
	line-height: 20px;
	color: #f2b83a;
	font-weight: 400;
	position: absolute;
	top: -9px;
	left: 8px;
}

.search-dropdown {
	display: inline-block;
}

.icon-btn {
	background-color: #f2b83a;
	-webkit-clip-path: polygon(0 0, 66% 0, 100% 100%, 34% 100%);
	clip-path: polygon(0 0, 66% 0, 100% 100%, 34% 100%);
	padding: 19px 35px;
	border: 0;
	font-size: 18px;
	line-height: 29px;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	margin-right: -28px;
}

button.icon-btn {
	outline: none;
}

.search-dropdown .dropdown-menu {
	background: #fff;
	border: 0;
	padding: 25px 11px 12px;
	border: 1px solid #ccc;
	border-top: 2px solid #f2b83a;
}

.search-dropdown .dropdown-menu .search-input {
	border: 0;
	border-bottom: 2px solid #f2b83a;
	outline: none;
	padding: 10px 25px 10px 10px;
	font-size: 15px;
}

.search-dropdown .dropdown-menu .search-btn {
	background: no-repeat;
	border: 0;
	margin-left: -35px;
	font-size: 15px;
	color: #f2b83a;
	cursor: pointer;
	padding: 10px 10px;
}

.become-member {
	display: inline-block;
	background-color: #f2b83a;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15% 100%);
}

.become-member a {
	font-size: 16px;
	line-height: 8px;
	color: #fff;
	font-weight: 700;
	padding: 30px 32px 30px 46px;
	display: inline-block;
	text-decoration: none;
}

.logo {
	position: relative;
	z-index: 123;
	padding: 0 30px 0 0;
	font: 18px verdana;
	float: left;
	width: auto;
	-webkit-transition: padding .5s;
	transition: padding .5s;
}

.logo a {
	color: #172c3f;
}

nav {
	position: relative;
	margin: 0 auto;
}

#cssmenu {
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

#cssmenu:after,
#cssmenu ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

#cssmenu #head-mobile {
	display: none
}

#cssmenu {
	z-index: 222;
}

#cssmenu ul {
	margin: 0;
	float: right;
}

#cssmenu ul li {
	float: right
}

#cssmenu ul li a {
	margin: 0px 17px;
	padding: 21px 0px;
	line-height: 24px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}

#cssmenu ul li:hover a,
#cssmenu ul li.active a {
	color: #f2b83a;
}

#cssmenu ul li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
	-webkit-transition: background .3s ease;
	transition: background .3s ease;
}

#cssmenu ul li.active a {
	border: none;
}

#cssmenu ul li.has-sub:hover a:before {
	top: 23px;
	height: 2px;
}

#cssmenu ul ul {
	position: absolute;
	right: -9999px;
	background: #fff;
	padding: 17px 15px;
	border-radius: 4px;
	border-top: 2px solid #f2b83a;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-shadow: 0px 4px 10px -6px rgba(166, 166, 166, 1);
}

#cssmenu ul ul li {
	height: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease
}

#cssmenu li:hover ul {
	right: auto
}

#cssmenu li:hover ul li {
	height: 40px;
}

#cssmenu ul ul ul {
	margin-right: 100%;
	top: 0
}

#cssmenu ul ul li a {
	padding: 12px 5px;
	margin: 0;
	width: 180px;
	font-size: 15px;
	text-decoration: none;
	font-weight: 600;
	text-transform: capitalize;
	color: #172c3f !important;
	position: relative;
	-webkit-transition: .5s;
	transition: .5s;
}

#cssmenu ul ul li a::before {
	position: absolute;
	top: 50%;
	right: -10px;
	width: 10px;
	height: 2px;
	background-color: #f2b83a;
	z-index: 99;
	border-radius: unset;
	opacity: 0;
	content: "";
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .5s;
	transition: .5s;
}

#cssmenu ul ul li a:hover {
	color: #f2b83a !important;
	-webkit-transform: translateX(-15px);
	transform: translateX(-15px);
}

#cssmenu ul ul li:hover a::before {
	opacity: 1;
	right: -15px;
}

#cssmenu ul ul li:last-child a,
#cssmenu ul ul li.last-item a {
	border-bottom: 0
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
	background: #404040;
}

#cssmenu ul ul ul li.active a {
	border-left: 1px solid #333
}

#cssmenu ul li.has-sub ul li.active a,
#cssmenu ul ul li.has-sub ul li.active a {
	border-top: 1px solid #333
}

.top-btn {
	padding: 16px 0;
}

.top-btn a {
	background: #1add97;
	padding: 12px 50px !important;
	border-radius: 100px;
	margin-left: 15px;
	width: 200px;
	text-align: center;
	border: 2px solid #1add97 !important;
	-webkit-transition: .8s linear;
	transition: .8s linear;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	overflow: hidden;
}

.top-btn a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: -o-linear-gradient(304deg, #8A62F0, #7142DF);
	background: linear-gradient(146deg, #8A62F0, #7142DF);
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.top-btn a:active,
.top-btn a:focus,
.top-btn a:hover {
	color: #fff
}

.top-btn a:active:before,
.top-btn a:focus:before,
.top-btn a:hover:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

#cssmenu ul li.top-btn:nth-last-child(1) a:after {
	content: unset;
}

@media screen and (max-width:991px) {
	.logo {
		position: absolute;
		top: 10px;
		left: 0;
		width: auto;
		height: 65px;
		text-align: left;
		padding: 0px 17px;
		float: none;
	}
	.logo2 {
		display: none
	}
	nav {
		width: 100%;
	}
	#cssmenu {
		width: 100%;
	}
	#cssmenu ul {
		width: 100%;
		display: none;
	}
	#cssmenu ul li {
		width: 100%;
		border-top: 1px solid #444;
		background-color: #000;
	}
	#cssmenu ul li:hover {
		background: #363636;
	}
	#cssmenu ul ul li,
	#cssmenu li:hover ul li {
		height: auto
	}
	#cssmenu ul li a,
	#cssmenu ul ul li a {
		width: 100%;
		border-bottom: 0
	}
	#cssmenu ul ul {
		padding: 0px 0px;
		border-radius: 0px;
	}
	#cssmenu ul li {
		float: none;
		overflow: hidden;
	}
	#cssmenu ul ul li a {
		padding-right: 25px;
		color: #fff !important;
	}
	#cssmenu ul ul li {
		background: #333!important;
	}
	#cssmenu ul ul li:hover {
		background: #363636!important
	}
	#cssmenu ul ul ul li a {
		padding-left: 35px
	}
	#cssmenu ul ul li a {
		color: #ddd;
		background: none;
		font-weight: 600;
		font-size: 15px;
	}
	#cssmenu ul ul li:hover a,
	#cssmenu ul ul li.active a {
		color: #fafafa
	}
	#cssmenu ul ul,
	#cssmenu ul ul ul {
		position: relative;
		right: 0;
		width: 100%;
		margin: 0;
		text-align: right;
		-webkit-transition: unset;
		transition: unset;
	}
	#cssmenu ul li.has-sub a:after,
	#cssmenu ul li.has-sub a:before,
	#cssmenu ul ul li.has-sub a:after,
	#cssmenu ul ul li.has-sub a:before {
		display: none
	}
	#cssmenu #head-mobile {
		display: block;
		padding: 23px;
		color: #ddd;
		font-size: 12px;
		font-weight: 700
	}
	.button {
		width: 55px;
		height: 46px;
		position: relative;
		right: 0;
		top: 11px;
		cursor: pointer;
		z-index: 12399994;
	}
	.button:after {
		position: absolute;
		top: 22px;
		right: 20px;
		display: block;
		height: 8px;
		width: 20px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
		content: '';
	}
	.button:before {
		position: absolute;
		top: 16px;
		right: 20px;
		display: block;
		height: 2px;
		width: 20px;
		background: #fff;
		content: '';
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	.button.menu-opened:after {
		top: 23px;
		border: 0;
		height: 2px;
		width: 19px;
		background: #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	.button.menu-opened:before {
		top: 23px;
		background: #fff;
		width: 19px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}
	#cssmenu .submenu-button {
		position: absolute;
		z-index: 99;
		left: 0;
		top: 0;
		display: block;
		border-right: 1px solid #444;
		height: 46px;
		width: 46px;
		cursor: pointer
	}
	#cssmenu .submenu-button.submenu-opened {
		background: #262626
	}
	#cssmenu ul ul .submenu-button {
		height: 34px;
		width: 34px
	}
	#cssmenu .submenu-button:after {
		position: absolute;
		top: 22px;
		right: 19px;
		width: 8px;
		height: 2px;
		display: block;
		background: #ddd;
		content: ''
	}
	#cssmenu ul ul .submenu-button:after {
		top: 15px;
		right: 13px
	}
	#cssmenu .submenu-button.submenu-opened:after {
		background: #fafafa
	}
	#cssmenu .submenu-button:before {
		position: absolute;
		top: 19px;
		right: 22px;
		display: block;
		width: 2px;
		height: 8px;
		background: #ddd;
		content: ''
	}
	#cssmenu ul ul .submenu-button:before {
		top: 12px;
		right: 16px
	}
	#cssmenu .submenu-button.submenu-opened:before {
		display: none
	}
	#cssmenu ul ul ul li.active a {
		border-left: none
	}
	#cssmenu ul li.has-sub ul li.active a,
	#cssmenu ul ul li.has-sub ul li.active a {
		border-top: none
	}
	.navbar-nav.open {
		background-color: #000;
	}
	#cssmenu ul li a {
		padding: 11px 17px;
		margin: 0;
	}
	li.top-btn {
		display: none !important;
	}
}

/** ---[Gym]--- **/
/*
  ========================================
  Hero
  ========================================
*/

.fullslider {
	position: relative;
}

.fullslider .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.slider-bg {
	background-color: #eee;
	background-attachment: scroll;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider-all-text {
	padding: 350px 0px 230px;
	z-index: 11;
	position: relative;
}

.slider-all-text::before {
	position: absolute;
	top: 50%;
	right: 50%;
	width: 130px;
	height: 60%;
	border: 2px solid #f2b83a;
	z-index: -1;
	content: '';
	-webkit-transform: rotate(24deg) translate(50%, -50%);
	transform: rotate(24deg) translate(50%, -50%);
}

.slider-all-text h1 {
	color: #fff;
	font-style: italic;
}

.slider-all-text p, .slider-all-text .p {
	font-size: 24px;
	line-height: 36px;
	color: #fff;
	font-weight: 400;
	padding: 44px 0 56px;
}

a.video-play-button {
	text-decoration: none;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}

.slider-all-text a i {
	font-weight: 400;
	color: #fff;
}

.slider-all-text a i::before {
	font-size: 70px;
}

.slider-all-text a span {
	font-size: 24px;
	line-height: 36px;
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.fullslider .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin: 0;
	background-color: #fff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.fullslider:hover .owl-nav [class*=owl-] {
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.fullslider .owl-prev {
	left: 0;
}

.fullslider .owl-next {
	right: 0;
}

.fullslider .owl-nav button.owl-next,
.fullslider .owl-nav button.owl-prev,
.fullslider button.owl-dot {
	background: #fff;
	padding: 17px !important;
	border-radius: 0;
	font-size: 26px;
	color: #172c3f;
}

.fullslider .owl-nav [class*=owl-]:hover {
	background: #f2b83a;
}

#home-banner-area.owl-theme .owl-nav {
	margin-top: 0;
}


/* hero 2 */
.fullslider3 {
	position: relative;
}

.fullslider3 .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.slider2-all-text {
	padding: 350px 0px 275px;
	z-index: 11;
	position: relative;
}

.slider2-all-text h1 {
	font-size: 55px;
	color: #fff;
	line-height: 65px;
}

.slider2-all-text h1 span {
	color: #f2b83a;
}

.slider2-all-text p, .slider2-all-text .p {
	color: #fff;
	font-size: 24px;
	line-height: 36px;
	font-weight: 400;
	padding: 31px 0 46px;
}

.slider2-all-text a {
	color: #fff;
	background: #f2b83a;
}

.slider2-all-text a i {
	padding-left: 10px;
	-webkit-transition: .5s;
	transition: .5s;
}

.slider2-all-text a:hover i {
	-webkit-transform: translateX(20px);
	transform: translateX(20px)
}

.fullslider3 .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin: 0;
	background-color: #fff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.fullslider3:hover .owl-nav [class*=owl-] {
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.fullslider3 .owl-prev {
	left: 0;
}

.fullslider3 .owl-next {
	right: 0;
}

.fullslider3 .owl-nav button.owl-next,
.fullslider3 .owl-nav button.owl-prev,
.fullslider3 button.owl-dot {
	background: #fff;
	padding: 17px !important;
	border-radius: 0;
	font-size: 26px;
	color: #172c3f;
}

.fullslider3 .owl-nav [class*=owl-]:hover {
	background: #f2b83a;
}

.owl-carousel.layed .owl-stage-outer,
.owl-carousel.layed .owl-stage,
.owl-carousel.layed .owl-item,
.owl-carousel.layed .item {
	height: 100%;
}

/*
  ========================================
  About Box
  ========================================
*/

.about-box-left-bc {
	background-color: #f2b83a;
	position: relative;
	overflow: hidden;
}

.about-box-left {
	position: relative;
	top: 50%;
	width: 320px;
	margin: 0 auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.about-box-left-img {
	position: absolute;
	bottom: -157px;
	right: 0;
	width: 75%;
	height: 100%;
	background-image: url(../img/home/ab1.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
}

.about-box-left h2 {
	color: #fff;
	font-size: 48px;
	line-height: 60px;
	font-weight: 700;
}

.about-box-left h2 span {
	color: #e7f50f;
}

.about-box-left p, .about-box-left .p {
	font-size: 21px;
	line-height: 30px;
	color: #fff;
	font-weight: 400;
	padding: 33px 0 55px;
}

.simply-scroll-container {
	position: relative;
}

.about-box-right {
	background-color: #172c3f;
	padding: 100px;
	position: relative;
	overflow: hidden;
}

.about-box-right-img {
	position: absolute;
	bottom: -33px;
	right: 0;
	width: 39%;
	height: 100%;
	background-image: url(../img/home/ab2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
}

.about-box-right h2 {
	color: #fff;
	font-size: 48px;
	line-height: 60px;
	font-weight: 700;
	z-index: 1;
}

.about-box-right a.btn-1 {
	margin-right: 123px;
	-webkit-transform: translateY(25px);
	transform: translateY(25px);
}

.simply-scroll-clip {
	position: relative;
	overflow: hidden;
}


/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */

.slideGuide {
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slideGuide li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.slideGuide li img {
	border: none;
	display: block;
}


/* slider (base)
--------------------------------------------------------- */

.slideFrame {
	overflow: hidden;
}

.slideCell {
	display: block;
}

.slideGuide .slideCell {
	float: left;
	margin-right: 0px;
}

.slideGuide.up .slideCell,
.slideGuide.down .slideCell {
	float: none;
	margin-right: 0;
	margin-bottom: 10px;
}


/* controller */

.slideCtrl {
	position: absolute;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

.slideCtrl.left,
.slideCtrl.right {
	top: 0;
	width: 100%;
	height: 100%;
}

.slideCtrl.up,
.slideCtrl.down {
	left: 0;
	width: 100%;
	height: 60px;
	font-size: 14px;
	line-height: 60px;
}

.slideCtrl.left {
	left: 0;
}

.slideCtrl.right {
	right: 0;
}

.slideCtrl.up {
	top: 0;
}

.slideCtrl.down {
	bottom: 0;
}


/* slider-0
--------------------------------------------------------- */

#slider-0.slideFrame .slideCell {
	width: 350px;
	height: auto;
	padding: 0px;
}

.slideCell {
	position: relative;
	overflow: hidden;
}

.slideCell img {
	width: 100%;
}

.sliderCell-text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	padding: 30px 30px;
	background-color: rgba(23, 44, 63, 84);
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.slideCell:hover .sliderCell-text {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.sliderCell-text h2 {
	line-height: 36px;
	color: #f2b83a;
	font-weight: 700;
}

.sliderCell-text h3 {
	color: #fff;
	font-weight: 400;
	padding: 10px 0 25px;
}

.sliderCell-text p, .sliderCell-text .p {
	color: #fff;
}


/*
  ========================================
  Fitner
  ========================================
*/

/* fitner item */
.fitner-item {
	text-align: center;
	padding: 0 20px;
	width: 320px;
	margin: 0 auto;
}

.fitner-item h2 {
	font-size: 30px;
	line-height: 36px;
	padding: 25px 0 24px;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.fitner-item:hover h2 {
	color: #f2b83a;
}

.fitner-border {
	position: relative;
}

.fitner-border::before {
	position: absolute;
	top: 0;
	left: -22px;
	width: 2px;
	height: 100%;
	background-color: #f3f3f3;
	content: '';
	-webkit-transform: rotate(8deg);
	transform: rotate(8deg);
}


/*
  ========================================
  Services
  ========================================
*/

/* Service Item */
.services-box {
	position: relative;
	overflow: hidden;
	-webkit-transition: .7s;
	transition: .7s;
}

.services-img img {
	width: 100%;
}

.services-text {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 0 20px;
	background-color: #172c3f;
	-webkit-transition: .5s;
	transition: .5s;
}

.services-text i {
	background-color: #172c3f;
	color: #fff;
	display: inline-block;
	width: 85px;
	height: 85px;
	border-radius: 100px;
	padding: 30px 0;
	margin-top: -52px;
}

.services-text i::before {
	font-size: 30px;
}

.services-text h3 {
	color: #fff;
	font-weight: 700;
	padding-bottom: 25px;
	margin-top: -12px;
}

.services-text p, .services-text .p {
	color: #fff;
	display: none;
}

.services-box .services-item:hover .services-text i {
	margin-top: 0;
	-webkit-transition: .7s;
	transition: .7s;
}

.services-item:hover .services-text h3 {
	-webkit-transition: .7s;
	transition: .7s;
	padding: 7px 0;
}

.services-item:hover .services-text p,
.services-item:hover .services-text .p {
	display: block;
	-webkit-transition: .7s;
	transition: .7s;
}

.services-item i {
	background-color: #172c3f;
	color: #fff;
	display: inline-block;
	width: 85px;
	height: 85px;
	border-radius: 100px;
	padding: 30px 0;
	margin-top: 0;
}

.services-item i::before {
	font-size: 30px;
}

.services-item .content-details h3 {
	padding: 20px 0;
}

.services-box:hover .services-text {
	bottom: -100%;
}

.services-item img {
	width: 100%;
}

.descriptor {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 11;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.descriptor .title {
	display: block;
	padding: 6px 0;
	background-color: rgba(23, 44, 63, 0.5);
	font-size: 20px;
	color: #fff;
	-webkit-transition: background-color 0.3s ease-in-out 0s;
	transition: background-color 0.3s ease-in-out 0s;
}
.descriptor .elaborate {
	display: none;
	padding: 0 10px;
	font-size: 16px;
	color: #fff;
}
@media (min-width: 992px){
	.descriptor .title {
		padding: 10px 0;
		font-size: 24px;
	}
	.descriptor .elaborate {
		padding: 0 20px;
	}

	.effect-item:hover .descriptor:not(.stay) {
		bottom: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.effect-item:hover .descriptor .title {
		background-color: transparent;
	}
	.effect-item:hover .descriptor:not(.stay) .elaborate {
		display: block;
	}
}
@media (min-width: 1200px){
	.descriptor .elaborate {
		padding: 0 45px;
	}
}


/*
  ========================================
  Pricing
  ========================================
*/

.pricing-item {
	box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.51);
}

.pricing-item-left {
	width: 36%;
}

.pricing-item-left ul {
	border-left: 1px solid #ccc;
}

.pricing-item-left ul li {
	padding: 38px 27px;
}

.pricing-item-left ul li:nth-child(1) {
	border-bottom: 1px solid #ccc;
}

.pricing-item-left ul li:nth-child(2) {
	border-bottom: 1px solid #ccc;
}

.pricing-item-left-h3 {
	line-height: 30px;
	color: #172c3f;
	font-weight: 700;
}

.pricing-item-left-h6 {
	color: #111;
	font-size: 16px;
}

.pricing-item-left-p {
	color: #111;
	font-size: 12px;
	padding-top: 10px;
}

.pricing-item-left-h2 {
	line-height: 24px;
	color: #f2b83a;
	font-weight: 700;
}

.pricing-item-right {
	width: 64%;
	margin: 45px 30px 50px;
}

.pricing-item-bgc {
	background-color: #172c3f;
}

.pricing-item-bgc h3 {
	color: #fff
}

.pricing-item-right ul li {
	padding-bottom: 27px;
}

.pricing-item-right ul li a {
	font-size: 16px;
	color: #111;
	font-weight: 400;
	text-decoration: none;
}

.pricing-item-right ul li a:hover {
	color: #f2b83a;
}

.pricing-item-right ul li a i {
	font-size: 16px;
	color: #f2b83a;
}

.pricing-right .pricing-item-left-h3 {
	color: #fff;
}

.pricing-right .pricing-item-left-h6 {
	color: #fff;
}

.pricing-right .pricing-item-left-p {
	color: #fff;
}

.pricing-right ul li a {
	color: #fff;
}

.pricing-item-bgc .pricing-item-left ul {
	border-left: 1px solid #172c3f;
}

.pricing-item-bgc .pricing-item-left ul li:nth-child(1) {
	border-bottom: 1px solid #172c3f;
}

.pricing-item-bgc .pricing-item-left ul li:nth-child(2) {
	border-bottom: 1px solid #172c3f;
}


/*
  ========================================
  Feature
  ========================================
*/

/* Feature Item */
.feature-i i {
	color: #f2b83a;
	margin-left: 12px;
}

.feature-i i::before {
	font-size: 50px;
}

.feature-text h3 {
	font-size: 30px;
	line-height: 36px;
	color: #172c3f;
	transition: all .3s;
}

.feature-item:hover h3 {
	color: #f2b83a;
}

.feature-text p, .feature-text .p {
	padding-top: 22px;
}


/*
  ========================================
  Testimonial
  ========================================
*/

.testimonial-home1 {
	background-image: url(../img/default/default.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.testimonial-home1 .section-title h2 {
	color: #fff;
}

.testimonial-home1 .section-title p,
.testimonial-home1 .section-title .p {
	color: #fff;
}

.testimonial-content {
	margin: -138px 0 138px;
	-webkit-transform: translateY(138px);
	transform: translateY(138px);
}


/* Testimonial Item */
.testimonial-item {
	position: relative;
}

.testimonial-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	transition: .3s;
}

.testimonial-item:hover:before {
	background-color: rgba(0, 0, 0, 0.7);
}

.testimonial-item img {
	width: 100%;
}

.testimonial-text {
	position: absolute;
	top: 50%;
	width: 100%;
	padding: 0 98px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.testimonial-text h3 {
	height: 170px;
	font-size: 30px;
	line-height: 42px;
	color: #fff;
	font-weight: 400;
}

a.video-play-button {
	text-decoration: none;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
	color: #fff;
	transition: .5s;
}

.testimonial-text a i {
	font-weight: 400;
}

.testimonial-text a i::before {
	font-size: 60px;
}

.testimonial-text a span {
	margin: 0 15px;
	line-height: 36px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
}

.testimonial-text a.video-play-button:hover {
	color: #f2b83a;
}


/*
  ========================================
  Fitner Classes
  ========================================
*/
.classes-tab-btn {
	display: inline-block;
	float: right;
	width: 170px;
	margin-left: 18px;
	background-color: #f2b83a;
}

.classes-tab-btn .nav-link.active ul.classes-tabs {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.classes-tabs li {
	position: relative;
	padding: 32px 25px;
	line-height: 1px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	border-bottom: 1px solid #fbcd6a;
}

ul.classes-tabs li.current {
	color: #fff;
	border-radius: 0;
	position: relative;
	background: none;
	background-color: #172c3f;
}

ul.classes-tabs li.current::before {
	position: absolute;
	top: 50%;
	left: -14px;
	width: 14px;
	height: 23px;
	background-color: #172c3f;
	content: '';
	-webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.tab-content {
	display: none;
}

.tab-content.current {
	display: inherit;
}

.tab-content2 {
	display: none;
}

.tab-content2.current {
	display: inherit;
}

.tab-content3 {
	display: none;
}

.tab-content3.current {
	display: inherit;
}

.fitner-tab-all {
	width: 130px;
	display: inline-block;
	margin: 0 2px;
}

.fitner-tab-all h5 {
	background-color: #172c3f;
	color: #fff;
	text-align: center;
	padding: 26px 0;
	font-size: 15px;
	line-height: 0;
	font-weight: 700;
}

.fitner-tab-all ul li {
	height: 85px;
	border: 1px solid #f1f1f1;
	margin-top: 7px;
	text-align: center;
	padding: 24px 10px;
	font-size: 14px;
	width: 100%;
	overflow: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
}

.fitner-tab-all ul li:hover {
	background-color: rgba(242, 184, 58, 0.1);
}

.fitner-tab-all ul li span {
	color: #f2b83a;
	font-weight: 700;
	display: block;
	padding-bottom: 6px;
}


/*
  ========================================
  Trainers Single
  ========================================
*/

.trainers-single-text h2 {
	color: #f2b83a;
}

.trainers-single-text h6 {
	font-size: 18px;
	color: #111;
	padding-top: 9px;
}

.trainers-single-text p, .trainers-single-text .p {
	padding: 35px 0 23px;
}

.trainers-information ul li {
	font-size: 16px;
	line-height: 18px;
	color: #172c3f;
	padding-top: 16px;
}

.trainers-information ul li span {
	font-weight: 700;
}


/*
  ========================================
  Team
  ========================================
*/

#team-area {
	background-color: #f9f9f9;
	background-image: url(../img/bg/bg2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* team item */
.team-box {
	position: relative;
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.team-item {
	position: relative;
	text-align: center;
}

.team-item img {
	width: 100%;
}

.team-title h3 {
	padding: 32px 0 15px;
}

.team-title h3 a {
	text-decoration: none;
	color: #172c3f;
}

.team-box:hover h3 a {
	color: #f2b83a;
}

.team-dd {
	display: none;
	position: absolute;
	top: 0%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 127px 58px;
	background-color: rgba(241, 30, 85, 0.9);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.team-box:hover .team-dd {
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.team-dd li {
	display: inline-block;
}

.team-dd li a {
	color: #fff;
	font-size: 20px;
	margin: 0 4px;
}

.team-dd p, .team-dd .p {
	color: #fff;
	padding-top: 35px;
}


/*
  ========================================
  Cta
  ========================================
*/

.cta-bg1 {
	background-image: url(../img/bg/cta.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.cta-left h2 {
	color: #fff;
	font-size: 48px;
	padding: 0 0 30px;
}

.cta-left p, .cta-left .p {
	color: #fff;
	font-size: 18px;
}

.cta-left p span, .cta-left .p span {
	color: #f2b83a;
}

.cta-btn {
	text-align: right;
	padding: 5px 0;
}

/*
  ========================================
  Blog
  ========================================
*/

.blog-img {
	overflow: hidden;
}
.blog-img img {
	width: 100%;
	-webkit-transition: all 0.7s ease-in-out 0s;
	transition: all 0.7s ease-in-out 0s;
}
.blog-item.bordered {
	border: 1px solid #eee;
}
.blog-item.bordered.theme {
	border-color: #f2b83a;
}
.blog-item:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.blog-text {
	padding: 39px 0;
}
.blog-text ul li {
	display: inline-block;
	margin-left: 10px;
}
.blog-text ul li, .blog-text ul li a {
	color: #a3a3a3;
	font-size: 14px;
	text-decoration: none;
}
.blog-text ul li i {
	padding-left: 3px;
	color: #f2b83a;
}
.blog-title a {
	display: inline-block;
	padding: 26px 0 25px;
	text-decoration: none;
	color: #172c3f;
}
.blog-item:hover .blog-title a {
	color: #f2b83a;
}
.blog-item.flipped .bimg {
	order: 1;
}
.blog-item.flipped .btxt {
	order: 0;
}
@media (min-width: 576px){
	.blog-item.flipped-sm .bimg {
		order: 1;
	}
	.blog-item.flipped-sm .btxt {
		order: 0;
	}
}
@media (min-width: 768px){
	.blog-item.flipped-md .bimg {
		order: 1;
	}
	.blog-item.flipped-md .btxt {
		order: 0;
	}
}
@media (min-width: 992px){
	.blog-item.flipped-lg .bimg {
		order: 1;
	}
	.blog-item.flipped-lg .btxt {
		order: 0;
	}
}
@media (min-width: 1200px){
	.blog-item.flipped-xl .bimg {
		order: 1;
	}
	.blog-item.flipped-xl .btxt {
		order: 0;
	}
}

.blog-widget-search input {
	width: 85% !important;
	background: #e5e8f1;
	outline: none;
	height: 50px;
	border-radius: 0;
	border: none;
}

.form-control:focus {
	color: #495057;
	background-color: #e5e8f1;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 44, 54, 0.288);
}

.blog-widget-search button {
	width: 15% !important;
	background: #404040;
	color: #fff;
	border: 0;
	height: 50px;
}

.popular-news {
	border: 2px solid #eee;
	margin-top: 65px;
	padding: 40px 30px 10px;
	position: relative;
}

.popular-news h5 {
	font-size: 18px;
	line-height: 30px;
	color: #172c3f;
	font-weight: 700;
	background: #fffcfc;
	position: absolute;
	top: -15px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 46%;
	text-align: center;
}

.popular-news-item {
	margin-bottom: 30px;
}

.popular-news-item img {
	width: 100%;
}

.popular-news-item h6 a {
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	line-height: 20px;
	color: #172c3f;
	font-weight: 700;
	padding: 15px 0px 6px;
}

.popular-news-item:hover h6 a {
	color: #f2b83a;
}

.popular-news-item p, .popular-news-item .p {
	font-size: 12px;
	color: #babbbb;
}

.popular-news-item p i, .popular-news-item .p i {
	color: #f2b83a;
}

.blog-single-img img {
	width: 100%;
}

.blog-single-text ul.meta {
	padding: 36px 0 14px;
}
.blog-single-text ul.meta li {
	display: inline-block;
	margin-left: 15px;
	font-size: 14px;
	color: #a3a3a3;
}
.blog-single-text ul.meta li a {
	color: #a3a3a3;
	text-decoration: none;
}
.blog-single-text ul.meta li a:hover {
	color: #f2b83a;
}
.blog-single-text ul.meta li i {
	font-size: 14px;
	color: #f2b83a;
}
.blog-single-text h3 {
	color: #172c3f;
	font-weight: 700;
}

.blog-single-text p, .blog-single-text .p {
	padding: 40px 0 28px;
}

.blog-single-socile {
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	padding: 16px 0px;
	overflow: hidden;
}

.blog-single-socile-left {
	width: 50%;
	display: inline-block;
	float: left;
}

.blog-single-socile-left a {
	text-decoration: none;
	width: 25px;
	height: 25px;
	border-radius: 5px;
	color: #fff;
	text-align: center;
	padding: 4px 0px;
	margin-right: 6px;
}

.blog-single-socile-left a:nth-child(1) {
	background-color: #3274fa;
}

.blog-single-socile-left a:nth-child(2) {
	background-color: #3f9dfc;
}

.blog-single-socile-left a:nth-child(3) {
	background-color: #f2b83a;
}

.blog-single-socile-right {
	width: 50%;
	display: inline-block;
	text-align: right;
}

.blog-single-pagination ul li {
	display: inline-block;
	margin-left: 15px;
}

.blog-single-pagination ul li a {
	text-decoration: none;
	font-size: 14px;
	line-height: 30px;
	font-weight: 700;
	color: #d6d6d6;
}

.blog-single-pagination ul li:nth-child(2) a {
	color: #f2b83a;
}

.comments-contnet {
	padding-top: 80px;
}

.comments-contnet h5 {
	font-size: 18px;
	line-height: 30px;
	color: #14304b;
	font-weight: 700;
	padding-bottom: 30px;
}

.comment-author img {
	width: 75px;
	height: 75px;
	border-radius: 100px;
	margin-right: 34px;
}

.comment-author-text h6 {
	font-size: 16px;
	line-height: 30px;
	color: #14304b;
	font-weight: 700;
}

.comment-author-text p, .comment-author-text .p {
	padding: 12px 0 13px;
}

.comment-author-text a {
	font-size: 16px;
	line-height: 30px;
	color: #f2b83a;
	font-weight: 700;
	text-decoration: none;
}

.leave-comment-form {
	padding-top: 80px;
}

.leave-comment-form h3 {
	font-size: 18px;
	line-height: 30px;
	color: #14304b;
	font-weight: 700;
	padding-bottom: 30px;
}

.leave-comment-form input {
	width: 100%;
	height: 55px;
	padding: 0 25px;
	background: #f8f8f8;
	border: 0;
	margin-bottom: 30px;
}

.leave-comment-form input:focus {
	color: #495057;
	background-color: #e5e8f1;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 44, 54, 0.288);
}

.leave-comment-form textarea {
	width: 100%;
	height: 115px;
	padding: 30px 25px;
	background: #f8f8f8;
	border: 0;
	margin-bottom: 30px;
}

.leave-comment-form textarea:focus {
	color: #495057;
	background-color: #e5e8f1;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 44, 54, 0.288);
}

.leave-comment-form button.btn {
	outline: none;
	background: #f2b83a;
	padding: 15px 55px;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
}


/*
  ========================================
  Bmi
  ========================================
*/

.bmi-bg {
	background-image: url(../img/bg/bmi-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

.bmi-bg::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.bmi-bg .section-title h2 {
	color: #fff;
}

.bmi-bg .section-title p, .bmi-bg .section-title .p {
	color: #fff;
}

ul.bmi-tabs {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.bmi-tabs li {
	background: none;
	color: #fff;
	display: inline-block;
	padding: 20px 15px;
	cursor: pointer;
	background: #1e364e;
	font-size: 24px;
	width: 180px;
	text-align: center;
	margin-right: 10px;
	margin-bottom: 10px;
}

ul.bmi-tabs li.current {
	background: #f2b83a;
	color: #fff;
}

.bmi-content .tab-content2 {
	display: none;
	background: #1e364e;
	padding: 50px;
	color: #fff;
}

.bmi-content .tab-content2.current {
	display: inherit;
}

.bmi-content h3 {
	width: 100%;
	margin-bottom: 20px;
	color: #fff;
}

.bmi-content .input {
	width: 100%;
	background: no-repeat;
	border: 1px solid #ccc;
	padding: 0 20px;
	height: 50px;
	color: #fff;
}

.bmi-content .input::-webkit-input-placeholder {
	color: #fff;
}

.bmi-content .input::-moz-placeholder {
	color: #fff;
}

.bmi-content .input:-ms-input-placeholder {
	color: #fff;
}

.bmi-content .input::-ms-input-placeholder {
	color: #fff;
}

.bmi-content .input::placeholder {
	color: #fff;
}

.bmi-content .btn {
	width: 100%;
	margin-top: 40px;
}

.container-btn2 {
	border: 2px solid #50cd37;
	background: none;
	color: #50cd37;
}

.bmi-calculator .form-group input {
	width: 100%;
	height: 50px;
	border: 2px solid #fff;
	color: #fff;
	background-color: transparent;
	padding-right: 20px;
}

.bmi-calculator .form-group button.btn {
	color: #fff;
	background: transparent;
	background: #f2b83a;
}

.bmi-calculator .checkbox-wrapper .checkbox-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 30px;
	margin-bottom: 14px;
}

.bmi-calculator .checkbox-wrapper .checkbox-item input {
	height: 16px;
	width: 16px;
	border-radius: 2px;
	-webkit-appearance: none;
	background: #fff;
	margin-left: 10px;
}

.bmi-calculator input::-webkit-input-placeholder {
	color: #fff;
}

.bmi-calculator input::-moz-placeholder {
	color: #fff;
}

.bmi-calculator input:-ms-input-placeholder {
	color: #fff;
}

.bmi-calculator input::-ms-input-placeholder {
	color: #fff;
}

.bmi-calculator input::placeholder {
	color: #fff;
}

.checkbox-wrapper {
	padding-top: 12px;
	padding-bottom: 12px;
}

.bmi-calculator .checkbox-wrapper .checkbox-item label {
	color: #fff;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	text-transform: capitalize;
}

.bmi-calculator .checkbox-wrapper .checkbox-item input[type=radio]:checked {
	background: #f2b83a;
}

.bmi-rate-status-content {
	position: relative;
}

.bmi-rate-status-content::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, 58);
}

.bmi-rate-status-content li {
	background: #fff;
	font-size: 16px;
	color: #111;
	border-bottom: 1px solid rgba(0, 0, 0, 58);
}

.bmi-rate-status-content li:nth-child(1) {
	background: #f2b83a;
	color: #fff;
	font-weight: 600;
	font-style: italic;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 2px;
}

.bmi-rate-status-content .bmi-rate {
	width: 50%;
	display: inline-block;
	float: left;
	padding: 15px 25px;
}

.bmi-rate-status-content .bmi-status {
	width: 50%;
	display: inline-block;
	padding: 15px 25px;
}


/*
  ========================================
  Class Single
  ========================================
*/

.class-single-left img {
	width: 100%;
}

.class-single-left h3 {
	font-size: 30px;
	line-height: 40px;
	color: #172c3f;
	font-weight: 700;
	padding-top: 47px;
}

.class-single-left p, .class-single-left .p {
	font-size: 16px;
	line-height: 30px;
	color: #111;
	padding-top: 40px;
}

.class-single-details {
	padding-top: 50px;
}

.class-single-details-img {
	width: 50%;
	display: inline-block;
	float: left;
}

.class-single-details-text {
	display: inline-block;
	width: 50%;
}

.class-single-details-text h5 {
	font-size: 18px;
	line-height: 19px;
	color: #172c3f;
	font-weight: 700;
	padding: 20px 0 20px;
}

.class-single-details-text ul li a {
	text-decoration: none;
	font-size: 16px;
	line-height: 36px;
	color: #7d8080;
}

.class-single-details-text ul li a:hover {
	color: #f2b83a;
}

.class-single-details-text ul li a i {
	color: #f2b83a;
	margin-right: 5px;
}

.class-single-right-info {
	background-color: #e5e8f1;
	padding: 40px 35px;
}

.class-single-right-info h3 {
	font-size: 24px;
	color: #172c3f;
	line-height: 28px;
	padding-bottom: 25px;
}

.class-single-right-info ul li {
	font-size: 16px;
	line-height: 39px;
	color: #7d8080;
	border-bottom: 1px solid #ccc;
}

.class-single-right-info ul li i {
	color: #f2b83a;
	margin-right: 5px;
}

.class-single-right-like h3 {
	color: #172c3f;
	padding-bottom: 10px;
}

.class-single-right-like-item {
	margin-top: 30px;
}

.class-single-right-like-item img {
	margin-right: 10px;
}

.class-single-right-like-item-text a {
	text-decoration: none;
	font-size: 16px;
	color: #172c3f;
	font-weight: 700;
	translate: all .3s;
}

.class-single-right-like-item:hover a {
	color: #f2b83a;
}

.class-single-right-like-item-text h6 {
	font-size: 14px;
	line-height: 24px;
	color: #f2b83a;
	font-weight: 400;
	padding: 7px 0 8px;
}

.class-single-right-like-item-text p,
.class-single-right-like-item-text .p {
	color: #aeb0b0;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

/*
  ========================================
  Contact
  ========================================
*/

.contaict-title .heading {
	font-size: 48px;
	color: #172c3f;
	font-weight: 700;
	padding-bottom: 50px;
	margin-top: -7px;
}

.contact-box input {
	font-size: 14px;
	line-height: 30px;
	color: #555;
	font-weight: 400;
	width: 100%;
	height: 55px;
	padding: 0 25px;
	background: #f8f8f8;
	border: 0;
	margin-bottom: 30px;
}

.contact-box input:focus {
	color: #495057;
	background-color: #e5e8f1;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 44, 54, 0.288);
}

.contact-box textarea {
	font-size: 14px;
	line-height: 30px;
	color: #555;
	font-weight: 400;
	width: 100%;
	height: 115px;
	padding: 30px 25px;
	background: #f8f8f8;
	border: 0;
	margin-bottom: 30px;
}

.contact-box textarea:focus {
	color: #495057;
	background-color: #e5e8f1;
	border: none;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 44, 54, 0.288);
}

.contact-main-list {
	margin: 0;
	list-style: outside none;
}
.contact-main-list > li {
	padding-bottom: 20px;
	color: #fff;
}
.contact-main-list > li .icn {
	display: inline-block;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 60px;
	min-width: 60px;
	height: 60px;
	margin-left: 20px;
	line-height: 55px;
	text-align: center;
	font-size: 30px;
	border: 2px solid #fff;
	border-radius: 50px;
}
.contact-main-list > li .nfo {
	display: block;
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 18px;
	color: #fff;
}
.contact-main-list > li .nfo:last-child {
	margin-bottom: 0;
}
.contact-main-list > li a.nfo:hover {
	color: #fff;
	text-decoration: none;
}

.contact-ditels {
	margin-top: 0 !important;
	padding: 50px 30px 20px 0;
	background-color: #f2b83a;
}

.contact-ditels li {
	padding-bottom: 30px;
}

.contact-ditels li i {
	font-size: 30px;
	color: #fff;
	border: 2px solid #fff;
	height: 60px;
	width: 60px;
	display: inline-block;
	text-align: center;
	line-height: 55px;
	border-radius: 50px;
}

.contact-ditels li a {
	display: block;
	padding-right: 20px;
	line-height: 10px;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
}

.contact-ditels ul li a:last-child {
	line-height: 24px;
}

.map {
	min-height: 420px;
}
@media (min-width: 992px){
	.map {
		min-height: 560px;
	}
}


/*
  ========================================
  My Account
  ========================================
*/

.my-account-form {
	border: 1px solid #d3ced2;
	padding: 40px;
	margin: 2em 0 0;
}

.my-account-form label {
	width: 100%;
}

.my-account-form input {
	width: 100%;
	line-height: 1.2;
	padding: 10px;
	margin: 10px 0 25px;
}

.my-account-form .btn {
	background-color: #f2b83a;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 25px;
}

.my-account-form .wrapper {
	display: inline-block;
	margin-left: 30px;
	cursor: pointer;
}

.my-account-form .wrapper input {
	width: 18px;
	height: 15px;
	display: inline-block;
	float: left;
	margin: 0;
	padding: 0;
}

.my-account-form .wrapper label {
	width: auto;
	display: inline-block;
	margin: 0 0px 0 10px;
	padding: 0;
}

.my-account-form a {
	width: 100%;
	display: block;
	padding-top: 25px;
	color: #f2b83a;
}


/*
  ========================================
  Error 404
  ========================================
*/

.error-body {
	text-align: center;
	background-image: url(../img/bg/bmi-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.error-body::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

.error-body-text {
	padding: 100px 0px;
}

.error-body span {
	font-size: 300px;
	color: #fff;
	line-height: 300px;
}

.error-body h2 {
	color: #fff;
	font-size: 30px;
	letter-spacing: 3px;
}

.error-p {
	text-align: center;
}

.error-p p, .error-p .p {
	font-size: 18px;
	color: #7a7a7a;
	padding: 50px 0;
}

.error-p a.btn {
	background-color: #f2b83a;
}


/*
  ========================================
  Shop
  ========================================
*/

.shop-item img {
	width: 100%;
}

.shop-item .content-details ul {
	padding: 0;
}

.shop-item ul li a {
	background: #172c3f;
	width: 55px;
	height: 55px;
	display: inline-block;
	padding: 19px 0;
}

.shop-title a {
	color: #172c3f;
	text-decoration: none;
	padding: 25px 0 13px;
	display: inline-block;
}

.shop-box:hover .shop-title a {
	color: #f2b83a;
}

.shop-title p, .shop-title .p {
	font-size: 22px;
	color: rgba(242, 184, 58, 0.77);
	font-weight: 500;
	line-height: 29px;
}


/*
  ========================================
  Shop Single
  ========================================
*/

.shop-slider-item a img {
	width: 100%;
}

.shop-slider2-item.slick-current {
	position: relative;
}

.shop-slider2-item.slick-current:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(241, 30, 85, 0.5);
	z-index: 1;
}

.shop-slider2-item img {
	height: 120px;
	width: 100%;
	cursor: pointer;
}

.shop-slider2-right {
	margin-left: 20px;
}

.shop-slider2-right h4 {
	padding: 23px 0 38px;
}

.cart-add {
	padding: 50px 0px 50px;
}

.cart-add input {
	width: 90px;
	height: 55px;
	font-size: 18px;
	text-align: center;
	border: 2px solid #212529;
}

.cart-add button {
	margin-left: 20px;
	margin-top: -4px;
}


/*
  ========================================
  Shop Tab
  ========================================
*/

ul.shop-single-tab {
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

ul.shop-single-tab li {
	background: none;
	color: #172c3f;
	display: inline-block;
	padding: 20px 15px;
	cursor: pointer;
	font-size: 18px;
}

ul.shop-single-tab li.current {
	color: #f2b83a;
}

.shop-single-tab .tab-content3.current {
	display: inherit;
}

.shop-single-tab-content .tab-content3 h3 {
	padding: 40px 0 30px;
}

.shop-single-tab-content .tab-content3 h5 {
	font-size: 17px;
	padding: 25px 0px 15px;
}

.shop-single-tab-content .tab-content3 ul li {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding-bottom: 16px;
}

.shop-single-tab-content .tab-content3 ul li:nth-child(1) {
	border-bottom: 0;
}

.shop-single-tab-content .tab-content3 ul li:nth-child(2) {
	border-bottom: 0;
}

.shop-single-form {
	margin-top: 20px;
}

.shop-single-form label {
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	padding: 20px 0 12px;
}

.shop-single-form textarea {
	width: 100%;
	height: 90px;
	border: 1px solid #172c3f;
	padding: 10px;
}

.shop-single-form input {
	width: 100%;
	height: 40px;
	border: 1px solid #172c3f;
	padding: 0 10px;
}

.shop-single-form .wrapper {
	margin-top: 10px;
}

.shop-single-form .wrapper input {
	width: 18px;
	height: 15px;
	display: inline-block;
	cursor: pointer;
}

.shop-single-form .wrapper label {
	display: inline-block;
	width: 60%;
	color: #172c3f;
	cursor: pointer;
}

.shop-single-form .btn {
	margin-top: 40px;
	background-color: #172c3f;
	border: 2px solid #172c3f;
}


/*
  ========================================
  TTM
  ========================================
*/

.ttm-area {
	margin-top: -135px;
	z-index: 1;
	position: relative;
}

.ttm-item {
	background-color: #172c3f;
	padding: 45px 34px;
	text-align: center;
}

.ttm-item-center {
	background-color: #f2b83a;
}

.ttm-item i {
	color: #fff;
	margin-right: 25px;
}

.ttm-item-center i {
	color: #fff;
}

.ttm-item i::before {
	font-size: 55px;
}

.ttm-item h4 {
	color: #fff;
	padding: 25px 0px 20px;
}

.ttm-item p, .ttm-item .p {
	color: #fff;
}


/*
  ========================================
  Footer
  ========================================
*/

#footer-area {
	background: #f9f9f9 url(../img/bg/bg1.png) scroll 50% 50% no-repeat;
	background-size: cover;
}

#footer-area.footer-dark {
	background-color: #333;
	background-size: auto;
}

.footer-item p, .footer-item .p {
	line-height: 24px;
	color: #474747;
	font-weight: 400;
	padding: 30px 0;
}
.footer-dark .footer-item p, .footer-dark .footer-item .p {
	color: #ddd;
}

.copy-right {
	line-height: 24px;
	color: #474747;
	font-weight: 400;
}
.footer-dark .copy-right {
	color: #ddd;
}

.copy-right a {
	color: #f2b83a;
	font-weight: 500;
}

.footer-item h6 {
	line-height: 14px;
	color: #152e45;
	font-weight: 700;
	font-style: italic;
	padding-bottom: 17px;
}
.footer-dark .footer-item h6 {
	color: #f2b83a;
}

.footer-item ul li > span,
.footer-item ul li a {
	display: inline-block;
	padding: 20px 0 0;
	font-size: 15px;
	font-weight: 400;
	color: #474747;
	text-decoration: none;
	-webkit-transition: .5s;
	transition: .5s;
}
.footer-dark .footer-item ul li a {
	color: #ddd;
}

.footer-item ul li a:hover {
	color: #f2b83a;
	-webkit-transform: translateX(-10px);
	transform: translateX(-10px);
}

.footer-item ul li a i {
	padding-right: 3px;
	font-size: 14px;
	color: #f2b83a;
	-webkit-transition: .5s;
	transition: .5s;
}

.footer-item ul li a:hover i {
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
}

.footer-item .media li {
	padding: 20px 0 0;
}

.footer-item .media li i {
	font-size: 18px;
	color: #f2b83a;
	margin-left: 10px;
}

.footer-item .media li span,
.footer-item .media li a {
	text-transform: capitalize;
	padding: 0 0;
	line-height: 26px;
	margin-top: -6px;
}
.footer-dark .footer-item .media li span {
	color: #ddd;
}

.footer-item .media li a:hover {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

ul.iconed {
	margin: 0;
	list-style: outside none;
}
ul.iconed li {
	display: block;
	position: relative;
	padding: 20px 24px 0 0;
	font-size: 15px;
	font-weight: 400;
	color: #474747;
}
ul.iconed li a {
	padding: 0;
	color: #474747;
	text-decoration: none;
}
ul.iconed li a:hover {
	color: #f2b83a;
	-webkit-transform: none;
	transform: none;
}
ul.iconed li .icn {
	position: absolute;
	top: 20px;
	right: 0;
	font-size: 18px;
	color: #f2b83a;
}
ul.iconed.invpad li .icn  {
	top: 0;
}
ul.iconed.invpad li {
	padding: 0 24px 20px 0;
}
ul.iconed.larger li {
	font-size: 18px;
	font-weight: 500;
}
ul.iconed.larger li .icn {
	font-size: 20px;
}
.footer-dark .footer-item ul.iconed li,
.footer-dark .footer-item ul.iconed li span,
.footer-dark .footer-item ul.iconed li a {
	color: #ddd;
}
.footer-dark .footer-item ul.iconed li a:hover {
	color: #f2b83a;
}

.effect-item {
	position: relative;
	overflow: hidden;
}

.effect-item .content-overlay {
	overflow: hidden;
	position: relative;
}

.effect-item .content-overlay:before,
.effect-item .content-overlay:after {
	content: "";
	width: 0;
	height: 0;
	background-color: rgba(23, 44, 63, 0.5);
	position: absolute;
	top: 0%;
	left: 0%;
	pointer-events: none;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.effect-item .content-overlay:after {
	top: auto;
	left: auto;
	bottom: 0%;
	right: 0%;
}

.effect-item:hover .content-overlay:before,
.effect-item:hover .content-overlay:after {
	width: 100%;
	height: 100%;
}

.content-image {
	width: 100%;
}

.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	padding: 0 45px;
	z-index: 11;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.effect-item:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}

.effect-item .a-hotspot {
	z-index: 20;
}

.content-details h3 {
	color: #fff;
	font-weight: 700;
	padding-bottom: 30px;
}

.content-details p,
.content-details .p {
	color: #fff;
}

.content-details ul {
	padding-bottom: 35px;
}

.content-details li {
	display: inline-block;
}

.content-details li a {
	color: #fff;
	font-size: 20px;
	margin: 0 4px;
}

.fadeIn-top {
	top: 20%;
}

.mobile-block {
	display: none;
}

.social-link > li {
	display: inline-block;
	margin-left: 18px;
}
.social-link > li:last-child {
	margin-left: 0;
}
ul.social-link > li a, ul.social-link > li a i {
	padding: 0;
	font-size: 28px;
}

.back-to-top {
	display: block;
	position: fixed;
	right: 20px;
	bottom: 15px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background-color: #f2b83a;
	text-align: center;
	font-size: 24px;
	color: #172c3f;
	opacity: 0;
	z-index: 1000;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
	-webkit-transform: translateX(100vw);
	transform: translateX(100vw);
	-webkit-transition: all 0.4s ease;
	transition: all 0.3s ease;
}
.back-to-top:hover {
	background-color: #172c3f;
	color: #f2b83a;
}
@media (min-width: 768px){
	.back-to-top {
		bottom: 20px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 32px;
	}

	body.scrolled .back-to-top {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@media (min-width: 1200px){
	.back-to-top {
		bottom: 30px;
		right: 30px;
	}
}

/** ---[Gym 2]--- **/
/*
  ========================================
  Top Menu
  ========================================
*/
.top-nav2 .top-address-ditels {
	float: left;
}

#cssmenu.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #172c3f;
}

.top-nav2 .logo {
	margin-top: 0px;
	width: 100%;
	padding: 0;
	top: 50%;
	transform: translateY(-50%);
}

.top-nav2 .logo img {
	width: 100%;
}

.top-nav2 .top-address .top-address-ditels ul li a {
	color: #111;
}

.top-nav2 .top-address .top-address-ditels ul li span {
	color: #111;
}

.top-nav2 .top-socile a {
	color: #111;
	margin: 0 5px;
}

.top-nav2 .top-socile a:hover {
	color: #f2b83a;
}

.top-nav2 #cssmenu {
	background-color: #172c3f;
}

.top-nav2 .shopping-bag {
	padding: 29px 39px;
	text-align: center;
}

.top-nav2 #cssmenu ul li a {
	padding: 40px 0px;
}

.top-nav2 #cssmenu ul ul li a {
	padding: 11px 0;
}

.top-nav2 .top-address::after {
	display: none;
}

.top-nav2 .shopping-bag {
	padding: 38px 0;
	text-align: center;
	width: 100%;
}


/*
  ========================================
  Hero Home 2
  ========================================
*/

.header2 {
	position: relative;
}

.fullslider2 .item {
	padding: 180px 0;
}

.fullslider2 .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-2-bg::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	content: "";
}

.hero-2-bg::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #f2b83a;
	z-index: 11;
	content: "";
	-webkit-clip-path: polygon(100% 85%, 0% 100%, 100% 100%);
	clip-path: polygon(100% 85%, 0% 100%, 100% 100%);
}

.fs-layout {
	height: 100vh
}
.hs-layout {
	height: 50vh
}
.tq-layout {
	height: 75vh
}

.hero-text {
	position: relative;
	z-index: 11;
}

.hero-text .hdp {
	padding: 0;
	line-height: 1.2;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
}
@media (min-width: 576px){
	.hero-text .hdp {
		font-size: 50px;
	}
}
@media (min-width: 992px){
	.hero-text .hdp {
		font-size: 70px;
	}
}

.hero-text .hds {
	padding: 18px 0 41px;
	line-height: 1.2;
	font-size: 30px;
	font-style: normal;
	color: #fff;
}

.hero-text p, .hero-text .p {
	font-size: 24px;
	line-height: 36px;
	color: #fff;
	font-weight: 400;
}

.hero-text .btn {
	margin-top: 50px;
}

.cd-words-wrapper {
	display: inline-block;
	position: relative;
	text-align: left;
}

.cd-words-wrapper b {
	display: inline-block;
	position: absolute;
	white-space: nowrap;
	left: 0;
	top: 0;
}

.cd-words-wrapper b.is-visible {
	position: relative;
}

.no-js .cd-words-wrapper b {
	opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
	opacity: 1;
}

.fullslider2 .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin: 0;
	background: #fff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.fullslider2:hover .owl-nav [class*=owl-] {
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.fullslider2 .owl-prev {
	left: 0;
}

.fullslider2 .owl-next {
	right: 0;
}

.fullslider2 .owl-nav button.owl-next,
.fullslider2 .owl-nav button.owl-prev,
.fullslider2 button.owl-dot {
	background: #fff;
	padding: 17px !important;
	border-radius: 0;
	font-size: 26px;
	color: #172c3f;
}

.fullslider2 .owl-nav [class*=owl-]:hover {
	background: #f2b83a;
}

.owl-theme.classes .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	opacity: 0.5;
	z-index: 10;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.owl-theme.classes:hover .owl-nav {
	opacity: 1;
}
.owl-carousel.classes .owl-nav button.owl-next,
.owl-carousel.classes .owl-nav button.owl-prev {
	position: absolute;
	top: -34px;
	left: 0;
	width: 25px;
	height: 44px;
	margin: 0;
	background-color: transparent;
	text-align: center;
	color: #fff;
}
.owl-carousel.classes .owl-nav button.owl-prev {
	right: 0;
	left: auto;
}
.owl-carousel.classes .owl-nav button > .fa {
	line-height: 44px;
	font-size: 40px;
}
.owl-carousel.classes .owl-nav button.owl-prev:hover {
	color: #f2b83a;
}
@media (min-width: 576px){
	.owl-carousel.classes .owl-nav button > .fa {
		font-size: 50px;
	}
}
.owl-theme.classes .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #fff;
}
.owl-theme.classes .owl-dots .owl-dot.active span,
.owl-theme.classes .owl-dots .owl-dot:hover span {
	background-color: #f2b83a;
	border-color: #f2b83a;
}

.owl-theme.team .owl-nav,
.owl-theme.vgal .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	opacity: 0.5;
	z-index: 10;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.owl-theme.team:hover .owl-nav,
.owl-theme.vgal:hover .owl-nav {
	opacity: 1;
}
.owl-carousel.team .owl-nav button.owl-next,
.owl-carousel.team .owl-nav button.owl-prev,
.owl-carousel.vgal .owl-nav button.owl-next,
.owl-carousel.vgal .owl-nav button.owl-prev {
	position: absolute;
	top: -46px;
	left: 0;
	width: 25px;
	height: 44px;
	margin: 0;
	background-color: transparent;
	text-align: center;
	color: #fff;
}
.owl-carousel.team .owl-nav button.owl-prev,
.owl-carousel.vgal .owl-nav button.owl-prev {
	right: 0;
	left: auto;
}
.owl-carousel.team .owl-nav button > .fa,
.owl-carousel.vgal .owl-nav button > .fa {
	line-height: 44px;
	font-size: 40px;
}
.owl-carousel.team .owl-nav button.owl-next:hover,
.owl-carousel.team .owl-nav button.owl-prev:hover,
.owl-carousel.vgal .owl-nav button.owl-next:hover,
.owl-carousel.vgal .owl-nav button.owl-prev:hover {
	color: #f2b83a;
}
@media (min-width: 576px){
	.owl-carousel.team .owl-nav button > .fa,
	.owl-carousel.vgal .owl-nav button > .fa {
		font-size: 50px;
	}
}
@media (min-width: 768px){
	.owl-carousel.team .owl-nav button > .fa,
	.owl-carousel.vgal .owl-nav button > .fa {
		font-size: 64px;
	}
}
@media (min-width: 1300px){
	.owl-theme.team .owl-nav,
	.owl-theme.vgal .owl-nav {
		opacity: 1;
	}
	.owl-carousel.team .owl-nav button.owl-next,
	.owl-carousel.team .owl-nav button.owl-prev {
		color: #172c3f;
	}
	.owl-carousel.team .owl-nav button.owl-next,
	.owl-carousel.vgal .owl-nav button.owl-next {
		left: -30px;
	}
	.owl-carousel.team .owl-nav button.owl-prev,
	.owl-carousel.vgal .owl-nav button.owl-prev {
		right: -30px;
	}
}
.owl-theme.team .owl-dots, .owl-theme.team .owl-nav.disabled + .owl-dots {
	margin-top: 25px;
}
.owl-theme.team .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #172c3f;
}
.owl-theme.team .owl-dots .owl-dot.active span,
.owl-theme.team .owl-dots .owl-dot:hover span {
	background-color: #f2b83a;
	border-color: #f2b83a;
}


/* --------------------------------

  xclip

  -------------------------------- */

.cd-headline.clip span {
	display: inline-block;
	padding: 0 0;
}

.cd-headline.clip .cd-words-wrapper {
	overflow: hidden;
	vertical-align: top;
	color: #f2b83a;
}

.cd-headline.clip .cd-words-wrapper::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background-color: #fff;
	content: '';
}

.cd-headline.clip b {
	opacity: 0;
}

.cd-headline.clip b.is-visible {
	opacity: 1;
}


/*
  ========================================
  Feature
  ========================================
*/

.feature-home-2 {
	background-color: #f2b83a;
}

.feature-home-2 .feature-item {
	padding: 0 40px;
}

.feature-home-2 .feature-i i {
	background-color: #fff;
	display: inline-block;
	width: 110px;
	height: 110px;
	text-align: center;
	padding: 30px 0;
	border-radius: 100px;
}

.feature-home-2 .feature-text h3 {
	color: #fff;
	padding-top: 24px;
	font-size: 24px;
}

.feature-home-2 .feature-text p,
.feature-home-2 .feature-text .p {
	color: #fff;
}


/*
  ========================================
  Trainer
  ========================================
*/

.trainer-p p, .trainer-p .p {
	padding-top: 30px;
}

.trainer-img img {
	width: 100%;
}


/*
  ========================================
  Fitner
  ========================================
*/

.fitner-2 .fitner-item {
	text-align: left;
	padding: 0 20px;
	width: auto;
}

.services-2 {
	background-color: #172c3f;
}

.services-2 .section-title h2 {
	color: #fff;
}

.services-2 .section-title p,
.services-2 .section-title .p {
	color: #fff;
}

.services-2 .services-text {
	display: none;
}

.services-2 .services-item {
	margin-bottom: 30px;
}

.services-2 .services-item img {
	width: 100%;
}

.services-2 .services-item:hover .services-text {
	display: block;
	padding: 80px 45px;
}


/*
  ========================================
  Tips
  ========================================
*/

/* tips item */
.tips-item {
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.51);
	overflow: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: .5s;
	transition: .5s;
}

.tips-item:hover p, .tips-item:hover .p {
	color: #fff;
}

.tips-item:hover h3, .tips-item:hover a {
	color: #fff;
}

.tips-img {
	display: block;
	width: 100%;
	overflow: hidden;
}

.tips-img img {
	width: 100%;
	-webkit-transition: all 0.7s ease-in-out 0s;
	transition: all 0.7s ease-in-out 0s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.tips-item:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.tips-text {
	position: relative;
	text-align: center;
	padding: 40px;
}

.tips-text::before {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	background-color: #f2b83a;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transition: .4s;
	transition: .4s;
}

.tips-item:hover .tips-text::before {
	top: 0%;
}

.tips-text p, .tips-text .p, .tips-text p a {
	padding-bottom: 15px;
	color: #111;
	text-decoration: none;
}

.tips-text h3, .tips-text h3 a {
	font-size: 24px;
	line-height: 30px;
	color: #172c3f;
	text-decoration: none;
}

.cta-bg2 {
	background-color: #f2b83a;
}

.cta-bg2 .cta-left p span,
.cta-bg2 .cta-left .p span {
	color: #172c3f;
}

/** ---[]--- **/
/*
  ========================================
  Page Hero
  ========================================
*/

.general-bg, .about-bg {
	position: relative;
	padding: 300px 0 250px;
	background-image: url(../img/default/about.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.general-bg:before, .about-bg::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.general-bg.e404 {
	background-image: url(../img/default/404.jpg);
}

.page-title h1 {
	color: #fff;
}

.page-title h1 span {
	color: #f2b83a;
}


/*
  ========================================
  About
  ========================================
*/

.about-left {
	position: relative;
}

.about-left-text {
	background-color: #f2b83a;
	width: 45%;
	padding: 80px 58px;
	-webkit-transform: translateY(12%);
	transform: translateY(12%);
}

.about-left-text h2 {
	font-size: 48px;
	line-height: 60px;
	color: #fff;
	font-weight: 700;
}

.about-left-img {
	width: 55%;
}

.about-left-img img {
	width: 100%;
}

.about-right-text {
	padding: 100px 0 0;
}

.about-right-text h3 {
	font-size: 30px;
	line-height: 40px;
	color: #f2b83a;
	font-weight: 500;
	padding-bottom: 10px;
}

.about-right-text p, .about-right-text .p {
	font-size: 16px;
	line-height: 35px;
	color: #111;
	font-weight: 400;
	padding-top: 23px;
}


/*
  ========================================
  Fitner
  ========================================
*/

.fitner-about {
	background-image: url(../img/default/default.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.fitner-about .section-title h2 {
	color: #fff;
}

.fitner-about .section-title p,
.fitner-about .section-title .p {
	color: #fff;
}

.fitner-about .fitner-item h2 {
	color: #fff;
}

.fitner-about .fitner-item p,
.fitner-about .fitner-item .p {
	color: #fff;
}

.fitner-about .fitner-border::before {
	background-color: rgba(242, 184, 58, 0.46)
}


/*
  ========================================
  Counter
  ========================================
*/

.counter-item {
	text-align: center;
}

.counter-item i {
	color: #f2b83a;
	display: block;
	padding-bottom: 24px;
}

.counter-item i::before {
	font-size: 50px;
}

.counter-item span {
	font-size: 36px;
	line-height: 30px;
	color: #172c3f;
	font-weight: 700;
	text-align: center;
}

.counter-item sup {
	font-size: 36px;
	line-height: 30px;
	color: #172c3f;
	font-weight: 700;
	text-align: center;
	top: 0;
	padding-left: 6px;
}

.counter-item p, .counter-item .p {
	font-size: 15px;
	padding-top: 16px;
}


/*  blog content Pagination */
.blog-pagination {
	display: inline-block;
}
.blog-pagination li {
	margin-left: 10px;
	display: inline-block;
}
.blog-pagination li:last-child {
	margin-left: 0;
}
.blog-pagination li > span,
.blog-pagination li a {
	display: inline-block;
	padding: 0 5px;
	min-width: 40px;
	line-height: 38px;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	color: #333;
	border: 2px solid #ddd;
	-webkit-transition: .5s;
	transition: .5s;
}
.blog-pagination li > span {
	color: #ddd;
}
.blog-pagination li > span.active,
.blog-pagination li a:hover {
	background-color: #f2b83a;
	color: #fff;
	border-color: #f2b83a;
}

/** ---[Responsive]--- **/
/* Large screens ----------- */


/* // Extra large devices (large desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
	#cssmenu ul li a {
		font-size: 20px;
	}
}
@media only screen and (min-width: 1920px) {
	#slider-0.slideFrame .slideCell {
		width: 450px;
	}
	.become-member a {
		font-size: 16px;
		line-height: 24px;
		padding: 30px 70px 30px 80px;
	}
	.icon-btn {
		padding: 30px 55px;
		font-size: 18px;
		line-height: 25px;
		margin-right: -40px;
		margin-top: -2px;
	}
	.shopping-bag {
		padding: 0 25px;
	}
	#cssmenu ul li a {
		padding: 30px 0px;
	}
	.about-box-left-img {
		bottom: -109px;
	}
	.sliderCell-text {
		width: 80%;
		padding: 40px 50px;
	}
	.services-text i {
		width: 100px;
		height: 100px;
	}
	.services-text i::before {
		font-size: 40px;
	}
	.services-item:hover .services-text {
		padding: 50px 45px;
	}
	.services-text {
		padding: 0 45px;
	}
}


/* // for 1366px screens  */

@media screen and (min-width: 1366px) and (max-width: 1439px) {
	p, .p {
		font-size: 18px;
	}
	#cssmenu.sticky .logo img {
		width: 70%;
	}
	.slider-all-text {
		padding: 260px 0px 120px;
	}
	.services-text i {
		width: 75px;
		height: 75px;
		padding: 20px 0;
	}
	.services-item i {
		width: 75px;
		height: 75px;
		padding: 20px 0;
	}
	.services-item .content-details h3 {
		padding: 10px 0;
	}
	.content-details {
		padding: 0 20px;
	}
	.fullslider2 .item {
		padding: 100px 0 130px;
	}
	.about-bg {
		padding: 250px 0 200px;
	}
}


/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
	.become-member a {
		padding: 30px 20px 30px 37px;
	}
	.become-member {
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 16% 100%);
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 16% 100%);
	}
	#cssmenu.sticky .logo img {
		width: 75%;
	}
	.logo {
		padding: 0 0 0 15px;
	}
	.logo img {
		width: 100%;
	}
	.services-text h3 {
		padding-bottom: 15px;
		font-size: 20px;
	}
	.services-text i {
		width: 70px;
		height: 70px;
		padding: 21px 0;
		margin-top: -70px;
	}
	.services-item i {
		width: 70px;
		height: 70px;
		padding: 21px 0;
		margin-top: 0;
	}
	.services-item .content-details h3 {
		padding: 6px 0;
		font-size: 20px;
	}
	.content-details {
		padding: 0 20px;
	}
	.services-item .content-details p,
	.services-item .content-details .p {
		font-size: 14px;
		line-height: 25px;
	}
}


/* // Large devices (desktops, 992px and up) */

@media (min-width: 992px) and (max-width: 1199.98px) {
	.pt-150 {
		padding-top: 100px !important;
	}
	.pb-150 {
		padding-bottom: 100px !important;
	}
	.pt-110 {
		padding-top: 80px !important;
	}
	h1 {
		font-size: 61px;
		line-height: 65px;
	}
	p, .p {
		font-size: 18px;
	}
	.logo {
		width: auto;
		margin-top: -5px;
	}
	.logo a img {
		width: 160px;
	}
	#cssmenu ul li a {
		margin: 0 11px;
		padding: 21px 0px;
	}
	#cssmenu.sticky .logo img {
		width: 92%;
	}
	.become-member a {
		font-size: 14px;
		line-height: 8px;
		padding: 30px 10px 30px 30px;
	}
	.icon-btn {
		padding: 19px 27px;
		font-size: 14px;
		line-height: 29px;
		margin-right: -20px;
	}
	.top-social {
		padding-right: 2px;
		padding-left: 32px;
	}
	.slider-all-text {
		padding: 210px 0px 70px;
	}
	.slider-all-text p, .slider-all-text .p {
		font-size: 20px;
		line-height: 30px;
		padding: 30px 0 40px;
	}
	.slider-all-text p, .slider-all-text .p {
		font-size: 20px;
		line-height: 28px;
		padding: 30px 0 40px;
	}
	.slider-all-text a i::before {
		font-size: 55px;
	}
	.slider-all-text a span {
		font-size: 16px;
		line-height: 28px;
	}
	.about-box-left h2 {
		font-size: 39px;
		line-height: 44px;
	}
	.about-box-left p, .about-box-left .p {
		font-size: 20px;
		line-height: 28px;
	}
	.about-box-left {
		width: auto;
		padding: 0 14px;
	}
	.about-box-right {
		padding: 65px;
	}
	.fitner-border::before {
		right: 3px;
	}
	.pricing-item-right ul li a {
		font-size: 14px;
	}
	.classes-tab-btn {
		width: 100%;
		float: unset;
		text-align: center;
		margin-bottom: 24px;
	}
	ul.classes-tabs li {
		display: inline-block;
	}
	ul.classes-tabs li.current::before {
		top: unset;
		bottom: -23px;
		transform: translatex(-50%);
		right: unset;
		left: 50%;
		width: 23px;
		height: 23px;
		clip-path: polygon(50% 56%, 0 0, 100% 0);
	}
	.fitner-classes-tab .tab-content {
		text-align: center;
	}
	.cta-left h2 {
		font-size: 44px;
	}
	.blog-title a {
		padding: 15px 0 16px;
	}
	.blog-title {
		font-size: 19px;
		line-height: 27px;
	}
	.blog-text {
		padding: 25px 0;
	}
	.feature-home-2 .feature-item {
		padding: 0 10px;
	}
	.fitner-2 .fitner-item {
		padding: 0 0;
	}
	.fullslider .owl-nav button.owl-next,
	.fullslider .owl-nav button.owl-prev,
	.fullslider button.owl-dot {
		padding: 10px !important;
	}
	.logo {
		padding: 0 0px 0 0px;
	}
	.slider-all-text {
		padding: 76px 0px 0;
	}
	.fullslider .item {
		padding: 149px 60px;
	}
	.fullslider .item {
		padding: 180px 60px;
	}
	.fullslider2 .item {
		padding: 180px 60px;
	}
	.fullslider3 .item {
		padding: 180px 60px;
	}
	.slider-all-text::before {
		display: none;
	}
	.slider2-all-text {
		padding: 84px 0px 90px;
	}
	.ttm-area {
		margin-top: 0;
	}
	.fullslider3 .item {
		padding: 180px 60px 56px;
	}
	.blog-text {
		padding: 25px 25px;
	}
	.about-bg {
		padding: 250px 0 140px;
	}
	.about-left-text {
		padding: 60px 30px;
	}
	.about-left-text h2 {
		font-size: 43px;
		line-height: 64px;
	}
	.about-right-text {
		padding: 30px 0 0;
	}
	.class-single-details-img img {
		width: 96%;
	}
	.class-single-details-text h5 {
		padding: 5px 0 20px;
	}
	.about-box-right-img {
		bottom: -48px;
	}
	.pricing-item-right {
		margin: 38px 24px 28px;
	}
}


/* // All Medium devices  */

@media (min-width: 320px) and (max-width: 991px) {
	h1 {
		font-size: 50px;
		line-height: 57px;
	}
	h3 {
		font-size: 21px;
		line-height: 30px;
	}
	p, .p {
		font-size: 18px;
	}
	#cssmenu.sticky .logo img {
		width: 160px;
	}
	.top-nav2 .logo {
		transform: translateY(0%);
	}
	.top-nav2 #cssmenu.sticky .logo img {
		width: 60%;
	}
	.top-nav2 .logo img {
		width: 40%;
	}
	.top-nav2 #cssmenu ul li a {
		padding: 11px 14px;
	}
	.top-nav2 #cssmenu ul ul li a {
		padding: 11px 25px;
	}
	.top-nav2 .logo img {
		width: 160px;
	}
	.top-nav2 .shopping-bag {
		padding: 23px 0;
		text-align: center;
		width: 70px;
		position: absolute;
		right: 103px;
		top: -93px;
	}
	.top-nav2 .logo {
		padding: 4px 17px;
		width: 250px;
	}
	.top-nav2 #cssmenu {
		height: 70px;
	}
	.top-nav2 .top-socile {
		display: none;
	}
	.top-nav2 .top-address-ditels {
		text-align: center;
		width: 100%;
	}
	.section-title h2 {
		padding-bottom: 18px;
		font-size: 40px;
	}
	.section-title p, .section-title .p {
		font-size: 20px;
	}
	.feature-text h3 {
		font-size: 24px;
		line-height: 35px;
	}
	.fitner-item h2 {
		font-size: 27px;
		line-height: 36px;
		padding: 19px 0 19px;
	}
	.pt-150 {
		padding-top: 100px !important;
	}
	.pb-150 {
		padding-bottom: 100px !important;
	}
	.become-member {
		display: none;
	}
	.icon-btn {
		clip-path: unset;
		padding: 20px;
		margin-right: 0;
		background: none;
		outline: none;
	}
	.shopping-bag {
		padding: 0 28px;
	}
	.search-dropdown .dropdown-menu .search-btn {
		margin-left: 0;
		position: absolute;
		right: 7px;
		top: 27px;
	}
	.nobile-position {
		position: absolute;
		right: 68px;
	}
	#cssmenu.sticky {
		height: 70px;
	}
	.logo img {
		width: 160px;
	}
	.button {
		position: relative;
		right: 0;
		top: -38px;
		float: right;
	}
	#cssmenu ul {
		top: 70px;
		position: absolute;
		left: 0;
	}
	#cssmenu ul ul {
		top: 0px;
	}
	.top-social {
		display: none;
	}
	.logo {
		margin-top: 0;
	}
	.classes-tab-btn {
		width: 100%;
		float: unset;
		text-align: center;
		margin: 0;
		margin-bottom: 24px;
	}
	ul.classes-tabs li {
		display: inline-block;
	}
	ul.classes-tabs li.current::before {
		top: unset;
		bottom: -23px;
		transform: translatex(-50%);
		right: unset;
		left: 50%;
		width: 23px;
		height: 23px;
		clip-path: polygon(50% 56%, 0 0, 100% 0);
	}
	.fitner-classes-tab .tab-content {
		text-align: center;
	}
	.about-box-left {
		width: 300px;
		padding: 50px 0;
	}
	.fitner-border::before {
		display: none;
	}
	.pt-100 {
		padding-top: 50px !important;
	}
	.fitner-tab-all {
		width: 97px;
		margin: 0 1px;
	}
	.fitner-tab-all ul li {
		padding: 24px 0;
	}
	.cta-btn {
		padding: 44px 0 0;
	}
	.blog-text {
		padding: 30px 20px !important;
	}
	.copy-right {
		padding-top: 60px;
	}
	.slider-all-text {
		padding: 210px 0px 90px;
	}
	.slider-all-text p, .slider-all-text .p {
		font-size: 20px;
		line-height: 29px;
		padding: 30px 0 40px;
	}
	.slider-all-text a span {
		font-size: 17px;
		line-height: 27px;
	}
	.slider-all-text a i::before {
		font-size: 54px;
	}
	.top-address-ditels ul li a {
		font-size: 14px;
	}
	.top-address-ditels ul li {
		padding-left: 13px;
	}
	.top-address-ditels ul li span {
		font-size: 14px;
	}
	.top-address-ditels ul li i {
		margin-left: 3px;
	}
	.about-box-right {
		padding: 50px;
	}
	.feature-home-2 .feature-item {
		padding: 0 10px;
	}
	.trainer-img {
		padding: 50px 0 0;
	}
	.about-bg {
		padding: 210px 0 120px;
	}
	.about-left-text h2 {
		font-size: 40px;
		line-height: 59px;
	}
	.trainers-single-img img {
		width: 100%;
	}
	.class-single-right-info {
		margin-top: 50px;
	}
	.shop-slider2-right {
		margin-left: 0px;
		padding-top: 50px;
	}
	.contact-ditels {
		margin-top: 50px !important;
	}
	.pl-5,
	.px-5 {
		padding-left: 1rem!important;
	}
	.blog-widget-right {
		margin-top: 50px;
	}
	.trainers-single-text {
		padding-top: 40px;
	}
	.class-single-details-img img {
		width: 95%;
	}
	.slider2-all-text {
		padding: 215px 0px 203px;
	}
	.slider-all-text::before {
		display: none;
	}
	#home-banner-area.owl-theme .owl-nav {
		display: none;
	}
	.fullslider2 .item {
		padding: 120px 0;
	}
	.hero-2-bg::after {
		display: none;
	}
}


/* // Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) and (max-width: 767.98px) {
	.mobile-block {
		display: block;
	}
	.desktop-block {
		display: none;
	}
	.fitner-item {
		width: 100%;
		margin: 0 auto;
	}
	.fitner-tab-all {
		width: 93px;
	}
	ul.classes-tabs li {
		font-size: 12px;
		padding: 25px 10px;
	}
	#home-banner-area.owl-theme .owl-nav {
		margin-top: 0px;
		display: none;
	}
}


/* // Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {
	h1 {
		font-size: 42px;
		line-height: 50px;
	}
	.mobile-block {
		display: block;
	}
	.desktop-block {
		display: none;
	}
	.fitner-tab-all {
		width: 92px;
	}
	ul.classes-tabs li {
		font-size: 12px;
		padding: 25px 10px;
	}
	.slider-all-text p, .slider-all-text .p {
		font-size: 18px;
		line-height: 23px;
		padding: 22px 0 34px;
	}
	.slider-all-text p br, .slider-all-text .p br {
		display: none;
	}
	.about-box-right {
		padding: 30px;
		display: inline-table;
		width: 100%;
	}
	.about-box-right h2 {
		z-index: 22;
		position: relative;
	}
	.about-box-right a.btn {
		position: relative;
		margin-top: 20px;
		margin-right: 0;
		z-index: 22;
		-webkit-transform: unset;
		transform: unset;
	}
	.section-title p br, .section-title .p br {
		display: none;
	}
	.pricing-item-left ul li {
		padding: 51px 10px;
	}
	.pricing-item-right ul li a {
		font-size: 15px;
		display: flex;
		line-height: 18px;
	}
	.pricing-item-right ul li a i {
		font-size: 14px;
		padding-left: 7px;
	}
	.pricing-item-left ul li h3 {
		line-height: 23px;
		font-size: 18px;
	}
	.pricing-item-left ul li h6 {
		font-size: 15px;
	}
	.pricing-item-left ul li h2 {
		line-height: 21px;
		font-size: 28px;
	}
	.testimonial-text {
		padding: 0 27px;
	}
	.testimonial-text h3 {
		height: 94px;
		font-size: 25px;
		line-height: 42px;
	}
	ul.classes-tabs li {
		font-size: 11px;
		padding: 22px 6px;
	}
	.cta-left h2 {
		font-size: 29px;
	}
	ul.bmi-tabs li {
		padding: 20px 15px;
		font-size: 18px;
		width: 134px;
	}
	.bmi-content .tab-content {
		padding: 23px;
	}
	.hero-text .hds {
		font-size: 20px;
		padding: 16px 0 25px;
	}
	.hero-text p, .hero-text .p {
		font-size: 18px;
		line-height: 26px;
	}
	.section-title h2 {
		font-size: 35px;
		line-height: 38px;
	}
	.testimonial-text h3 {
		font-size: 22px;
		line-height: 30px;
	}
	.tips-text {
		padding: 30px;
	}
	.about-left {
		display: unset;
		align-items: unset;
	}
	.about-left-text {
		width: 100%;
		padding: 80px 58px;
		transform: translateY(0%);
		margin-bottom: 30px;
	}
	.about-left-img {
		width: 70%;
		margin: 0 auto;
	}
	.about-right-text {
		padding: 50px 0 0;
	}
	.trainers-single-img {
		padding-bottom: 30px;
	}
	.shop-slider2-item img {
		height: 76px;
	}
	ul.shop-single-tab li {
		padding: 13px 7px;
		font-size: 14px;
	}
	.pl-5,
	.px-5 {
		padding-left: 1rem!important;
	}
	.blog-widget-right {
		margin-top: 40px;
	}
	.contaict-title h2 {
		font-size: 35px;
		line-height: 39px;
	}
	.class-single-details-img {
		width: 100%;
	}
	.class-single-details-text {
		width: 100%;
	}
	.error-body span {
		font-size: 151px;
		line-height: 179px;
	}
	.error-body-text {
		padding: 100px 0px 100px;
	}
	.about-box-right-img {
		display: none;
	}
	.bmi-content .tab-content2 {
		padding: 30px;
	}
	.container-btn.btn-1 {
		padding: 15px 0;
		text-align: center;
	}
	.container-btn2.btn-5 {
		padding: 15px 0;
		text-align: center;
	}
	.icon-btn {
		padding: 20px 10px 20px 6px;
	}
	.slider2-all-text h1 {
		font-size: 36px;
		line-height: 45px;
	}
	.pricing-item-right {
		margin: 45px 15px 50px;
	}
	.section-title p, .section-title .p {
		font-size: 18px;
	}
	.my-account-form {
		padding: 25px;
	}
	.my-account-form .wrapper {
		margin-left: 4px;
	}
	.my-account-form .wrapper label {
		margin: 0 0px 0 10px;
	}
}

@media (max-width: 320px) {
	h1 {
		font-size: 34px;
		line-height: 40px;
	}
	.section-title h2 {
		font-size: 30px;
		line-height: 38px;
	}
	.section-title p, .section-title .p {
		font-size: 17px;
	}
	.top-address-ditels ul li a {
		font-size: 12px;
	}
	.logo img {
		width: 100%;
	}
	#cssmenu.sticky .logo img {
		width: 100%;
	}
	.top-nav2 .logo {
		transform: translateY(0%);
	}
	.top-nav2 #cssmenu.sticky .logo img {
		width: 87%;
		padding: 0;
	}
	.icon-btn {
		padding: 20px 9px;
	}
	.shopping-bag {
		padding: 0 15px;
	}
	.logo {
		margin-top: 0px;
		height: auto;
		width: 52%;
	}
	.slider-all-text {
		padding: 179px 0px 58px;
	}
	.about-box-left h2 {
		font-size: 37px;
		line-height: 44px;
	}
	.about-box-left p, .about-box-left .p {
		font-size: 19px;
		line-height: 28px;
		padding: 24px 0 40px;
	}
	.about-box-left {
		width: 300px;
		padding: 50px 15px;
	}
	.about-box-right h2 {
		font-size: 40px;
		line-height: 51px;
	}
	.fitner-item {
		padding: 0 0px;
		width: 100%;
	}
	.pricing-item-left ul li h3 {
		line-height: 22px;
		font-size: 15px;
	}
	.pricing-item-left ul li h2 {
		line-height: 17px;
		font-size: 22px;
	}
	.pricing-item-left ul li {
		padding: 48px 10px;
	}
	.testimonial-text h3 {
		height: 90px;
		font-size: 20px;
		line-height: 31px;
	}
	ul.bmi-tabs li {
		width: 127px;
	}
	.top-address-ditels ul li i {
		margin-right: 1px;
		font-size: 14px;
	}
	.topnav .logo img {
		width: 118px;
	}
	.topnav .logo {
		margin-top: 12px;
	}
	.services-text i {
		width: 60px;
		height: 60px;
		padding: 14px 0;
	}
	.fitner-tab-all {
		width: 86px;
	}
	.fitner-tab-all ul li {
		padding: 24px 0;
		font-size: 12px;
	}
	ul.bmi-tabs li {
		width: 119px;
	}
	.hero-text .hds {
		font-size: 17px;
		padding: 16px 0 17px;
	}
	.tips-text h3 {
		font-size: 18px;
		line-height: 25px;
	}
	.cta-left h2 {
		font-size: 25px;
	}
	.top-nav2 .logo {
		padding: 7px 0 0 18px;
		width: 182px;
	}
	.top-nav2 .logo img {
		width: 143px;
	}
	.top-nav2 .shopping-bag {
		width: 57px;
		right: 79px;
		top: -93px;
	}
	.about-left-text {
		padding: 50px 35px;
	}
	.about-left-text h2 {
		font-size: 31px;
		line-height: 46px;
	}
	.content-details {
		padding: 0 20px;
	}
	.services-item i {
		width: 65px;
		height: 65px;
		padding: 19px 0;
	}
	.services-item .content-details h3 {
		padding: 8px 0;
	}
	.my-account-form .wrapper {
		margin-left: 0;
		margin-top: 20px;
	}
	.pricing-item-right {
		margin: 45px 15px 50px;
	}
	.pricing-item-right ul li a {
		font-size: 12px;
	}
}

/** fancy form control **/
.fc-comp {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fc-comp .form-control {
	width: auto;
	-ms-flex: 1 1;
	flex: 1 1 auto;
	background-color: #f8f8f8;
	color: #172c3f;
	border: 0;
	border-bottom: 2px solid #ddd;
	border-radius: 0;
}
.fc-comp.v3 .form-control {
	background-color: #172c3f;
	color: #f2b83a;
	border-color: #000;
}
.fc-comp .form-control:focus {
	box-shadow: none;
	border-color: #f2b83a;
}
.fc-comp.v2 .form-control:focus {
	border-color: #172c3f;
}
.fc-comp.v3 .form-control:focus {
	border-color: #f2b83a;
}
.fc-comp .label {
	position: relative;
	-ms-flex: 0 0;
	flex: 0 0 auto;
	padding: 0 5px;
	height: 38px;
	line-height: 38px;
	background-color: #f2b83a;
	color: #fff;
}
.fc-comp.v2 .label {
	background-color: #172c3f;
}
.fc-comp.v3 .label {
	color: #172c3f;
}
.fc-comp.ta .label {
	position: absolute;
	top: 0;
	right: 0;
}
.fc-comp.ta textarea.form-control {
	padding-right: 30px;
}
.fc-comp .label:after {
	position: absolute;
	top: 0;
	left: -20px;
	width: 20px;
	height: 100%;
	background-color: #f2b83a;
	z-index: 0;
	content: "";
	-webkit-clip-path: polygon(0 0, 25px 0, 25px 100%, 20px 100%);
	clip-path: polygon(0 0, 25px 0, 25px 100%, 20px 100%);
}
.fc-comp.arrow .label:after {
	-webkit-clip-path: polygon(0 50%, 20px 0, 25px 0, 25px 100%, 20px 100%);
	clip-path: polygon(0 50%, 20px 0, 25px 0, 25px 100%, 20px 100%);
}
.fc-comp.v2 .label:after {
	background-color: #172c3f;
}
.fc-comp .label span {
	position: relative;
	z-index: 1;
}
.fc-comp .label .icn {
	position: relative;
	display: none;
	z-index: 1;
}
.fc-comp.ta.loaded .label {
	height: 100%;
}
.fc-comp.loaded .label:after {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.fc-comp.loaded .label span {
	display: none;
}
.fc-comp.loaded .label .icn {
	display: inline-block;
}
.fc-comp.error .form-control {
	padding-left: 24px;
	border-color: #d00;
	color: #d00;
}
.fc-comp.error .label,
.fc-comp.error .label:after {
	background-color: #d00;
	color: #fff;
}
.fc-comp.error:after {
	position: absolute;
	top: 11px;
	left: 5px;
	font-family: "fontawesome";
	color: #d00;
	content: "\f06a";
}


.sbcf-rtl .mfp-bottom-bar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.sbcf-rtl .mfp-bottom-bar .mfp-title {
	margin-left: 10px;
	padding: 0;
	text-align: right;
}
.sbcf-rtl .mfp-bottom-bar .mfp-counter {
	position: static;
}

.mbl-bottom-bar {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #172c3f;
	border-top: 2px solid #f2b83a;
	z-index: 1001;
}
.mbl-bottom-bar .hot {
	display: block;
	height: 61px;
	padding-top: 10px;
	background-color: transparent;
	text-align: center;
	color: #f2b83a;
	text-decoration: none;
	border-left: 1px solid #f2b83a;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.mbl-bottom-bar .hot:last-child {
	border-left: 0;
}
.mbl-bottom-bar .hot:hover {
	background-color: #f2b83a;
	color: #172c3f;
}
.mbl-bottom-bar .hot .icn {
	font-size: 24px;
	color: #f2b83a;
	-webkit-transition: color.3s ease;
	transition: color .3s ease;
}
.mbl-bottom-bar .hot .label {
	display: block;
	font-size: 14px;
	-webkit-transition: color.3s ease;
	transition: color .3s ease;
}
.mbl-bottom-bar .hot:hover .icn,
.mbl-bottom-bar .hot:hover .label {
	color: #172c3f;
}
@media (min-width: 576px){
	.mbl-bottom-bar {
		display: none;
	}
}
