/*== Basic css ==*/
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Mulish', sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.4;
	color: #000;
}

a {
	color: inherit;
	text-decoration: underline;
}

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

p {
	margin-bottom: 1rem;
}

small,
.small {
	font-size: 14px;
	line-height: 1.4;
	display: block;
}

img {
	max-width: 100%;
}

.transition {
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

a.phonelink,
a.phonelink:hover,
a.phonelink:focus {
	cursor: default;
	text-decoration: none !important;
}

@media (max-width: 1024px) {
	a.phonelink {
		text-decoration: underline !important;
	}
}

/*== Basic css End ==*/

/*== Structure ==*/
.bg-y-100 {
	background-size: auto 100% !important;
}

.bg-cover {
	background-size: cover !important;
}

.bg-contain {
	background-size: contain !important;
}

.bg-auto {
	background-size: auto !important;
}

.bg-left {
	background-position: left !important;
}

.bg-left-top {
	background-position: left top !important;
}

.bg-right {
	background-position: right !important;
}

.bg-right-top {
	background-position: right top !important;
}

.bg-center {
	background-position: center !important;
}

.bg-center-top {
	background-position: center top !important;
}

.bg-center-bottom {
	background-position: center bottom !important;
}

.bg-repeat {
	background-repeat: repeat !important;
}

.bg-repeat-x {
	background-repeat: repeat-x !important;
}

.bg-repeat-y {
	background-repeat: repeat-y !important;
}

.bg-norepeat {
	background-repeat: no-repeat !important;
}

.top {
	top: 0;
}

.bottom {
	bottom: 0;
}

.left {
	left: 0;
}

.right {
	right: 0;
}

.text-underline {
	text-decoration: underline !important;
}

a.text-underline:hover {
	text-decoration: none !important;
}

.text-underline-none {
	text-decoration: none !important;
}

a.text-underline-none:hover {
	text-decoration: underline !important;
}

.overflow-x-hide {
	overflow-x: hidden;
}

.overflow-y-hide {
	overflow-y: hidden;
}

.overflow-hide {
	overflow: hidden;
}

.text-primary {
	color: #BD933B !important;
}

.text-secondary {
	color: #169fd3 !important;
}

.text-dark {
	color: #202833 !important;
}

.text-darker {
	color: #0B0C10 !important;
}

.bg-primary {
	background-color: #BD933B !important;
}

.bg-secondary {
	background-color: #169fd3 !important;
}

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

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

.bg-darker {
	background-color: #0B0C10 !important;
}

.border-primary {
	border-color: #0B2E88 !important;
}

.border-secondary {
	border-color: #169fd3 !important;
}

.border-light {
	border-color: #d1d1d1 !important;
}

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

.border-darker {
	border-color: #0B0C10 !important;
}

.p-1 {
	padding: 1rem !important;
}

.p-2 {
	padding: 2rem !important;
}

.p-3 {
	padding: 3rem !important;
}

.p-4 {
	padding: 4rem !important;
}

.p-5 {
	padding: 5rem !important;
}

.p-0 {
	padding: 0rem !important;
}

.pt-1 {
	padding-top: 1rem !important;
}

.pt-2 {
	padding-top: 2rem !important;
}

.pt-3 {
	padding-top: 3rem !important;
}

.pt-4 {
	padding-top: 4rem !important;
}

.pt-5 {
	padding-top: 5rem !important;
}

.pt-0 {
	padding-top: 0rem !important;
}

.pb-1 {
	padding-bottom: 1rem !important;
}

.pb-2 {
	padding-bottom: 2rem !important;
}

.pb-3 {
	padding-bottom: 3rem !important;
}

.pb-4 {
	padding-bottom: 4rem !important;
}

.pb-5 {
	padding-bottom: 5rem !important;
}

.pb-0 {
	padding-bottom: 0rem !important;
}

.pl-1 {
	padding-left: 1rem !important;
}

.pl-2 {
	padding-left: 2rem !important;
}

.pl-3 {
	padding-left: 3rem !important;
}

.pl-4 {
	padding-left: 4rem !important;
}

.pl-5 {
	padding-left: 5rem !important;
}

.pl-0 {
	padding-left: 0rem !important;
}

.pr-1 {
	padding-right: 1rem !important;
}

.pr-2 {
	padding-right: 2rem !important;
}

.pr-3 {
	padding-right: 3rem !important;
}

.pr-4 {
	padding-right: 4rem !important;
}

.pr-5 {
	padding-right: 5rem !important;
}

.pr-0 {
	padding-right: 0rem !important;
}

.m-1 {
	margin: 1rem !important;
}

.m-2 {
	margin: 2rem !important;
}

.m-3 {
	margin: 3rem !important;
}

.m-4 {
	margin: 4rem !important;
}

.m-5 {
	margin: 5rem !important;
}

.m-0 {
	margin: 0rem !important;
}

.mt-1 {
	margin-top: 1rem !important;
}

.mt-2 {
	margin-top: 2rem !important;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mt-4 {
	margin-top: 4rem !important;
}

.mt-5 {
	margin-top: 5rem !important;
}

.mt-0 {
	margin-top: 0rem !important;
}

.mb-1 {
	margin-bottom: 1rem !important;
}

.mb-2 {
	margin-bottom: 2rem !important;
}

.mb-3 {
	margin-bottom: 3rem !important;
}

.mb-4 {
	margin-bottom: 4rem !important;
}

.mb-5 {
	margin-bottom: 5rem !important;
}

.mb-0 {
	margin-bottom: 0rem !important;
}

.ml-1 {
	margin-left: 1rem !important;
}

.ml-2 {
	margin-left: 2rem !important;
}

.ml-3 {
	margin-left: 3rem !important;
}

.ml-4 {
	margin-left: 4rem !important;
}

.ml-5 {
	margin-left: 5rem !important;
}

.ml-0 {
	margin-left: 0rem !important;
}

.mr-1 {
	margin-right: 1rem !important;
}

.mr-2 {
	margin-right: 2rem !important;
}

.mr-3 {
	margin-right: 3rem !important;
}

.mr-4 {
	margin-right: 4rem !important;
}

.mr-5 {
	margin-right: 5rem !important;
}

.mr-0 {
	margin-right: 0rem !important;
}

.mw-100 {
	max-width: 100% !important;
}

.mw-inherit {
	max-width: inherit !important;
}

.mh-inherit {
	max-height: inherit !important;
}

.direction-right {
	direction: rtl;
}

.direction-left {
	direction: ltr;
}

.font-weight-sbold {
	font-weight: 600 !important;
}

@media (min-width: 576px) {
	.p-sm-1 {
		padding: 1rem !important;
	}

	.p-sm-2 {
		padding: 2rem !important;
	}

	.p-sm-3 {
		padding: 3rem !important;
	}

	.p-sm-4 {
		padding: 4rem !important;
	}

	.p-sm-5 {
		padding: 5rem !important;
	}

	.p-sm-0 {
		padding: 0rem !important;
	}

	.pt-sm-1 {
		padding-top: 1rem !important;
	}

	.pt-sm-2 {
		padding-top: 2rem !important;
	}

	.pt-sm-3 {
		padding-top: 3rem !important;
	}

	.pt-sm-4 {
		padding-top: 4rem !important;
	}

	.pt-sm-5 {
		padding-top: 5rem !important;
	}

	.pt-sm-0 {
		padding-top: 0rem !important;
	}

	.pb-sm-1 {
		padding-bottom: 1rem !important;
	}

	.pb-sm-2 {
		padding-bottom: 2rem !important;
	}

	.pb-sm-3 {
		padding-bottom: 3rem !important;
	}

	.pb-sm-4 {
		padding-bottom: 4rem !important;
	}

	.pb-sm-5 {
		padding-bottom: 5rem !important;
	}

	.pb-sm-0 {
		padding-bottom: 0rem !important;
	}

	.pl-sm-1 {
		padding-left: 1rem !important;
	}

	.pl-sm-2 {
		padding-left: 2rem !important;
	}

	.pl-sm-3 {
		padding-left: 3rem !important;
	}

	.pl-sm-4 {
		padding-left: 4rem !important;
	}

	.pl-sm-5 {
		padding-left: 5rem !important;
	}

	.pl-sm-0 {
		padding-left: 0rem !important;
	}

	.pr-sm-1 {
		padding-right: 1rem !important;
	}

	.pr-sm-2 {
		padding-right: 2rem !important;
	}

	.pr-sm-3 {
		padding-right: 3rem !important;
	}

	.pr-sm-4 {
		padding-right: 4rem !important;
	}

	.pr-sm-5 {
		padding-right: 5rem !important;
	}

	.pr-sm-0 {
		padding-right: 0rem !important;
	}

	.m-sm-1 {
		margin: 1rem !important;
	}

	.m-sm-2 {
		margin: 2rem !important;
	}

	.m-sm-3 {
		margin: 3rem !important;
	}

	.m-sm-4 {
		margin: 4rem !important;
	}

	.m-sm-5 {
		margin: 5rem !important;
	}

	.m-sm-0 {
		margin: 0rem !important;
	}

	.mt-sm-1 {
		margin-top: 1rem !important;
	}

	.mt-sm-2 {
		margin-top: 2rem !important;
	}

	.mt-sm-3 {
		margin-top: 3rem !important;
	}

	.mt-sm-4 {
		margin-top: 4rem !important;
	}

	.mt-sm-5 {
		margin-top: 5rem !important;
	}

	.mt-sm-0 {
		margin-top: 0rem !important;
	}

	.mb-sm-1 {
		margin-bottom: 1rem !important;
	}

	.mb-sm-2 {
		margin-bottom: 2rem !important;
	}

	.mb-sm-3 {
		margin-bottom: 3rem !important;
	}

	.mb-sm-4 {
		margin-bottom: 4rem !important;
	}

	.mb-sm-5 {
		margin-bottom: 5rem !important;
	}

	.mb-sm-0 {
		margin-bottom: 0rem !important;
	}

	.ml-sm-1 {
		margin-left: 1rem !important;
	}

	.ml-sm-2 {
		margin-left: 2rem !important;
	}

	.ml-sm-3 {
		margin-left: 3rem !important;
	}

	.ml-sm-4 {
		margin-left: 4rem !important;
	}

	.ml-sm-5 {
		margin-left: 5rem !important;
	}

	.ml-sm-0 {
		margin-left: 0rem !important;
	}

	.mr-sm-1 {
		margin-right: 1rem !important;
	}

	.mr-sm-2 {
		margin-right: 2rem !important;
	}

	.mr-sm-3 {
		margin-right: 3rem !important;
	}

	.mr-sm-4 {
		margin-right: 4rem !important;
	}

	.mr-sm-5 {
		margin-right: 5rem !important;
	}

	.mr-sm-0 {
		margin-right: 0rem !important;
	}

	.position-sm-absolute {
		position: absolute !important;
	}

	.position-sm-relative {
		position: relative !important;
	}

	.position-sm-static {
		position: static !important;
	}

	.w-sm-25 {
		width: 25% !important;
	}

	.w-sm-50 {
		width: 50% !important;
	}

	.w-sm-75 {
		width: 75% !important;
	}

	.w-sm-100 {
		width: 100% !important;
	}

	.h-sm-100 {
		height: 100% !important;
	}

	.mw-sm-100 {
		max-width: 100% !important;
	}

	.mw-sm-inherit {
		max-width: inherit !important;
	}

	.mh-sm-inherit {
		max-height: inherit !important;
	}

	.direction-sm-right {
		direction: rtl;
	}

	.direction-sm-left {
		direction: ltr;
	}

	.bg-sm-y-100 {
		background-size: auto 100% !important;
	}

	.bg-sm-cover {
		background-size: cover !important;
	}

	.bg-sm-contain {
		background-size: contain !important;
	}

	.bg-sm-auto {
		background-size: auto !important;
	}

	.bg-sm-left {
		background-position: left !important;
	}

	.bg-sm-left-top {
		background-position: left top !important;
	}

	.bg-sm-right {
		background-position: right !important;
	}

	.bg-sm-right-top {
		background-position: right top !important;
	}

	.bg-sm-center {
		background-position: center !important;
	}

	.bg-sm-center-top {
		background-position: center top !important;
	}

	.bg-sm-center-bottom {
		background-position: center bottom !important;
	}

	.bg-sm-repeat {
		background-repeat: repeat !important;
	}

	.bg-sm-repeat-x {
		background-repeat: repeat-x !important;
	}

	.bg-sm-repeat-y {
		background-repeat: repeat-y !important;
	}

	.bg-sm-norepeat {
		background-repeat: no-repeat !important;
	}

	.co-sm-20 {
		max-width: 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
	}
}

@media (min-width: 768px) {
	.p-md-1 {
		padding: 1rem !important;
	}

	.p-md-2 {
		padding: 2rem !important;
	}

	.p-md-3 {
		padding: 3rem !important;
	}

	.p-md-4 {
		padding: 4rem !important;
	}

	.p-md-5 {
		padding: 5rem !important;
	}

	.p-md-0 {
		padding: 0rem !important;
	}

	.pt-md-1 {
		padding-top: 1rem !important;
	}

	.pt-md-2 {
		padding-top: 2rem !important;
	}

	.pt-md-3 {
		padding-top: 3rem !important;
	}

	.pt-md-4 {
		padding-top: 4rem !important;
	}

	.pt-md-5 {
		padding-top: 5rem !important;
	}

	.pt-md-0 {
		padding-top: 0rem !important;
	}

	.pb-md-1 {
		padding-bottom: 1rem !important;
	}

	.pb-md-2 {
		padding-bottom: 2rem !important;
	}

	.pb-md-3 {
		padding-bottom: 3rem !important;
	}

	.pb-md-4 {
		padding-bottom: 4rem !important;
	}

	.pb-md-5 {
		padding-bottom: 5rem !important;
	}

	.pb-md-0 {
		padding-bottom: 0rem !important;
	}

	.pl-md-1 {
		padding-left: 1rem !important;
	}

	.pl-md-2 {
		padding-left: 2rem !important;
	}

	.pl-md-3 {
		padding-left: 3rem !important;
	}

	.pl-md-4 {
		padding-left: 4rem !important;
	}

	.pl-md-5 {
		padding-left: 5rem !important;
	}

	.pl-md-0 {
		padding-left: 0rem !important;
	}

	.pr-md-1 {
		padding-right: 1rem !important;
	}

	.pr-md-2 {
		padding-right: 2rem !important;
	}

	.pr-md-3 {
		padding-right: 3rem !important;
	}

	.pr-md-4 {
		padding-right: 4rem !important;
	}

	.pr-md-5 {
		padding-right: 5rem !important;
	}

	.pr-md-0 {
		padding-right: 0rem !important;
	}

	.m-md-1 {
		margin: 1rem !important;
	}

	.m-md-2 {
		margin: 2rem !important;
	}

	.m-md-3 {
		margin: 3rem !important;
	}

	.m-md-4 {
		margin: 4rem !important;
	}

	.m-md-5 {
		margin: 5rem !important;
	}

	.m-md-0 {
		margin: 0rem !important;
	}

	.mt-md-1 {
		margin-top: 1rem !important;
	}

	.mt-md-2 {
		margin-top: 2rem !important;
	}

	.mt-md-3 {
		margin-top: 3rem !important;
	}

	.mt-md-4 {
		margin-top: 4rem !important;
	}

	.mt-md-5 {
		margin-top: 5rem !important;
	}

	.mt-md-0 {
		margin-top: 0rem !important;
	}

	.mb-md-1 {
		margin-bottom: 1rem !important;
	}

	.mb-md-2 {
		margin-bottom: 2rem !important;
	}

	.mb-md-3 {
		margin-bottom: 3rem !important;
	}

	.mb-md-4 {
		margin-bottom: 4rem !important;
	}

	.mb-md-5 {
		margin-bottom: 5rem !important;
	}

	.mb-md-0 {
		margin-bottom: 0rem !important;
	}

	.ml-md-1 {
		margin-left: 1rem !important;
	}

	.ml-md-2 {
		margin-left: 2rem !important;
	}

	.ml-md-3 {
		margin-left: 3rem !important;
	}

	.ml-md-4 {
		margin-left: 4rem !important;
	}

	.ml-md-5 {
		margin-left: 5rem !important;
	}

	.ml-md-0 {
		margin-left: 0rem !important;
	}

	.mr-md-1 {
		margin-right: 1rem !important;
	}

	.mr-md-2 {
		margin-right: 2rem !important;
	}

	.mr-md-3 {
		margin-right: 3rem !important;
	}

	.mr-md-4 {
		margin-right: 4rem !important;
	}

	.mr-md-5 {
		margin-right: 5rem !important;
	}

	.mr-md-0 {
		margin-right: 0rem !important;
	}

	.position-md-absolute {
		position: absolute !important;
	}

	.position-md-relative {
		position: relative !important;
	}

	.position-md-static {
		position: static !important;
	}

	.w-md-25 {
		width: 25% !important;
	}

	.w-md-50 {
		width: 50% !important;
	}

	.w-md-75 {
		width: 75% !important;
	}

	.w-md-100 {
		width: 100% !important;
	}

	.h-md-100 {
		height: 100% !important;
	}

	.mw-md-100 {
		max-width: 100% !important;
	}

	.mw-md-inherit {
		max-width: inherit !important;
	}

	.mh-md-inherit {
		max-height: inherit !important;
	}

	.direction-md-right {
		direction: rtl;
	}

	.direction-md-left {
		direction: ltr;
	}

	.bg-md-y-100 {
		background-size: auto 100% !important;
	}

	.bg-md-cover {
		background-size: cover !important;
	}

	.bg-md-contain {
		background-size: contain !important;
	}

	.bg-md-auto {
		background-size: auto !important;
	}

	.bg-md-left {
		background-position: left !important;
	}

	.bg-md-left-top {
		background-position: left top !important;
	}

	.bg-md-right {
		background-position: right !important;
	}

	.bg-md-right-top {
		background-position: right top !important;
	}

	.bg-md-center {
		background-position: center !important;
	}

	.bg-md-center-top {
		background-position: center top !important;
	}

	.bg-md-center-bottom {
		background-position: center bottom !important;
	}

	.bg-md-repeat {
		background-repeat: repeat !important;
	}

	.bg-md-repeat-x {
		background-repeat: repeat-x !important;
	}

	.bg-md-repeat-y {
		background-repeat: repeat-y !important;
	}

	.bg-md-norepeat {
		background-repeat: no-repeat !important;
	}

	.co-md-20 {
		max-width: 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
	}
}

@media (min-width: 992px) {
	.p-lg-1 {
		padding: 1rem !important;
	}

	.p-lg-2 {
		padding: 2rem !important;
	}

	.p-lg-3 {
		padding: 3rem !important;
	}

	.p-lg-4 {
		padding: 4rem !important;
	}

	.p-lg-5 {
		padding: 5rem !important;
	}

	.p-lg-0 {
		padding: 0rem !important;
	}

	.pt-lg-1 {
		padding-top: 1rem !important;
	}

	.pt-lg-2 {
		padding-top: 2rem !important;
	}

	.pt-lg-3 {
		padding-top: 3rem !important;
	}

	.pt-lg-4 {
		padding-top: 4rem !important;
	}

	.pt-lg-5 {
		padding-top: 5rem !important;
	}

	.pt-lg-0 {
		padding-top: 0rem !important;
	}

	.pb-lg-1 {
		padding-bottom: 1rem !important;
	}

	.pb-lg-2 {
		padding-bottom: 2rem !important;
	}

	.pb-lg-3 {
		padding-bottom: 3rem !important;
	}

	.pb-lg-4 {
		padding-bottom: 4rem !important;
	}

	.pb-lg-5 {
		padding-bottom: 5rem !important;
	}

	.pb-lg-0 {
		padding-bottom: 0rem !important;
	}

	.pl-lg-1 {
		padding-left: 1rem !important;
	}

	.pl-lg-2 {
		padding-left: 2rem !important;
	}

	.pl-lg-3 {
		padding-left: 3rem !important;
	}

	.pl-lg-4 {
		padding-left: 4rem !important;
	}

	.pl-lg-5 {
		padding-left: 5rem !important;
	}

	.pl-lg-0 {
		padding-left: 0rem !important;
	}

	.pr-lg-1 {
		padding-right: 1rem !important;
	}

	.pr-lg-2 {
		padding-right: 2rem !important;
	}

	.pr-lg-3 {
		padding-right: 3rem !important;
	}

	.pr-lg-4 {
		padding-right: 4rem !important;
	}

	.pr-lg-5 {
		padding-right: 5rem !important;
	}

	.pr-lg-0 {
		padding-right: 0rem !important;
	}

	.m-lg-1 {
		margin: 1rem !important;
	}

	.m-lg-2 {
		margin: 2rem !important;
	}

	.m-lg-3 {
		margin: 3rem !important;
	}

	.m-lg-4 {
		margin: 4rem !important;
	}

	.m-lg-5 {
		margin: 5rem !important;
	}

	.m-lg-0 {
		margin: 0rem !important;
	}

	.mt-lg-1 {
		margin-top: 1rem !important;
	}

	.mt-lg-2 {
		margin-top: 2rem !important;
	}

	.mt-lg-3 {
		margin-top: 3rem !important;
	}

	.mt-lg-4 {
		margin-top: 4rem !important;
	}

	.mt-lg-5 {
		margin-top: 5rem !important;
	}

	.mt-lg-0 {
		margin-top: 0rem !important;
	}

	.mb-lg-1 {
		margin-bottom: 1rem !important;
	}

	.mb-lg-2 {
		margin-bottom: 2rem !important;
	}

	.mb-lg-3 {
		margin-bottom: 3rem !important;
	}

	.mb-lg-4 {
		margin-bottom: 4rem !important;
	}

	.mb-lg-5 {
		margin-bottom: 5rem !important;
	}

	.mb-lg-0 {
		margin-bottom: 0rem !important;
	}

	.ml-lg-1 {
		margin-left: 1rem !important;
	}

	.ml-lg-2 {
		margin-left: 2rem !important;
	}

	.ml-lg-3 {
		margin-left: 3rem !important;
	}

	.ml-lg-4 {
		margin-left: 4rem !important;
	}

	.ml-lg-5 {
		margin-left: 5rem !important;
	}

	.ml-lg-0 {
		margin-left: 0rem !important;
	}

	.mr-lg-1 {
		margin-right: 1rem !important;
	}

	.mr-lg-2 {
		margin-right: 2rem !important;
	}

	.mr-lg-3 {
		margin-right: 3rem !important;
	}

	.mr-lg-4 {
		margin-right: 4rem !important;
	}

	.mr-lg-5 {
		margin-right: 5rem !important;
	}

	.mr-lg-0 {
		margin-right: 0rem !important;
	}

	.position-lg-absolute {
		position: absolute !important;
	}

	.position-lg-relative {
		position: relative !important;
	}

	.position-lg-static {
		position: static !important;
	}

	.w-lg-25 {
		width: 25% !important;
	}

	.w-lg-50 {
		width: 50% !important;
	}

	.w-lg-75 {
		width: 75% !important;
	}

	.w-lg-100 {
		width: 100% !important;
	}

	.h-lg-100 {
		height: 100% !important;
	}

	.mw-lg-100 {
		max-width: 100% !important;
	}

	.mw-lg-inherit {
		max-width: inherit !important;
	}

	.mh-lg-inherit {
		max-height: inherit !important;
	}

	.direction-lg-right {
		direction: rtl;
	}

	.direction-lg-left {
		direction: ltr;
	}

	.bg-lg-y-100 {
		background-size: auto 100% !important;
	}

	.bg-lg-cover {
		background-size: cover !important;
	}

	.bg-lg-contain {
		background-size: contain !important;
	}

	.bg-lg-auto {
		background-size: auto !important;
	}

	.bg-lg-left {
		background-position: left !important;
	}

	.bg-lg-left-top {
		background-position: left top !important;
	}

	.bg-lg-right {
		background-position: right !important;
	}

	.bg-lg-right-top {
		background-position: right top !important;
	}

	.bg-lg-center {
		background-position: center !important;
	}

	.bg-lg-center-top {
		background-position: center top !important;
	}

	.bg-lg-center-bottom {
		background-position: center bottom !important;
	}

	.bg-lg-repeat {
		background-repeat: repeat !important;
	}

	.bg-lg-repeat-x {
		background-repeat: repeat-x !important;
	}

	.bg-lg-repeat-y {
		background-repeat: repeat-y !important;
	}

	.bg-lg-norepeat {
		background-repeat: no-repeat !important;
	}

	.co-lg-20 {
		max-width: 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
	}
}

@media (min-width: 1200px) {
	.p-xl-1 {
		padding: 1rem !important;
	}

	.p-xl-2 {
		padding: 2rem !important;
	}

	.p-xl-3 {
		padding: 3rem !important;
	}

	.p-xl-4 {
		padding: 4rem !important;
	}

	.p-xl-5 {
		padding: 5rem !important;
	}

	.p-xl-0 {
		padding: 0rem !important;
	}

	.pt-xl-1 {
		padding-top: 1rem !important;
	}

	.pt-xl-2 {
		padding-top: 2rem !important;
	}

	.pt-xl-3 {
		padding-top: 3rem !important;
	}

	.pt-xl-4 {
		padding-top: 4rem !important;
	}

	.pt-xl-5 {
		padding-top: 5rem !important;
	}

	.pt-xl-0 {
		padding-top: 0rem !important;
	}

	.pb-xl-1 {
		padding-bottom: 1rem !important;
	}

	.pb-xl-2 {
		padding-bottom: 2rem !important;
	}

	.pb-xl-3 {
		padding-bottom: 3rem !important;
	}

	.pb-xl-4 {
		padding-bottom: 4rem !important;
	}

	.pb-xl-5 {
		padding-bottom: 5rem !important;
	}

	.pb-xl-0 {
		padding-bottom: 0rem !important;
	}

	.pl-xl-1 {
		padding-left: 1rem !important;
	}

	.pl-xl-2 {
		padding-left: 2rem !important;
	}

	.pl-xl-3 {
		padding-left: 3rem !important;
	}

	.pl-xl-4 {
		padding-left: 4rem !important;
	}

	.pl-xl-5 {
		padding-left: 5rem !important;
	}

	.pl-xl-0 {
		padding-left: 0rem !important;
	}

	.pr-xl-1 {
		padding-right: 1rem !important;
	}

	.pr-xl-2 {
		padding-right: 2rem !important;
	}

	.pr-xl-3 {
		padding-right: 3rem !important;
	}

	.pr-xl-4 {
		padding-right: 4rem !important;
	}

	.pr-xl-5 {
		padding-right: 5rem !important;
	}

	.pr-xl-0 {
		padding-right: 0rem !important;
	}

	.m-xl-1 {
		margin: 1rem !important;
	}

	.m-xl-2 {
		margin: 2rem !important;
	}

	.m-xl-3 {
		margin: 3rem !important;
	}

	.m-xl-4 {
		margin: 4rem !important;
	}

	.m-xl-5 {
		margin: 5rem !important;
	}

	.m-xl-0 {
		margin: 0rem !important;
	}

	.mt-xl-1 {
		margin-top: 1rem !important;
	}

	.mt-xl-2 {
		margin-top: 2rem !important;
	}

	.mt-xl-3 {
		margin-top: 3rem !important;
	}

	.mt-xl-4 {
		margin-top: 4rem !important;
	}

	.mt-xl-5 {
		margin-top: 5rem !important;
	}

	.mt-xl-0 {
		margin-top: 0rem !important;
	}

	.mb-xl-1 {
		margin-bottom: 1rem !important;
	}

	.mb-xl-2 {
		margin-bottom: 2rem !important;
	}

	.mb-xl-3 {
		margin-bottom: 3rem !important;
	}

	.mb-xl-4 {
		margin-bottom: 4rem !important;
	}

	.mb-xl-5 {
		margin-bottom: 5rem !important;
	}

	.mb-xl-0 {
		margin-bottom: 0rem !important;
	}

	.ml-xl-1 {
		margin-left: 1rem !important;
	}

	.ml-xl-2 {
		margin-left: 2rem !important;
	}

	.ml-xl-3 {
		margin-left: 3rem !important;
	}

	.ml-xl-4 {
		margin-left: 4rem !important;
	}

	.ml-xl-5 {
		margin-left: 5rem !important;
	}

	.ml-xl-0 {
		margin-left: 0rem !important;
	}

	.mr-xl-1 {
		margin-right: 1rem !important;
	}

	.mr-xl-2 {
		margin-right: 2rem !important;
	}

	.mr-xl-3 {
		margin-right: 3rem !important;
	}

	.mr-xl-4 {
		margin-right: 4rem !important;
	}

	.mr-xl-5 {
		margin-right: 5rem !important;
	}

	.mr-xl-0 {
		margin-right: 0rem !important;
	}

	.position-xl-absolute {
		position: absolute !important;
	}

	.position-xl-relative {
		position: relative !important;
	}

	.position-xl-static {
		position: static !important;
	}

	.w-xl-25 {
		width: 25% !important;
	}

	.w-xl-50 {
		width: 50% !important;
	}

	.w-xl-75 {
		width: 75% !important;
	}

	.w-xl-100 {
		width: 100% !important;
	}

	.h-xl-100 {
		height: 100% !important;
	}

	.mw-xl-100 {
		max-width: 100% !important;
	}

	.mw-xl-inherit {
		max-width: inherit !important;
	}

	.mh-xl-inherit {
		max-height: inherit !important;
	}

	.direction-xl-right {
		direction: rtl;
	}

	.direction-xl-left {
		direction: ltr;
	}

	.bg-xl-y-100 {
		background-size: auto 100% !important;
	}

	.bg-xl-cover {
		background-size: cover !important;
	}

	.bg-xl-contain {
		background-size: contain !important;
	}

	.bg-xl-auto {
		background-size: auto !important;
	}

	.bg-xl-left {
		background-position: left !important;
	}

	.bg-xl-left-top {
		background-position: left top !important;
	}

	.bg-xl-right {
		background-position: right !important;
	}

	.bg-xl-right-top {
		background-position: right top !important;
	}

	.bg-xl-center {
		background-position: center !important;
	}

	.bg-xl-center-top {
		background-position: center top !important;
	}

	.bg-xl-center-bottom {
		background-position: center bottom !important;
	}

	.bg-xl-repeat {
		background-repeat: repeat !important;
	}

	.bg-xl-repeat-x {
		background-repeat: repeat-x !important;
	}

	.bg-xl-repeat-y {
		background-repeat: repeat-y !important;
	}

	.bg-xl-norepeat {
		background-repeat: no-repeat !important;
	}

	.co-xl-20 {
		max-width: 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
	}
}

/*== Structure End ==*/

/*== Heading ==*/
.page-title {
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0rem;
	font-family: 'El Messiri', sans-serif;
}

.sub-title1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0rem;
	font-family: 'El Messiri', sans-serif;
}

.sub-title2 {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.sub-title3 {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}
.sub-title4 {
	font-size: 16px;
	margin-bottom: 0.5rem;
}
.h1-home {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.title-font {
	font-family: 'El Messiri', sans-serif;
	font-weight: 700
}

/*== Heading End ==*/

/*== Header ==*/
.page-header {
	font-size: 14px;
	line-height: 1.4;
}

.page-header .phoneheader {
	font-size: 20px;
}

.page-header .site-logo img {
	width: auto;
	max-height: 100px;
}

.sticky-fixed {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1020;
	-webkit-box-shadow: rgba(0, 0, 0, .1) 1px 0px 5px;
	box-shadow: rgba(0, 0, 0, .1) 1px 0px 5px;
}

/*== Header End ==*/

/*== Footer ==*/
.footer-map {
	min-height: 300px;
}

.footer-map .btn {
	margin-top: 160px;
}

.table-hours {
	max-width: 280px;
	width: 100%;
	text-align: left;
}

.table-hours tr td:first-child {
	width: 139px;
}

.slinks {
	list-style: none;
	margin: 0;
	padding: 0;
}

.slinks a {
	display: block;
	text-decoration: none;
}

.slinks a:hover path {
	fill: #fff;
}

.slinks li a {
	display: inline-block;
	width: 44px;
	height: 44px;
	background: #ffffff;
	line-height: 42px;
	border-radius: 50%;
	border: 1px solid transparent;
}

.slinks li a:hover {
	background: transparent;
	border: 1px solid #fff;
}

.slinks li+li {
	margin-left: 7px;
}

/* .slinks li:hover { background: transparent; border: 1px solid #fff; }
	.slinks li:hover svg path { fill: #fff; } */
.tooltip-inner {
	background-color: #BD933B;
	color: #fff;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
	border-top-color: #BD933B;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
	border-right-color: #BD933B;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
	border-bottom-color: #BD933B;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
	border-left-color: #BD933B;
}

.page-footer {
	font-size: 15px;
	line-height: 1.4;
}

/* .page-footer a { color: inherit; } */
.copyright-text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	line-height: 1.4;
	color: #333;
}

.webauthorv1 {
	color: #828487;
	text-align: left !important;
	font-family: 'Open Sans', sans-serif !important;
	font-weight: 400 !important;
	font-size: 11px !important;
	line-height: 1.4 !important;
	text-transform: uppercase !important;
	display: inline-block !important;
	position: relative !important;
	padding-left: 35px;
}

.webauthorv1 strong.dfbold {
	font-size: 16px !important;
	font-weight: 700 !important;
	letter-spacing: 0.3px !important;
}

.webauthorv1 a.dflink,
.webauthorv1 a.dflink:hover,
.webauthorv1 a.dflink:focus {
	color: inherit !important;
	text-decoration: none !important;
	font-weight: inherit !important;
	font-size: inherit !important;
}

.webauthorv1 a.dflink:focus {
	outline: none !important;
}

.webauthorv1 .dflogo {
	position: absolute;
	left: 0;
	top: 4px;
}

.lineup1 {
	margin-left: -0.3px;
}

.lineup2 {
	margin-left: -1.3px;
}

.lineup3 {
	margin-left: -0.5px;
}

.lineup4 {
	margin-left: -0.5px;
}

.lineup5 {
	margin-left: -0.5px;
}

.lineup6a {
	margin-left: 0.5px;
}

.lineup6b {
	margin-left: -0.5px;
}

.df-author[data-theme=white] .webauthorv1 {
	color: #fff !important;
}

.df-author[data-theme=white] .webauthorv1 path {
	fill: #fff !important;
}

.df-author[data-theme=light] .webauthorv1 {
	color: #bbb !important;
}

.df-author[data-theme=light] .webauthorv1 path {
	fill: #bbb !important;
}

.df-author[data-theme=dark] .webauthorv1 {
	color: #555 !important;
}

.df-author[data-theme=dark] .webauthorv1 path {
	fill: #555 !important;
}

/*== Footer end ==*/

/*== Menu ==*/
.navbar-toggler {
	width: 25px;
	height: 21px;
	padding: 0;
	outline: none !important;
	vertical-align: middle;
	display: inline-block;
}

.navbar-toggler .i-line {
	width: 100%;
	height: 2px;
	border-radius: 10px;
	background-color: #3e3e3e;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.navbar-toggler .i-line.top {
	top: 0;
}

.navbar-toggler .i-line.middle {
	top: 50%;
	margin-top: -1.5px;
}

.navbar-toggler .i-line.bottom {
	bottom: 0;
}

.closed .i-line.middle {
	width: 0;
	opacity: 0;
}

.closed .i-line.top {
	top: 9px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.closed .i-line.bottom {
	bottom: 7px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.navbar .nav-item {
	outline: none;
}

.navbar .nav-link {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	padding: 14px 16px;
}

.active .nav-link,
.open .nav-link,
.nav-item:hover .nav-link,
.nav-item:focus .nav-link {
	background-color: transparent;
	color: #169fd3;
	text-decoration: none;
}

.navbar .dropdown-menu {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	background-color: #169fd3;
	margin: 0;
	border: none;
	border-radius: 0;
	padding: 5px 0;
}

.navbar .dropdown-menu .dropdown-item {
	color: #fff;
	text-decoration: none;
	padding: 8px 16px;
	white-space: normal;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item:active {
	background-color: transparent;
	color: #202833;
}

.navbar .open>.dropdown-menu {
	display: block;
}

.sidebar-nav {
	z-index: 1021;
	position: fixed;
	left: -250px;
	top: 0;
	width: 100%;
	max-width: 250px;
	height: 100%;
	text-align: left;
	-webkit-box-shadow: rgba(0, 0, 0, .1) 1px 0px 5px;
	box-shadow: rgba(0, 0, 0, .1) 1px 0px 5px;
}

.sidebar-nav .container,
.sidebar-nav .container-fluid {
	height: 100%;
}

.sidebar-nav .navbar-collapse {
	display: block;
	overflow-y: auto;
	height: 100% !important;
}

.sidebar-nav .navbar-nav>.nav-item {
	border-bottom: rgba(100, 100, 100, .5) 1px solid;
}

.sidebar-nav .navbar-nav .dropdown-toggle {
	padding-right: 28px;
}

.sidebar-nav .dropdown-toggle::after {
	position: absolute;
	right: 15px;
	top: 23px;
	border-width: 5px;
	opacity: .7;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition-duration: .4s;
	transition-duration: .4s;
}

.sidebar-nav .show>.dropdown-toggle::after {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

/*== Menu End ==*/

/*== Form ==*/
.form-control,
.custom-select {
	border-color: #e3e3e3;
	color: #000;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.4;
	height: calc(1.5em + .75rem + 4px);
	border-radius: 5px;
	box-shadow: none;
	outline: none;
}

.form-control:focus,
.custom-select:focus {
	box-shadow: none;
	border-color: #e3e3e3;
}

textarea.form-control {
	height: 80px;
}

.custom-select {

	background-size: 23px;
	background-position: right;
	background-repeat: no-repeat;
}

.custom-select option {
	color: #000;
}

.custom-control {
	margin-bottom: 0.5rem;
}

.custom-control-label::before {
	border-color: #ced4da;
	box-shadow: none !important;
}

.custom-control-input:checked~.custom-control-label::before {
	background-color: #0B2E88;
	border-color: #0B2E88;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #202833;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
	background-color: #ddd;
	border-color: #ddd;
}

.custom-checkbox .custom-control-label::before {
	border-radius: 0;
}

.custom-file-input:focus~.custom-file-label {
	box-shadow: none;
	border-color: #202833;
}

.g-recaptcha {
	-webkit-transform: scale(.8);
	transform: scale(.8);
}

.rating {
	display: table;
	direction: rtl;
}

.rating>input {
	display: none;
}

.rating>label {
	position: relative;
	font-size: 32px;
	cursor: pointer;
	display: table-cell;
}

.rating>label::before {
	content: "\2605";
	position: absolute;
	opacity: 0;
}

.rating>label:hover:before,
.rating>label:hover~label:before {
	opacity: 1 !important;
}

.rating>input:checked~label:before {
	opacity: 1;
}

.rating:hover>input:checked~label:before {
	opacity: 0.4;
}

.datepicker-top-left,
.datepicker-top-right {
	border-top-color: #0B2E88 !important;
}

.datepicker-top-left::before,
.datepicker-top-right::before {
	border-bottom-color: #0B2E88 !important;
}

.datepicker-panel>ul>li.picked,
.datepicker-panel>ul>li.picked:hover {
	color: #0B2E88 !important;
}

.datepicker-panel>ul>li.highlighted,
.datepicker-panel>ul>li:hover {
	background-color: #ddd !important;
}

.input-group-text {
	font-size: 14px;
}

.contact-form {
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
	background: #ffffff;
	box-shadow: 0.00px 9.00px 27px 7px rgba(0, 0, 0, 0.11);
	border-radius: 5px;
	font-size: 16px;
}

.contact-form .form-control,
.contact-form .custom-select {
	background-color: transparent;
	color: #000000;
}

.contact-form textarea.form-control {
	height: 60px;
}

.contact-form .custom-control-label::before {
	background-color: transparent;
}

.contact-form .form-control:focus,
.contact-form .custom-select:focus,
.contact-form .custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #e3e3e3;
}

input[type="checkbox"]:required {
	display: none;
}

input[type="checkbox"]:required:invalid+label::before {
	border: 1px solid red;
}

.calander-icon {
	position: absolute;
	top: 11px;
	right: 10px;
}

.submit-btn {
	width: 200px;
}

.page-footer .form-control,
.page-footer .custom-select {
	background: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.page-footer .custom-select {
	
	background-size: 23px;
	background-position: right;
	background-repeat: no-repeat;
}

.page-footer .custom-control-label::before {
	background: transparent;
	border-color: #ffffff;
}

.page-footer .custom-control-input:checked~.custom-control-label::before {
	background-color: #b2832c;
	border-color: #b2832c;
}

/*== Form End ==*/
/*=== Modal Popup ===*/
.modal-dialog {
	margin-top: 3rem;
	margin-bottom: 5rem;
}

/*.close { position: absolute; padding: 0.25rem 1rem; right: 0; top: -38px; color: #fff !important; opacity: 1; text-shadow: none !important; font-size: 36px; outline: none !important; }*/
.modal .close {
	position: absolute;
	top: -28px;
	right: 0;
	width: 26px;
	height: 20px;
	opacity: 1;
	outline: none;
}

.modal .close:before,
.modal .close:after {
	content: '';
	width: 100%;
	height: 2px;
	border-radius: 4px;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	top: 8px;
}

.modal .close:before {
	transform: rotate(45deg);
}

.modal .close:after {
	transform: rotate(-45deg);
}

/*=== Modal Popup End ===*/
/*== Button ==*/
.btn {
	font-size: 16px;
	font-weight: 700;
	padding: 9px 18px;
	text-transform: capitalize;
	text-decoration: none;
	border-radius: 2.5rem;
	box-shadow: none !important;
}

.btn-primary {
	color: #fff;
	background: rgb(178, 131, 44);
	background: linear-gradient(90deg, rgba(178, 131, 44, 1) 0%, rgba(238, 226, 124, 1) 70%, rgba(213, 176, 71, 1) 100%);
	border: none;
	moz-transition: all 1s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
	background-size: 100% 100%;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
	color: #fff;
	background: rgb(178, 131, 44);
	background: linear-gradient(90deg, rgba(178, 131, 44, 1) 0%, rgba(238, 226, 124, 1) 70%, rgba(213, 176, 71, 1) 100%);
	background-position: 0% 0%;
	background-size: 300% 300%;
}

.btn-primary span {
	position: relative;
	top: -1px;
}

.btn-secondary {
	color: #fff;
	background-color: #169fd3;
	border-color: #169fd3;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
	color: #169fd3;
	background-color: #000;
	border-color: #000;
}

.btn-dark {
	color: #fff;
	background-color: #202833;
	border-color: #202833;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.btn-outline-primary {
	color: #ffffff;
	border-color: #ffffff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
	color: #BD933B;
	background-color: #ffffff;
	border-color: #ffffff;
}

.btn-outline-secondary {
	color: #169fd3;
	border-color: #169fd3;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #169fd3;
	border-color: #169fd3;
}

.btn-outline-dark {
	color: #202833;
	border-color: #202833;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: #202833;
	border-color: #202833;
}

.btn-white {
	color: #BD933B;
	background-color: #fff;
	border-color: #fff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:not(:disabled):not(.disabled):active {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}

/*== Button End ==*/

/*== Back to top ==*/
#back-to-top {
	position: fixed;
	bottom: 150px;
	right: 10px;
	z-index: 1000;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	#back-to-top {
		right: 20px;
	}
}

#back-to-top a {
	background-color: #000;
	height: 2.6rem;
	width: 2.6rem;
	border-radius: 100px;
	display: block;
	-webkit-transition-duration: 0.6s;
	transition-duration: 0.6s;
	-webkit-box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.4);
	box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.4);
}

#back-to-top a:hover {
	background-color: #414141;
}

#back-to-top svg {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: -19px auto 0;
}

/*== Back to top End ==*/

/*== Common Styles ==*/
.custom-row {
	margin-left: -8px;
	margin-right: -8px;
}

.custom-row .colm {
	padding-left: 8px;
	padding-right: 8px;
}

.data-src {
	background-repeat: no-repeat;
}

.list-group {
	padding-left: 22px;
	margin-bottom: 0.5rem;
	text-align: left;
}

.list-group li {
	margin-bottom: 0.5rem;
}

.breadcrumb {
	background-color: transparent;
	font-weight: 400;
}

.breadcrumb,
.breadcrumb h2 {
	font-size: 13px;
	font-weight: 400;
}

.breadcrumb a {
	color: #000;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #169fd3;
}

.breadcrumb-item {
	display: inline-block;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: '→';
	font-size: 18px;
	line-height: 1;
	opacity: .5;
}

.team-wrap {
	text-decoration: none;
	color: inherit;
}

.team-wrap .team-img {
	max-width: 250px;
	margin: 0 auto 1.5rem;
	position: relative;
}

.new-patient-banner {
	min-height: 280px;
}

.list-icons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.list-icons li {
	margin-bottom: 1rem;
	padding-left: 32px;
	background-repeat: no-repeat;
	background-position: 0px 2px;
}


.form-div {
	position: relative;
	z-index: 2;
	top: 2rem;
}

.flip {
	transform: scale(1, -1);
}

#FormPopup {
	font-size: 16px;
}

.g-recaptcha-left {
	transform-origin: 0;
}

.course-listing {
	box-shadow: 0px 9px 27px 7px rgb(0 0 0 / 11%);
	border-radius: 5px;
	background: #ffffff;
	margin-bottom: 2rem;
}

.course-section .course-listing:last-child {
	margin-bottom: 0rem;
}

.course-bg {
	min-height: 250px;
}

.price-tag {
	width: 130px;
	position: absolute;
	padding: 5px;
	background: #efc66f;
	right: 0;
	bottom: 20px;
	color: #000000;
	font-weight: 700;
}

.page-item .page-link {
	text-decoration: none;
}

.page-item.active .page-link {
	background-color: #BD933B;
	border-color: #BD933B;
	text-decoration: none;
}

table th {
	font-family: 'El Messiri', sans-serif;
}

#dtBasicExample {
	width: 940px;
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
	content: '+' !important;
	height: 22px !important;
	width: 22px !important;
	line-height: 26px !important;
	border-radius: 22px !important;
	left: 8px !important;
	border: none !important;
	box-shadow: none !important;
	font-family: 'El Messiri', sans-serif !important;
	background-color: #BD933B !important;
	font-size: 24px;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before
{
	content: '-' !important;
	background-color: #000000 !important;
	line-height: 24px !important;
    font-size: 33px;
}
table.dataTable.no-footer{border-bottom: none !important;}
.data-table-main .dataTables_wrapper .dataTables_paginate .paginate_button.current, .data-table-main .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
	color: #ffffff !important;
    border: 1px solid #BD933B !important;
	background: #BD933B !important;
}
.dataTables_length{display: block; width: 100%; margin-bottom: 10px;}
table.dataTable thead th, table.dataTable thead td{border-bottom: 2px solid #dee2e6 !important;}
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child, table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child{padding-left: 35px !important;}
.dtr-data p, .dtr-data span, .dtr-data ul, .dtr-data li, .dtr-data h1, .dtr-data h2, .dtr-data h3, .dtr-data h4, .dtr-data h5, .dtr-data h6, .dtr-data table, .dtr-data i, .dtr-data em{font-family: inherit !important; font-size: inherit !important; color:  inherit !important; line-height: inherit !important;}
.dtr-details{  display: block !important;  width: 90%; margin: 20px auto !important;}
.dtr-details li{margin-bottom: 10px;}
.dtr-details li[data-dtr-index="8"] .dtr-title {
    width: 110px;
    background-image: url(../retina-images/bullet.png);
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left;
    margin-left: -28px;
}
/*.dtr-details .dtr-title::before {
    content: '';
    background-image: url(../retina-images/bullet.png);
    position: absolute;
    width: 18px;
    height: 18px;
    left: 4%;
    background-size: cover;
    margin-top: 3px;
}*/
table.dataTable > tbody > tr.child ul.dtr-details > li{border-bottom: 1px solid #797979 !important;}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child{border-bottom: none !important;}
#dtBasicExample tr.child {
    background: url(../retina-images/course-bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
#dtBasicExample tr.child:hover{
    background: url(../retina-images/course-bg1.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.svg-icon-table{margin-top: -5px;}
#dtBasicExample tr th {line-height: 1rem; padding: 15px 10px;}
#dtBasicExample .btn{font-size: 13px;}
.course-list:before{ content:'\203A'; position: relative; top: -2px;}

/*== Common Styles ==*/

/*=== Retina background ===*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (min--moz-device-pixel-ratio: 1.3),
only screen and (-o-min-device-pixel-ratio: 2.6/2),
/* returns 1.3, see Dev.Opera */
only screen and (min-device-pixel-ratio: 1.3),
only screen and (min-resolution: 124.8dpi),
only screen and (min-resolution: 1.3dppx) {}

/*=== Retina background End ===*/

/*== Responsive ==*/
@media (min-width: 576px) {
	.team-wrap .team-img {
		max-width: 300px;
	}
	.w-sm-auto{ width:auto !important;}
}

@media (min-width: 768px) {
	body {
		font-size: 18px;
		line-height: 1.6rem;
	}

	p {
		margin-bottom: 2rem;
	}

	.page-title {
		font-size: 40px;
		margin-bottom: 0rem;
	}

	.sub-title1 {
		font-size: 52px;
		margin-bottom: 0rem;
	}

	.sub-title2 {
		font-size: 28px;
		margin-bottom: 1rem;
	}

	.sub-title3 {
		font-size: 22px;
		margin-bottom: 1rem;
	}
	.sub-title4 {
		font-size: 18px;
	}


	small,
	.small {
		font-size: 15px;
		line-height: 1.4;
		display: block;
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding: 16px 7px;
		font-size: 13px;
	}

	.navbar-expand-md .dropdown-menu .dropdown-item {
		padding: 7px 7px;
	}

	.navbar .dropdown-toggle::after {
		display: none;
	}

	.footer-map {
		min-height: 400px;
	}

	.footer-map .btn {
		margin-top: 230px;
	}

	.table-hours {
		max-width: 310px;
	}

	.team-wrap .team-img:after {
		opacity: 0;
		content: '';
		background-color: #169fd3;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		-webkit-transition-duration: .4s;
		transition-duration: .4s;
	}

	.team-wrap:hover .team-img:after {
		opacity: .6;
	}

	.form-div {
		top: 4rem;
	}

	textarea.form-control {
		height: 202px;
	}

	.modal-body textarea.form-control {
		height: 80px;
	}
	.data-table-main{font-size: 14px;}
	.w-md-auto{ width:auto !important;}
}

@media (min-width: 992px) {
	.page-header {
		font-size: 15px;
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding: 16px 17px;
		font-size: 15px;
	}

	.navbar-expand-md .dropdown-menu .dropdown-item {
		padding: 7px 17px;
	}

	.navbar-expand-md .dropdown-menu {
		min-width: 11rem;
	}

	.w-lg-auto {
		width: auto !important;
	}
	.data-table-main{font-size: 16px;}
}

@media (min-width: 1200px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding: 16px 27px;
	}

	.navbar-expand-md .dropdown-menu .dropdown-item {
		padding: 7px 27px;
	}

	#dtBasicExample {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.dtr-details .dtr-title{ width:130px;}
	#dtBasicExample tr.child .child { padding-left:20px;}
	.svg-icon-table{margin-top: -5px; display: block; text-align: center; margin: auto; margin-bottom: 5px;}
	.dtr-title .svg-icon-table{margin-top: 0px; display: inline;}
	#dtBasicExample tr th {text-align: center;}
	#pay_link{ font-size:11px;}
	.promo-code{ width:50px;}
}
/*== Responsive end ==*/
/* *** SweetAlert Theme */
.swal-text {
	background-color: #FEFAE3;
	padding: 17px;
	border: 1px solid #F0E1A1;
	display: block;
	margin: 22px;
	text-align: center;
	color: #61534e;
  }