/* 
TABLE OF CONTENTS
********************************************
- Common
- Typo
- Alignment
- z-index
- Background properties
- Background colors
- Button colors
- Text colors
- Tag text colors
- Border
- Opacity
- Clearing
- Padding
- Margin
- Width
- Square
- Height
- Radius
- Icon blocks
- Forms
- Other utilities
- Small screen helper reset
- Animation
- Loader CSS

********************************************/


/* Common
********************************************/
.full-wh {
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
}
.full-vh {
	position: absolute;
	/*top: 0px;*/
	left: 0px;
	right: 0px;
	height: 100vh;
	top: 50%;
	margin-top: -50vh;
}
.full-wh > .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,0.4);
	height: 100% !important;
}
section.no-border,
.section.no-border,
.no-border { border: none; }
.pos-rel { position: relative; }
.pos-abs { position: absolute; }
.l0 { left: 0px; }
.r0 { right: 0px; }
ul.reset { margin: 0px; padding: 0px; list-style-type: none; }

/* Typo
=========================*/
.txt-upper { text-transform: uppercase; }
.txt-lower { text-transform: lowercase; }
.txt-capi { text-transform: capitalize; }
.fs11 { font-size: 11px; }
.fs12 { font-size: 12px; }
.fs13 { font-size: 13px; }
.fs14 { font-size: 14px; }
.fs16 { font-size: 16px; }
.fs18 { font-size: 18px; }
.fs20 { font-size: 20px; }
.fs22 { font-size: 22px; }
.fs24 { font-size: 24px; }
.fs26 { font-size: 26px; }
.fs28 { font-size: 28px; }
.fs30 { font-size: 30px; }
.fs32 { font-size: 32px; }
.fs34 { font-size: 34px; }
.fs36 { font-size: 36px; }
.fs38 { font-size: 38px; }
.fs40 { font-size: 40px; }
.fs42 { font-size: 42px; }
.fs44 { font-size: 44px; }
.fs46 { font-size: 46px; }
.fs48 { font-size: 48px; }
.fs50 { font-size: 50px; }
.fs52 { font-size: 52px; }
.fs54 { font-size: 54px; }
.fs56 { font-size: 56px; }
.fs58 { font-size: 58px; }
.fs60 { font-size: 60px; }
.fs62 { font-size: 62px; }
.fs64 { font-size: 64px; }
.fs66 { font-size: 66px; }
.fs68 { font-size: 68px; }
.fs70 { font-size: 70px; }
.fs72 { font-size: 72px; }
.fs74 { font-size: 74px; }
.fs76 { font-size: 76px; }
.fs78 { font-size: 78px; }
.fs80 { font-size: 80px; }
.fs90 { font-size: 90px; }
.fs100 { font-size: 100px; }
.fs110 { font-size: 110px; }
.fs120 { font-size: 120px; }
.fs130 { font-size: 130px; }
.fs140 { font-size: 140px; }
.fs150 { font-size: 150px; }
.fs160 { font-size: 160px; }
.fs170 { font-size: 170px; }
.fs180 { font-size: 180px; }
.fs190 { font-size: 190px; }
.fs200 { font-size: 200px; }

.fs100p { font-size: 100%; }

.lh1 { line-height: 1; }
.lh1-2 { line-height: 1.2; }
.lh1-3 { line-height: 1.3; }
.lh1-4 { line-height: 1.4; }
.lh1-5 { line-height: 1.5; }
.lh1-6 { line-height: 1.6; }
.lh1-7 { line-height: 1.7; }
.lh1-8 { line-height: 1.8; }
.lh1-9 { line-height: 1.9; }
.lh2 { line-height: 2; }
.lh2-1 { line-height: 2.1; }
.lh2-2 { line-height: 2.2; }
.lh2-3 { line-height: 2.3; }
.lh2-4 { line-height: 2.4; }
.lh2-5 { line-height: 2.5; }

.bold-n { font-weight: normal; }
.bold-1 { font-weight: 300; }
.bold-2 { font-weight: 400; }
.bold-3 { font-weight: 600; }
.bold-4 { font-weight: 700; }
.bold-5 { font-weight: 800; }
.italic { font-style: italic; }
.l-through { text-decoration: line-through; }

.f-1 { font-family: 'Open Sans', sans-serif; }
.f-2 { font-family: 'Montserrat', sans-serif; }


/* Alignment 
=========================*/
.vm, .cm { position: relative; }
.cm-item,
.cm > .cm-item {
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}
.vm-item,
.vm > .vm-item {
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	top: 50%;
	/* transform: translateY(50%);
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	-ms-transform: translateY(50%); */
}
.c-item {
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	left: 50%;
}
.align-l { text-align: left; }
.align-r { text-align: right; }
.align-c { text-align: center; }
.align-m { vertical-align: middle; }
.align-t { vertical-align: top; }



.flex-reset {
	display: block;
}
.iconwrp,
.flex-wrp,
.flex-tl,
.flex-tc,
.flex-tr,
.flex-cc,
.flex-cl,
.flex-cr,
.flex-bc,
.flex-bl,
.flex-br {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flex-tl {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-start; justify-content: flex-start;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-start; align-items: flex-start;
}
.flex-tc {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: center; justify-content: center;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-start; align-items: flex-start;
}
.flex-tr {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-end; justify-content: flex-end;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-start; align-items: flex-start;
}
.iconwrp,
.flex-cl {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-start; justify-content: flex-start;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: center; align-items: center;
}
.info-obj.align-c .iconwrp,
.info-obj.align-r .sq.iconwrp,
.info-obj.align-r .rd.iconwrp,
.info-obj .sq.iconwrp,
.info-obj .rd.iconwrp,
.info-obj.img-l .iconwrp,
.info-obj.img-r .iconwrp,
.flex-cc {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: center; justify-content: center;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: center; align-items: center;
}
.info-obj.align-r .iconwrp,
.flex-cr {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-end; justify-content: flex-end;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: center; align-items: center;
}
.flex-bc {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: center; justify-content: center;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-end; align-items: flex-end;
}
.flex-bl {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-start; justify-content: flex-start;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-end; align-items: flex-end;
}
.flex-br {
	/* flex-start | flex-end | center | space-between | space-around */
	-webkit-justify-content: flex-end; justify-content: flex-end;
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: flex-end; align-items: flex-end;
}

.flex-item-bc {
	-webkit-align-self: flex-end;
	    -ms-flex-item-align: end;
	        align-self: flex-end;
}
.flex-item-cl {
	-webkit-align-self: flex-start;
	    -ms-flex-item-align: start;
	        align-self: flex-start;
}

.flex-eqh {
	/* flex-start | flex-end | center | baseline | stretch */
	-webkit-align-items: stretch; align-items: stretch;
}


/* z-index
=========================*/
.z1 { z-index: 1; }
.z2 { z-index: 200; }
.z3 { z-index: 300; }
.z4 { z-index: 400; }
.z5 { z-index: 500; }
.z6 { z-index: 600; }
.z7 { z-index: 700; }
.z8 { z-index: 800; }
.z9 { z-index: 900; }
.z10 { z-index: 1000; }

/* Background properties 
=========================*/
.bg-section { top: 0px; }

.bg-fixed { background-attachment: fixed; background-repeat: no-repeat; }
.bg-cover { background-size: cover; background-repeat: no-repeat; }
.bg-contain { background-size: contain; background-repeat: no-repeat; }

.bg-cc { background-position: center center; }
.bg-ct { background-position: center top; }
.bg-cb { background-position: center bottom; }
.bg-lt { background-position: left top; }
.bg-lc { background-position: left center; }
.bg-lb { background-position: left bottom; }
.bg-rt { background-position: right top; }
.bg-rc { background-position: right center; }
.bg-rb { background-position: right bottom; }

.bg-repeat { background-repeat: repeat; }
.bg-repeat-x { background-repeat: repeat-x; }
.bg-repeat-y { background-repeat: repeat-y; }

@media (min-width: 992px) {
	.bg-glass, .nav-wrp.bg-glass:not(.nav-sticky) { background-color: transparent; }

	.light.nav-wrp.glass-01:not(.nav-sticky) { background-color: rgba(0,0,0,0.1); }
	.light.nav-wrp.glass-02:not(.nav-sticky) { background-color: rgba(0,0,0,0.2); }
	.light.nav-wrp.glass-03:not(.nav-sticky) { background-color: rgba(0,0,0,0.3); }
	.light.nav-wrp.glass-04:not(.nav-sticky) { background-color: rgba(0,0,0,0.4); }
	.light.nav-wrp.glass-05:not(.nav-sticky) { background-color: rgba(0,0,0,0.5); }
	.light.nav-wrp.glass-06:not(.nav-sticky) { background-color: rgba(0,0,0,0.6); }
	.light.nav-wrp.glass-07:not(.nav-sticky) { background-color: rgba(0,0,0,0.7); }
	.light.nav-wrp.glass-08:not(.nav-sticky) { background-color: rgba(0,0,0,0.8); }
	.light.nav-wrp.glass-09:not(.nav-sticky) { background-color: rgba(0,0,0,0.9); }

	.nav-wrp.glass-01:not(.nav-sticky) { background-color: rgba(255,255,255,0.1); }
	.nav-wrp.glass-02:not(.nav-sticky) { background-color: rgba(255,255,255,0.2); }
	.nav-wrp.glass-03:not(.nav-sticky) { background-color: rgba(255,255,255,0.3); }
	.nav-wrp.glass-04:not(.nav-sticky) { background-color: rgba(255,255,255,0.4); }
	.nav-wrp.glass-05:not(.nav-sticky) { background-color: rgba(255,255,255,0.5); }
	.nav-wrp.glass-06:not(.nav-sticky) { background-color: rgba(255,255,255,0.6); }
	.nav-wrp.glass-07:not(.nav-sticky) { background-color: rgba(255,255,255,0.7); }
	.nav-wrp.glass-08:not(.nav-sticky) { background-color: rgba(255,255,255,0.8); }
	.nav-wrp.glass-09:not(.nav-sticky) { background-color: rgba(255,255,255,0.9); }
}


/* Background colors
=========================*/
.bg-white { background-color: #fff; }
.bg-gray { background-color: #f4f5f5; } /* very light gray */
.bg-gray1 { background-color: #f2f2f2; } /* light gray */

.bg-dark1 { background-color: #282c35; } /* medium dark gray */
.bg-dark2 { background-color: #1f2229; } /* dark gray */

.bg-color1 { background-color: #1f9df3; } /* dark blue */ 
.bg-color2 { background-color: #8BCE7B; } /* green */ 
.bg-color3 { background-color: #ff6858; } /* orange */ 
.bg-color4 { background-color: #e74c3c; } /* purple */


/* Button colors
=========================*/
.btn-white { 
	border-color: #fff;
	color: #fff;
}
.btn-white:hover, 
.btn-white:focus, 
.btn-white:active, 
.btn-white.active { 
	background-color: #fff;
	border-color: #fff;
	color: #1f2229;
}

.btn-gray {
	border-color: #f4f5f5;
	color: #1f2229;
} 
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active {
	background-color: #f4f5f5;
	border-color: #f4f5f5;
	color: #1f2229;
} /* very light gray */

.btn-dark {
	border-color: #282c35;
	color: #282c35;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
	background-color: #282c35;
	border-color: #282c35;
	color: #fff;
} /* medium dark gray */

.btn-color1 { border-color: #1f9df3; color: #1f9df3; }
.btn-color1:hover, .btn-color1:focus, .btn-color1:active, .btn-color1.active { background-color: #1f9df3; border-color: #1f9df3; color: #fff; } /* blue */ 

.btn-color2 { border-color: #6fbb5d; color: #6fbb5d; }
.btn-color2:hover, .btn-color2:focus, .btn-color2:active, .btn-color2.active { background-color: #6fbb5d; border-color: #6fbb5d; color: #fff; } /* green */ 

.btn-color3 { border-color: #e74c3c; color: #e74c3c; }
.btn-color3:hover, .btn-color3:focus, .btn-color3:active, .btn-color3.active { background-color: #e74c3c; border-color: #e74c3c; color: #fff; } /* orange */ 

.btn-color4 { border-color: #847bd5; color: #847bd5; }
.btn-color4:hover, .btn-color4:focus, .btn-color4:active, .btn-color4.active { background-color: #847bd5; border-color: #847bd5; color: #fff; } /* purple */


/* Solid button colors */
.solid.btn-white { background-color: #fff; border-color: #fff; color: #1f2229; }
.solid.btn-white:hover, .solid.btn-white:focus, .solid.btn-white:active, .solid.btn-white.active { background-color: transparent; border-color: #fff; color: #fff; }

.solid.btn-gray { background-color: #f4f5f5; border-color: #f4f5f5; color: #1f2229; }
.solid.btn-gray:hover, .solid.btn-gray:focus, .solid.btn-gray:active, .solid.btn-gray.active { background-color: transparent; border-color: #f4f5f5; color: #1f2229; } /* very light gray */

.solid.btn-dark { background-color: #282c35; border-color: #282c35; color: #fff; }
.solid.btn-dark:hover, .solid.btn-dark:focus, .solid.btn-dark:active, .solid.btn-dark.active { background-color: transparent; border-color: #282c35; color: #282c35; } /* medium dark gray */

.solid.btn-color1 { background-color: #1f9df3; border-color: #1f9df3; color: #fff; }
.solid.btn-color1:hover, .solid.btn-color1:focus, .solid.btn-color1:active, .solid.btn-color1.active { background-color: transparent; border-color: #1f9df3; color: #1f9df3; } /* blue */ 

.solid.btn-color2 { background-color: #6fbb5d; border-color: #6fbb5d; color: #fff; }
.solid.btn-color2:hover, .solid.btn-color2:focus, .solid.btn-color2:active, .solid.btn-color2.active { background-color: transparent; border-color: #6fbb5d; color: #6fbb5d; } /* green */ 

.solid.btn-color3 { background-color: #e74c3c; border-color: #e74c3c; color: #fff; }
.solid.btn-color3:hover, .solid.btn-color3:focus, .solid.btn-color3:active, .solid.btn-color3.active { background-color: transparent; border-color: #e74c3c; color: #e74c3c; } /* orange */ 

.solid.btn-color4 { background-color: #847bd5; border-color: #847bd5; color: #fff; }
.solid.btn-color4:hover, .solid.btn-color4:focus, .solid.btn-color4:active, .solid.btn-color4.active { background-color: transparent; border-color: #847bd5; color: #847bd5; } /* purple */


/* Text colors
=========================*/
.txt-white, .txt-white.title  { color: #fff; }
.txt-gray, .txt-gray.title  { color: #f4f5f5; } /* very light gray */
.txt-dark2, .txt-dark2.title  { color: #282c35; } /* medium dark gray */
.txt-color1, .txt-color1.title  { color: #1f9df3; } /* dark blue */ 
.txt-color2, .txt-color2.title  { color: #8BCE7B; } /* green */ 
.txt-color3, .txt-color3.title  { color: #e74c3c; } /* dark orange */ 
.txt-color4, .txt-color4.title  { color: #e74c3c; } /* purple */


/* Tag text colors
=========================*/
.tag-text.bg-white { color: #282c35; }
.tag-text.bg-gray { color: #282c35; } /* very light gray */
.tag-text.bg-dark2 { color: #fff; } /* medium dark gray */
.tag-text.bg-color1 { color: #fff; } /* dark blue */ 
.tag-text.bg-color2 { color: #fff; } /* green */ 
.tag-text.bg-color3 { color: #fff; } /* dark orange */ 
.tag-text.bg-color4 { color: #fff; } /* purple */

.tag-text.sm {
	padding: 6px 8px;
	font-size: 14px;
	font-weight: normal;
}


/* Border
=========================*/
.bdr-l { border:none; border-left: 1px solid; }
.bdr-r { border:none; border-right: 1px solid; }
.bdr-t { border:none; border-top: 1px solid; }
.bdr-b { border:none; border-bottom: 1px solid; }
.bdr-1 { border-width: 1px; border-style: solid; }
.bdr-2 { border-width: 2px; border-style: solid; }
.bdr-3 { border-width: 3px; border-style: solid; }
.bdr-4 { border-width: 4px; border-style: solid; }
.bdr-5 { border-width: 5px; border-style: solid; }
.bdr-10 { border-width: 10px; border-style: solid; }
.bdr-15 { border-width: 15px; border-style: solid; }
.bdr-20 { border-width: 20px; border-style: solid; }
.bdr-25 { border-width: 25px; border-style: solid; }
.bdr-30 { border-width: 30px; border-style: solid; }

.row-bdr > [class*="flex-col-"] { border-right: 1px solid rgba(0,0,0,0.06); }
.row-bdr > [class*="flex-col-"]:last-child { border-right: none; }
.row-bdr { border: 1px solid rgba(0,0,0,0.06); }

.row-sep > [class*="flex-col-"] { border-right: 1px solid rgba(0,0,0,0.06); }
.row-sep > [class*="flex-col-"]:last-child { border-right: none; }

.bdr-glass, .bdr-glass:hover, .bdr-glass:focus { border-color: transparent; }

.bdr-op-1.row-bdr, 
.bdr-op-1.row-bdr > [class*="flex-col-"],
.bdr-op-1.row-sep > [class*="flex-col-"], 
.bdr-op-1.form-control:hover,
.bdr-op-1.form-control:focus,
.bdr-op-1 { border-color: rgba(0,0,0,0.1); }

.bdr-op-2.row-bdr,
.bdr-op-2.row-bdr > [class*="flex-col-"],
.bdr-op-2.row-sep > [class*="flex-col-"], 
.bdr-op-2.form-control:hover,
.bdr-op-2.form-control:focus,
.bdr-op-2 { border-color: rgba(0,0,0,0.2); }

.bdr-op-3.row-bdr,
.bdr-op-3.row-bdr > [class*="flex-col-"],
.bdr-op-3.row-sep > [class*="flex-col-"], 
.bdr-op-3.form-control:hover,
.bdr-op-3.form-control:focus,
.bdr-op-3 { border-color: rgba(0,0,0,0.3); }

.bdr-op-4.row-bdr,
.bdr-op-4.row-bdr > [class*="flex-col-"],
.bdr-op-4.row-sep > [class*="flex-col-"], 
.bdr-op-4.form-control:hover,
.bdr-op-4.form-control:focus,
.bdr-op-4 { border-color: rgba(0,0,0,0.4); }

.bdr-op-5.row-bdr,
.bdr-op-5.row-bdr > [class*="flex-col-"],
.bdr-op-5.row-sep > [class*="flex-col-"], 
.bdr-op-5.form-control:hover,
.bdr-op-5.form-control:focus,
.bdr-op-5 { border-color: rgba(0,0,0,0.5); }

.light.bdr-op-1.row-bdr,
.light.bdr-op-1.row-bdr > [class*="flex-col-"],
.light.bdr-op-1.row-sep > [class*="flex-col-"], 
.light.bdr-op-1.form-control:hover,
.light.bdr-op-1.form-control:focus,
.light.bdr-op-1 { border-color: rgba(255,255,255,0.1); }

.light.bdr-op-2.row-bdr,
.light.bdr-op-2.row-bdr > [class*="flex-col-"],
.light.bdr-op-2.row-sep > [class*="flex-col-"], 
.light.bdr-op-2.form-control:hover,
.light.bdr-op-2.form-control:focus,
.light.bdr-op-2 { border-color: rgba(255,255,255,0.2); }

.light.bdr-op-3.row-bdr,
.light.bdr-op-3.row-bdr > [class*="flex-col-"],
.light.bdr-op-3.row-sep > [class*="flex-col-"], 
.light.bdr-op-3.form-control:hover,
.light.bdr-op-3.form-control:focus,
.light.bdr-op-3 { border-color: rgba(255,255,255,0.3); }

.light.bdr-op-4.row-bdr,
.light.bdr-op-4.row-bdr > [class*="flex-col-"],
.light.bdr-op-4.row-sep > [class*="flex-col-"], 
.light.bdr-op-4.form-control:hover,
.light.bdr-op-4.form-control:focus,
.light.bdr-op-4 { border-color: rgba(255,255,255,0.4); }

.light.bdr-op-5.row-bdr,
.light.bdr-op-5.row-bdr > [class*="flex-col-"],
.light.bdr-op-5.row-sep > [class*="flex-col-"], 
.light.bdr-op-5.form-control:hover,
.light.bdr-op-5.form-control:focus,
.light.bdr-op-5 { border-color: rgba(255,255,255,0.5); }

/* Border colors */
.bdr-white.row-bdr,
.bdr-white.row-bdr > [class*="flex-col-"],
.bdr-white.row-sep > [class*="flex-col-"], 
.bdr-white.form-control:hover,
.bdr-white.form-control:focus,
.bdr-white { border-color: #fff; }

.bdr-gray.row-bdr,
.bdr-gray.row-bdr > [class*="flex-col-"],
.bdr-gray.row-sep > [class*="flex-col-"], 
.bdr-gray.form-control:hover,
.bdr-gray.form-control:focus,
.bdr-gray { border-color: #f4f5f5; } /* very light gray */

.bdr-dark.row-bdr,
.bdr-dark.row-bdr > [class*="flex-col-"],
.bdr-dark.row-sep > [class*="flex-col-"], 
.bdr-dark.form-control:hover,
.bdr-dark.form-control:focus,
.bdr-dark { border-color: #282c35; } /* medium dark gray */

.bdr-color1.row-bdr,
.bdr-color1.row-bdr > [class*="flex-col-"],
.bdr-color1.row-sep > [class*="flex-col-"], 
.bdr-color1.form-control:hover,
.bdr-color1.form-control:focus,
.bdr-color1 { border-color: #1f9df3; } /* dark blue */ 

.bdr-color2.row-bdr,
.bdr-color2.row-bdr > [class*="flex-col-"],
.bdr-color2.row-sep > [class*="flex-col-"], 
.bdr-color2.form-control:hover,
.bdr-color2.form-control:focus,
.bdr-color2 { border-color: #8BCE7B; } /* green */ 

.bdr-color3.row-bdr,
.bdr-color3.row-bdr > [class*="flex-col-"],
.bdr-color3.row-sep > [class*="flex-col-"], 
.bdr-color3.form-control:hover,
.bdr-color3.form-control:focus,
.bdr-color3 { border-color: #ff6858; } /* orange */ 

.bdr-color4.row-bdr,
.bdr-color4.row-bdr > [class*="flex-col-"],
.bdr-color4.row-sep > [class*="flex-col-"], 
.bdr-color4.form-control:hover,
.bdr-color4.form-control:focus,
.bdr-color4 { border-color: #e74c3c; } /* purple */



/* Opacity
=========================*/
.op-0 { opacity: 0; }
.op-001 { opacity: 0.01; }
.op-002 { opacity: 0.02; }
.op-003 { opacity: 0.03; }
.op-004 { opacity: 0.04; }
.op-005 { opacity: 0.05; }
.op-006 { opacity: 0.06; }
.op-007 { opacity: 0.07; }
.op-008 { opacity: 0.08; }
.op-009 { opacity: 0.09; }

.op-01 { opacity: 0.1; }
.op-02 { opacity: 0.2; }
.op-03 { opacity: 0.3; }
.op-04 { opacity: 0.4; }
.op-05 { opacity: 0.5; }
.op-06 { opacity: 0.6; }
.op-07 { opacity: 0.7; }
.op-08 { opacity: 0.8; }
.op-09 { opacity: 0.9; }
/*.op-1 { opacity: 1; }*/
.el-animate:not(.animated) { opacity: 0; }

/* Clearing
=========================*/
.nav-header:before, .nav-header:after,
.nav-links:before,
.nav-links:after
	{ content: ''; display: table; clear: both; }

/* Padding
=========================*/
.pd-tb-large  { padding-top: 200px; padding-bottom: 200px; }
.pd-tb-medium { padding-top: 150px; padding-bottom: 150px; }
.pd-tb-small  { padding-top: 100px; padding-bottom: 100px; }
.pd-tb-mini   { padding-top: 50px; padding-bottom: 50px; }
.pd-tb-tiny   { padding-top: 30px; padding-bottom: 30px; }
.pd-tb-micro  { padding-top: 10px; padding-bottom: 10px; }

.pd-0  { padding: 0; }
.pd-10  { padding: 10px; }
.pd-20  { padding: 20px; }
.pd-30  { padding: 30px; }
.pd-40  { padding: 40px; }
.pd-50  { padding: 50px; }
.pd-60  { padding: 60px; }
.pd-70  { padding: 70px; }
.pd-80  { padding: 80px; }
.pd-90  { padding: 90px; }
.pd-100 { padding: 100px; }

.pd-tb-10  { padding-top: 10px; padding-bottom: 10px; }
.pd-tb-20  { padding-top: 20px; padding-bottom: 20px; }
.pd-tb-30  { padding-top: 30px; padding-bottom: 30px; }
.pd-tb-40  { padding-top: 40px; padding-bottom: 40px; }
.pd-tb-50  { padding-top: 50px; padding-bottom: 50px; }
.pd-tb-60  { padding-top: 60px; padding-bottom: 60px; }
.pd-tb-70  { padding-top: 70px; padding-bottom: 70px; }
.pd-tb-80  { padding-top: 80px; padding-bottom: 80px; }
.pd-tb-90  { padding-top: 90px; padding-bottom: 90px; }
.pd-tb-100 { padding-top: 100px; padding-bottom: 100px; }

.pd-lr-0  { padding-left: 0; padding-right: 0; }
.pd-lr-10  { padding-left: 10px; padding-right: 10px; }
.pd-lr-20  { padding-left: 20px; padding-right: 20px; }
.pd-lr-30  { padding-left: 30px; padding-right: 30px; }
.pd-lr-40  { padding-left: 40px; padding-right: 40px; }
.pd-lr-50  { padding-left: 50px; padding-right: 50px; }
.pd-lr-60  { padding-left: 60px; padding-right: 60px; }
.pd-lr-70  { padding-left: 70px; padding-right: 70px; }
.pd-lr-80  { padding-left: 80px; padding-right: 80px; }
.pd-lr-90  { padding-left: 90px; padding-right: 90px; }
.pd-lr-100 { padding-left: 100px; padding-right: 100px; }

.pd-r-0  { padding-right: 0; }
.pd-r-10  { padding-right: 10px; }
.pd-r-20  { padding-right: 20px; }
.pd-r-30  { padding-right: 30px; }
.pd-r-40  { padding-right: 40px; }
.pd-r-50  { padding-right: 50px; }
.pd-r-60  { padding-right: 60px; }
.pd-r-70  { padding-right: 70px; }
.pd-r-80  { padding-right: 80px; }
.pd-r-90  { padding-right: 90px; }
.pd-r-100 { padding-right: 100px; }

.pd-l-0  { padding-left: 0; }
.pd-l-10  { padding-left: 10px; }
.pd-l-20  { padding-left: 20px; }
.pd-l-30  { padding-left: 30px; }
.pd-l-40  { padding-left: 40px; }
.pd-l-50  { padding-left: 50px; }
.pd-l-60  { padding-left: 60px; }
.pd-l-70  { padding-left: 70px; }
.pd-l-80  { padding-left: 80px; }
.pd-l-90  { padding-left: 90px; }
.pd-l-100 { padding-left: 100px; }

.pd-b-0  { padding-bottom: 0; }
.pd-b-10  { padding-bottom: 10px; }
.pd-b-20  { padding-bottom: 20px; }
.pd-b-30  { padding-bottom: 30px; }
.pd-b-40  { padding-bottom: 40px; }
.pd-b-50  { padding-bottom: 50px; }
.pd-b-60  { padding-bottom: 60px; }
.pd-b-70  { padding-bottom: 70px; }
.pd-b-80  { padding-bottom: 80px; }
.pd-b-90  { padding-bottom: 90px; }
.pd-b-100 { padding-bottom: 100px; }

.pd-t-0  { padding-top: 0; }
.pd-t-10  { padding-top: 10px; }
.pd-t-20  { padding-top: 20px; }
.pd-t-30  { padding-top: 30px; }
.pd-t-40  { padding-top: 40px; }
.pd-t-50  { padding-top: 50px; }
.pd-t-60  { padding-top: 60px; }
.pd-t-70  { padding-top: 70px; }
.pd-t-80  { padding-top: 80px; }
.pd-t-90  { padding-top: 90px; }
.pd-t-100 { padding-top: 100px; }


/* Margin
=========================*/
.mr-auto { margin-left: auto; margin-right: auto; }
.mr-0 { margin: 0px; }
.mr-5  { margin: 5px; }
.mr-10  { margin: 10px; }
.mr-20  { margin: 20px; }
.mr-30  { margin: 30px; }
.mr-40  { margin: 40px; }
.mr-50  { margin: 50px; }
.mr-60  { margin: 60px; }
.mr-70  { margin: 70px; }
.mr-80  { margin: 80px; }
.mr-90  { margin: 90px; }
.mr-100 { margin: 100px; }

.ctrl-mr-t10 .owl-dots,
.mr-t-10  { margin-top: 10px; }
.ctrl-mr-t20 .owl-dots,
.mr-t-20  { margin-top: 20px; }
.ctrl-mr-t30 .owl-dots,
.mr-t-30  { margin-top: 30px; }
.ctrl-mr-t40 .owl-dots,
.mr-t-40  { margin-top: 40px; }
.mr-t-50  { margin-top: 50px; }
.mr-t-60  { margin-top: 60px; }
.mr-t-70  { margin-top: 70px; }
.mr-t-80  { margin-top: 80px; }
.mr-t-90  { margin-top: 90px; }
.mr-t-100 { margin-top: 100px; }

.mr-r-5, 
.info-obj.img-r.g5 .info  { margin-right: 5px; }
.mr-r-10, 
.info-obj.img-r.g10 .info  { margin-right: 10px; }
.mr-r-20, 
.info-obj.img-r.g20 .info  { margin-right: 20px; }
.mr-r-30, 
.info-obj.img-r.g30 .info  { margin-right: 30px; }
.mr-r-40, 
.info-obj.img-r.g40 .info  { margin-right: 40px; }
.mr-r-50, 
.info-obj.img-r.g50 .info  { margin-right: 50px; }
.mr-r-60, 
.info-obj.img-r.g60 .info  { margin-right: 60px; }
.mr-r-70, 
.info-obj.img-r.g70 .info  { margin-right: 70px; }
.mr-r-80, 
.info-obj.img-r.g80 .info  { margin-right: 80px; }
.mr-r-90, 
.info-obj.img-r.g90 .info  { margin-right: 90px; }
.mr-r-100, 
.info-obj.img-r.g100 .info { margin-right: 100px; }

.mr-l-5, 
.info-obj.img-l.g5 .info  { margin-left: 5px; }
.mr-l-10, 
.info-obj.img-l.g10 .info  { margin-left: 10px; }
.mr-l-20, 
.info-obj.img-l.g20 .info  { margin-left: 20px; }
.mr-l-30, 
.info-obj.img-l.g30 .info  { margin-left: 30px; }
.mr-l-40, 
.info-obj.img-l.g40 .info  { margin-left: 40px; }
.mr-l-50, 
.info-obj.img-l.g50 .info  { margin-left: 50px; }
.mr-l-60, 
.info-obj.img-l.g60 .info  { margin-left: 60px; }
.mr-l-70, 
.info-obj.img-l.g70 .info  { margin-left: 70px; }
.mr-l-80, 
.info-obj.img-l.g80 .info  { margin-left: 80px; }
.mr-l-90, 
.info-obj.img-l.g90 .info  { margin-left: 90px; }
.mr-l-100, 
.info-obj.img-l.g100 .info { margin-left: 100px; }

.mr-b-0,
.info-obj.img-t.g0 .img  { margin-bottom: 0px; }
.mr-b-5,
form.frm-gt5 .form-control,
.info-obj.img-t.g5 .img  { margin-bottom: 5px; }
.mr-b-10,
form.frm-gt10 .form-control,
.info-obj.img-t.g10 .img  { margin-bottom: 10px; }
.mr-b-20,
form.frm-gt20 .form-control,
.info-obj.img-t.g20 .img  { margin-bottom: 20px; }
.mr-b-30,
form.frm-gt30 .form-control,
.info-obj.img-t.g30 .img  { margin-bottom: 30px; }
.mr-b-40,
form.frm-gt40 .form-control,
.info-obj.img-t.g40 .img  { margin-bottom: 40px; }
.mr-b-50,
form.frm-gt50 .form-control,
.info-obj.img-t.g50 .img  { margin-bottom: 50px; }
.mr-b-60,
form.frm-gt60 .form-control,
.info-obj.img-t.g60 .img  { margin-bottom: 60px; }
.mr-b-70,
form.frm-gt70 .form-control,
.info-obj.img-t.g70 .img  { margin-bottom: 70px; }
.mr-b-80,
form.frm-gt80 .form-control,
.info-obj.img-t.g80 .img  { margin-bottom: 80px; }
.mr-b-90,
form.frm-gt90 .form-control,
.info-obj.img-t.g90 .img  { margin-bottom: 90px; }
.mr-b-100,
form.frm-gt100 .form-control,
.info-obj.img-t.g100 .img { margin-bottom: 100px; }
.mr-b-150,
form.frm-gt150 .form-control,
.info-obj.img-t.g150 .img { margin-bottom: 150px; }
.mr-b-200,
form.frm-gt200 .form-control,
.info-obj.img-t.g200 .img { margin-bottom: 200px; }


.mr-tb-10  { margin-top: 10px; margin-bottom: 10px; }
.mr-tb-20  { margin-top: 20px; margin-bottom: 20px; }
.mr-tb-30  { margin-top: 30px; margin-bottom: 30px; }
.mr-tb-40  { margin-top: 40px; margin-bottom: 40px; }
.mr-tb-50  { margin-top: 50px; margin-bottom: 50px; }
.mr-tb-60  { margin-top: 60px; margin-bottom: 60px; }
.mr-tb-70  { margin-top: 70px; margin-bottom: 70px; }
.mr-tb-80  { margin-top: 80px; margin-bottom: 80px; }
.mr-tb-90  { margin-top: 90px; margin-bottom: 90px; }
.mr-tb-100 { margin-top: 100px; margin-bottom: 100px; }

.mr-lr-5  { margin-left: 5px; margin-right: 5px; }
.mr-lr-10  { margin-left: 10px; margin-right: 10px; }
.mr-lr-20  { margin-left: 20px; margin-right: 20px; }
.mr-lr-30  { margin-left: 30px; margin-right: 30px; }
.mr-lr-40  { margin-left: 40px; margin-right: 40px; }
.mr-lr-50  { margin-left: 50px; margin-right: 50px; }
.mr-lr-60  { margin-left: 60px; margin-right: 60px; }
.mr-lr-70  { margin-left: 70px; margin-right: 70px; }
.mr-lr-80  { margin-left: 80px; margin-right: 80px; }
.mr-lr-90  { margin-left: 90px; margin-right: 90px; }
.mr-lr-100 { margin-left: 100px; margin-right: 100px; }


/* Width
=========================*/
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-33 { width: 33.33333333333333%; }
.w-25 { width: 25%; }
.w-20 { width: 20%; }


.vw5{width:5vw;}
.vw10{width:10vw;}
.vw15{width:15vw;}
.vw20{width:20vw;}
.vw25{width:25vw;}
.vw30{width:30vw;}
.vw35{width:35vw;}
.vw40{width:40vw;}
.vw45{width:45vw;}
.vw50{width:50vw;}
.vw55{width:55vw;}
.vw60{width:60vw;}
.vw65{width:65vw;}
.vw70{width:70vw;}
.vw75{width:75vw;}
.vw80{width:80vw;}
.vw85{width:85vw;}
.vw90{width:90vw;}
.vw95{width:95vw;}
.vw100{width:100vw;}
.w5{width:5%;}
.w10{width:10%;}
.w15{width:15%;}
.w20{width:20%;}
.w25{width:25%;}
.w30{width:30%;}
.w35{width:35%;}
.w40{width:40%;}
.w45{width:45%;}
.w50{width:50%;}
.w55{width:55%;}
.w60{width:60%;}
.w65{width:65%;}
.w70{width:70%;}
.w75{width:75%;}
.w80{width:80%;}
.w85{width:85%;}
.w90{width:90%;}
.w95{width:95%;}
.w100{width:100%;}


.min-px-w30 { min-width: 30px; }
.min-px-w40 { min-width: 40px; }
.min-px-w50 { min-width: 50px; }
.min-px-w60 { min-width: 60px; }
.min-px-w70 { min-width: 70px; }
.min-px-w80 { min-width: 80px; }
.min-px-w90 { min-width: 90px; }
.min-px-w100 { min-width: 100px; }
.min-px-w120 { min-width: 120px; }
.min-px-w150 { min-width: 150px; }
.min-px-w180 { min-width: 180px; }
.min-px-w200 { min-width: 200px; }
.min-px-w250 { min-width: 250px; }
.min-px-w300 { min-width: 300px; }
.min-px-w350 { min-width: 350px; }
.min-px-w400 { min-width: 400px; }

.min-w5{min-width:5%;}
.min-w10{min-width:10%;}
.min-w15{min-width:15%;}
.min-w20{min-width:20%;}
.min-w25{min-width:25%;}
.min-w30{min-width:30%;}
.min-w35{min-width:35%;}
.min-w40{min-width:40%;}
.min-w45{min-width:45%;}
.min-w50{min-width:50%;}
.min-w55{min-width:55%;}
.min-w60{min-width:60%;}
.min-w65{min-width:65%;}
.min-w70{min-width:70%;}
.min-w75{min-width:75%;}
.min-w80{min-width:80%;}
.min-w85{min-width:85%;}
.min-w90{min-width:90%;}
.min-w95{min-width:95%;}
.min-w100{min-width:100%;}

/* Max width */
.max-px-w30 { max-width: 30px; }
.max-px-w40 { max-width: 40px; }
.max-px-w50 { max-width: 50px; }
.max-px-w60 { max-width: 60px; }
.max-px-w70 { max-width: 70px; }
.max-px-w80 { max-width: 80px; }
.max-px-w90 { max-width: 90px; }
.max-px-w100 { max-width: 100px; }
.max-px-w120 { max-width: 120px; }
.max-px-w150 { max-width: 150px; }
.max-px-w180 { max-width: 180px; }
.max-px-w200 { max-width: 200px; }
.max-px-w250 { max-width: 250px; }
.max-px-w300 { max-width: 300px; }
.max-px-w350 { max-width: 350px; }
.max-px-w400 { max-width: 400px; }

.max-w5{max-width:5%;}
.max-w10{max-width:10%;}
.max-w15{max-width:15%;}
.max-w20{max-width:20%;}
.max-w25{max-width:25%;}
.max-w30{max-width:30%;}
.max-w35{max-width:35%;}
.max-w40{max-width:40%;}
.max-w45{max-width:45%;}
.max-w50{max-width:50%;}
.max-w55{max-width:55%;}
.max-w60{max-width:60%;}
.max-w65{max-width:65%;}
.max-w70{max-width:70%;}
.max-w75{max-width:75%;}
.max-w80{max-width:80%;}
.max-w85{max-width:85%;}
.max-w90{max-width:90%;}
.max-w95{max-width:95%;}
.max-w100{max-width:100%;}

.w-auto{width:auto!important;}
.w-inherit{width:inherit!important;}
.w-initial{width:initial!important;}

.img-half { 
	width: 50%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}
.img-half img {
	height: 100%;
	width: auto;
	max-width: none;
}
.img-half.r { right: 0px; }
.img-half.l { left: 0px; }


/* Square
=========================*/
.sq30 { width: 30px; height: 30px; }
.sq40 { width: 40px; height: 40px; }
.sq50 { width: 50px; height: 50px; }
.sq60 { width: 60px; height: 60px; }
.sq70 { width: 70px; height: 70px; }
.sq80 { width: 80px; height: 80px; }
.sq90 { width: 90px; height: 90px; }
.sq100 { width: 100px; height: 100px; }
.sq120 { width: 120px; height: 120px; }
.sq150 { width: 150px; height: 150px; }
.sq180 { width: 180px; height: 180px; }
.sq200 { width: 200px; height: 200px; }
.sq250 { width: 250px; height: 250px; }
.sq300 { width: 300px; height: 300px; }
.sq350 { width: 350px; height: 350px; }
.sq400 { width: 400px; height: 400px; }


/* Height
=========================*/
.max-px-h30 { max-height: 30px; }
.max-px-h40 { max-height: 40px; }
.max-px-h50 { max-height: 50px; }
.max-px-h60 { max-height: 60px; }
.max-px-h70 { max-height: 70px; }
.max-px-h80 { max-height: 80px; }
.max-px-h90 { max-height: 90px; }
.max-px-h100 { max-height: 100px; }
.max-px-h120 { max-height: 120px; }
.max-px-h150 { max-height: 150px; }
.max-px-h180 { max-height: 180px; }
.max-px-h200 { max-height: 200px; }
.max-px-h250 { max-height: 250px; }
.max-px-h300 { max-height: 300px; }
.max-px-h350 { max-height: 350px; }
.max-px-h400 { max-height: 400px; }

.min-px-h50 { min-height: 50px; }
.min-px-h60 { min-height: 60px; }
.min-px-h70 { min-height: 70px; }
.min-px-h80 { min-height: 80px; }
.min-px-h90 { min-height: 90px; }
.min-px-h100 { min-height: 100px; }
.min-px-h120 { min-height: 120px; }
.min-px-h150 { min-height: 150px; }
.min-px-h180 { min-height: 180px; }
.min-px-h200 { min-height: 200px; }
.min-px-h250 { min-height: 250px; }
.min-px-h300 { min-height: 300px; }
.min-px-h350 { min-height: 350px; }
.min-px-h400 { min-height: 400px; }
.min-px-h500 { min-height: 500px; }
.min-px-h600 { min-height: 600px; }
.min-px-h700 { min-height: 700px; }
.min-px-h800 { min-height: 800px; }

.h-auto{height:auto!important;}
.h-inherit{height:inherit!important;}
.h-initial{height:initial!important;}
.vh5{height:5vh;}
.vh10{height:10vh;}
.vh15{height:15vh;}
.vh20{height:20vh;}
.vh25{height:25vh;}
.vh30{height:30vh;}
.vh35{height:35vh;}
.vh40{height:40vh;}
.vh45{height:45vh;}
.vh50{height:50vh;}
.vh55{height:55vh;}
.vh60{height:60vh;}
.vh65{height:65vh;}
.vh70{height:70vh;}
.vh75{height:75vh;}
.vh80{height:80vh;}
.vh85{height:85vh;}
.vh90{height:90vh;}
.vh95{height:95vh;}
.vh100{height:100vh;}

.h5{height:5%;}
.h10{height:10%;}
.h15{height:15%;}
.h20{height:20%;}
.h25{height:25%;}
.h30{height:30%;}
.h35{height:35%;}
.h40{height:40%;}
.h45{height:45%;}
.h50{height:50%;}
.h55{height:55%;}
.h60{height:60%;}
.h65{height:65%;}
.h70{height:70%;}
.h75{height:75%;}
.h80{height:80%;}
.h85{height:85%;}
.h90{height:90%;}
.h95{height:95%;}
.h100{height:100%;}

.px-h600 { height: 600px; }
.px-h700 { height: 700px; }
.px-h800 { height: 800px; }
.px-h900 { height: 900px; }
.px-h1000 { height: 1000px; }


/* Radius
=========================*/
.rd { border-radius: 100%; }
.rd-2 { border-radius: 2px; }
.rd-4 { border-radius: 4px; }
.rd-5 { border-radius: 6px; }
.rd-10 { border-radius: 10px; }
.rd-20 { border-radius: 20px; }
.rd-30 { border-radius: 30px; }
.rd-40 { border-radius: 40px; }
.rd-50 { border-radius: 50px; }
.rd-100 { border-radius: 100px; }
.rd-150 { border-radius: 150px; }
.rd-200 { border-radius: 200px; }
.rd-250 { border-radius: 250px; }
.rd-300 { border-radius: 300px; }
.rd-350 { border-radius: 350px; }
.rd-400 { border-radius: 400px; }

/* Icon blocks
=========================*/
.iconwrp { 
	margin-left: auto; margin-right: auto;
	display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;
}
.iconwrp.l { margin-left: 0; }
.iconwrp.r { margin-right: 0; }


/* Forms
=========================*/
.btn.block { display: block; }
.btn.inline-block { display: inline-block; width: auto; }

/* Other utilities
=========================*/
.hidden                          { display:none;}
.block                           { display:block;}
.flex                            { display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
.inline                          { display:inline;}
.inline-block                    { display:inline-block;}
.inline-flex                     { display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}
.overflow-hidden                 { overflow:hidden;}
.overflow-scroll                 { overflow:scroll;}
.overflow-auto                   { overflow:auto;}

.pre                             { white-space:pre;}
.nowrap                          { white-space:nowrap;}
.scroll-horizontal               { overflow-x:scroll;overflow-y:hidden;}
.scroll-vertical                 { overflow-x:hidden;overflow-y:scroll;}
.no-scrollbar::-webkit-scrollbar { width:0px;height:0px;background:transparent;}
.resize-none                     { resize:none;}
.resize-vertical                 { resize:vertical;}
.resize-horizontal               { resize:horizontal;}
.cursor-pointer                  { cursor:pointer;}
.no-pointer-events               { pointer-events:none;}
.disabled                        { opacity:0.5;cursor:not-allowed;pointer-events:none;}
.fullscreen                      { min-height:100vh;min-width:100%;}

.relative                        { position:relative;}
.absolute                        { position:absolute;}
.fixed                           { position:fixed;}

.top                             { top:0;}
.right                           { right:0;}
.bottom                          { bottom:0;}
.left                            { left:0;}
.absolute-center                 { position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;}
.float-left                      { float:left;}
.float-right                     { float:right;}


/* Small screen helper reset
=========================*/
@media (min-width: 200px) and (max-width: 991px) {

	.title.large:not([class*="sm-fs"]) { font-size: 30px; }
	.title-sub.large { font-size: 18px; }

	.sm-fs12,
	.title.sm-fs12 { font-size: 12px; }
	.sm-fs13,
	.title.sm-fs13 { font-size: 13px; }
	.sm-fs14,
	.title.sm-fs14 { font-size: 14px; }
	.sm-fs16,
	.title.sm-fs16 { font-size: 16px; }
	.sm-fs18,
	.title.sm-fs18 { font-size: 18px; }
	.sm-fs20,
	.title.sm-fs20 { font-size: 20px; }
	.sm-fs22,
	.title.sm-fs22 { font-size: 22px; }
	.sm-fs24,
	.title.sm-fs24 { font-size: 24px; }
	.sm-fs26,
	.title.sm-fs26 { font-size: 26px; }
	.sm-fs28,
	.title.sm-fs28 { font-size: 28px; }
	.sm-fs30,
	.title.sm-fs30 { font-size: 30px; }
	
	
	/* Alignment
	=========================*/
	.sm-align-c { text-align: center; }
	.sm-align-c .img { margin-left: auto; margin-right: auto; }
	.sm-align-l { text-align: left; }
	
	
	/* Margin
	=========================*/
	.sm-mr-auto { margin-left: auto; margin-right: auto; }
	.sm-mr-tb-0 { margin-top: 0px; margin-bottom: 0px; }
	.sm-mr-tb-10  { margin-top: 10px; margin-bottom: 10px; }
	.sm-mr-tb-20  { margin-top: 20px; margin-bottom: 20px; }
	.sm-mr-tb-30  { margin-top: 30px; margin-bottom: 30px; }

	.sm-mr-b-0 { margin-bottom: 0px; }
	.sm-mr-b-5 { margin-bottom: 5px; }
	.sm-mr-b-10 { margin-bottom: 10px; }
	.sm-mr-b-20 { margin-bottom: 20px; }
	.sm-mr-b-30 { margin-bottom: 30px; }
	.sm-mr-b-40 { margin-bottom: 40px; }
	.sm-mr-b-50 { margin-bottom: 50px; }
	.sm-mr-b-60 { margin-bottom: 60px; }

	
	/* Padding
	=========================*/
	.sm-pd-0 { padding: 0px; }
	.sm-pd-10 { padding: 10px; }
	.sm-pd-20 { padding: 20px; }
	.sm-pd-30 { padding: 30px; }
	
	.sm-pd-lr-10  { padding-left: 10px; padding-right: 10px; }
	.sm-pd-lr-20  { padding-left: 20px; padding-right: 20px; }
	.sm-pd-lr-30  { padding-left: 30px; padding-right: 30px; }
	
	.sm-pd-tb-large  { padding-top: 80px; padding-bottom: 80px; }
	.sm-pd-tb-medium { padding-top: 60px; padding-bottom: 60px; }
	.sm-pd-tb-small  { padding-top: 40px; padding-bottom: 40px; }
	.sm-pd-tb-mini   { padding-top: 25px; padding-bottom: 25px; }
	.sm-pd-tb-tiny   { padding-top: 15px; padding-bottom: 15px; }
	.sm-pd-tb-micro  { padding-top: 10px; padding-bottom: 10px; }

	section.sm-pd-reset,
	.sm-pd-reset {
		padding-top: 30px;
		padding-bottom: 30px;
	}


	/* Width
	=========================*/
	.w-80,
	.w-60,
	.w-75,
	.w-50,
	.w-33,
	.w-25,
	.w-20 { width: 100%; }


	/* Height
	=========================*/
	.sm-h-reset {
		height: auto;
		max-height: inherit;
    	min-height: inherit; 
    }
    .sm-h-400 { height: 400px; }
	
	/* Other
	=========================*/
	.row-bdr > [class*="flex-col-"] { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
	.row-bdr > [class*="flex-col-"]:last-child { border-bottom: none; }
	.row-bdr { border: 1px solid rgba(0,0,0,0.06); }

	.img-half { width: 100%; position: static; }
	.img-half img { float: none; width: 100%; height: auto; }

	.sm-hide { display: none !important; }
	.sm-pos-rel { position: relative; }
}


/* Animation
=========================*/
.hover-box1 *,
.price-table-4 .price-box,
.swiper-button-prev,
.swiper-button-next,
.member-box1 .social,
.price-table-1 > div,
.other-section-1 ol > li,
.other-section-1 ol > li *,
.nav-hide,
.nav-show,
.nav-wrp .navbar-brand img, 
.nav-wrp, 
a, .btn,
.owl-nav *,
.anim {
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}


@keyframes rg_fadeup {
	0% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
	100% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
}
@-webkit-keyframes rg_fadeup {
	0% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
	100% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
}
@-moz-keyframes rg_fadeup {
	0% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
	100% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
}
@-ms-keyframes rg_fadeup {
	0% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
	100% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
}

@keyframes rg_fadedown {
	0% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	100% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
}
@-webkit-keyframes rg_fadedown {
	0% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	100% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
}
@-moz-keyframes rg_fadedown {
	0% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	100% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
}
@-ms-keyframes rg_fadedown {
	0% { 
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	100% { 
		opacity: 0;
		transform: translateY(40px);
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
	}
}


@keyframes rg_fadeleft {
	0% { 
		opacity: 0;
		transform: translateX(40px);
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
	}
	100% { 
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
}
@-webkit-keyframes rg_fadeleft {
	0% { 
		opacity: 0;
		transform: translateX(40px);
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
	}
	100% { 
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
}
@-moz-keyframes rg_fadeleft {
	0% { 
		opacity: 0;
		transform: translateX(40px);
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
	}
	100% { 
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
}
@-ms-keyframes rg_fadeleft {
	0% { 
		opacity: 0;
		transform: translateX(40px);
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
	}
	100% { 
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
}


.s01 { -webkit-animation-duration: 01s; animation-duration: 01s; }
.s02 { -webkit-animation-duration: 02s; animation-duration: 02s; }
.s04 { -webkit-animation-duration: 04s; animation-duration: 04s; }
.s010 { -webkit-animation-duration: 010s; animation-duration: 010s; }

.delay-0s { -webkit-animation-delay: 0s; animation-delay: 0s; }
.delay-0-1s { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.delay-0-2s { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.delay-0-3s { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.delay-0-4s { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.delay-0-5s { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
.delay-0-6s { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.delay-0-7s { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
.delay-0-8s { -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }
.delay-0-9s { -webkit-animation-delay: 0.9s; animation-delay: 0.9s; }

.delay-1s { -webkit-animation-delay: 1s; animation-delay: 1s; }
.delay-1-1s { -webkit-animation-delay: 1.1s; animation-delay: 1.1s; }
.delay-1-2s { -webkit-animation-delay: 1.2s; animation-delay: 1.2s; }
.delay-1-3s { -webkit-animation-delay: 1.3s; animation-delay: 1.3s; }
.delay-1-4s { -webkit-animation-delay: 1.4s; animation-delay: 1.4s; }
.delay-1-5s { -webkit-animation-delay: 1.5s; animation-delay: 1.5s; }
.delay-1-6s { -webkit-animation-delay: 1.6s; animation-delay: 1.6s; }
.delay-1-7s { -webkit-animation-delay: 1.7s; animation-delay: 1.7s; }
.delay-1-8s { -webkit-animation-delay: 1.8s; animation-delay: 1.8s; }
.delay-1-9s { -webkit-animation-delay: 1.9s; animation-delay: 1.9s; }
.delay-2s { -webkit-animation-delay: 2s; animation-delay: 2s; }
.delay-2-1s { -webkit-animation-delay: 2.1s; animation-delay: 2.1s; }
.delay-3s { -webkit-animation-delay: 3s; animation-delay: 3s; }
.delay-3-5s { -webkit-animation-delay: 3.5s; animation-delay: 3.5s; }
.delay-4s { -webkit-animation-delay: 4s; animation-delay: 4s; }
.delay-4-5s { -webkit-animation-delay: 4.5s; animation-delay: 4.5s; }
.delay-5s { -webkit-animation-delay: 5s; animation-delay: 5s; }
.delay-5-5s { -webkit-animation-delay: 5.5s; animation-delay: 5.5s; }
.delay-6s { -webkit-animation-delay: 6s; animation-delay: 6s; }
.delay-6-5s { -webkit-animation-delay: 6.5s; animation-delay: 6.5s; }
.delay-7s { -webkit-animation-delay: 7s; animation-delay: 7s; }
.delay-7-5s { -webkit-animation-delay: 7.5s; animation-delay: 7.5s; }
.delay-8s { -webkit-animation-delay: 8s; animation-delay: 8s; }
.delay-8-5s { -webkit-animation-delay: 8.5s; animation-delay: 8.5s; }
.delay-9s { -webkit-animation-delay: 9s; animation-delay: 9s; }
.delay-9-5s { -webkit-animation-delay: 9.5s; animation-delay: 9.5s; }
.delay-10s { -webkit-animation-delay: 10s; animation-delay: 10s; }
.delay-10-5s { -webkit-animation-delay: 10.5s; animation-delay: 10.5s; }


/* Loader CSS
=========================*/
.spinner-wrp {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #fff;
	left: 0px;
	top: 0px;
}
body > .spinner-wrp {
	position: fixed;
}
.spinner {
	border: 3px solid rgba(0,0,0,0.15);
	border-top: 3px solid rgba(0,0,0,0.5);
	border-bottom: 3px solid rgba(0,0,0,0.5);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}
.dark.spinner-wrp {
	background-color: #000;
}
.dark.spinner-wrp .spinner {
	border: 3px solid rgba(255,255,255,0.15);
	border-top: 3px solid rgba(255,255,255,0.5);
	border-bottom: 3px solid rgba(255,255,255,0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}