/**
 * Table Of Content
 *
 *  1. Globals
 *  2. Headers
 *  3. Navigations
 *  4. Banners
 *  5. Footers
 *  6. app
 *  7. Widgets
 *  8. Custom Templates
 */

@import url(../css/animate.css);
@import url(../scss/icons/font-awesome/css/font-awesome.min.css);

/******************* 
This is the font import from the google api 
*******************/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&display=swap');

:root {
	--font-1: 'Nunito Sans', sans-serif;
	--font-2: 'Manrope', sans-serif;
	--color-text: #1f1f1f;
	--color-text-muted: #adb5bd;
	--color-text-primary: #0c78fe;
	--color-text-primary-dark: #0c5dca;
	--color-text-secondary: #868e96;
	--color-text-blue: #25cade;
	--color-accent-blue: #15b9fb;
	--color-accent-cyan: #00bcd4;
	--color-primary: #0c78fe;
	--color-primary-dark: #074fb0;
	--color-bg-light: #f4f8fa;
	--color-bg-dark: rgba(79, 143, 99, 0.12);
	--color-link: #759b3e;
	--color-link-hover: #1f1f1f;
    --msform-stepNumber: 4;
}

/******************* 
Global Styles 
*******************/
* {
	outline: none;
}

body {
	background: #ffffff;
	font-family: var(--font-1);
	margin: 0;
	/*overflow-x: hidden;*/
	color: var(--color-text);  
	font-weight: 400;
	line-height: 1.4;
}

html {
	position: relative;
	min-height: 100%;
	background: #ffffff;
}

a {
	color: var(--color-primary);
	transition: all 0.3s;
}

a:hover,
a:focus {
	text-decoration: none;
}

a.link {
	color: var(--color-link);
}
	a.link:hover, a.link:focus {
	color: var(--color-link-hover);
}

a.white-link {
	color: #ffffff;
}
	a.white-link:hover, a.white-link:focus {
	color: var(--color-link-hover);
}

img {
		height: auto;
		max-width: 100%;
}

.img-responsive {
	width: 100%;
	height: auto;
	display: inline-block;
}

.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-rounded {
	border-radius: 4px;
}

.gap-1 {
	margin-right: -5px;
    margin-left: -5px;
}

.gap-1 > div {
	padding-right: 5px;
    padding-left: 5px;
}

.cursor-pointer {
	cursor: pointer;
}

/*******************
Headings
*******************/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: initial;
	font-family: var(--font-2);
	font-weight: 700;
	line-height: 1.25;
}

h1, .h1 {
	font-size: 36px;
}
h2, .h2 {
	font-size: 34px;
	font-size: clamp(1.875rem, 1.6154rem + 1.1538vw, 3rem);
	line-height: 1.2;
}
h3, .h3 {
	font-size: 28px;
	font-size: clamp(1.75rem, 1.6346rem + 0.5128vw, 2.25rem);
	line-height: 1.3;
}
h4, .h4 {
	font-size: 24px;
	line-height: 1.35;
}
h5, .h5 {
	font-size: 21px;
	line-height: 1.35;
}
h6, .h6 {
	font-size: 18px;
	line-height: 1.35;
}

@media (min-width: 480px) {
	h1, .h1 {
	font-size: 46px;
	}
	h5, .h5 {
	font-size: 24px;
	}
	h6, .h6 {
	font-size: 21px;
	}
}

@media (min-width: 576px) {
	h1, .h1 {
	font-size: 50px;
	}
}

@media (min-width: 992px) {
	h1, .h1 {
	font-size: 56px;
	}
	h4, .h4 {
	font-size: 30px;
	}
}

.display-5 {
	font-size: 3rem;
}

.display-6 {
	font-size: 36px;
}

.display-7 {
	font-size: 26px;
}

.box {
	border-radius: 4px;
	padding: 10px;
}

html body .dl {
	display: inline-block;
}

html body .db {
	display: block;
}

.no-wrap td,
.no-wrap th {
	white-space: nowrap;
}

.circle {
	border-radius: 100%;
}

/*******************
Blockquote
*******************/
html body blockquote {
	border-left: 5px solid #316ce8;
	border: 1px solid rgba(120, 130, 140, 0.13);
	padding: 15px;
}

.clear {
	clear: both;
}

ol li {
	margin: 5px 0;
}

/*******************
Paddings
*******************/
.p-0 {
	padding: 0px;
}

.p-10 {
	padding: 10px;
}

.p-15 {
	padding: 15px;
}

.p-20 {
	padding: 20px;
}

.p-30 {
	padding: 30px;
}

.p-40 {
	padding: 40px;
}

.p-l-0 {
	padding-left: 0px;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-r-0 {
	padding-right: 0px;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

.p-r-40 {
	padding-right: 40px;
}

.p-t-0 {
	padding-top: 0px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-30 {
	padding-top: 30px;
}

.p-b-0 {
	padding-bottom: 0px;
}

.p-b-5 {
	padding-bottom: 5px;
}

.p-b-10 {
	padding-bottom: 10px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-30 {
	padding-bottom: 30px;
}

.p-b-40 {
	padding-bottom: 40px;
}

/*******************
Margin
*******************/
.m-0 {
	margin: 0px;
}

.m-l-5 {
	margin-left: 5px;
}

.m-l-10 {
	margin-left: 10px;
}

.m-l-15 {
	margin-left: 15px;
}

.m-l-20 {
	margin-left: 20px;
}

.m-l-30 {
	margin-left: 30px;
}

.m-l-40 {
	margin-left: 40px;
}

.m-r-5 {
	margin-right: 5px;
}

.m-r-10 {
	margin-right: 10px;
}

.m-r-15 {
	margin-right: 15px;
}

.m-r-20 {
	margin-right: 20px;
}

.m-r-30 {
	margin-right: 30px;
}

.m-r-40 {
	margin-right: 40px;
}

.m-t-0 {
	margin-top: 0px;
}

.m-t-5 {
	margin-top: 5px;
}

.m-t-10 {
	margin-top: 10px;
}

.m-t-15 {
	margin-top: 15px;
}

.m-t-20 {
	margin-top: 20px;
}

.m-t-30 {
	margin-top: 30px;
}

.m-t-40 {
	margin-top: 40px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-40 {
	margin-bottom: 40px;
}

/*******************
vertical alignment
*******************/
html body .vt {
	vertical-align: top;
}

html body .vm {
	vertical-align: middle;
}

html body .vb {
	vertical-align: bottom;
}

/*******************
Opacity
*******************/
.op-8 {
	opacity: 0.8;
}

.op-7 {
	opacity: 0.7;
}

.op-5 {
	opacity: 0.5;
}

.op-3 {
	opacity: 0.3;
}

/*******************
font weight
*******************/
.font-800,
.font-bolder {
	font-weight: 800;
}

.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}

.font-normal {
	font-weight: normal;
}

.font-light {
	font-weight: 300;
}

.font-medium {
	font-weight: 500;
}

.font-20 {
	font-size: 20px!important;
}

.font-18 {
	font-size: 18px!important;
}

.font-16 {
	font-size: 16px!important;
}

.font-14 {
	font-size: 14px!important;
}

.font-13 {
	font-size: 13px!important;
}

.font-10 {
	font-size: 10px!important;
}

.text-sm {
	font-size: 14px!important;
}

.text-l {
	font-size: 18px!important;
}

.text-xl {
	font-size: 21px!important;
}

.lh-1 {
	line-height: 1;
}

.lh-11 {
	line-height: 1.1;
}


/*******************
Border
*******************/
.b-0 {
	border: none !important;
}

.b-r {
	border-right: 1px solid rgba(120, 130, 140, 0.13);
}

.b-l {
	border-left: 1px solid rgba(120, 130, 140, 0.13);
}

.b-b {
	border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}

.b-t {
	border-top: 1px solid rgba(120, 130, 140, 0.13);
}

.b-all {
	border: 1px solid rgba(120, 130, 140, 0.13) !important;
}

.border-dark {
	border-color: #2b3f5a !important;
}

/*******************
Thumb size
*******************/
.thumb-sm {
	height: 32px;
	width: 32px;
}

.thumb-md {
	height: 48px;
	width: 48px;
}

.thumb-lg {
	height: 88px;
	width: 88px;
}

.hide {
	display: none;
}

.img-circle {
	border-radius: 100%;
}

.radius {
	border-radius: 4px;
}

@media (max-width: 767px) {
	.text-mob-left {
	text-align: left!important;
	}
}


/*******************
Text Colors
*******************/
.text-white {
	color: #ffffff !important;
}

.text-white h1, .text-white .h1,
.text-white h2, .text-white .h2,
.text-white h3, .text-white .h3,
.text-white h4, .text-white .h4,
.text-white h5, .text-white .h5,
.text-white h6, .text-white .h6 {
	color: #ffffff !important;
}

.text-danger {
	color: #ff4d7e !important;
}

.text-muted {
	color: #8d97ad !important;
}

.text-warning {
	color: #fec500 !important;
}

.text-success {
	color: #25d366 !important;
}

.text-info {
	color: #188ef4 !important;
}

.text-inverse {
	color: #3e4555 !important;
}

.text-success-gradient {
	background: #2cdd9b;
	background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
	background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
	background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.text-info-gradient {
	background: #188ef4;
	background: -webkit-linear-gradient(legacy-direction(to right), #188ef4 0%, #316ce8 100%);
	background: -webkit-gradient(linear, left top, right top, from(#188ef4), to(#316ce8));
	background: -webkit-linear-gradient(left, #188ef4 0%, #316ce8 100%);
	background: -o-linear-gradient(left, #188ef4 0%, #316ce8 100%);
	background: linear-gradient(to right, #188ef4 0%, #316ce8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.text-blue {
	color: var(--color-accent-blue);
}

.text-purple {
	color: #7460ee;
}

.text-primary {
	color: var(--color-text-primary-dark) !important;
}

.text-secondary {
	color: #868e96 !important;
}

.text-dark {
	color: #8d97ad;
}

.text-black {
	color: #000;
}

/*******************
Background Colors
*******************/
.bg-primary {
	background-color: var(--color-primary-dark) !important;
}

.bg-hover-primary:hover {
	background-color: var(--color-primary-dark) !important;
}

.bg-blue {
	background-color: var(--color-accent-blue) !important;
}

.bg-cyan {
	background-color: var(--color-accent-cyan) !important;
}

.bg-dark {
	background-color: #19293e !important;
}

.bg-dark-opa {
	background-color: rgba(0, 0, 0, .2) !important;
	background-blend-mode: multiply;
}

.bg-dark-opa-hover:hover {
	background-color: rgba(0, 0, 0, .2) !important;
	background-blend-mode: multiply;
}

.bg-black {
	background-color: black !important;
}

.bg-facebook {
	background-color: #3b5a9a;
}

.bg-twitter {
	background-color: #56adf2;
}

.bg-primary-gradient {
	background: var(--color-primary);
	background: -webkit-linear-gradient(left, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	background: -o-linear-gradient(left, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.bg-dark-gradient {
	background: #19293e;
	background: -webkit-linear-gradient(right, #021e40 0%, var(--color-primary-dark) 100%);
	background: -o-linear-gradient(right, #021e40 0%, var(--color-primary-dark) 100%);
	background: linear-gradient(to left, #021e40 0%, var(--color-primary-dark) 100%);
}

.bg-success-gradient {
	background: #2cdd9b;
	background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
}

.bg-info-gradient {
	background: #188ef4;
	background: -webkit-linear-gradient(left, #188ef4 0%, #316ce8 100%);
	background: -o-linear-gradient(left, #188ef4 0%, #316ce8 100%);
	background: linear-gradient(to right, #188ef4 0%, #316ce8 100%);
}

.bg-danger-gradient {
	background: #ff4d7e;
	background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
	background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
	background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

.bg-megna {
	background-color: #1dc8cd;
}

.bg-theme {
	background-color: #316ce8;
}

.bg-inverse {
	background-color: #3e4555;
}

.bg-purple {
	background-color: #7460ee;
}

.bg-light {
	background-color: #f4f8fa !important;
}

.bg-light-primary {
	background-color: #f1effd;
}

.bg-light-success {
	background-color: #e8fdeb;
}

.bg-light-info {
	background-color: #cfecfe;
}

.bg-light-extra {
	background-color: #e9ecef;
}

.bg-light-warning {
	background-color: #fff8ec;
}

.bg-light-danger {
	background-color: #f9e7eb;
}

.bg-light-inverse {
	background-color: #f6f6f6;
}

.bg-white {
	background-color: #ffffff;
}

.bg-grey {
	background-color: #e9ecef;
}

.bg-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 200px;
}

/*******************
Rounds
*******************/
.rounded {
	border-radius: 8px!important;
}

.rounded-lg {
	border-radius: 16px!important;
}

.round {
	line-height: 48px;
	color: #ffffff;
	width: 50px;
	height: 50px;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	border-radius: 100%;
	background: #188ef4;
}
	.round img {
	border-radius: 100%;
}

.round-lg {
	line-height: 65px;
	width: 60px;
	height: 60px;
	font-size: 30px;
}

.round.round-info {
	background: #188ef4;
}

.round.round-warning {
	background: #fec500;
}

.round.round-danger {
	background: #ff4d7e;
}

.round.round-success {
	background: #2cdd9b;
}

.round.round-primary {
	background: #316ce8;
}

/*******************
Labels
*******************/
.label {
	padding: 3px 15px;
	line-height: 13px;
	color: #ffffff;
	font-weight: 400;
	border-radius: 4px;
	font-size: 75%;
}

.label-rounded {
	border-radius: 60px;
}

.label-custom {
	background-color: #1dc8cd;
}

.label-success {
	background-color: #2cdd9b;
}

.label-info {
	background-color: #188ef4;
}

.label-warning {
	background-color: #fec500;
}

.label-danger {
	background-color: #ff4d7e;
}

.label-megna {
	background-color: #1dc8cd;
}

.label-primary {
	background-color: #316ce8;
}

.label-purple {
	background-color: #7460ee;
}

.label-red {
	background-color: #fb3a3a;
}

.label-inverse {
	background-color: #3e4555;
}

.label-default {
	background-color: #f4f8fa;
}

.label-white {
	background-color: #ffffff;
}

.label-light-success {
	background-color: #e8fdeb;
	color: #2cdd9b;
}

.label-light-info {
	background-color: #cfecfe;
	color: #188ef4;
}

.label-light-warning {
	background-color: #fff8ec;
	color: #fec500;
}

.label-light-danger {
	background-color: #f9e7eb;
	color: #ff4d7e;
}

.label-light-megna {
	background-color: #e0f2f4;
	color: #1dc8cd;
}

.label-light-primary {
	background-color: #f1effd;
	color: #316ce8;
}

.label-light-inverse {
	background-color: #f6f6f6;
	color: #3e4555;
}

/*******************
 Badge
******************/
.badge {
	font-size: 14px;
	font-weight: 400;
	padding: 0.5rem;
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
}

.badge-xs {
	font-size: 9px;
}

.badge-xs,
.badge-sm {
	transform: translate(0, -2px);
}

.badge-success {
	background-color: #2cdd9b;
}

.badge-info {
	background-color: #188ef4;
}

.badge-primary {
	background-color: #316ce8;
}

.badge-blue {
	color: #ffffff;
    background-color: var(--color-accent-blue);
}

.badge-warning {
	background-color: #fec500;
}

.badge-danger {
	background-color: #f52828;
}

.badge-purple {
	background-color: #7460ee;
}

.badge-red {
	background-color: #fb3a3a;
}

.badge-inverse {
	background-color: #3e4555;
}

/*******************
List-style-none
******************/
ul.list-style-none {
	margin: 0px;
	padding: 0px;
}

ul.list-style-none li {
	list-style: none;
}

ul.list-style-none li a {
	color: #8d97ad;
	padding: 8px 0px;
	display: block;
	text-decoration: none;
}

ul.list-style-none li a:hover {
		color: #316ce8;
}

.list-dots {
	margin: 0;
	margin-bottom: 24px;
	padding: 0;
	list-style: none;
}

.list-dots li {
	position: relative;
	list-style: none;
	margin: 0 0 12px;
	padding-left: 20px;
}

.list-dots li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 7px;
	height: 7px;
	background-color: var(--color-primary);
}

.list-dots.text-sm li:before {
	top: 6px;
}

.list-dash {
	margin: 0;
	margin-bottom: 24px;
	padding: 0;
	list-style: none;
}

.list-dash li {
	position: relative;
	list-style: none;
	margin: 0 0 12px;
	padding-left: 24px;
}

.list-dash li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 2px;
	background-color: var(--color-primary);
}

.list-dash.text-sm li:before {
	top: 8px;
}

/*******************
dropdown-item
******************/
.dropdown-item {
	padding: 0.375rem 1rem;
	color: inherit;
	white-space: normal;
}

.dropdown-title {
	font-family: var(--font-2);
	font-size: 18px;
	font-weight: 600;
}

/*******************
Buttons
******************/
.btn {
	font-family: var(--font-2);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	color: #ffffff;
	padding: 12px 30px;
	cursor: pointer;
	border-radius: 50px;
}
.btn:hover {
	color: #ffffff;
}
.btn:focus {
	box-shadow: none;
}

.btn-link {
	box-shadow: none;
	color: #263238;
	padding: 10px 15px;
}
.btn-link .underline {
	border-bottom: 1px solid #263238;
}
.btn-link:hover {
	color: #2cdd9b;
}

.btn-light {
	color: #263238;
	background-color: #f4f8fa;
}
.btn-light:hover {
	background: #263238;
	color: #ffffff;
	border-color: #263238;
}

.btn-lg {
	padding: .75rem 1.5rem;
	font-size: 16px;
}

.btn-huge {
	padding: 1.5rem 3rem;
	font-size: 16px;
}

.btn-md {
	padding: 15px 40px;
	font-size: 16px;
}

.btn-sm {
	padding: 9px 16px;
	font-size: 13px;
}

.btn-xs {
	padding: .25rem .5rem;
	font-size: 10px;
}

.btn-circle {
	border-radius: 100%;
	display: flex;
	padding: 0;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
}

.btn-circle.btn-md {
	padding: 22px 25px;
}

.btn-circle.btn-sm {
	width: 35px;
	height: 35px;
	padding: 8px 10px;
	font-size: 14px;
}

.btn-circle.btn-lg {
	width: 60px;
	height: 60px;
	padding-bottom: 4px;
	font-size: 32px;
	line-height: 1;
}

.btn-circle.btn-xl {
	width: 72px;
	height: 72px;
	font-size: 24px;
}

.btn-rounded {
	border-radius: 60px;
}

.btn-arrow {
	position: relative;
}
.btn-arrow span {
	display: inline-block;
	position: relative;
	transition: all 300ms ease-out;
	will-change: transform;
}
.btn-arrow:hover span, .btn-arrow:focus span {
	transform: translate3d(-0.625rem, 0, 0);
}
.btn-arrow i {
	font-size: 24px;
	position: absolute;
	width: 1.2rem;
	right: 0px;
	right: 0rem;
	opacity: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 300ms ease-out;
	will-change: right, opacity;
}

.btn-arrow:hover i, .btn-arrow:focus i {
	opacity: 1;
	right: -1.625rem;
}

.btn-white {
	background-color: #ffffff;
	color: var(--color-text-primary);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	background-color: var(--color-text-primary);
	color: #ffffff;
}

.btn-secondary,
.btn-secondary.disabled {
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
	background-color: #8d97ad;
	border-color: #8d97ad;
	color: #ffffff;
}
	.btn-secondary:hover,
	.btn-secondary.disabled:hover {
	color: #ffffff !important;
	background-color: #737c8e;
	border-color: #737c8e;
}
	.btn-secondary.active,
	.btn-secondary:active,
	.btn-secondary:focus,
	.btn-secondary.disabled.active,
	.btn-secondary.disabled:active,
	.btn-secondary.disabled:focus {
	color: #ffffff !important;
	background: #737c8e;
	border-color: #737c8e;
}

.btn-primary,
.btn-primary.disabled {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-primary:hover,
	.btn-primary.disabled:hover {
	background: var(--color-primary-dark);
	border: 1px solid var(--color-primary-dark);
}
	.btn-primary.active, .btn-primary:active, .btn-primary:focus,
	.btn-primary.disabled.active,
	.btn-primary.disabled:active,
	.btn-primary.disabled:focus {
	background: var(--color-primary-dark);
}


@keyframes btn-primary-gradient {
	0% {
	background-position: 100% 50%;
	}
	100% {
	background-position: 0% 50%;
	}
}

@keyframes btn-primary-gradient-hover {
	0% {
	background-position: 0% 50%;
	}
	100% {
	background-position: 100% 50%;
	}
}

.btn-primary-gradient {
	position: relative;
	background: var(--color-primary);
	background: linear-gradient(115deg, var(--color-accent-blue) 0, var(--color-primary) 50%, var(--color-accent-blue) 100%);
	background-size: 200% 200%;
	background-position: 0% 50%;
	border: none;
	color: #fff;
	animation: btn-primary-gradient 0.3s ease;
}
.btn-primary-gradient:hover {
	color: #fff;
	background-position: 100% 50%;
	animation: btn-primary-gradient-hover 0.3s ease;
}

.btn-primary-gradient:focus,
.btn-primary-gradient:active {
	color: #fff;
	background: var(--color-primary);
}

.btn-success,
.btn-success.disabled {
	background: #2cdd9b;
	border: 1px solid #2cdd9b;
}
	.btn-success:hover,
	.btn-success.disabled:hover {
	background: #1dc8cc;
	border: 1px solid #1dc8cc;
}
	.btn-success.active, .btn-success:active, .btn-success:focus,
	.btn-success.disabled.active,
	.btn-success.disabled:active,
	.btn-success.disabled:focus {
	background: #1dc8cc;
}

.btn-info,
.btn-info.disabled {
	background: #188ef4;
	border: 1px solid #188ef4;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-info:hover,
	.btn-info.disabled:hover {
	background: #2c73cb;
	border: 1px solid #2c73cb;
}
	.btn-info.active, .btn-info:active, .btn-info:focus,
	.btn-info.disabled.active,
	.btn-info.disabled:active,
	.btn-info.disabled:focus {
	background: #2c73cb;
}

.btn-warning,
.btn-warning.disabled {
	background: #fec500;
	color: #ffffff;
	border: 1px solid #fec500;
}
	.btn-warning:hover,
	.btn-warning.disabled:hover {
	background: #dcaf17;
	color: #ffffff;
	border: 1px solid #dcaf17;
}
	.btn-warning.active, .btn-warning:active, .btn-warning:focus,
	.btn-warning.disabled.active,
	.btn-warning.disabled:active,
	.btn-warning.disabled:focus {
	background: #dcaf17;
	color: #ffffff;
}

.btn-danger,
.btn-danger.disabled {
	background: #ff4d7e;
	border: 1px solid #ff4d7e;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-danger:hover,
	.btn-danger.disabled:hover {
	background: #d73e6b;
	border: 1px solid #d73e6b;
}
	.btn-danger.active, .btn-danger:active, .btn-danger:focus,
	.btn-danger.disabled.active,
	.btn-danger.disabled:active,
	.btn-danger.disabled:focus {
	background: #d73e6b;
}

.btn-inverse,
.btn-inverse.disabled {
	background: #3e4555;
	border: 1px solid #3e4555;
	color: #ffffff;
}
	.btn-inverse:hover,
	.btn-inverse.disabled:hover {
	background: #232a37;
	color: #ffffff;
	border: 1px solid #232a37;
}
	.btn-inverse.active, .btn-inverse:active, .btn-inverse:focus,
	.btn-inverse.disabled.active,
	.btn-inverse.disabled:active,
	.btn-inverse.disabled:focus {
	background: #232a37;
	color: #ffffff;
}

.btn-red,
.btn-red.disabled {
	background: #fb3a3a;
	border: 1px solid #fb3a3a;
	color: #ffffff;
}
	.btn-red:hover,
	.btn-red.disabled:hover {
	border: 1px solid #d61f1f;
	background: #d61f1f;
}
	.btn-red.active, .btn-red:active, .btn-red:focus,
	.btn-red.disabled.active,
	.btn-red.disabled:active,
	.btn-red.disabled:focus {
	background: #d73e6b;
}

.btn-success-gradient {
	background: #2cdd9b;
	background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
	background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
	background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
	background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
	border: 0px;
}
	.btn-success-gradient:hover {
	background: #1dc8cc;
	background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cc 0%, #2cdd9b 100%);
	background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(#2cdd9b));
	background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
	background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
	background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);
}
	.btn-success-gradient.active, .btn-success-gradient:active, .btn-success-gradient:focus {
	-webkit-box-shadow: 0px;
	box-shadow: 0px;
	opacity: 1;
}

.btn-danger-gradient {
	background: #ff4d7e;
	background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
	background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
	background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
	background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
	background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
	border: 0px;
}
.btn-danger-gradient:hover {
	background: #ff6a5b;
	background: -webkit-linear-gradient(legacy-direction(to right), #ff6a5b 0%, #ff4d7e 100%);
	background: -webkit-gradient(linear, left top, right top, from(#ff6a5b), to(#ff4d7e));
	background: -webkit-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
	background: -o-linear-gradient(left, #ff6a5b 0%, #ff4d7e 100%);
	background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}
.btn-danger-gradient.active, .btn-danger-gradient:active, .btn-danger-gradient:focus {
	-webkit-box-shadow: 0px;
	box-shadow: 0px;
	opacity: 1;
}

.btn-outline-secondary {
	color: #727b84;
	border: 2px solid #8d97ad;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.btn-outline-secondary.active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
	background: #263238;
}

.btn-outline-primary {
	color: var(--color-primary);
	background-color: transparent;
	border: 2px solid var(--color-primary);
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.focus {
	background: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
}

.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus {
	background: var(--color-primary);
}

.btn-outline-light {
	color: var(--color-bg-light);
	background-color: transparent;
	border: 2px solid var(--color-bg-light);
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.focus {
	background: var(--color-bg-light);
	color: var(--color-text);
	border-color: var(--color-bg-light);
}

.btn-outline-success, a.btn-outline-success {
	color: #2cdd9b;
	background-color: transparent;
	border-color: #2cdd9b;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success.focus, a.btn-outline-success:hover, a.btn-outline-success:focus, a.btn-outline-success.focus {
	background: #2cdd9b;
	border-color: #2cdd9b;
	color: #ffffff;
}

.btn-outline-success.active, .btn-outline-success:active, .btn-outline-success:focus, a.btn-outline-success.active, a.btn-outline-success:active, a.btn-outline-success:focus {
	background: #1dc8cc;
}

.btn-outline-info {
	color: #188ef4;
	background-color: transparent;
	border-color: #188ef4;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info.focus {
	background: #188ef4;
	border-color: #188ef4;
	color: #ffffff;
}
	.btn-outline-info.active, .btn-outline-info:active, .btn-outline-info:focus {
	background: #2c73cb;
}

.btn-outline-warning {
	color: #fec500;
	background-color: transparent;
	border-color: #fec500;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning.focus {
	background: #fec500;
	border-color: #fec500;
	color: #ffffff;
}
	.btn-outline-warning.active, .btn-outline-warning:active, .btn-outline-warning:focus {
	background: #dcaf17;
}

.btn-outline-danger {
	color: #ff4d7e;
	background-color: transparent;
	border-color: #ff4d7e;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger.focus {
	background: #ff4d7e;
	border-color: #ff4d7e;
	color: #ffffff;
}
	.btn-outline-danger.active, .btn-outline-danger:active, .btn-outline-danger:focus {
	background: #d73e6b;
}

.btn-outline-red {
	color: #fb3a3a;
	background-color: transparent;
	border-color: #fb3a3a;
}
	.btn-outline-red:hover, .btn-outline-red:focus, .btn-outline-red.focus {
	background: #fb3a3a;
	border-color: #fb3a3a;
	color: #ffffff;
}
	.btn-outline-red.active, .btn-outline-red:active, .btn-outline-red:focus {
	background: #d73e6b;
}

.btn-outline-inverse {
	color: #3e4555;
	background-color: transparent;
	border-color: #3e4555;
}
	.btn-outline-inverse:hover, .btn-outline-inverse:focus, .btn-outline-inverse.focus {
	background: #3e4555;
	border-color: #3e4555;
	color: #ffffff;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
	background-color: #345bcb;
	border: 1px solid #345bcb;
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success.focus:active,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover,
.btn-success.focus,
.btn-success:focus {
	background-color: #1dc8cc;
	border: 1px solid #1dc8cc;
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info.focus:active,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info.focus,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info:hover,
.btn-info.focus,
.btn-info:focus {
	background-color: #2c73cb;
	border: 1px solid #2c73cb;
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning.focus:active,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning.focus,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning.focus,
.btn-warning:focus {
	background-color: #dcaf17;
	border: 1px solid #dcaf17;
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger.focus:active,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger.focus,
.open > .dropdown-toggle.btn-danger:focus,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger.focus,
.btn-danger:focus {
	background-color: #d73e6b;
	border: 1px solid #d73e6b;
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.focus,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse:hover,
.open > .dropdown-toggle.btn-inverse {
	background-color: #232a37;
	border: 1px solid #232a37;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active,
.btn-red.focus,
.btn-red:active,
.btn-red:focus,
.btn-red:hover,
.open > .dropdown-toggle.btn-red {
	background-color: #d61f1f;
	border: 1px solid #d61f1f;
	color: #ffffff;
}

.btn span.btn-devider {
	display: inline-block;
	padding-left: 10px;
}

/*-------------------*/
/*On off switch*/
/*-------------------*/
.onoffswitch {
	position: relative;
	width: 70px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	margin: 0 auto;
}

.onoffswitch-checkbox {
	display: none;
}

.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 20px;
}

.onoffswitch-inner {
	display: block;
	width: 200%;
	margin-left: -100%;
	-webkit-transition: margin 0.3s ease-in 0s;
	-o-transition: margin 0.3s ease-in 0s;
	transition: margin 0.3s ease-in 0s;
}
	.onoffswitch-inner:before, .onoffswitch-inner:after {
	display: block;
	float: left;
	width: 50%;
	height: 30px;
	padding: 0;
	line-height: 30px;
	font-size: 14px;
	color: white;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
	.onoffswitch-inner:before {
	content: "";
	padding-right: 27px;
	background-color: #2cdd9b;
	color: #FFFFFF;
}
	.onoffswitch-inner:after {
	content: "";
	padding-right: 24px;
	background-color: #3e4555;
	color: #999999;
	text-align: right;
}

.onoffswitch-switch {
	display: block;
	width: 23px;
	margin: 6px;
	background: #FFFFFF;
	height: 23px;
	position: absolute;
	top: -1px;
	bottom: 0;
	right: 35px;
	border-radius: 20px;
	-webkit-transition: all 0.3s ease-in 0s;
	-o-transition: all 0.3s ease-in 0s;
	transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
	margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
	right: 0px;
}

/*-------------------*/
/*Bootstrap 4 hack*/
/*-------------------*/
.card-columns {
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}
	.card-columns .card {
	margin-bottom: 30px;
}

.invisible {
	visibility: hidden !important;
}

.hidden-xs-up {
	display: none !important;
}

@media (max-width: 575px) {
	.hidden-xs-down {
	display: none !important;
} }

@media (min-width: 576px) {
	.hidden-sm-up {
	display: none !important;
} }

@media (max-width: 767px) {
	.hidden-sm-down {
	display: none !important;
} }

@media (min-width: 768px) {
	.hidden-md-up {
	display: none !important;
} }

@media (max-width: 991px) {
	.hidden-md-down {
	display: none !important;
} }

@media (min-width: 992px) {
	.hidden-lg-up {
	display: none !important;
} }

@media (max-width: 1199px) {
	.hidden-lg-down {
	display: none !important;
} }

@media (min-width: 1200px) {
	.hidden-xl-up {
	display: none !important;
} }

.hidden-xl-down {
	display: none !important;
}

/*
// 05.Loader
*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top left, var(--color-accent-blue) 0%, var(--color-primary) 100%);
	z-index: 9999999;
}

#preloader #status {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-100%, -50%);
}

.spinner {
	margin: 100px auto;
	width: 40px;
	height: 40px;
	position: relative;
	text-align: center;
}

.dot1, .dot2 {
	width: 100%;
	height: 100%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: sk-bounce 1.2s infinite ease-in-out;
	animation: sk-bounce 1.2s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
	100% {
	-webkit-transform: rotate(360deg);
	}
}

@keyframes sk-rotate {
	100% {
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	}
}

@-webkit-keyframes sk-bounce {
	0%, 100% {
	-webkit-transform: scale(0);
	opacity: 0;
	}
	50% {
	-webkit-transform: scale(1);
	opacity: 1;
	}
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0);
	-webkit-transform: scale(0);
	opacity: 0;
	}
	50% {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	}
}


/******************* 
Topbar
*******************/
.topbar {
	position: fixed;
	z-index: 20;
	top: 0;
	width: 100%;
	padding: 0px;
	background: #ffffff;
	transition: 0.2s ease-in;
}

/*******************
This is for Header
*******************/
.site-header .header-nav {
	padding: 8px 0;
}

.site-header .header-nav .call-info {
	padding-left: 20px;
	border-left: 1px solid rgba(120, 130, 140, 0.13);
}

.site-header .header-nav .navbar-nav {
	color: #8d97ad;
}

.site-header .header-nav .navbar-nav .nav-item {
	margin: 0 15px;
}

.site-header .header-nav .navbar-nav .nav-item .nav-link {
	color: #232a37;
	padding: 10px 0;
	display: block;
	font-family: var(--font-2);
	font-size: 18px;
	font-weight: 600;
}

.site-header .header-nav .navbar-nav .nav-item:hover .nav-link,
.site-header .header-nav .navbar-nav .nav-item.active .nav-link {
	color: #06a7fd;
}

@media (min-width: 992.02px) and (max-width: 1200px) {
    .site-header .header-nav .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
}

.site-header .header-nav .navbar-brand {
	padding: 10px 0;
}

.site-header .header-nav .navbar-brand img {
	width: 110px;
	transition: 0.2s ease-in;
}

.site-header .header-nav .navbar-brand-right {
	margin-left: 1rem;
}

.site-header .header-nav .navbar-brand-right img {
	width: auto;
	height: 27px;
}

.site-header .header-topbar {
	border-bottom: 1px solid rgba(120, 130, 140, 0.13);
	transition: 0.3s;
}

.site-header .header-topbar .navbar-nav {
	align-items: center;
	padding: 12px 0;
}

.site-header .header-topbar .navbar-nav.dir-col {
	flex-direction: column;
	align-items: flex-start;
}

.site-header .header-topbar .navbar-brand {
	font-size: 14px;
	color: #8d97ad;
	padding-left: 15px;
}

.site-header .header-topbar .navbar {
	padding: 0;
}

.site-header .header-topbar .navbar .search-box {
	padding: 15px;
	width: 240px;
}

.site-header .header-topbar .navbar .nav-item {
	padding: 0;
	color: #8d97ad;
}

.site-header .header-topbar .navbar .nav-item .nav-link.inline {
	color: #232a37;
	display: inline-block;
	padding: 0 0.5rem 0 0;
}

.site-header .header-topbar .navbar .nav-item .nav-link:first-child {
	padding-left: 0px;
}

.site-header .header-topbar .navbar .nav-item:hover .nav-link {
	/*color: #06a7fd;*/
}

.burger {
	font-size: 24px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	position: relative;
	padding: 0;
}

.burger:before,
.burger span,
.burger:after {
	width: 100%;
	height: 2px;
	display: block;
	background: #000;
	border-radius: 2px;
	position: absolute;
	opacity: 1;
}

.burger:before,
.burger:after {
	content: "";
}

.burger:before {
	top: 5px;
}

.burger span {
	top: 15px;
}

.burger:after {
	top: 25px;
	width: 75%;
}


@media (max-width: 767px) {
	.site-header .header-nav {
		padding: 10px 0;
	}
	.site-header .header-nav .navbar-brand {
		padding: 0;
	}
	.site-header .header-nav .navbar-nav {
		border-top: 1px solid rgba(120, 130, 140, 0.13);
		padding-top: 10px;
		margin-top: 20px;
	}
	.site-header .header-nav .navbar-nav .nav-item {
	    margin: 5px 15px;
	}
	.site-header .header-nav .navbar-collapse .ml-auto {
	    border-top: 1px solid rgba(120, 130, 140, 0.13);
        padding-top: 20px;
        margin: 10px 0;
	}
	.header-topbar .container {
		padding: 0;
	}
	.site-header .header-topbar .navbar {
		padding: 10px 0;
	}
	.site-header .header-topbar .navbar-nav {
		border-top: 1px solid rgba(120, 130, 140, 0.13);
	}
	.site-header .header-topbar .navbar .nav-item {
		padding: 5px 0;
	}
	.site-header .header-topbar .navbar-nav.dir-col {
		align-items: center;
		margin-top: 10px;
	}
	.site-header .header-nav .navbar-nav .nav-item .nav-link {
		margin-left: 0;
	}
}

/******************* 
Topbar Fixed
*******************/
.topbar.fixed-header {
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	transition: 0.2s ease-in;
}

.topbar.fixed-header .header-topbar {
	height: 0;
	opacity: 0;
}

.topbar.fixed-header .navbar .navbar-brand img {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1, 1);
	transition: 0.2s ease-in;
}

/******************* 
Main & Page wrapper
*******************/
#main-wrapper {
	overflow: hidden;
}

/******************* 
container fluid
*******************/
@media (min-width: 992px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1280px;
	}
}
.container-fluid {
	padding: 0px;
}

/******************* 
footer
*******************/
.footer {
	padding: 20px 0;
	text-align: center;
}

/******************* 
Fix-width
*******************/
.fix-width {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

/******************* 
Spacer
*******************/
.spacer {
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}

.mini-spacer {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

/******************* 
Title
*******************/
.title {
	margin: 0 0 16px;
}

/******************* 
Subtitle
*******************/
.subtitle {
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

/******************* 
card
*******************/
.card {
	border: 0px;
	border-radius: 0;
	margin: 0;
	padding: 32px;
	transition: all 0.3s;
}
.card.card-shadow {
	-webkit-box-shadow: 0px 0px 24px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 0px 24px rgba(115, 128, 157, 0.1);
}

.card-group .card {
	border: 1px solid rgba(120, 130, 140, 0.13);
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.card-body {
			padding: 0;
	}
}
.card p:last-child {
	margin-bottom: 0;
}

/******************* 
Icon space
*******************/
.icon-space {
	margin: 20px 0;
}

.link-cover {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.linking {
	color: #3e4555;
}
.linking i {
	font-size: 14px;
	margin-left: 10px;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
.linking:hover {
	color: #316ce8;
}
.linking:hover i {
		margin-left: 15px;
}

/******************* 
Listing
*******************/
.list-block {
	margin: 0px;
	padding: 0px;
}
	.list-block li {
	list-style: none;
	padding: 10px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
	.list-block li i {
		margin-right: 10px;
		-webkit-flex-shrink: 0px;
		-ms-flex-negative: 0px;
		flex-shrink: 0px;
		margin-top: 3px;
}
	.list-block.with-underline li {
	border-bottom: 1px solid rgba(120, 130, 140, 0.13);
	padding: 15px 0;
}

.list-check {
	margin: 0px;
	padding: 0px;
}

.list-check li {
	position: relative;
	list-style: none;
	margin: 20px 0;
	padding-left: 46px;
}

.list-check li:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--color-accent-cyan);
	background-position: 50% 50%;
	background-image: url(../phg/images/icon-check.svg);
	background-size: 20px;
	background-repeat: no-repeat;
}


/******************* 
Listing
*******************/
.img-inline {
	margin: 0px;
	padding: 0px;
}
	.img-inline li {
	list-style: none;
}
	.img-inline li.half-width {
		width: 49%;
		display: inline-block;
		vertical-align: top;
}

/******************* 
Image shadow
*******************/
.img-shadow {
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}

.icon-round {
	width: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
}

.no-shrink {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

/******************* 
up section
*******************/
.up {
	z-index: 10;
	position: relative;
}

.bt-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	visibility: hidden;
}

/******************* 
both space
*******************/
.both-space {
	margin: 80px 0;
}

/******************* 
Side text content
*******************/
.side-content {
	padding: 40px 60px;
}

/******************* 
background cover
*******************/
.bg-cover {
	background-size: cover;
	min-height: 200px;
}

/******************* 
Owl carousel
*******************/
#heroSync1 {
	display: block;
	width: 100%;
}
	#heroSync1 .owl-stage-outer {
	position: relative;
	overflow: hidden;
}
	#heroSync1 .owl-stage {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
}
	#heroSync1 .owl-item {
	float: none;
	flex-grow: 1;
	width: 100%;
}
	.owl-carousel .owl-nav.disabled {
	display: none;
}

/******************* 
Max width
*******************/
.max-300 {
	max-width: 300px;
}

.max-400 {
	max-width: 400px;
}

.max-500 {
	max-width: 500px;
}

.max-600 {
	max-width: 600px;
}

/******************* 
line sticks
*******************/
.stick-bottom {
	position: relative;
	margin-bottom: 30px;
}
.stick-bottom > span {
	width: 30px;
	height: 2px;
	position: absolute;
	bottom: -7px;
	left: 0px;
	display: inline-block;
}

/******************* 
 Position
*******************/
.position-absolute {
	position: absolute;
}

.position-relative {
	position: relative;
}


/*************
 Dropdown
*************/
.navbar-nav .dropdown-toggle::after {
	display: none;
}

.navbar-nav .dropdown-menu.b-none {
	border: 0px;
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.navbar-nav {
	font-weight: 400;
}

.navbar-nav .dropdown-menu.b-none {
	border: 0px;
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.pre-scroll {
	position: relative;
}

.mega-dropdown {
	position: static;
}
	.mega-dropdown .dropdown-menu {
	width: 100%;
	padding: 30px;
	margin-top: 0px;
	overflow: hidden;
}
	.mega-dropdown .list-style-none {
	font-size: 14px;
}
	.mega-dropdown .inside-bg {
	margin: -30px 0 -30px -30px;
}
	.mega-dropdown .inside-bg-right {
	margin: -30px -30px -30px 0;
}
	.mega-dropdown .bg-img {
	background-size: cover;
	height: 100%;
	padding: 30px;
}
	.mega-dropdown h6 {
	margin: 15px 0;
	font-size: 15px;
}

/*************
 General Listing
*************/
.general-listing {
	padding: 0px;
	margin: 0px;
}
	.general-listing li {
	list-style: none;
}
	.general-listing li a {
		color: #8d97ad;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		padding: 10px 0;
		-webkit-transition: 0.2s ease-in;
		-o-transition: 0.2s ease-in;
		transition: 0.2s ease-in;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
}
	.general-listing li:hover a {
		color: #316ce8;
		padding-left: 10px;
}
	.general-listing li i {
		margin-right: 7px;
		vertical-align: middle;
}
	.general-listing.two-part li {
	width: 49%;
	display: inline-block;
}
	.general-listing.only-li li {
	padding: 5px 0;
}

/*************/
/* form dark*/
/*************/
.form-control-dark {
	background: rgba(120, 130, 140, 0.13);
	color: #ffffff;
	border-color: rgba(120, 130, 140, 0.13);
}
	.form-control-dark:focus {
	background: rgba(120, 130, 140, 0.13);
	color: #ffffff;
}

/*************/
/* social-round */
/*************/
.round-social a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	border-radius: 100%;
	margin: 0 5px;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	.round-social a:hover {
	-webkit-transform: translate3d(0px, -5px, 0px);
	transform: translate3d(0px, -5px, 0px);
}

.round-social.light a {
	color: #263238;
	background: #f4f8fa;
}

.round-social.light a:hover {
	background: #263238;
	color: #ffffff;
}

/*************/
/* Form Banner */
/*************/
.banner {
	position: relative;
	max-height: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	display: table;
}
	.banner .banner-content {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

@media (max-width: 992px) {
	.banner {
	height: auto !important;
	padding: 100px 0;
} }

@media (max-width: 767px) {
	.banner {
	padding: 30px 0;
} }

.form-control {
	padding: .75rem;
	border: 2px solid rgba(120, 130, 140, 0.13);
}

select.form-control:not([size]):not([multiple]) {
	height: calc(2.25rem + 12px);
}

/*******************
UI-Elements
******************/
/*******************
Buttons
******************/
.button-group .btn {
	margin-bottom: 7px;
}

/*******************
Grid page
******************/
.show-grid {
	margin-bottom: 10px;
	padding: 0 15px;
}

.show-grid [class^=col-] {
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid rgba(120, 130, 140, 0.13);
	background-color: #f4f8fa;
}

/*******************
list and media
******************/
.list-group a.list-group-item:hover {
	background: #f4f8fa;
}

.list-group-item.active,
.list-group .list-group-item.active:hover {
	background: #316ce8;
	border-color: #316ce8;
}

.list-group-item.disabled {
	color: #8d97ad;
	background: #f4f8fa;
}

.media {
	border: 1px solid rgba(120, 130, 140, 0.13);
	margin-bottom: 10px;
	padding: 15px;
}

/*******************
Notification page Jquery toaster
******************/
.alert-rounded {
	border-radius: 60px;
}

/*******************
Progress bar
******************/
.progress.active .progress-bar,
.progress-bar.active {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
}

.progress-vertical {
	min-height: 250px;
	height: 250px;
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	margin-right: 20px;
}

.progress-vertical-bottom {
	min-height: 250px;
	height: 250px;
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	margin-right: 20px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.progress-animated {
	-webkit-animation-duration: 5s;
	-webkit-animation-name: myanimation;
	-webkit-transition: 5s all;
	animation-duration: 5s;
	animation-name: myanimation;
	-o-transition: 5s all;
	transition: 5s all;
}

@-webkit-keyframes myanimation {
	from {
	width: 0;
} }

@keyframes myanimation {
	from {
	width: 0;
} }

/*******************
Vertical tabs
******************/
.vtabs {
	display: table;
}
	.vtabs .tabs-vertical {
	width: 150px;
	border-bottom: 0px;
	border-right: 1px solid rgba(120, 130, 140, 0.13);
	display: table-cell;
	vertical-align: top;
}
	.vtabs .tabs-vertical li .nav-link {
		color: #263238;
		margin-bottom: 10px;
		border: 0px;
		border-radius: 4px 0 0 4px;
}
	.vtabs .tab-content {
	display: table-cell;
	padding: 20px;
	vertical-align: top;
}

.tabs-vertical li .nav-link.active,
.tabs-vertical li .nav-link:hover,
.tabs-vertical li .nav-link.active:focus {
	background: #316ce8;
	border: 0px;
	color: #ffffff;
}

/*Custom vertical tab*/
.customvtab .tabs-vertical li .nav-link.active,
.customvtab .tabs-vertical li .nav-link:hover,
.customvtab .tabs-vertical li .nav-link:focus {
	background: #ffffff;
	border: 0px;
	border-right: 2px solid #316ce8;
	margin-right: -1px;
	color: #316ce8;
}

.tabcontent-border {
	border: 1px solid #ddd;
	border-top: 0px;
}

.customtab2 li a.nav-link {
	border: 0px;
	margin-right: 3px;
	color: #8d97ad;
}
	.customtab2 li a.nav-link.active {
	background: #316ce8;
	color: #ffffff;
}
	.customtab2 li a.nav-link:hover {
	color: #ffffff;
	background: #316ce8;
}

/*******************
Timeline page
******************/
.timeline {
	position: relative;
	padding: 20px 0 20px;
	list-style: none;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline:before {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	margin-left: -1.5px;
	background-color: #f4f8fa;
}

.timeline > li {
	position: relative;
	margin-bottom: 20px;
}

.timeline > li:before,
.timeline > li:after {
	content: " ";
	display: table;
}

.timeline > li:after {
	clear: both;
}

.timeline > li:before,
.timeline > li:after {
	content: " ";
	display: table;
}

.timeline > li:after {
	clear: both;
}

.timeline > li > .timeline-panel {
	float: left;
	position: relative;
	width: 46%;
	padding: 20px;
	border: 1px solid rgba(120, 130, 140, 0.13);
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.timeline > li > .timeline-panel:before {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 26px;
	right: -8px;
	border-top: 8px solid transparent;
	border-right: 0 solid rgba(120, 130, 140, 0.13);
	border-bottom: 8px solid transparent;
	border-left: 8px solid rgba(120, 130, 140, 0.13);
}

.timeline > li > .timeline-panel:after {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 27px;
	right: -7px;
	border-top: 7px solid transparent;
	border-right: 0 solid #ffffff;
	border-bottom: 7px solid transparent;
	border-left: 7px solid #ffffff;
}

.timeline > li > .timeline-badge {
	z-index: 10;
	position: absolute;
	top: 16px;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	border-radius: 50% 50% 50% 50%;
	text-align: center;
	font-size: 1.4em;
	line-height: 46px;
	color: #fff;
	overflow: hidden;
}

.timeline > li.timeline-inverted > .timeline-panel {
	float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
	right: auto;
	left: -8px;
	border-right-width: 8px;
	border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
	right: auto;
	left: -7px;
	border-right-width: 7px;
	border-left-width: 0;
}

.timeline-badge.primary {
	background-color: #316ce8;
}

.timeline-badge.success {
	background-color: #2cdd9b;
}

.timeline-badge.warning {
	background-color: #fec500;
}

.timeline-badge.danger {
	background-color: #ff4d7e;
}

.timeline-badge.info {
	background-color: #188ef4;
}

.timeline-title {
	margin-top: 0;
	color: inherit;
	font-weight: 400;
}

.timeline-body > p,
.timeline-body > ul {
	margin-bottom: 0;
}

.timeline-body > p + p {
	margin-top: 5px;
}

/*============================================================== 
 Ui-bootstrap
 ============================================================== */
ul.list-icons {
	margin: 0px;
	padding: 0px;
}
	ul.list-icons li {
	list-style: none;
	line-height: 30px;
	margin: 5px 0;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
	ul.list-icons li a {
		color: #8d97ad;
}
		ul.list-icons li a:hover {
		color: #316ce8;
}
	ul.list-icons li i {
		font-size: 13px;
		padding-right: 8px;
}

ul.list-inline li {
	display: inline-block;
}
	ul.list-inline li:first-child {
	padding-left: 0px;
}
	ul.list-inline li a {
	color: #8d97ad;
}
	ul.list-inline li a:hover {
		color: #316ce8;
}

ul.two-part {
	margin: 0px;
}
	ul.two-part li {
	width: 48.8%;
}

/*Accordion*/
html body .accordion .card {
	margin-bottom: 0px;
}

#accordion4 .card-header {
	border: 1px solid rgba(120, 130, 140, 0.13);
	background: transparent;
	margin-bottom: 10px;
}
	#accordion4 .card-header a {
	color: #8d97ad;
}
	#accordion4 .card-header:hover {
	background-color: #188ef4;
	border: 1px solid #188ef4;
}
	#accordion4 .card-header:hover a {
		color: #ffffff;
}

#accordion4 .card.active .card-header {
	background-color: #188ef4;
	border: 1px solid #188ef4;
}
	#accordion4 .card.active .card-header a {
	color: #ffffff;
}

/*===================== 
Breadcrumb
=====================*/
.bc-colored .breadcrumb-item,
.bc-colored .breadcrumb-item a {
	color: #ffffff;
}
	.bc-colored .breadcrumb-item.active,
	.bc-colored .breadcrumb-item a.active {
	opacity: 0.7;
}

.bc-colored .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.4);
}

.breadcrumb {
	margin-bottom: 0px;
}

/*******************
 Card title
*******************/
.card-title {
	font-size: 18px;
}

.card-subtitle {
	color: #8d97ad;
	margin-bottom: 30px;
	font-size: 14px;
}

.card-inverse .card-bodyquote .blockquote-footer,
.card-inverse .card-link,
.card-inverse .card-subtitle,
.card-inverse .card-text {
	color: rgba(255, 255, 255, 0.65);
}

.card-default .card-header {
	background: #ffffff;
	border-bottom: 0px;
}

.card-banner {
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 500px;
}

.card-success {
	background: #2cdd9b;
	border-color: #2cdd9b;
}

.card-danger {
	background: #ff4d7e;
	border-color: #ff4d7e;
}

.card-warning {
	background: #fec500;
	border-color: #fec500;
}

.card-info {
	background: #188ef4;
	border-color: #188ef4;
}

.card-primary {
	background: #316ce8;
	border-color: #316ce8;
}

.card-dark {
	background: #3e4555;
	border-color: #3e4555;
}

.card-megna {
	background: #1dc8cd;
	border-color: #1dc8cd;
}

/*============================================================== 
 Cards page
 ============================================================== */
.card-columns .card {
	margin-bottom: 20px;
}

.collapsing {
	-webkit-transition: height .08s ease;
	-o-transition: height .08s ease;
	transition: height .08s ease;
}

.card-info {
	background: #188ef4;
	border-color: #188ef4;
}

.card-primary {
	background: #316ce8;
	border-color: #316ce8;
}

.card-outline-info {
	border-color: #188ef4;
}
	.card-outline-info .card-header {
	background: #188ef4;
	border-color: #188ef4;
}

.card-outline-inverse {
	border-color: #3e4555;
}
	.card-outline-inverse .card-header {
	background: #3e4555;
	border-color: #3e4555;
}

.card-outline-warning {
	border-color: #fec500;
}
	.card-outline-warning .card-header {
	background: #fec500;
	border-color: #fec500;
}

.card-outline-success {
	border-color: #2cdd9b;
}
	.card-outline-success .card-header {
	background: #2cdd9b;
	border-color: #2cdd9b;
}

.card-outline-danger {
	border-color: #ff4d7e;
}
	.card-outline-danger .card-header {
	background: #ff4d7e;
	border-color: #ff4d7e;
}

.card-outline-primary {
	border-color: #316ce8;
}
	.card-outline-primary .card-header {
	background: #316ce8;
	border-color: #316ce8;
}

/*******************
Custom-select
******************/
.custom-select {
	background: url(../../assets/images/ui/custom-select.png) right 0.75rem center no-repeat;
	border: 2px solid rgba(120, 130, 140, 0.13);
	height: calc(2.25rem + 12px);
}

/*******************
textarea
******************/
textarea {
	resize: none;
}

.form-control-danger,
.form-control-success,
.form-control-warning {
	padding-right: 2.25rem;
	background-repeat: no-repeat;
	background-position: center right .5625rem;
	-webkit-background-size: 1.125rem 1.125rem;
	background-size: 1.125rem 1.125rem;
}

.has-success .col-form-label,
.has-success .custom-control,
.has-success .form-check-label,
.has-success .form-control-feedback,
.has-success .form-control-label {
	color: #2cdd9b;
}

.has-success .form-control-success {
	background-image: url(../../assets/images/ui/success.svg);
}

.has-success .form-control {
	border-color: #2cdd9b;
}

.has-warning .col-form-label,
.has-warning .custom-control,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
	color: #fec500;
}

.has-warning .form-control-warning {
	background-image: url(../../assets/images/ui/warning.svg);
}

.has-warning .form-control {
	border-color: #fec500;
}

.has-danger .col-form-label,
.has-danger .custom-control,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
	color: #ff4d7e;
}

.has-danger .form-control-danger {
	background-image: url(../../assets/images/ui/danger.svg);
}

.has-danger .form-control {
	border-color: #ff4d7e;
}

.input-group-addon [type="radio"]:not(:checked),
.input-group-addon [type="radio"]:checked,
.input-group-addon [type="checkbox"]:not(:checked),
.input-group-addon [type="checkbox"]:checked {
	position: initial;
	opacity: 1;
}

.input-form .btn {
	padding: 14px 12px;
}

.form-control-sm {
	padding: .25rem .5rem;
}

/*******************
custom modals
******************/
.custom-modal .close-btn {
	position: absolute;
	right: 12px;
	top: 10px;
	color: #8d97ad;
	font-size: 25px;
	background: #ffffff;
	width: 20px;
	height: 20px;
	text-align: center;
	display: block;
	border-radius: 100%;
	line-height: 19px;
}

.custom-modal .modal-body {
	overflow: hidden;
}

.custom-modal .modal-bg-img {
	background-size: cover;
	background-position: center center;
	min-height: 300px;
}

.modal1 .modal-bg {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 40px;
}

.modal1 .input-group {
	margin-top: -45px;
}

.modal2 .modal-bg {
	padding: 30px 30px 30px 15px;
}

.modal3 .modal-bg {
	padding: 50px 40px 60px 25px;
}

.modal4 .modal-bg {
	padding: 55px 55px 55px 40px;
}

/*******************
Overlay headers and thrid dropdown
******************/
.header-overlay,
.header-overlay-right {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.header-overlay.bg-image {
	height: 100%;
	background-position: 100% 50%;
	background-size: 1000px;
}
.header-overlay-right.bg-image {
	height: 100%;
	background-position: 120% 0;
	background-size: 700px;
}

/*******************
common-innerpage-banner
*******************/
.banner-innerpage {
	padding: 150px 0 100px;
	background-size: cover;
	background-position: center center;
}
	.banner-innerpage .title {
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
}
	.banner-innerpage .subtitle {
	color: #ffffff;
}

@media (max-width: 900px) {
	.static-slider10 .title {
	font-size: 40px;
	line-height: 45px;
} }

.with-noborder .media {
	border: 0px;
	padding: 0px;
	margin: 50px 0;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #316ce8;
}

/*******************
Footer 4
*******************/
.footer4 .f4-bottom-bar {
	padding-top: 20px;
	margin-top: 20px;
}

.footer4 .round-social.light a {
	width: 34px;
	height: 34px;
	line-height: 34px;
}
	.footer4 .round-social.light a:hover {
	background: #188ef4;
}

/*******************
Modal in center
*******************/
.modal-dialog {
	min-height: calc(100vh - 60px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: auto;
}
	@media (max-width: 768px) {
	.modal-dialog {
		min-height: calc(100vh - 20px);
} }

.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

/*============================================================== 
 For Laptop & above all (1650px) 
 ============================================================== */
/*============================================================== 
 For Laptop & above all (1370px) 
 ============================================================== */
/*-- ============================================================== 
 Small Desktop & above all (1024px) 
 ============================================================== */
@media (min-width: 1024px) {
	.contact4 .contact-box {
	padding: 80px 105px 80px 0px;
}
	.hover-dropdown .navbar-nav > .dropdown:hover > .dropdown-menu {
	display: block;
	margin-top: 0px;
}
	.navbar-nav > .dropdown .dropdown-menu {
	min-width: 300px;
	margin-top: 0px;
}
	.dropdown-submenu:hover > .dropdown-menu {
	display: block;
} }

@media (max-width: 1023px) {
	.d-flex.no-block {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
}
	.wrap-feature30-box {
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
}
	.wrap-feature31-box .right-image,
	.contact4 .right-image,
	.form6 .right-image {
	position: relative;
	bottom: -95px;
}
	.wrap-feature31-box .right-image img,
	.contact4 .right-image img,
	.form6 .right-image img {
		width: 100%;
}
	.contact1 .detail-box {
	margin-top: 40px;
}
	.contact1 .p-r-40 {
	padding-right: 0;
}
	.contact4 .contact-box {
	padding: 40px 0px 40px 0px;
}
	.contact3 .c-detail {
	text-align: center;
}
	.contact3 .c-detail .m-r-20 {
		margin-right: 0;
}
	.contact3 .c-detail h6 {
		margin-top: 20px;
}
	.contact3 .m-l-30 {
	margin-left: 0;
}
	.contact3 .contact-box {
	margin-top: 30px;
}
	.wrap-feature34-box .left-image {
	position: relative;
	top: -90px;
}
	.po-absolute {
	position: relative;
}
	.contact2 .bg-image {
	margin-right: 15px;
	margin-left: 15px;
}

	.topbar.animated {
		-webkit-animation-duration: 0s;
		animation-duration: 0s;
	}
		.topbar.animated.slideInDown {
		-webkit-animation-name: none;
		animation-name: none;
	}
}

/*-- ============================================================== 
 Ipad & above all(768px) 
 ============================================================== */
/*-- ============================================================== 
 Phone and below ipad(767px) 
 ============================================================== */
@media (max-width: 767px) {
	/*This is for the Global*/
	.b-l, .b-r {
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}
	.img-inline li.half-width {
	width: 100%;
}
	.both-space {
	margin: 10px 0;
}
	.side-content {
	padding: 40px 20px;
}
	.general-listing.two-part li {
	width: 100%;
	display: block;
}
	/*This is for the feature 12*/
	.wrap-feature-12 .uneven-box {
	margin-top: 0px;
}
	/*This is for the feature 16*/
	.wrap-feature-16 .with-text {
	margin-left: 0px;
}
	/*This is for the feature 18*/
	.wrap-feature-18 .icon-position .icon-round {
	top: 157px;
	right: 30px;
}
	/*This is for the feature 22*/
	.wrap-feature-22 .text-box, .wrap-feature23-box .text-box {
	padding: 20px 0px;
}
	.wrap-feature30-box {
	position: relative;
}
	.contact3 .p-l-0 {
	padding-left: 20px;
}
	.contact4 .contact-box {
	padding-left: 15px;
	padding-right: 15px;
}
	.modal2 .modal-bg {
	padding: 30px;
}
	.modal3 .modal-bg {
	padding: 50px 40px 60px;
}
	.modal4 .modal-bg {
	padding: 40px;
}
	.dropdown-submenu > .dropdown-menu.show {
	display: block;
} }


/* Hero Slider */

#section-models {
	z-index: 5;
}

#home {
	z-index: 10;
	overflow: hidden;
}

#home:after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 158px;
	background-color: #fff;
}

/*.hero-2-bg:before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 70%;
	transform: translate(-50%,-50%);
	width: 775px;
	height: 775px;
	background-image: url(../wrapkit/phg/images/bg-gradient.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}*/

.hero-slider-wrapper {
	max-width: 100%;
}

#heroSync1,
#heroSync2 {
	opacity: 0;
	transition: 0.2s 0.4s;
}

.hero-slider-item-wrap {
	position: relative;
	box-sizing: border-box;
	padding: 100px 0 220px;
	height: 100%;
	width: 100vw;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-slider-item-image {
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: 50%;
	min-width: 750px;
	max-width: 900px;
	transform: translate(-12%, 52%);
	padding-left: 0;
}

.hero-slider-item-image img {
	/*height: 100%;
	object-fit: contain;*/
	border-radius: 10px;
}

@media (max-width: 640px) {
	#section-models {
	padding-top: 0;
	}
	.hero-slider-wrapper {
	padding-top: 0;
	}
	.hero-slider-item-wrap {
	padding-top: 60px;
	height: auto;
	}
	.hero-slider-item-image {
	position: relative;
	width: calc(100% - 30px);
	left: unset;
	bottom: unset;
	margin: 0 auto!important;
	min-width: 400px;
		transform: translate(-5%, 25%);
	}
}

.hero-slider-thumbs-wrap {
	margin-top: -120px;
}

.hero-title {
	line-height: 1.1;
}

#heroSync2 {
	max-width: 100%;
	overflow: hidden;
	transform: translateX(-20px);
}

#heroSync2 .owl-stage {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

#heroSync2 .owl-item {
	cursor: pointer;
	float: none;
	padding: 25px;
	margin-left: -49px;
	margin-bottom: 25px;
}

#heroSync2 .thumb {
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border-radius: 8px;
	background-color: #f4f8fa;
	transition: all 0.3s;
	border: solid #e9ecef;
	border-width: 0 1px 1px 0;
}

#heroSync2 .current .thumb {
	background-color: #fff;
	box-shadow: 0 10px 30px rgb(21, 24, 29, 0.2);
	border: solid #cacfd4;
	border-width: 0 1px 1px 0;
}

#heroSync2 .thumb:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: transparent;
}

#heroSync2 .current .thumb:before {
	background-color: var(--color-accent-blue);
	-webkit-animation: slide-progress 6s linear forwards;
	animation: slide-progress 6s linear forwards;
}

@-webkit-keyframes slide-progress {
	0% {
	transform: translateX(-100%);
	}
	100% {
	transform: translateX(0);
	}
}

@keyframes slide-progress {
	0% {
	transform: translateX(-100%);
	}
	100% {
	transform: translateX(0);
	}
}

@media (max-width: 640px) {
	#heroSync2 {
	width: 100%;
	margin-bottom: -20px;
	}
	#heroSync2 .owl-item {
	margin-left: 0;
	}
}

.hero-slider .owl-nav {
	display: flex;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	min-width: 1280px;
	max-width: calc(100% - 200px);
}

.owl-carousel.hero-slider .owl-nav button {
	position: absolute;
	height: 48px;
	width: 48px;
	cursor: pointer;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.16);
	outline: none !important;
	transition: all 0.3s;
}

.hero-slider .owl-nav button i {
	font-size: 30px;
	color: #ffffff;
}

.hero-slider .owl-nav .owl-prev {
	left: -60px;
}

.hero-slider .owl-nav .owl-next {
	right: -60px;
}

.hero-slider .owl-dots {
	position: absolute;
	bottom: 200px;
	left: 50%;
	max-width: 80%;
	height: 30px;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	transform: translateX(-50%);
	display: none;
}

.hero-slider button.owl-dot {
	margin: 0;
}

.hero-slider button.owl-dot span {
	display: block;
	margin: 6px 8px;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	background-color: rgba(255, 103, 0, 0.7);
	-webkit-backface-visibility: visible;
	transition: all .3s;
}

.hero-slider button.owl-dot.active span {
	width: 14px;
	height: 14px;
	background-color: rgba(255, 103, 0, 1);
}

@media (max-width: 640px) {
	.hero-slider .owl-dots {
	bottom: 0;
	display: flex;
	}
	.hero-slider-thumbs .owl-nav,
	.hero-slider .owl-nav {
	display: none;
	}
}

/*******************
Client 2
*******************/
.client2 .client-box {
	margin: 0px;
}

.client2 .client-box [class*="col-"] {
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.client2 .client-box [class*="col-"] img {
	width: 100px;
	filter: grayscale(1);
	transition: filter 0.4s;
}
.client2 .client-box [class*="col-"] img:hover {
	filter: grayscale(0);
}

/*******************
Feature 43
*******************/
.wrap-feature43-box .col-md-6 {
	margin-bottom: 60px;
}
.wrap-feature43-icon {
	width: 64px;
	margin-bottom: 10px;
}

/*******************
Counter box
*******************/
.counter-box [class^="col-"] {
	padding: 33px 15px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box [class^="col-"]:last-child {
	border-right: 0px;
}

.counter-box-dark [class^="col-"] {
	border-right: 1px solid rgba(120, 130, 140, 0.13);
}

.counter-box-dark [class^="col-"]:last-child {
	border-right: 0px;
}

@media (max-width: 767px) {
	.counter-box [class^="col-"] {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-right: 0;
	}
	.counter-box [class^="col-"]:last-child {
		border-bottom: 0px;
	}
}

/*******************
Feature 24
*******************/

.wrap-models {
	margin-top: 30px;
	margin-bottom: -30px;
}

.wrap-models [class^="col-"] {
	margin-bottom: 30px;
}

.wrap-models .card {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 1.5rem;
	overflow: hidden;
	transition: all 0.3s;
}

/*.wrap-models .card:hover {
	transform: translateY(-10px);
}*/

/*******************
Feature 24
*******************/

.wrap-feature-24 {
	margin-top: 20px;
}

.wrap-feature-24 [class^="col-"] {
	margin-bottom: 30px;
}

.wrap-feature-24 .card {
	padding: 0;
	background-color: rgba(0, 0, 0, .2);
	height: 100%;
	overflow: hidden;
	transition: 0.3s ease-out;
}

.wrap-feature-24 .card:hover {
	transform: translateY(-10px);
}

.wrap-feature-24 .service-24 {
	display: block;
	height: 100%;
	padding: 32px;
	transition: 0.3s ease-out;
}

.wrap-feature-24 .service-24-icon {
	width: 64px;
	margin-bottom: 24px;
}

.wrap-feature-24 .service-24:hover,
.wrap-feature-24 .service-24:focus {
	background: rgba(0, 0, 0, 0.3);
}

.wrap-feature-24 .service-24:hover i,
.wrap-feature-24 .service-24:hover .ser-title,
.wrap-feature-24 .service-24:focus i,
.wrap-feature-24 .service-24:focus .ser-title {
	color: #ffffff;
	text-fill-color: #ffffff;
}

@media (max-width: 767px) {
	.wrap-feature-24 [class^="col-"]:last-child {
		margin-bottom: 0px;
	}
}

.features-icon {
	background: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 72px;
	width: 72px;
	line-height: 50px;
	text-align: center;
	color: #ffffff;
	border-radius: 12px;
	font-size: 30px;
	position: relative;
}

.features-icon i,
.features-icon span {
	font-size: 40px;
	line-height: 40px;
}

/*******************
Feature 30
*******************/
.feature30 {
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
	min-height: 600px;
}

.wrap-feature30-box {
	position: absolute;
	top: 20%;
	right: 0;
	}
.wrap-feature30-box .card.card-shadow {
	box-shadow: 0px 10px 40px rgba(115, 128, 157, 0.3);
}
@media (max-width: 767px){
	.feature30 {
		margin-bottom: 0;
	}
	.wrap-feature30-box {
		position: relative;
		margin-top: 40px;
	}
	.wrap-feature30-box div.p-30 {
		padding: 10px 0;
	}
}

/*******************
Feature 12
*******************/
.wrap-feature-12 {
	position: relative;
}
.wrap-feature-12 [class*=col-md-12] {
	margin-bottom: 30px;
	transition: 0.2s ease-in;
}
.wrap-feature-12 [class*=col-md-12]:hover {
	transform: scale(1.1);
}
.wrap-feature-12 .uneven-box {
	margin-top: 100px;
}
@media (max-width: 767px) {
	.wrap-feature-12 .uneven-box {
	margin-top: 0px;
	display: none;
	}
}
/*******************
banner 1
*******************/
#banner1 {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 767px) {
	#banner1 {
	background-position: 65% 50%;
	}
}

/*******************
form-banner 2
*******************/
#banner2 {
	background: right -3em center no-repeat #e9f3f8;
}

#banner2 input,
#banner2 textarea {
	margin: 0;
	border: none;
	display: inline-block;
	vertical-align: top;
}

#banner2 input[type="text"],
#banner2 textarea {
	color: #8d97ad;
	font-weight: 300;
	-webkit-box-shadow: -5px 0 30px 0 rgba(0, 0, 0, 0.05);
	box-shadow: -5px 0 30px 0 rgba(0, 0, 0, 0.05);
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

#banner2 input[type="submit"]:hover {
	opacity: 0.7;
}

/*******************
form-banner 3
*******************/
.banner3 {
	background: right top no-repeat #e9f3f8;
	background-size: 1000px;
}

/*******************
Feature 16
*******************/
.wrap-feature-16 [class*=col-] {
	padding: 60px 35px;
}

.wrap-feature-16 .with-bg {
	width: 100%;
	min-height: 200px;
	background-size: cover;
	background-position: 90% 50%;
}

.wrap-feature-16 .with-text {
	max-width: 500px;
	margin-left: 40px;
}
@media (max-width: 767px) {}
	.wrap-feature-16 .with-text {
	margin-left: 0px;
	}
}
.list-block li i {
	margin-top: 0;
}

/*******************
Pricing 2
*******************/

.pricing2 {
	background-size: cover;
	max-height: 530px;
	margin-bottom: 200px;
	position: relative;
}
.pricing2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(24, 142, 244, 0.8), rgba(49, 108, 232, 0.8));
	opacity: 1;
	z-index: 0;
}

.pricing2 .pricing-box {
	margin-top: 150px;
}

.pricing2 .above-card {
	margin: -70px -32px -32px;
}

.pricing2 .above-card .card {
	padding: 30px 0;
}

.pricing2 .pricing-text sup {
	top: -50px;
	font-size: 24px;
	font-weight: 300;
}
.pricing2 .pricing-text sub {
	bottom: 0;
	font-size: 24px;
	font-weight: 300;
	color: #ff4d7e;
	margin-left: 5px;
}

.pricing2 .pricing-text span {
	font-size: 100px;
	font-weight: 300;
	line-height: 100px;
	color: #ff4d7e;
	letter-spacing: -5px;
}

.pricing2 .list-inline {
	margin: 0 0 30px 0;
}

.pricing2 .list-inline li {
	padding: 7px 0;
}

@media (max-width: 767px) {
	.pricing2 {
	max-height: 100%;
	margin-bottom: 0px;
	}
	.pricing2 .pricing-box {
	margin-top: 20px;
	}
	.pricing2 .pricing-box .card > div {
	padding: 20px!important;
	}
	.pricing2 .display-5 {
	font-size: 36px;
	}
	.pricing2 .above-card {
	margin: 0;
	}
	.pricing2 .above-card .card {
	padding: 0px;
	}
}

.wrap-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.min-h-600 {
	min-height: 600px;
}
.min-h-50vw {
	min-height: 50vw;
}
@media (max-width: 767px) {
	.min-h-600 {
	min-height: 200px;
	}
}

/* Map */
.map-container {
	position: relative;
	width: 100%;
	height: 480px;
}

#map-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

@media (max-width: 767.98px) {
	#map-wrapper {
	position: relative;
	height: 100%;
	}
}

.model-details {
	margin-bottom: 20px;
	font-size: 14px;
	padding: 0 10px;
}

.model-details ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 7px 0;
	border-top: 1px solid #e9ecef;
}

.model-details ul:first-child {
	border-top: 0;
}

.model-details li {
	width: auto;
	min-width: 40%;
}

/*.model-details li:last-child {
	width: 45%;
}*/

.model-details li:first-child {
	padding-right: 5%;
}

.model-title,
.model-image {
	margin-bottom: 24px;
}

.model-image {
	margin-bottom: 16px;
	height: 240px;
	text-align: center;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e9ecef;
}

.model-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	transition: all 0.3s;
}

.wrap-models .card:hover .model-image img {
	transform: scale(1.15);
}

.model-bottom {
	padding: 20px; 
	background: #e9ecef;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: auto;
}

@media (max-width: 640px) {
	.model-price  {
		margin-bottom: 12px;
	}
}

.model-price {
	font-size: 14px;
	font-weight: 500;
}

.model-specifications {
	padding: 16px 30px;
	background: #fff;
	border-radius: 8px;
	margin-top: 32px;
	box-shadow: 0 20px 25px -20px rgba(32, 53, 90, 0.05), 0 20px 50px rgba(32, 53, 90, 0.01);
}

.model-specifications-item {
	display: flex;
	justify-content: flex-start;
	padding: 8px 0;
	border-top: 1px dotted #dee2e6;
	font-size: 14px;
}

.model-specifications-item:first-child {
	border-top: 0;
}

.model-specifications-title {
	position: relative;
	padding-right: 1rem;
	width: 50%;
	color: var(--colors-text-muted);
}

.model-specifications-text {
	position: relative;
	padding-left: 10px;
	min-width: 50%;
}

.tab-pane .model-specifications-item {	
	font-size: initial;
}

.model-label {
	position: absolute;
	top: 4rem;
	right: 1rem;
}

.model-label-inner {
	color: #fff;
	background-color: var(--color-accent-blue);
	font-family: var(--font-2);
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	border-radius: 50%;
	width: 88px;
	height: 88px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.model-label-inner big {
	display: block;
	font-size: 20px;
	margin-bottom: 10px;
}

/* fotorama */
.fotorama__nav--dots {
	margin-top: -2.5rem;
	margin-bottom: 2rem;
}
.fotorama__nav--dots .fotorama__nav__frame {
	width: 18px;
	height: 30px;
}

.fotorama__dot {
	width: 0;
	height: 0;
	border: 5px solid #d4d8dd;
}

.fotorama__nav__frame.fotorama__active .fotorama__dot {
	border-width: 5px;
	border-color: var(--color-primary);
}

.fotorama__stage__shaft {
	border: 1px solid rgba(120, 130, 140, 0.13);
	border-radius: 16px;
}

.fotorama__stage__frame {
	border-radius: 8px;
}

.fotorama__arr--prev {
    left: 0.5rem;
}

.fotorama__arr--next {
    right: 0.5rem;
}

.fotorama__fullscreen-icon,
.fotorama__video-close {
	top: 0.5rem;
	right: 0.5rem;
}

.fotorama--fullscreen {
    padding: 1rem !important;
    background: rgba(31, 37, 47, 0.9) !important;
}

.fotorama--fullscreen .fotorama__nav-wrap {
    margin-top: -2.5rem !important;
}

.fotorama--fullscreen .fotorama__stage,
.fotorama--fullscreen .fotorama__nav {
    background: transparent !important;
}

.fotorama__thumb,
.fotorama__thumb-border {
	border-radius: 0.5rem;
}

/*@media screen and (min-width: 992px) {
.gallery .fotorama__nav, .gallery .fotorama__nav--thumbs, .gallery .fotorama__nav__shaft{ width:100%;}
.gallery .fotorama__nav-wrap{ width:64px; float:left;}
.gallery .fotorama__stage{ width:100%!important; float:right; overflow:visible; position:absolute; top:0; left:72px; height:450px;}
.gallery .fotorama__stage__shaft, .gallery .fotorama__stage__frame{ width:100%!important; }
.gallery .fotorama__stage__shaft .fotorama__img{ width:100%;}
.gallery .fotorama__nav__frame--thumb{ display:block; float:none;}
.gallery .fotorama__thumb-border{ display:none!important;}
.gallery .fotorama__active{ opacity:0.2;}
.gallery .fotorama__nav__frame .fotorama__nav__frame--thumb{ height: 64px;}
.gallery .fotorama__wrap{ height:450px;}
.gallery .fotorama__nav__frame, .detalle .fotorama__thumb, { width:100%!important; height:64px!important;}
}*/

/* Modal */
@media (min-width:992px) {
	.modal-xl {
	max-width: 1140px;
	}
}

/*body.modal-open {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}*/

.modal.fade .modal-dialog {
	transform: none;
}

.modal-backdrop {
	background-color: #22222f;
}

.modal-backdrop.show {
    opacity: .75;
}

.modal-content {
	border: 0;
	border-radius: 0.5rem;
}

.modal-body,
.modal-footer {
	padding: 2rem;
}

.modal-header {
	border-radius: 9px 9px 0 0;
	border-bottom: 0;
	padding: 2rem;
}

.modal-header .close {
	margin: 0 0 0 40px;
	box-sizing: border-box;
	width: 48px;
	padding: 10px;
	text-shadow: none;
	background: rgba(108, 117, 125, 0.1);
	border-radius: 4px;
	opacity: 1;
	transition: 0.3s;
	cursor: pointer;
}

.modal-header .close i {
	color: #6c757d;
	font-size: 18px;
	font-weight: 400;
	line-height: 18px;
	transition: 0.3s;
}

.modal-header .close:hover {
	background: rgba(108, 117, 125, 0.3);
	opacity: 1 !important;
}

.modal-header .close:hover span {
	color: #212529 !important;
}

@media (max-width: 768px) {
	.modal-header,
	.modal-body,
	.modal-footer {
	padding: 1rem;
	}
}

.video-modal .modal-close {
	position: absolute;
	right: 0;
	top: -4rem;
	width: 3rem;
	height: 3rem;
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	border-radius: 50%;
	border: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 10px 11px 11px;
}

.video-modal video {
	max-width: 100%;
	max-height: 600px;
    border-radius: 0.5rem;
    margin-bottom: -0.5rem;
}

@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}
}
@media (min-width: 768.02px) {
	.mobile-only {
		display: none;
	}
}

/******************* 
Main & Page wrapper
*******************/
.content-wrapper {
	width: 100%;
	padding-top: 148px;
}

.hero-wrapper {
	max-width: 100%;
	min-height: calc(100vh - 148px);
	overflow: hidden;
}

.display-0 {
	font-size: 7.2rem;
	font-size: clamp(2.4rem, 1.2923rem + 4.9231vw, 7.2rem);
	font-weight: 800;
	line-height: 1;
}

.display-1 {
	font-size: 5.6rem;
	font-size: clamp(2.1rem, 1.3154rem + 3.4872vw, 5.6rem);
	font-weight: 700;
}

.display-2 {
	font-size: 3.8rem;
	font-size: clamp(2rem, 1.5846rem + 1.8462vw, 3.8rem);
	font-weight: 700;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-content .hero-title {
	padding-top: 15%;
}

.hero-inner {
	position: relative;
	z-index: 1;
	padding-top: 3rem;
	padding-bottom: 3rem;
	min-height: 200px;
}

.hero-desc {
	position: absolute;
	bottom: 80px;
	left: 0;
	max-width: 900px;
}
.hero-desc-item {
	position: relative;
	max-width: 360px;
	margin-bottom: 40px;
	padding-top: 30px;
}
.hero-desc-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 3px;
	background: var(--color-accent-blue);
}

.hero-bg-image {
	min-height: 240px;
	height: 75%;
}

@media (max-width: 768px) {
	.content-wrapper {
		padding-top: 128px;
	}
	.hero-wrapper {
		min-height: calc(100vh - 128px);
	}
	.hero-content {
		padding-top: 40px;
		padding-bottom: 480px;
	}
	.hero-desc {
		position: relative;
		left: unset;
		bottom: unset;
		margin-top: 40px;
	}
}

@media (orientation:landscape) and (max-height: 700px) {
	.hero-desc {
		display: none;
	}
}

.hero-image-grid {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	right: 2rem;
	left: calc(45% - 2rem);
	width: 55%;
}
.marquee {
	overflow-y: hidden;
}
.marquee-body {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	min-width: 100%;
	opacity: 0.5;
}
.marquee-column {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.marquee-column:nth-child(2) {
	margin: 2rem 0 0 2rem;
}
.marquee-section {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	align-items: center;
	overflow: hidden;
}
.marquee-item {
	width: 300px;
	height: 400px;
	overflow: hidden;
	margin: 1rem 0;
	border-radius: 8px;
}
.marquee-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.animation-marquee-90 {
	animation: marquee 90s linear infinite;
}
.animation-marquee-120 {
	animation: marquee 120s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateZ(0);
	}
	100% {
			transform: translate3d(0, -100%, 0);
	}
}

@media (max-width: 992px) {
	.hero-image-grid {
		top: calc(100vh - 200px);
		width: 100%;
		left: 0;
		right: 0;
	}
	.marquee {
	    overflow-x: hidden;
		overflow-y: unset;
	}
	.marquee-body {
		flex-wrap: wrap;
	}
	.marquee-column {
		flex-direction: row;
	}
	.marquee-column:nth-child(2) {
	    margin: 0;
	}
	.marquee-section {
		flex-direction: row;
	}
	.marquee-item {
		width: 50vw;
        height: 50vw;
        margin: 0.5rem;
	}
	.animation-marquee-90 {
	    animation: marquee 60s linear infinite;
	}
	.animation-marquee-120 {
	    animation: marquee 90s linear infinite;
	}
	@keyframes marquee {
		0% {
			transform: translateZ(0);
		}
		100% {
			transform: translate3d(-100%, 0, 0);
		}
	}
}

.medium-zoom-overlay {
		z-index: 900;
}
.medium-zoom-image--opened {
		z-index: 901;
}

/* catalog grid */ 
.catalog-item {
	position: relative;
	overflow: hidden;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	box-shadow: 0 64px 50px -32px rgb(6, 7, 37, 0.1);
	transition: 0.3s all;
}
.catalog-item:hover {
	transform: translateY(-10px);
}
.catalog-image {
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 100%;
	width: 220px;
	height: 220px;
	transform: translate(-95%,-90%);
	transition: 0.4s;
}
.catalog-image img {
	position: relative;
}
.catalog-image h3 {
	position: relative;
	z-index: 2;
}
.catalog-item:hover .catalog-image {
	transform: translate(-100%,-95%);
}

.catalog-grid .catalog-item {
	min-height: 320px;
	justify-content: space-between;
}
.catalog-grid .catalog-image {
	width: 320px;
	height: 320px;
	transform: translate(-95%,-95%);
}
.catalog-grid .catalog-item:hover .catalog-image {
	transform: translate(-100%,-100%);
}

.wrap-features .col-md-6,
.wrap-features-dark .col-md-6 {
	margin-bottom: 1.5rem;
}
.wrap-features .card,
.wrap-features-dark .card {
	height: 100%;
	padding: 1.5rem;
	border-radius: 8px;
	background-color: transparent;
	border: 1px solid #fff;
}
.wrap-features-dark .card {
	border-color: #e9ecef;
}
.wrap-features .card:hover {
	background-color: rgba(255, 255, 255, .9);
}
.wrap-features-dark .card:hover {
	background-color: #f4f8fa;
	border-color: #f4f8fa;
}
.wrap-features-icon,
.wrap-features-dark-icon {
	width: 64px;
	margin-bottom: 10px;
}

.top-marker-item {
	position: relative;
	padding-top: 24px;
}
.top-marker-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 3px;
	background: var(--color-accent-blue);
}

/******************* 
 Multi Steps Form
*******************/
.msform {
    width: 100%;
    background: #fff;
    padding: 3rem 2rem 2rem;
}
.msform.steps-3 {    
    --msform-stepNumber: 3;
}
.msform header {
    margin: 0 0 30px 0;
}
.msform-outer {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--color-primary);
}
.msform-outer form {
    display: flex;
    width: calc(100% * var(--msform-stepNumber));
}
.msform-outer form .page {
    width: calc(100% / var(--msform-stepNumber));
    padding: 0 1rem;
    transition: margin-left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.msform-outer form .page .title {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
}
.msform-outer form .page .field {
    width: 100%;
    margin: 2rem 0 0;
}
.msform-outer form .page .field .label {
	font-size: 1rem;
	margin: 0 0 1rem;
	padding: 0;
    font-weight: 500;
    color: inherit;
}
.msform-outer form .page .field input {
    box-sizing: border-box;
    width: 100%;
    background-color: #e9ecef;
    border: 2px solid #e9ecef;
    /*box-shadow: none;*/
}
.msform-outer form .page .field input:hover,
.msform-outer form .page .field input:focus {
    border-color: var(--color-primary);
}
.msform-outer form .page .field input.invalid-input {
    border-color: var(--danger);
}
.msform-outer form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}
.msform-outer form .page button {
	white-space: nowrap;
    transition: 0.5s ease;
}
.msform-outer form .page .btns {
    margin-top: auto;
}
.msform-outer form .page .btns button.prev {
    margin-right: 3px;
}
.msform-outer form .page .btns button.next {
    margin-left: 3px;
}
.msform-progress {
    display: flex;
    margin-bottom: 1rem;
    user-select: none;
}
.msform-progress .step {
    text-align: center;
    width: 100%;
    position: relative;
}
.msform-progress .step p {
	color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.2;
    margin-top: 0.5rem;
    padding: 0 1rem;
}
.msform-progress .step .bullet {
    height: 3rem;
    width: 3rem;
    background: #e9ecef;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    font-family: var(--font-2);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    transition: 0.2s;
}
.msform-progress .step .bullet.active {
    background: var(--color-primary);
}
.msform-progress .step .bullet span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.msform-progress .step .bullet.active span {
    display: none;
}
.msform-progress .step .bullet:before,
.msform-progress .step .bullet:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 3rem;
    height: 2px;
    width: 6.5rem;
    background: #e9ecef;
}
.steps-3 .msform-progress .step .bullet:before,
.steps-3 .msform-progress .step .bullet:after {
    width: 9.5rem;
}
.msform-progress .step .bullet.active:after {
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}
@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}
.msform-progress .step:last-child .bullet:before,
.msform-progress .step:last-child .bullet:after {
    display: none;
}
.msform-progress .step .check {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}
.msform-progress .step .check.active {
    display: block;
    color: #fff;
}

@media screen and (max-width: 660px) {
    .msform-progress .step p {
        display: none;
    }
    .msform-progress .step .bullet::after,
    .msform-progress .step .bullet::before {
        display: none;
    }
    .msform-progress .step .bullet {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .msform-progress .step .check {
        position: absolute;
        left: 50%;
        top: 50%;
        font-size: 15px;
        transform: translate(-50%, -50%);
        display: none;
    }
    .msform .step {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .msform-outer form .page button {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media screen and (max-width: 490px) {
    .msform {
        box-sizing: border-box;
        border-radius: 0;
        padding: 2rem 1rem;
    }
    .msform-outer form .page {
    	padding: 0;
    }
}

.custom-radio {
    min-height: 1.5rem;
    padding-left: 1.75rem;
}
.custom-radio .custom-control-label {
	padding: 0.125rem 0.25rem;
	font-size: 1.125rem;
	cursor: pointer;
}
.custom-radio .custom-control-label::before,
.custom-radio .custom-control-label::after {
	width: 1.25rem;
	height: 1.25rem;
}

.custom-toggle {
    position: relative;
    padding-left: 3.75rem;
}
.custom-toggle .custom-control-label {
    position: static;
	padding: 0.125rem 0.25rem;
	font-size: 1.125rem;
	cursor: pointer;
}
.custom-toggle .custom-control-label::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 3.125rem;
    height: 1.75rem;
    background: #fff;
    border-radius: 100px;
    border: .0625rem solid #becad6;
    pointer-events: all;
}
.custom-toggle .custom-control-label::after {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #becad6;
    border-radius: 6.25rem;
    transition: 0.35s;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: transparent;
    background-color: #007bff;
    box-shadow: none;
}
.custom-toggle .custom-control-input:checked~.custom-control-label::after {
    left: 2.875rem;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #fff;
}

/* Ripple Out */
@keyframes ripple-out {
  0% {  	
	transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.4;
  }
  50% {  	
	transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
	box-shadow: 0 0 0 0;
  }
  100% {  	
	transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.4;
  }
}

.outer-circle {
	position: relative;
	background: transparent;
}

.outer-circle:before {
	content: '';
	position: absolute;
	box-shadow: 0 0 0 6px var(--color-bg-light);
	border-radius: 100px;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	transition: all;
	animation: ripple-out 4s linear 2s infinite;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: 14px;
    list-style: none;
}

.breadcrumbs-item {
    margin: 2px 0;
}

.breadcrumbs-item + .breadcrumbs-item {
    padding-left: 0.5rem;
}

.breadcrumbs-item + .breadcrumbs-item:before {
    float: left;
    padding-right: 0.5rem;
    color: #6b7280;
    content: "–";
}

.breadcrumbs-item.active {
    color: #6b7280;
}

.text-white .breadcrumbs-item,
.text-white .breadcrumbs-item:before,
.text-white .breadcrumbs-item a {
    color: #fff;
}

.text-white .breadcrumbs-item a:hover {
    color: var(--color-accent-blue);
}

.text-white .breadcrumbs-item:before,
.text-white .breadcrumbs-item.active {
    opacity: 0.6;
}

@media (max-width: 992px) {
    *[data-sticky] {
        position: relative !important;
        width: auto !important;
        left: unset !important;
        top: unset !important;
        margin-bottom: 2rem !important;
    }
}

/* tabs */
.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.nav-tabs .nav-item {
    margin: 0 1rem;
}

.nav-tabs,
.nav-tabs .nav-link {
    border: 0
}

.nav-tabs .nav-link {
    color: #111827;
    font-weight: 500;
    padding: 1rem;
}

@media (max-width: 768px) {
    .nav-tabs .nav-item {
	    margin: 0 0.5rem;
	}
	.nav-tabs .nav-link {
	    padding: 1rem 0.5rem;
	}
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: #111827;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--color-primary-dark);
    background-color: transparent;
    border-color: transparent transparent #fff;
}

.nav-tabs-border .nav-link {
    position: relative;
    margin-right: 0
}

.nav-tabs-border .nav-link:after {
    content: "";
    display: block;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    opacity: 0
}

.nav-tabs-border .nav-link.active:after {
    opacity: 1
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.tab-pane {
    padding-top: 1rem
}

/* basic-content */
.basic-content img {
    max-width: 100%;
}

.basic-content h1 + h2,
.basic-content h2 + h3,
.basic-content h3 + h4,
.basic-content h4 + h5,
.basic-content table + h2,
.basic-content table + h3,
.basic-content table + h4,
.basic-content table + h5,
.basic-content p + h2,
.basic-content p + h3,
.basic-content p + h4,
.basic-content p + h5,
.basic-content div + h2,
.basic-content div + h3,
.basic-content div + h4,
.basic-content div + h5,
.basic-content ul + h2,
.basic-content ul + h3,
.basic-content ul + h4,
.basic-content ul + h5 {
    margin-top: 2rem;
}

.basic-content h1,
.basic-content h2,
.basic-content h3,
.basic-content h4,
.basic-content h5,
.basic-content h6,
.basic-content .h1,
.basic-content .h2,
.basic-content .h3,
.basic-content .h4,
.basic-content .h5,
.basic-content .h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.basic-content ul:not([class]) {
	margin: 0;
	margin-bottom: 24px;
	padding: 0;
	list-style: none;
}

.basic-content ul:not([class]) li {
	position: relative;
	list-style: none;
	margin: 0 0 12px;
	padding-left: 24px;
}

.basic-content ul:not([class]) li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 2px;
	background-color: var(--color-primary);
}

.basic-content.text-sm ul:not([class]) li:before {
	top: 8px;
}

/* news */
.news-box {
	margin-top: 30px;
}

.news-box > div {
	transition: all 0.3s;
}

.news-box > div:hover {
	transform: translateY(-10px);
}

.news-box-image {
	position: relative;
	height: 240px;
}

.news-box-promo {
	border: 1px solid #2b3f5a;
	transition: all 0.3s;
}

.news-box-promo:hover {
	border-color: transparent;
	background-color: rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

/* pagination */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.page-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    background-color: transparent;
    border: 0 solid #d1d5db;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}
.page-link:hover {
    z-index: 2;
    border-color: #d1d5db;
}
.page-link:focus,
.page-link:hover {
    color: #0e131f;
    background-color: #e5e7eb;
}
.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(17, 24, 39, 0.25);
}
.page-item:not(:first-child) .page-link {
    margin-left: 0;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #6b7280;
    border-color: #6b7280;
}
.page-item.disabled .page-link {
    background-color: transparent;
    opacity: 0.5;
    pointer-events: none;
}

.feature {
	height: 100%;
	flex-grow: 1;
}

.feature-inner {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	position: relative;
	height: 100%;
	background: #fff;
	padding: 2.5rem 1.5rem;
	box-shadow: 0 16px 48px rgba(32,41,50,0.12);
	border-radius: 10px;
}

.feature-inner.bg-cyan {
	background: var(--color-accent-cyan);
}

.feature-inner.bg-black .feature-number {
	color: var(--color-primary);
}

.feature-inner.bg-primary {
	background: var(--color-primary);
	color: #fff;
}

.feature-inner.bg-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 240px;
}

.feature-number {
	font-family: var(--font-2);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
}

.feature-number.text-large {
	font-size: 80px;
	line-height: 1.2;
}

.feature-number sup {
	line-height: 1;
}

.feature-title {
	margin: 0;
	font-size: 21px;
	line-height: 1.3;
}

@media (max-width: 641px) {
	.features-wrap .basic-cols_item {
		max-width: 100%;
	}
	.features-header {
		margin-bottom: 64px
	}
}


.logo-bg {
	position: relative;
	width: 100%;
	height: 80vh;
	background-image: url(../phg/images/about-bg-01.jpg);
	background-position: 50% 50%;
	background-attachment: fixed;
	background-size: cover;
	opacity: 0.8;
	overflow: hidden;
}
.logo-canvas {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../phg/images/logo-canvas.svg);
	background-position: 50% 50%;
	background-size: cover;
}
.hero-video-bg {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 640px) {
	.logo-bg {
		width: 100%;
		height: 90vh;
	}
	.logo-canvas {
		width: 90vh;
		transform: rotate(-90deg);
		background-position: 50% -50%;
		background-size: contain;
	}
}

.team-pic {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 1rem 2rem 0;
	box-shadow: 0 64px 50px -32px rgb(6, 7, 37, 0.1);
}

.team-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
