@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/*--------animation---------*/
@keyframes fadeHeaderInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes shadow {
	0% {
		transform: scale(1) translateY(0px);
	}

	100% {
		transform: scale(0.8) translateY(75px);
	}
}

@keyframes ghost {
	0% {
		transform: scale(1) translateY(0px)
	}

	100% {
		transform: scale(1) translateY(-40px)
	}
}

/*======================
1.General Code
========================*/
html {
	overflow-x: hidden;
}

button:focus, *:focus {
	outline: none;
}

body {
	font-family: "M PLUS Rounded 1c", sans-serif;
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 400;
	color: #000;
	background: #ffffff;
	border-color: #dfdfdf;
	transition: transform ease-in .4s;
	overflow: hidden;
}

button {
	background: transparent;
	border: none;
	padding: 0;
}

label {
	line-height: normal;
}

hr {
	margin: 20px 0;
}

.p-relative {
	position: relative;
}

.before-none:after, .after-none:after, .none {
	display: none;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -999;
}

.overlay-bg-black {
	background: #000;
	opacity: 0.1;
}

.overlay-2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.image-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.transform-center {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0%, -50%);
	z-index: 1;
}

.bx-wrapper {
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before {
	font-size: inherit;
	margin: 0;
}

.animate-img {
	position: relative;
	overflow: hidden;
}

.animate-img:hover img {
	transform: scale(1.1);
	transition: 0.5s;
}

.parallax {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transition: border 0.3s ease-in, box-shadow 0.3s ease-in, background 0.3s, opacity 0.3s ease-in;
}

.normal-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: border 0.3s ease-in, box-shadow 0.3s ease-in, background 0.3s, opacity 0.3s ease-in;
}

/*section header*/
.section-header {
	padding-bottom: 30px;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.section-header .section-heading {
	max-width: 540px;
	margin: auto;
}

.section-header .section-heading h3 {
	font-size: 36px;
}

.section-header .section-heading h3:after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #333;
	margin: 20px auto 0;
}

.section-header .section-description {
	margin-bottom: 20px;
	position: relative;
}

.section-header.style-left {
	text-align: left;
}

.section-header.style-left .section-heading {
	margin: 0 auto 0 0;
}

.section-header.style-left .section-heading h3:after {
	margin: 20px auto 0 0;
}

.section-header.style-right {
	text-align: right;
}

.section-header.style-right .section-heading {
	margin: 0 0 0 auto;
}

.section-header.style-right .section-heading h3:after {
	margin: 20px 0 0 auto;
}

/*Slick Arrow*/
.arrow-layout-2 .slick-arrow, .arrow-layout-1 .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translate(0px, -50%);
	transition: 0.3s all;
	font-size: 0;
	overflow: hidden;
	z-index: 1;
}

.arrow-layout-1 .slick-arrow:after {
	width: 50px;
	height: 50px;
	border: 1px solid #fff0;
	background: #fff;
	position: relative;
	overflow: hidden;
	color: #090909;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Flaticon;
}

.arrow-layout-1 .slick-arrow:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 0%;
	background: #000000;
	z-index: -1;
	height: 100%;
	transition: 0.5s all;
}

.arrow-layout-1 .slick-arrow:hover:before {
	width: 100%;
}

.arrow-layout-1 .slick-prev {
	left: -100px;
}

.arrow-layout-1 .slick-next {
	right: -100px;
}

.arrow-layout-1 .slick-prev:after {
	content: "\f164";
}

.arrow-layout-1 .slick-next:after {
	content: "\f162";
}

.arrow-layout-1.slick-slider:hover .slick-prev {
	left: 15px;
}

.arrow-layout-1.slick-slider:hover .slick-next {
	right: 15px;
}

.arrow-layout-2 .slick-arrow {
	font-size: 0px;
	right: 15px;
	top: -70px;
}

.arrow-layout-2 .slick-arrow:after {
	background: #0d5ef4;
	border-color: #0d5ef4;
	color: #fff;
	font-family: flaticon;
	padding: 15px;
	font-size: 20px;
}

.arrow-layout-2 .slick-prev {
	right: 65px;
}

.arrow-layout-2 .slick-next {
	right: 15px;
}

.arrow-layout-2 .slick-prev:after {
	content: "\f164";
}

.arrow-layout-2 .slick-next:after {
	content: "\f162";
}

.arrow-layout-2 .slick-arrow:hover:after {
	color: #fff;
	background: #333;
}

.arrow-layout-2.sidebar-arrow .slick-arrow {
	transform: translate(0px, 0%);
	top: auto;
	bottom: 0;
}

.arrow-layout-2.sidebar-arrow .slick-arrow.slick-prev {
	left: 0;
}

.arrow-layout-2.sidebar-arrow .slick-arrow.slick-next {
	right: 0;
}

/*slick bullets*/
.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.slick-dots li {
	padding: 0;
	line-height: 0;
}

.slick-dots li button {
	font-size: 0;
	width: 12px;
	height: 6px;
	border-radius: 10px;
	background: #2d3e52;
	margin: 0 5px;
	transition: 0.6s all;
	border: 2px solid #2d3e52;
}

.slick-dots li.slick-active button {
	width: 24px;
	height: 6px;
	border-radius: 50px;
	background: #333;
	border: 2px solid #333;
}

/*pagination*/
.page-item:first-child .page-link {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.page-link:focus {
	box-shadow: none;
	z-index: 1;
}

.page-item .page-link {
	padding: 8px 20px;
	font-size: 14px;
	line-height: 1.5;
	border: 2px solid #eee;
	color: #020202;
	border-radius: 0;
}

.page-item:hover .page-link, .page-item.active .page-link {
	background-color: #0d5ef4;
	border-color: #333;
	color: #fff;
}

/*======================
1.1 Typography
========================*/
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 600;
	color: #000;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}

h1 {
	font-size: 50px;
	line-height: normal;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 35px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 20px;
	font-family: "M PLUS Rounded 1c", sans-serif;
}

a {
	transition: 0.5s;
	color: #083538;
	text-decoration: none !important;
}

a:focus, a:hover {
	color: #0d5ef4;
	text-decoration: none;
	transition: 0.5s;
}

dl, ol, ul {
	margin-top: 0;
	margin-bottom: 0;
}

ul li, ol li {
	margin: 0px;
	position: relative;
}

ul.custom {
	list-style: none;
	padding: 0;
}

ul.custom-flex {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

blockquote {
	background-color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	padding: 30px;
	padding-left: 70px;
	border-left: 2px solid #0d5ef4;
}

blockquote span {
	width: 50px;
	height: 50px;
	background: #0d5ef4;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-size: 16px;
	margin-right: 0;
	position: absolute;
	left: 0;
	top: 0;
}

blockquote p {
	font-size: 16px;
	font-style: italic;
	margin: 0;
	font-weight: 500;
	word-break: break-word;
	margin-bottom: 0;
}

blockquote h6 {
	color: #000;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
}

iframe {
	border: none;
	width: 100%;
}

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

table th, table td {
	border: 1px solid #dfdfdf;
	padding: 15px;
}

table {
	border: 1px solid #dfdfdf;
	padding: 15px;
	width: 100%;
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 16px;
}

.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fw-100 {
	font-weight: 100;
}

.fw-400 {
	font-weight: 400;
}

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

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

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

/*======================
1.2 Space margins and padding
========================*/
.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.section-padding {
	padding: 80px 0;
}

.section-padding-top {
	padding-top: 80px;
}

.section-padding-bottom {
	padding-bottom: 80px;
}

.padding-10 {
	padding: 10px;
}

.padding-15 {
	padding: 15px;
}

.padding-20 {
	padding: 20px;
}

.mb-xl-20 {
	margin-bottom: 20px;
}

.mb-xl-30 {
	margin-bottom: 30px;
}

.mb-xl-40 {
	margin-bottom: 40px;
}

.mb-xl-50 {
	margin-bottom: 50px;
}

.mb-xl-80 {
	margin-bottom: 80px;
}

.pb-xl-20 {
	padding-bottom: 20px;
}

/*==================
1.3. Forms
====================*/
.form-control-custom::placeholder {
	font-size: 14px;
}

.banner-tabs .form-control-custom:focus {
	border: 2px solid #ffffff;
	border-bottom: 2px solid #333;
	box-shadow: none;
}

.banner-tabs .form-control-custom, .newsletter .form-control-custom {
	border: 2px solid #333;
}

.form-control-custom {
	height: 40px;
	padding: 0 15px;
	border-radius: 0;
	border: 1px solid #ddd;
	width: 100%;
	background: #fff;
	font-size: 14px;
}

.form-control-custom:focus {
	border: 1px solid #c1c1c1;
	border-bottom: 1px solid #333;
	box-shadow: none;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #ffffff;
	opacity: 1;
}

.btn-height, button.btn-height {
	height: 40px;
	line-height: 1;
	padding: 0;
}

label.submit {
	height: 15px;
	width: 100%;
	clear: both;
}

.custom-select {
	background-image: none;
}

.custom-select:focus {
	box-shadow: none;
}

.group-form .form-control-custom, .group-form .form-control-custom:not(:last-child) {
	padding: 0 40px 0 15px;
}

.group-form .form-control-custom:focus {
	z-index: 0;
}

.group-form .form-control-custom.custom-select:focus {
	z-index: 10;
}

.group-form .input-group-append {
	position: absolute;
	height: 40px;
	width: 40px;
	background: #0d5ef4;
	color: #fff;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	z-index: 0;
	pointer-events: none;
}

.group-form .custom-select {
	padding: 0 30px 0 10px;
}

.group-form .custom-select:after {
	border-bottom-color: #fff;
	border-right-color: #fff;
	right: 15px;
}

.banner-tabs .group-form .input-group-append {
	background: #333;
}

.banner-tabs .group-form .custom-select:before {
	content: '';
	background: #333;
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	right: -2px;
	top: -2px;
	margin-top: 0;
}

.group-form .custom-select:before {
	content: '';
	background: #000;
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	right: -2px;
	top: -2px;
	margin-top: 0;
}

textarea.form-control {
	height: auto;
	padding: 20px 15px 0;
}

label.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

label.custom-checkbox {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	cursor: pointer;
	user-select: none;
	line-height: normal;
	font-size: 14px;
}

label.custom-checkbox:last-child {
	margin-bottom: 10px;
}

/* Create a custom checkbox */
label.custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #d4d4db;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 0px;
}

/* On mouse-over, add a grey background color */
label.custom-checkbox:hover input~.checkmark {
	background-color: #fff;
	border: 1px solid #333;
}

/* When the checkbox is checked, add a blue background */
label.custom-checkbox input:checked~.checkmark {
	background-color: #333;
	border: 1px solid #333;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
label.custom-checkbox input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
label.custom-checkbox .checkmark:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/*==================
1.4. Buttons
====================*/
.btn-first {
	display: inline-block;
	padding: 12px 40px;
	position: relative;
	transition: 0.5s all;
	background: transparent;
	color: inherit;
	border: 1px solid transparent;
	font-size: 14px;
	overflow: hidden;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
}

.btn-submit {
	border-color: #0d5ef4;
	color: #ffffff;
	background: #0d5ef4;
}

.btn-small:before, .btn-submit:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-color: #000;
	width: 0%;
	transition: 0.5s all;
	z-index: -1;
}

.btn-small:hover, .btn-submit:hover {
	color: #fff;
}

.btn-small:focus, .btn-submit:focus {
	background-color: #00a3c8;
	color: #fff;
}

.btn-small:hover:before, .btn-submit:hover:before {
	width: 100%;
}

.btn-second {
	display: inline-block;
	padding: 8px 20px;
	position: relative;
	transition: 0.5s all;
	background: transparent;
	color: inherit;
	border: 1px solid transparent;
	font-size: 14px;
	overflow: hidden;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
}

.btn-small {
	color: #fff;
	padding: 10px 40px !important;
	display: inline-block;
	font-weight: 500;
	cursor: pointer;
	font-size: 20px !important;
	border-radius: 50px;
	transition: 2s;
	background: #a77931;
	margin: 0px 10px;
	filter: drop-shadow(0px 0px 3px #c01d2e);
}

.btn-small:hover, .btn-small:focus {
	border-color: #550047;
}

/*==================
1.5. Section-Colors-&-Backgrounds
====================*/
.bg-light-white {
	background-color: #f5f5f5;
}

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

.bg-custom-blue {
	background: #333;
}

.bg-light-black {
	background: #2d3e52;
}

/*Colors*/
.text-custom-black {
	color: #000000;
}

.text-custom-white {
	color: #ffffff;
}

.text-custom-blue {
	/*    color: #a77931;*/
	color: #57fa36;
}

.text-light-dark {
	color: #838383;
	;
}

.text-light-black {
	color: #2d3e52;
}

.text-yellow {
	color: #fdb714;
}

/*======================
1.6 Modal & Popups
========================*/
/*======================
1.7 Accordion
========================*/
.custom-accordion .card {
	background: #ffffff;
	border-color: #fff;
	border-radius: 0;
}

.custom-accordion .card .card-header {
	padding: 0;
	background: #ededed;
	border-color: #ededed;
	border-radius: 0;
}

.custom-accordion .card .card-header .collapsebtn {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	/*	white-space: nowrap;*/
	text-overflow: ellipsis;
	overflow: hidden;
	align-items: center;
	padding: 10px 15px;
	width: 100%;
	background: #0d5ef4;
	color: #fff;
	cursor: pointer;
}

.custom-accordion .card .card-header .collapsebtn.collapsed {
	background: #ededed;
	border-color: #ededed;
	color: #000;
}

.custom-accordion .card .card-header .collapsebtn:before {
	content: '\f068';
	background: #fff;
	color: #333;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 5px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

.custom-accordion .card .card-header .collapsebtn.collapsed:before {
	content: '\f067';
	background: #2d3e52;
	color: #ededed;
}

.custom-accordion .card .card-body {
	padding: 20px;
}


/*======================
1.7 Counter
========================*/
.counter-sec {
	background-color: #2457aa;
	color: var(--thm-color-four);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0;
}

.counter-container {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex-wrap: wrap;
	text-align: center;
	z-index: 2;
	margin: 0px 20px;
}

.counter {
	font-size: 48px;
	margin-top: 10px;
	color: #fff;
	font-weight: 700;
}

.counter-container i {
	font-size: 50px;
	color: #fff;
}

.counter-container p {
	color: #fff;
	font-size: 24px;
}

.counter-container span {
	font-weight: 700;
}


/*======================
2. topbar
========================*/

.header-top {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #202c3c;
	color: #fff;
	background-color: #0b1432;
}

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

.header-links ul li a {
	font-size: 16px;
	margin-left: 5px;
}

.menu-top {
	padding: 20px 0;
	background-color: #0b1432;
	color: #fff;
}

.menu-top .icon-btn i {
	background-color: #0d5ef4;
	color: #fff;
	padding: 15px;
	border-radius: 10%;
}

.menu-top .header-link {
	color: #fff;
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #202c3c;
	font-size: 16px;
}

.menu-top .header-link:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.menu-top .header-link:hover {
	color: #fff;
}

.menu-top .as-social a i {
	background-color: #0f2239;
	border: 1px solid #4d5765;
	color: #fff;
	padding: 15px;
	border-radius: 10%;
}

.as-social a i:hover {
	background-color: #0d5ef4;
	color: #fff;
}

/*======================
2. Homepages
========================*/
.header .topbar {
	background: #333;
}

.header .topbar .leftside ul>li>a {
	margin: 10px 10px 10px 0px;
	line-height: 33px;
	border: 2px solid #fff;
	width: 36px;
	height: 36px;
	text-align: center;
	display: block;
}

.header .topbar .leftside ul>li:hover>a {
	background-color: #0d5ef4;
	border-color: #0d5ef4;
	color: #fff;
}

.header .topbar .rightside ul {
	justify-content: flex-end;
}

.header .topbar .rightside ul>li.login {
	background-color: #45afce;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	height: 100%;
	padding: 0 30px;
}

.header .topbar .rightside ul>li.book-appointment>a {
	background: #0d5ef4;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	padding: 16px 30px;
	font-weight: 600;
	color: #fff;
}

.header .topbar .rightside ul>li>a>i {
	margin-right: 10px;
}

/*Navigation*/
.header .navigation-wrapper {
	background-color: transparent;
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	width: 100%;
	padding: 10px 7px;
}

.header .navigation-wrapper.sticky {
	animation-name: fadeHeaderInDown;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 22;
	background: #000;
	animation-duration: 1s;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	animation-fill-mode: both;
}

.header .navigation-wrapper .sticky nav>.main-navigation .hamburger-menu .menu-btn span {
	background: #fff;

}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul {
	justify-content: flex-end;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item {
	/* margin: 0px 8px; */
	padding: 15px 1px;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item:last-child {
	margin-right: 0;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item>a {
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	position: relative;
	padding: 5px 15px;
}

.menu-item i {
	color: #0d5ef4;
}

/*
.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item>a:after {
	content: '';
	display: block;
	height: 2px;
	background: #333;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	width: 100%;
	opacity: 0;
	transition: 0.3s all;
}
*/
.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item:hover>a:before, .header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item.active>a:before {
	top: -2px;
	opacity: 1;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item:hover>a:after, .header .navigation-wrapper nav>.main-navigation .main-menu>ul>.menu-item.active>a:after {
	bottom: -2px;
	opacity: 1;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.search {
	display: flex;
	align-items: center;
	margin-right: 0;
}

.header .navigation-wrapper nav>.main-navigation .main-menu>ul>.search>a {
	padding: 5px 20px;
	padding-right: 0;
	font-size: 14px;
}

.menu-item-has-children {
	position: relative;
}

.menu-item-has-children>a>.arrow:after, .menu-item-has-megamenu>a>.arrow:after {
	display: inline-block;
	margin-left: .55em;
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

.menu-item-has-children .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 200px;
	transform: translateY(10px);
	transition: 0.3s all;
	border-top: 2px solid #333;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
}

.menu-item-has-children:hover>.submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-item-has-children .submenu>.menu-item>a {
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	color: #000;
}

.menu-item-has-children .submenu>.menu-item:hover a {
	color: #0d5ef4;
}

.menu-item-has-children .submenu .menu-item-has-children>a>.arrow:after {
	position: absolute;
	right: 10px;
	transform: rotate(-90deg);
}

.menu-item-has-children .submenu .menu-item-has-children>.submenu {
	left: 100%;
	top: 0;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu {
	display: none;
	align-items: center;
	cursor: pointer;
	padding: 25px 0;
	justify-content: flex-end;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn span {
	background: #000;
	height: 2px;
	width: 25px;
	margin-bottom: 5px;
	display: block;
	transition: 0.3s;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn span:last-child {
	margin-bottom: 0;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn.active {
	position: relative;
	top: -4px;
	transition: 0.3s;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn.active span:first-child {
	transform: rotate(45deg);
	transition: 0.3s;
	position: relative;
	top: 7.4px;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn.active span:nth-child(2) {
	display: none;
}

.header .navigation-wrapper nav>.main-navigation .hamburger-menu .menu-btn.active span:last-child {
	transform: rotate(-45deg);
	transition: 0.3s;
}

/*Main Slider*/
.main-banner .slide-item {
	height: 680px;
	position: relative;
	z-index: 1;
	margin: 0;
}

.main-banner .slide-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
}

.slider-content h1 {
	font-size: 48px;
}

.slider-content ul {
	margin-bottom: 20px;
}

.slider-content ul li {
	display: flex;
	align-items: center;
	font-size: 20px;
	margin-bottom: 10px;
}

.slider-content ul li i {
	color: #0d5ef4;
	font-size: 22px;
	margin-right: 15px;
	width: 27px;
	height: 22px;
	text-align: center;
}

.main-banner .slick-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
}

/*Banner tabs*/
.banner-tabs .tab-pane [class^="col-"], .banner-tabs .tab-pane [class*=" col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.banner-tabs {
	margin-top: 0;
	background: url('../images/black_mamba.png');
	background-repeat: repeat;
	background-position: center;
	background-size: auto;
}

.banner-tabs .tabs .nav-tabs .nav-item .nav-link {
	background: #ffffff8c;
	color: #000;
	font-weight: 500;
	letter-spacing: 1px;
}

.tabs .nav-tabs {
	border: none;
}

.tabs .nav-tabs .nav-item {
	text-align: center;
	margin-right: 10px;
	margin-bottom: 10px;
}

.tabs .nav-tabs .nav-item .nav-link:hover, .tabs .nav-tabs .nav-item .nav-link.active {
	background: #0d5ef4;
	color: #ffffff;
	border: none;
	border-bottom: 2px solid #333;
}

.tabs .nav-tabs .nav-item .nav-link.active:before {
	content: "";
	bottom: -8px;
	left: calc(50% - 6px);
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #333;
}

.tabs .nav-tabs .nav-item .nav-link {
	background: #fff;
	border-radius: 0;
	border: none;
	border-bottom: 2px solid #333;
	color: #000;
	font-weight: 600;
	padding: 12px 40px;
	display: block;
	z-index: 10;
	position: relative;
}

.tabs .nav-tabs .nav-item .nav-link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-color: #0d5ef4;
	width: 0%;
	transition: 0.5s all;
	z-index: -1;
}

.tabs .nav-tabs .nav-item .nav-link:hover:after {
	width: 100%;
}

/*banner-bottom*/
.banner-bottom {
	margin-top: -100px;
}

.box-1 {
	padding: 20px 30px;
	background: #263bd6;
	text-align: center;
	color: #fff;
}

.box-2 {
	padding: 20px 30px;
	background: #ffb429;
	text-align: center;
	color: #fff;
}

.box-3 {
	padding: 20px 30px;
	background: #9a73ba;
	text-align: center;
	color: #fff;
}

/*Category Start*/
.category {
	padding: 40px;
	position: relative;
}

.cat-dgn {
	border: 1px solid #ccc;
	border-radius: 20px;
	margin: 15px;
	background-color: #eef2f6;
}

.cat-dgn:hover {
	border: 1px solid #0d5ef4;
}

.category .box {
	height: 100px;
	width: 100px;
	margin: 20px auto;
	position: relative;
	border-radius: 50%;
	padding: 35px;
	background-color: #fff;
}

.cat-dgn .box img {
	width: 30px;
	height: auto;
}

.category .box i {
	display: block;
	color: #eaf3fa;
	font-size: 40px;
	padding-top: 17px;
}

.category .category-detail .num {
	width: 60px;
	height: 60px;
	background-color: #7499f1;
	box-shadow: 0px 0px 15px 0px #00a9d3;
	margin: -38px auto 15px auto;
	border-radius: 50%;
	color: #fff;
	font-size: 30px;
	padding-top: 7px;
	border: 1px dashed;
}

.category .category-detail h5 {
	color: #0d5ef4;
}

.category .category-detail p {
	color: #777;
}

/*Category End*/

/*Offer Section*/

.offer {
	background-image: url(../images/offer1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}

.offer-title h2 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-weight: 600;
}

.offer-title span {
	font-weight: 300;
}

.offer-sec {
	display: flex;
	justify-content: space-around;
}

.offer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: .8;
	z-index: -1;
}

/*Offer Section*/


/*About us*/
.feature-box {
	display: flex;
	align-items: center;
	padding: 10px 20px;
}

.feature-box_icon {
	position: relative;
	text-align: center;
	z-index: 2;
}

.feature-box_title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

.feature-box_text {
	margin-bottom: 0;
}

.feature-box_content {
	margin-left: 15px;
}

.about-us .about-left-side .section-header {
	padding-bottom: 0;
}

.about-us .about-right-side .about-img {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.about-us .about-right-side .about-img img {
	padding: 0px;
	position: relative;
}

.about-us {
	background-image: url(../images/map.jpg);
	background-repeat: repeat;
	background-position: cover;
	background-size: auto;
}


.our-work-sec {
	background-color: #0d5ef4;
}

/* job */
.job-item {
	margin-bottom: 30px;
	border: 1px solid #c1c1c1;
	padding: 15px;
	position: relative;
	border-radius: 20px;
}

.job-item img {
	/*position: absolute;
	top: 38%;*/
	margin-bottom: 10px;
	border-radius: 20px;
}

.job-item .job-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	/*padding-left: 80px;*/
}

.job-item .job-inner .job-inner-left h3 {
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 22px;
	font-weight: 600;
}

.job-item .job-inner .job-inner-left ul {
	margin: 0;
	padding: 0;
}

.job-item .job-inner .job-inner-left ul li {
	list-style-type: none;
	display: block;
	font-size: 14px;
	color: #808291;
	position: relative;
	margin-bottom: 10px;
}

.job-item .job-inner .job-inner-right {
	text-align: right;
}

.job-item .job-inner .job-inner-right ul {
	margin: 0;
	padding: 0;
}

.job-item .job-inner .job-inner-right ul li {
	display: inline-block;
	font-size: 14px;
	border: 1px solid;
	border-image-source: linear-gradient(90deg, #57fa36 0%, #57fa36 63%);
	border-image-slice: 1;
	text-align: center;
	width: 95px;
	margin-bottom: 10px;
	margin-left: auto;
}

.job-item .job-inner .job-inner-right ul li a {
	/*display: block;*/
	color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
	z-index: 1;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

.job-item .job-inner .job-inner-right ul li a:before {
	position: absolute;
	content: '';
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	background: -webkit-gradient(linear, left top, right top, from(#0d5ef4), color-stop(63%, #0d5ef4));
	background: linear-gradient(90deg, #0d5ef4 0%, #0d5ef4 63%);
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

.job-item .job-inner .job-inner-right ul li span {
	display: block;
	color: #ffffff;
	background: -webkit-gradient(linear, left top, right top, from(#0d5ef4), color-stop(63%, #0d5ef4));
	background: linear-gradient(90deg, #0d5ef4 0%, #0d5ef4 63%);
	padding-top: 10px;
	padding-bottom: 10px;
}

/*our-work-sec*/
.catagri-item {
	margin-bottom: 30px;
	text-align: center;
	padding: 30px 10px;
	border-radius: 10px;
	border: 1px solid #0d5ef4;
}

.catagri-item:hover {
	border: 3px solid #0d5ef4;
	box-shadow: 0px 0px 25px 0px #dddddd8c;
}

.catagri-item i {
	display: block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	color: #0d5ef4;
	background-color: #f5f5f5;
	margin-left: auto;
	margin-right: auto;
	font-size: 30px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.catagri-item a {
	display: block;
	font-size: 16px;
	/*color: #333333;*/
	font-weight: 600;
	max-width: 145px;
	margin-left: auto;
	margin-right: auto;
}

/*Banner-2*/
.banner-2 {
	background-image: url(../images/banner-2.jpeg);
	height: 600px;
	width: 100%;
	background-size: cover;
	object-fit: cover;
	object-position: center;
}

.banner-2 .banner-content {
	margin-top: 150px;
	color: #fff;
}

/*Our Services*/
.service-box {
	padding: 20px;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 20px;
}

.service-box:hover {
	border: 1px solid #0d5ef4;
}

.service-box img {
	border-radius: 20px;
}

.service-box i {
	font-size: 50px;
	color: #0d5ef4;
}

.service-box h4 {
	margin-top: 20px;
	font-size: 22px;
	text-align: left;
	line-height: 1.8;
	padding: 0px 15px;
}

.service-box p {
	padding: 0px 5px;
	color: #B5BCC2;
	font-size: 15px;
}


/*Testimonial*/
.testimonial {
	background-image: url(../images/home/13.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}

.testimonial::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: .8;
	z-index: -1;
}

.testimonial_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;

}

.testimonial_wrap .inner {
	position: relative;
	text-align: center;
	cursor: grab;
}

.testimonial_wrap .inner .thumb {
	margin-bottom: 24px;
	display: inline-block;
}

.testimonial_wrap .inner .thumb img {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.testimonial_wrap .inner .excert p {
	font-size: 18px;
	line-height: 40px;
	color: #fff;
	font-weight: 700;
}

.testimonial_wrap .inner .info p {
	font-size: 17px;
}

.testimonial_wrap .inner .info i {
	margin: 12px 0;
	color: red;
}

.testimonial_wrap .inner .info p {
	font-weight: 500;
	font-size: 25px;
	color: #0d5ef4;
	transition: 0.3s all;
	margin: 0;
}

.testimonial_wrap .inner .info p:hover {
	color: #fff;
}

.testimonial_wrap .inner .info span {
	line-height: 1;
	font-size: 18px;
	color: #fff;
}

/*our-team*/
.our-team .overlay-bg-black {
	opacity: 0.5;
}

.team-sy-grid {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 20px;
}

.team-sy-grid .caption {
	padding: 20px;
	background-color: #fff;
}

.team-sy-grid .caption h5 {
	text-align: center;
}

.team-sy-grid .hover-wrap {
	background-color: rgba(0, 0, 0, 0.9);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	transform: translateX(100%);
	transition: 0.3s all;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-social-links a {
	font-size: 18px;
	display: inline-block;
	background: #545454;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}



.team-sy-grid .hover-wrap .text-wrap {
	text-align: center;
	padding: 0 20px;
	max-width: 300px;
	margin: 0 auto;
}

.team-sy-grid:hover .hover-wrap {
	transform: translateY(0%);
}

/*our articles*/
.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date, .our_articles .post .post-wrapper .post-img .post-date {
	text-align: center;
	width: 70px;
	margin-top: 0px;
	z-index: 1;
	position: absolute;
	left: 20px;
	top: 20px;
	text-transform: capitalize;
	border-radius: 40px;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date .year, .our_articles .post .post-wrapper .post-img .post-date .year {
	background-color: #0d5ef4;
}

.our_articles .post .post-wrapper .blog-meta .post-meta {
	display: flex;
	justify-content: flex-start;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date .date, .our_articles .post .post-wrapper .post-img .post-date .date {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1;
	padding: 16px 20px;
	border-radius: 50%;
	color: #B5BCC2;
}


.our_articles .post .post-wrapper .blog-meta .post-heading h2 {
	margin-top: 20px;
	font-size: 22px;
	text-align: left;
	line-height: 1.8;
	padding: 0px 7px;
}

.our_articles .post .post-wrapper .blog-meta .post-heading p {
	text-align: left;
}

.our_articles .post .post-wrapper .post-footer {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #f5f5f5;
	background: #0d5ef4;
}

.our_articles .post .post-wrapper .post-footer .post-author a {
	color: #fff;
}

.our_articles .post .post-wrapper .post-footer>a {
	text-transform: uppercase;
	padding: 0px 20px;
}

.post-author p {
	margin: 0;
	font-size: 15px;
}

.post-footer-read-more a img {
	height: 50px;
	width: 50px;
	padding-left: 0px;
	line-height: 44px;
	font-size: 15px;
	display: inline-block;
	vertical-align: top;
	padding-top: 0;
	position: absolute;
	top: 160px;
	right: 30px;
	z-index: 1;
	min-height: auto;
}

/*Partner*/

.partner {
	padding: 50px 0px;
}

.partner-box {
	width: 176px;
	margin-right: 30px;
}

.partner-box .item {
	text-align: center;
}

.partner-box .item img {
	width: auto;
	margin: auto;
}

/*Partner*/


/*Event Start*/
.event-box {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid #e7e7ec;
	border-radius: .25rem;
}

.line-clamp-2 {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.event-img img {
	padding: 0 20px;
}

.event-detail .event-date p {
	padding: 3px 20px;
	background-color: #0d5ef4;
	display: inline-block;
	border-radius: 20px;
	font-size: 13px;
	color: #fff;
}

.event-othr ul {
	padding-left: 0px !important;
	float: left;
}

.event-othr ul li {
	list-style: none;
	float: left;
	padding: 0px 20px 0px 0px;
	color: #B5BCC2;
}

/*Event End*/






/*footer*/

#footer .footer-newsletter {
	padding: 50px 0 10px 0px;
	background: #0b1432;
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	color: #fff;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 8px;
	width: calc(100% - 140px);
}

#footer .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 30px;
	margin: 3px;
	background: #0d5ef4;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
	background: #e6573f;
}

#footer .footer-top {
	background: #0b1432;
	border-bottom: 1px solid #202c3c;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 18px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

#footer .footer-top .footer-info p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	color: #fff;
	line-height: 1;
	padding: 9px;
	margin-right: 4px;
	border-radius: 10%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	border: 1px solid #4d5765;
}

#footer .footer-top .social-links a:hover {
	background: #0d5ef4;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #ec7f6d;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
	font-size: 16px;
}

#footer .footer-top .footer-links ul a:hover {
	color: #e96b56;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
}

.copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0px;
	background: linear-gradient(#131313, #1a1a1a);
	color: #fff;
	text-align: center;
}

.copyright-menu a {
	padding: 0px 5px;
}

/*back to top*/
#back-top {
	text-align: center;
	display: block !important;
}

#back-top a {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 0px;
	text-align: center;
	line-height: 36px;
	color: #ffffff;
	border-radius: 50%;
	/* background: #a77931; */
	transition-duration: 0.3s;
	font-size: 22px;
	box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
	position: fixed;
	z-index: 100;
	bottom: 40px;
	right: 20px;
}

/*======================
3. Blog
========================*/
/*sub header*/
.subheader {
	background-image: url(../images/subheader.jpg);
	text-align: center;
	height: 400px;
	padding-top: 140px;
	z-index: -1;
}

.subheader:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #2d3e52;
	opacity: 0.5;
}

.subheader h1 {
	line-height: 1;
}

.subheader ul li a {
	color: #fff;
}

.subheader ul li a:after {
	content: '/';
	color: #fff;
	font-size: 14px;
	margin: 0 5px;
}

.subheader ul li.active {
	color: #fff;
}

.fub-form {
	margin-top: -115px;
}

.form-1 {
	background: #0d5ef4;
	padding: 20px 20px;
}

.form-1 .form-group {
	margin-bottom: 0px;
}

.fub-form a {
	background: #fff;
	width: 100%;
	padding: 6px 0px;
	color: #0d5ef4;
	font-weight: 600;
}

/*sidebar*/
.sidebar_wrap .sidebar .sidebar_widgets {
	padding: 20px;
	background: #fff;
	border: #eee solid 1px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
	margin: -20px -20px 20px;
	padding: 20px;
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li {
	position: relative;
	margin-bottom: 10px;
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li:last-child {
	margin-bottom: 0px;
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li a {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_img {
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title {
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding: 5px 15px;
	width: 100%;
}

.information h6 {
	background: #0d5ef4;
	padding: 10px;
	width: 15%;
	border-radius: 25px;
	color: #fff;
}

.job-title {
	background: #f7f7f7;
	padding: 10px 20px;
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title h6 {
	margin-bottom: 10px;
}

.blog-details .post-details-tags-social .tags a, .sidebar_wrap .sidebar .sidebar_widgets .tags a {
	display: inline-block;
	padding: 5px 15px;
	border: #eee solid 1px;
	margin: 0 5px 10px 0;
	background: #ffffff;
	font-weight: 600;
	border-radius: 50px;
	color: #838383;
}

.blog-details .post-details-tags-social .tags a:hover, .sidebar_wrap .sidebar .sidebar_widgets .tags a:hover {
	border-color: #333;
	color: #333;
}

/*======================
4. Blog Details
========================*/
.blog-details .post .post-wrapper .post-img, .blog-details .post .post-wrapper .blog-meta .blog-video iframe {
	height: 450px;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta {
	display: flex;
}

.blog-details .post .post-wrapper .blog-meta .post-meta-box .post-meta .post-date {
	position: absolute;
	right: 0;
	height: 75px;
	margin-top: 0;
	left: 20px;
	top: 20px;
}

.blog-details .post .post-wrapper .blog-meta .post-heading h2 {
	font-size: 30px;
	font-weight: 600;
}

.blog-details .post .post-wrapper .blog-meta .post-heading h2:after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #333;
	margin-top: 20px;
}

.blog-details .post .post-wrapper .blog-meta .post-author {
	display: flex;
	align-items: center;
	margin-right: 15px;
	flex-wrap: wrap;
	width: auto;
	border: none;
}

.blog-details .post .post-wrapper .blog-meta .post-author .author-img {
	margin-right: 15px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 50%;
}

.blog-details .post-details-tags-social .tags-box {
	display: flex;
	align-items: flex-start;
}

.blog-details .post-details-tags-social .tags {
	margin-left: 15px;
}

.blog-details .post-details-tags-social .social-media-box ul {
	justify-content: flex-end;
}

.blog-details .post-details-tags-social .social-media-box ul li {
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.blog-details .post-details-tags-social .social-media-box ul li a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	z-index: 1;
}

.sidebar_wrap .sidebar .sidebar_widgets {
	padding: 20px;
	background: #fff;
	border: #ccc solid 1px;
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
	margin: 0px 0px 0px;
	padding: 0 0 20px 0;
	position: relative;
	text-align: left;
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title:after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #0d5ef4;
	margin: 20px 0 auto;
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title h5 {
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	color: #000000;
}

.blog-details .post-details-tags-social .social-media-box ul li .social-number {
	padding: 2px 10px;
	border-radius: 0px 15px 15px 0;
	margin-left: -8px;
	z-index: 0;
	font-size: 14px;
}

.fb {
	background-color: #3b5998;
}

.tw {
	background-color: #1da1f2;
}

.yt {
	background-color: #333;
}

.ldin {
	background-color: #0077b5;
}

.blog-details .post-author {
	display: flex !important;
	align-items: center;
	width: 100%;
}

.blog-details .post-author .author-img {
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
	margin-right: 15px;
	border-radius: 0%;
}

.blog-details .post-author .author-caption {
	flex: 0 0 calc(100% - 165px) !important;
	max-width: calc(100% - 165px) !important;
	width: 100%;
	position: relative;
}

.blog-details .post-author .author-caption h5 {
	margin-bottom: 10px;
}

.blog-details .post-author .author-caption .authorpost {
	top: 0;
	position: absolute;
	right: 0;
}

.pagination-btn nav ul {
	justify-content: space-between;
}

.comment-box .children, .comment-box .comments {
	margin-bottom: 35px;
}

.comment-box .children {
	padding-left: 95px;
}

.comment-box .comments li.comment {
	list-style: outside none none;
	padding-left: 0;
	margin-bottom: 20px;
}

.comment-box .comments li article {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

.comment-box .comments li article .comment-avatar {
	margin-right: 20px;
	float: left;
	overflow: hidden;
	height: 80px;
	border-radius: 50px;
}

.comment-box .comments li article .comment-content {
	float: right;
	width: calc(100% - 50px);
}

.comment-box .comments li article .comment-content .comment-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.comment-box .comments li article .comment-content .comment-meta .comment-meta-reply .comment-reply-link {
	font-size: 20px;
	padding: 0 15px;
}

.comment-box .comments li article .comment-content .comment-meta .comment-meta-header .post-date .date {
	display: inline-block;
	padding: 8px 15px;
	position: relative;
	line-height: 10px;
	font-size: 14px;
	position: relative;
	color: #fff;
}

/*======================
5. Listing
========================*/
.listing-top-heading {
	border-bottom: 2px solid #000;
	background: #0d5ef4;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.listing-top-heading h6 {
	padding: 20px 0;
}

.listing-top-heading .sort-by {
	display: flex;
	align-items: center;
}

.listing-top-heading .sort-by span {
	white-space: nowrap;
	margin-right: 15px;
}

.listing-top-heading .sort-by .custom-select {
	margin-bottom: 0;
	background: #fff;
}

.checkbox-group .form-group {
	margin-bottom: 1px;
	background: #eee;
	padding: 15px;
}

.checkbox-group .form-group label {
	margin-bottom: 0;
	line-height: 1.5;
}

.checkbox-group button {
	margin-top: 20px;
}

.widget_range .irs--round .irs-from, .widget_range .irs--round .irs-to, .widget_range .irs--round .irs-single {
	background-color: transparent;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
}

.widget_range .irs--round .irs-from, .widget_range .irs--round .irs-to, .widget_range .irs--round .irs-single {
	background: #0d5ef4;
}

.widget_range .irs--round .irs-from:before, .widget_range .irs--round .irs-to:before, .widget_range .irs--round .irs-single:before {
	border-top-color: #0d5ef4;
}

.widget_range .irs--round .irs-handle {
	border: none;
	width: 15px;
	height: 15px;
	top: 30px;
	background-color: #0d5ef4;
	cursor: pointer;
}

.widget_range .irs--round .irs-bar {
	background-color: #0d5ef4;
}

/*======================
6. Listing Detail
========================*/
.listing-details-inner .detail-slider-for .slide-item {
	height: 450px;
	position: relative;
	margin: 0;
}

.listing-details-inner .detail-slider-for .slide-item:hover .popup:after, .listing-details-inner .detail-slider-for .slide-item:hover .popup:before {
	opacity: 1;
}

.listing-details-inner .listing-meta-sec .hotel-type ul li {
	text-transform: uppercase;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
}

.listing-details-inner .listing-meta-sec .hotel-type ul li:last-child {
	margin-bottom: 0;
}

.listing-details-inner .listing-meta-sec .listing-testimonial .tesimonial-item .testimonial-author {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 15px;
}

.listing-details-inner .listing-meta-sec .amenities .icon-box {
	background-color: #f5f5f5;
	height: 42px;
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-bottom: 1px;
}

.listing-details-inner .listing-meta-sec .amenities .icon-box i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	float: left;
	background: #333;
	color: #fff;
	height: 42px;
	font-size: 2em;
	margin-right: 15px;
}

.listing-details-inner .need-help ul li {
	position: relative;
}

.listing-details-inner .need-help ul li i {
	margin: 5px;
}

.listing-details-inner .listing-meta-sec .travel-info>.row>div {
	border-right: 1px solid #fff;
}

.listing-details-inner .listing-meta-sec .travel-info .head {
	border-bottom: 1px solid #fff;
}

.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper {
	display: flex;
	align-items: center;
}

.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper .icon {
	margin-right: 10px;
	position: relative;
	top: -3px;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper .text p {
	line-height: 0.5;
}

/*======================
7. Booking
========================*/
/*======================
8. About Us
========================*/
.about-counter {
	background-image: url(../images/counter-bg.jpg);
}

.about-counter .counter-box .counter-box-inner {
	width: 100%;
	position: relative;
	background: #fff;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.08);
}

.about-counter .counter-box .counter-box-inner .counter .icon {
	font-size: 48px;
	height: 48px;
	line-height: 48px;
	margin-bottom: 10px;
	color: #ccc;
}

.about-counter .counter-box .counter-box-inner .counter .count {
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
}

/*======================
9. 404
========================*/
.page-404 {
	background-image: url(https://via.placeholder.com/1240x349);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
}

.page-404 .page-404-text {
	width: 100%;
	text-align: center;
	border: 10px solid #0d5ef4;
	margin: 0 auto;
	border-radius: 8px;
}

.page-404 .page-404-text .text-wrapper h1 {
	font-size: 12vw;
	line-height: 1;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 10px;
}

.page-404 .page-404-text .text-wrapper h6 {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	color: #000000;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/*======================
10. Coming Soon
========================*/
.coming-soon {
	background-image: url(../images/404.jpeg);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
}

.coming-soon .coming-soon-img {
	min-height: 450px;
}

.coming-soon .coming-soon-text {
	padding: 80px 40px;
	background-color: #fff;
	text-align: center;
}

.coming-soon .coming-soon-text h1 {
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 10.5px;
}

.coming-soon .coming-soon-text .counter {
	display: flex;
	justify-content: center;
	margin: 0px 0px 30px;
}

.coming-soon .coming-soon-text .counter .counter-box {
	text-align: center;
	width: 25%;
	padding: 0 15px;
	margin: 0 15px;
	position: relative;
	background-color: #333;
}

.coming-soon .coming-soon-text .counter .counter-box .inner-box {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 0px;
	margin-bottom: 10px;
	font-size: 50px;
	line-height: 1;
	margin-top: 20px;
	font-weight: 600;
}

.coming-soon .newsletter-form .group-form .input-group-append {
	pointer-events: all;
	width: 80px;
}

.coming-soon .coming-soon-contact ul li {
	text-align: center;
	width: 33.33%;
	margin-bottom: 20px;
}

.coming-soon .social-media ul {
	justify-content: center;
}

.coming-soon .social-media ul li {
	margin: 0 10px;
	font-size: 22px;
}

.section-title {
	position: relative;
	z-index: 1;
}

/*======================
11. Contact Us
========================*/
.contact-info-box:hover {
	background: #fff;
}

.contact-info-box {
	background: #fff;
	padding: 30px 0;
	text-align: center;
	max-width: 310px;
	margin: 0 auto;
}

.contact-info-box i {
	height: 75px;
	width: 75px;
	color: #fff;
	background: #0d5ef4;
	border-radius: 50%;
	line-height: 75px;
	font-size: 30px;
	margin-bottom: 25px;
	display: inline-block;
}

.contact-info-box h6 {
	line-height: 26px;
}

/*======================
12. Faqs
========================*/
.faqs .custom-accordion .card .card-body {
	padding: 15px;
}

/*======================
13. Gallery
========================*/
.gallery .tabs .nav-tabs {
	justify-content: center;
}

.gallery .gallery-item {
	height: 240px;
	position: relative;
	overflow: hidden;
}

.gallery .gallery-item .popup:before {
	position: absolute;
	top: 50%;
	opacity: 0;
	color: #fff;
	font-size: 26px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00e";
	pointer-events: none;
	z-index: 9000;
	transition: 0.5s all;
	transform: translate(-100%, -50%);
	left: 0;
	right: 0;
	text-align: center;
	line-height: 0.5;
}

.gallery .gallery-item .popup:after {
	position: absolute;
	top: 0;
	left: 0px;
	right: 0;
	bottom: 0;
	opacity: 0;
	background-color: #0d5ef4;
	content: '';
	transition: 0.5s all;
	margin: 10px;
	transform: translateX(-100%);
}

.gallery .gallery-item:hover .popup:before, .gallery .gallery-item:hover .popup:after {
	opacity: 1;
	transform: translateX(0%);
}

/* Fixes */
.about-left-side {
	max-width: 560px;
}

.banner-tabs .tab-content {
	padding: 50px 0;
}

.quick-quote h5::after, .need-help h5::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #333;
	margin: 20px 0 auto;
}

/* Log In  */

.longin h2 {
	text-align: center;
	font-weight: 600;
	font-size: 38px;
	margin-bottom: 55px;
	margin-top: -8px;
}

.longin .login-wrap {
	padding: 40px 40px 10px;
	border: 1px solid #ebebeb;
	margin-bottom: 30px;
}

.longin-itam {
	margin-bottom: 30px;
	background: -webkit-gradient(linear, left top, right top, from(#0d5ef4), color-stop(63%, #0d5ef4));
	background: linear-gradient(90deg, #0d5ef4 0%, #0d5ef4 63%);
	position: relative;
	padding: 45px 35px;
}

.itam-icon {
	position: absolute;
	top: 55px;
	left: 34px;
}

.itam-icon i {
	display: inline-block;
	font-size: 40px;
	color: #ffffff;
	position: relative;
	top: 0px;
}

.itam-inner {
	padding-left: 65px;
}

.itam-inner span {
	display: block;
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
}

.itam-inner h3 {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
}

.longin-itam a {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	position: absolute;
	top: 65px;
	right: 35px;
}

.longin .facbook a {
	display: inline-block;
	width: 100%;
	padding-top: 22px;
	padding-bottom: 22px;
	font-weight: 500;
	font-size: 16px;
	color: #ffffff;
	background-color: #005b7f;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	border: 1px solid transparent;
}

.longin .facbook a:hover {
	background: #fff;
	border-color: #005b7f;
	color: #000;
}

.longin .facbook a:hover i {
	color: #000;
}

.longin .facbook a i {
	color: #FFF;
	margin-right: 10px;
	display: inline-block;
	font-size: 26px;
	position: relative;
	top: 2px;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

.longin .google a {
	display: inline-block;
	width: 100%;
	padding-top: 22px;
	padding-bottom: 22px;
	font-weight: 500;
	font-size: 16px;
	color: #ffffff;
	background-color: #c80911;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	border: 1px solid transparent;
}

.longin .google a:hover {
	background: #fff;
	border-color: #c80911;
	color: #c80911;
}

.longin .google a:hover i {
	color: #c80911;
}

.longin .google a i {
	color: #fff;
	margin-right: 10px;
	display: inline-block;
	font-size: 26px;
	position: relative;
	top: 2px;
	transition: 0.5s all ease;
}

.price {
	height: 40px;
	width: 40px;
	padding-left: 0px;
	line-height: 44px;
	color: #fff;
	background: #0d5ef4;
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: top;
	border-radius: 50%;
	padding-top: 0;
	position: absolute;
	top: 33px;
	left: 42px;
	z-index: 1;
	min-height: auto;
	font-weight: 400;
}

.instructor img {
	height: 40px;
	width: 40px;
	vertical-align: top;
	border-radius: 50%;
	border: 2px solid #0d5ef4;
	padding-top: 0;
	position: absolute;
	top: 34px;
	right: 44px;
}



.students-instructor img {

	height: 50px;
	width: 50px;
	text-align: center;
	position: absolute;
	left: 37px;
	top: 173px;
	border-radius: 50%;
}

.course-author {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.course-avatar img {
	width: 40px;
	height: auto;
}

.course-avatar a {
	color: #B5BCC2;
}

.courses-rating .review-stars-rated {
	color: #f2b827;
	display: inline-block;
}

.courses-rating .review-stars-rated i {
	color: #0d5ef4;
	font-size: 14.5px;
	margin-right: -2px;
}

.courses-rating .rating-total {
	display: inline-block;
	position: relative;
	top: -1px;
	left: 1px;
	font-size: 13.2px;
	color: #B5BCC2;
}

.courses-bottom {
	border-top: 1px solid #f5f5f5;
	padding-top: 14px;
	margin-top: 14px;
	width: 100%;
}

.courses-bottom ul {
	list-style-type: none;
	display: flex;
	padding-left: 0;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 0;
	margin-left: -7px;
	margin-right: -7px;
	justify-content: center;
}

.courses-bottom ul li i {
	color: #0d5ef4;
	position: relative;
	top: 1px;
	font-size: 15px;
}

.courses-bottom ul .students-number {
	flex: 0 0 33%;
	max-width: 33%;
	/*    text-align: left;*/
}

.courses-bottom ul .courses-lesson {
	flex: 0 0 33%;
	max-width: 33%;
	/*	text-align: right;*/
}

.courses-bottom ul li i.fa-book {
	top: 1.3px;
}

.students-instructor {
	display: flex;
	justify-content: center;
	align-items: last baseline;
}



/*Course Detail Start*/

.course-dtl-top, .tab-sec {
	position: relative;
	margin-bottom: 40px;
	/*	padding: 40px;*/
	border: 1px solid #fbfbfb;
	/*	box-shadow: 0px 9px 14px #eeebe0;*/
}

.course-tags a {
	display: inline-block;
	background-color: #0d5ef4;
	color: #fff;
	border-radius: 90px;
	padding: 0 15px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 10px 0;
}

.tab-content .tab-pane {
	margin-top: 15px;
}

nav>.nav.nav-tabs {

	border: none;
	color: #fff;
	background: #272e38;
	border-radius: 0;

}

nav>div a.nav-item.nav-link, nav>div a.nav-item.nav-link.active {
	border: none;
	padding: 18px 25px;
	color: #fff;
	background: #272e38;
	border-radius: 0;
	text-transform: uppercase;
}

nav>div a.nav-item.nav-link.active:after {
	content: "";
	position: relative;
	bottom: -60px;
	left: -10%;
	border: 15px solid transparent;
	border-top-color: #0d5ef4;
}

.tab-content {
	/* background: #fdfdfd; */
	width: 100%;
	line-height: 25px;
	/* border: 1px solid #ddd; */
	border-top: 5px solid #0d5ef4;
	border-bottom: 5px solid #0d5ef4;
	padding: 30px 25px;
}

nav>div a.nav-item.nav-link:hover, nav>div a.nav-item.nav-link:focus {
	border: none;
	background: #0d5ef4;
	color: #fff;
	border-radius: 0;
	transition: background 0.20s linear;
}

.accordion {
	max-width: 800px;
}

.accordion .content-box {
	position: relative;
	margin: 10px 20px;
}

.accordion .content-box .label {
	position: relative;
	padding: 10px;
	background-color: #fcfcfd;
	color: #000;
	cursor: pointer;
	font-size: 20px;
}

.accordion .content-box .label::before {
	content: '+';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 20px;
}

.accordion .content-box .content {
	position: relative;
	background: #fff;
	height: 0;
	overflow: hidden;
	transition: 0.6s;
	overflow-y: auto;
}

.accordion .content-box.active .content {
	height: 150px;
	padding: 10px;
}

.list-dtl {
	display: flex;
	justify-content: space-between;
}

.list-dtl i, .list-dtl p {
	color: #7d7d7d;
	font-size: 15px;
}

.course-author-box {
	margin-top: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 8px;
	/*    overflow: hidden;*/
}

.author-name p:nth-child(1) {
	font-size: 25px;
	color: #0d5ef4;
	margin-top: 10px;
	margin-bottom: 0px;
}

.course-author-box .auhtor-img img {
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.course-author-box .media-body {
	padding: 0px 0px 0px 30px;
	align-self: center;
}

.author-meta a {
	list-style: none;
	font-size: 18px;
	color: #7d7d7d;
}

.author-meta {
	color: #0d5ef4;
}

.author-meta {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
}

.media-body .author-social a {
	border-radius: 6px;
	font-size: 13px;
}

.dtl-social {
	display: flex;
	justify-content: flex-start;
	margin-top: 20px;
}

.dtl-social a {
	color: #0d5ef4;
	border: 1px solid #7d7d7d;
	padding: 5px 10px;
	margin: 0px 2px;
	border-radius: 5px;
}





.rev-sec {
	padding: 0px 25px;
}

.review-data {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.rev-heading {
	font-size: 20px;
	margin-right: 25px;
}

.fa-star {
	font-size: 16px;
}

.checked {
	color: #0d5ef4;
}

.side {
	float: left;
	width: 15%;
	margin-top: 10px;
	font-size: 18px;
}

.middle {
	float: left;
	width: 70%;
	margin-top: 10px;
}

.right {
	text-align: right;
}

/*
.row:after {
  content: "";
  display: table;
  clear: both;
}
*/

.bar-container {
	width: 100%;
	background-color: #f1f1f1;
	text-align: center;
	color: white;
}

.bar {
	width: 60%;
	height: 10px;
	background-color: #0d5ef4;
}

.course-cart-dtl li {
	color: #000;
	list-style: none;
	padding: 15px;
	margin-left: -50px;
	border-bottom: 1px dashed #d3dbeb;
}

.course-cart-dtl li span {
	font-size: 16px;
	font-weight: 500;
	margin-right: 5px;
	margin-left: 5px;
}

.course-cart-dtl ul li i {
	font-size: 15px;
}

.course-cart-price {
	padding: 10px 20px;
}

.course-cart-price p {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0px;
}

course-cart-price a {
	text-align: center;
}

.course-top-img img {
	border-radius: 20px;
}

aside.aside-section {
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid #ecf1f9;
	-webkit-box-shadow: 0px 9px 14px #fbfbfb;
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px;
	margin-bottom: 40px;
	position: relative;
}

.slider-content {
	text-align: center;
	margin-top: 10%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	text-shadow: 0 0 3px #efb875, 0 0 5px #c01d2e;
}

.slider-content p {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
}

.slider-content a i {
	position: relative;
	left: -10px;
}

.banner-btm {
	margin: 52px 0;
}

.result-para {
	padding: 24px 24px 12px;
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
	box-shadow: 0px 0px 3px 0px #333;
	transition: 0.6s;
	position: relative;
	background: url(../images/card.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.result-para ul {
	width: 100%;
	margin-top: 0;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 0px;
}

.result-para ul li {
	list-style: none;
	margin: 0;
	display: inline-block;
	padding: 0px 15px;
	text-align: center;
	width: 32%;
}

.result-para ul li p {
	font-size: 30px;
	color: #000;
	margin: 0;
}

.game-time p {
	text-align: left;
	color: #333;
	margin: 0;
}

.game-time p {
	text-align: left;
}

.game-time p span {
	float: right;
}

.result-para h4 {
	color: #fff;
}

.about-left-side {
	text-align: center;
	margin-bottom: 30px;
	color: #c01d2e;
	/* border-radius: 5px; */
	font-weight: bolder;
	text-transform: uppercase;
}

.about-left-side p {
	color: #515151;
	text-align: justify;
	font-size: 15px;
	line-height: 1.4;
	max-width: 518px;
	text-transform: capitalize;
}

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

.row.deep-matka-you {
	padding: 46px 0;
}

.time-table table tr th {
	text-align: center;
	text-transform: uppercase;
	font-size: 17px;
	color: #ffffff;
	width: 59px;
	padding: 14px 0;
	/* background: #a77931; */
	background: #ceb6ff;
}

.b-main {
	border: 1px solid #57fa36;
}

.txt-main {
	color: #57fa36;
}

.bg-main {
	background: #57fa36;
}

.bg-main:hover {
	background: #894901;
}

.table th, .table td {
	padding: 0.75rem;
	vertical-align: top;
	/*    border: 3px solid #1acc8d;*/
	text-align: center;
}

.rate-img {
	width: auto;
	display: flex;
	justify-content: center;
}

.rate-p p {
	margin-top: 0px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 15px;
	padding-left: 16px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	text-shadow: none;
}

section#how-to-play {
	padding-bottom: 50px;
	padding-top: 50px;
	color: #333;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.how-to-play-sec i {
	cursor: pointer;
	font-size: 40px;
	color: #57fa36;
	border: 3px solid;
	/* margin-left: 20px; */
	margin-bottom: 22px;
	width: 100px;
	height: 100px;
	align-items: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: auto;
}

.how-to-play-sec h6 {
	color: #000;
	font-size: 20px;
	padding: 20px 0 0 0;
}

.how-to-play-sec {
	text-align: center;
}

.copyright-text p a {
	color: #efb875;
}

.contact-us-padding {
	/* background: linear-gradient(#4629ba ,#916ce4); */
	color: #2b5289;
	padding-top: 35px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
}

.row.mobile-no a {
	/* border: 2px solid #a77931; */
	border-radius: 50px;
	/* padding: 11px; */
	color: #fff;
	margin: 0 50px;
}

.row.mobile-no {
	display: flex;
	justify-content: center;
}

.contact-us-padding p {
	margin: 15px 0;
}

.contact-us-padding svg path {
	fill: #fff;
	align-items: center;
}

.how-to-play-sec svg {
	margin-bottom: 23px;
}

.how-to-play-sec svg path {
	fill: #550147;
}

.menu-item:before {
	top: 0;
	display: block;
	height: 3px;
	width: 0%;
	content: "";
	background-color: #ff0068;
}

.menu-item:hover:before, .snip1168 .current .nav-link:before {
	opacity: 1;
	width: 100%;
}

.menu-item {
	transition: transform ease-in .4s;

}

.seo-text.container h1 {
	font-family: auto;
	font-size: 47px;
}

.seo-text.container h2 {
	font-family: auto;
	font-size: 36px;
}

/*=====main section======*/
.fg-main.para-1.bdr.mb-1.p-1 {
	padding: 0;
}

.bdrr {
	border: 1px solid #edf8ff;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.fgzoc-time {
	text-align: center;
	padding: 5px 0;
}

.fgzoc-time .fg-p1 {
	font-weight: 600;
}

.fg-div .fg-c1 {
	font-size: 22px;
}

/*p {
    color: #000b65;
    text-shadow: 1px 1px 2px #fff;
}*/
.fg-div h5 {
	font-size: 22px;
	color: #000;
	text-shadow: 1px 1px 2px #fff;
}

/*==*/
.card-1212 {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	justify-content: center;
}

.fg-main.para-1.bdr.mb-1.p-1 * {
	font-style: normal !important;
}

/*.card-1212 .fg-c1:nth-child(1), .card-1212 .fg-c1:nth-child(2) {
    border-top-width: 2px!important;
}*/
.fg-c1:nth-child(odd) {
	/* border-width: 0 1px 2px 2px!important; */
	/*    margin: 0px 5px;*/
	border-radius: 0;
}

.fg-c1 {
	width: 32.5%;
	display: inline-block;
	padding: 5px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	background: #ffffff00;
	border-radius: 5px !important;
	border-style: solid;
	text-align: center;
	margin: 5px 2px;
	color: #ffffff;
	border: 0px;
}

.fg-div .fg-c1 .fg-p2 {
	background: #57fa36;
	font-size: 20px !important;
	margin-bottom: 5px;
	padding: 7px 0 7px;
	border-radius: 0px;
	color: #fff;
	letter-spacing: 1px;
}

.fg-div .fg-c1 .fg-p4 {
	font-size: 20px !important;
	line-height: 15px;
	margin: 14px 0;
	color: #171414;
	font-weight: 700;
}

.fg-div .fg-c1 .fg-p4 {
	font-size: 20px;
}

.fg-div .fg-c1 .fg-p2 {
	background: #50505000;
	font-size: 20px !important;
	margin-bottom: 5px;
	padding: 7px 0 7px;
	border-bottom: 1px solid #ffffff;
	color: #000;
	font-weight: 800;
}
.btn.btn-sm.btn-outline-light.chart.ff-wet {
    color: #000;
}
/*--banner sec==*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	background: url("../img/home-bg-1.jpg");
	position: relative;
	padding: 120px 0 0 0;
}

.gameplay {
	background: linear-gradient(#ceb6ff, #d4c2f9);
}

.btn-get-started i {
	position: relative;
	left: -10px;
}

.gtrfder {
	display: flex;
	justify-content: space-around;
}

.gtrfder p {
	color: #171414;
	font-weight: 700;
}

.refresh-btn.btm-btn-f {
	background: linear-gradient(#57fa36, #f8dbdb);
	margin-left: 22px;
	padding: 5px 10px 5px 10px;
	border-radius: 10px;
	/* border: 1px; */
	color: #fff;
}



#hero:before {
	content: "";
	background: url("../img/home-bg-1.jpg");
	/*  background: rgba(2, 5, 161, 0.91);*/
	background: linear-gradient(#57fa36, #f8dbdb);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero h1 {
	margin: 0 0 20px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
	color: #fff;
}

#hero h2 {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	font-size: 24px;
}

#hero .btn-get-started {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 5px;
	transition: 0.5s;
	/* color: #fff; */
	color: #000;
	/* background: #1acc8d; */
	margin-top: 15px;
	background: #fff;
}

#hero .btn-get-started:hover {
	background: #57fa36;
	color: #fff;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 991px) {
	#hero {
		padding-top: 80px;
	}

	#hero .animated {
		animation: none;
	}

	#hero .hero-img {
		text-align: center;
	}

	#hero .hero-img img {
		max-width: 50%;
	}

	#hero h1 {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 10px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

.hero-waves {
	display: block;
	margin-top: 60px;
	width: 100%;
	height: 60px;
	z-index: 5;
	position: relative;
}

.wave1 use {
	animation: move-forever1 10s linear infinite;
	animation-delay: -2s;
}

.wave2 use {
	animation: move-forever2 8s linear infinite;
	animation-delay: -2s;
}

.wave3 use {
	animation: move-forever3 6s linear infinite;
	animation-delay: -2s;
}

@keyframes move-forever1 {
	0% {
		transform: translate(85px, 0%);
	}

	100% {
		transform: translate(-90px, 0%);
	}
}

@keyframes move-forever2 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

@keyframes move-forever3 {
	0% {
		transform: translate(-90px, 0%);
	}

	100% {
		transform: translate(85px, 0%);
	}
}

/*===about sec ===*/

html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.details .content h3 {
	font-weight: 600;
	font-size: 26px;
	color: #57fa36;
}

.details .content h2 {
	font-weight: 600;
	font-size: 26px;
	color: #000;
}

.details .content ul li {
	padding-bottom: 10px;
}

.details .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #1acc8d;
}

.details .content+.content {
	margin-top: 100px;
}

/*===card===*/
.rate-img img {
	width: 80px;
	height: 80px;
}

.rate-sec {
	border: 1px solid #4629ba;
	margin: 8px 0;
}

.rate-img img {
	background: #fff;
	border-radius: 50%;
	padding: 13px;
	/* background: linear-gradient(#4629ba ,#916ce4); */
}

.rate-sec {
	border: 2px solid #4629ba;
	margin: 8px 0;
	padding: 10px 0;
	border-radius: 10px;
	background: linear-gradient(#4629ba, #916ce4);
}

.rateList .title {
	padding: 20px;
	border-radius: 10px;
}

.rateList .title h3 {
	color: #ffffff;
	font-size: 30px;
	margin: 0;
	text-align: center;
}

.single_rate {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* background-color: #f0ef95 !important; */
	padding: 15px 30px !important;
	margin: 10px 0px;
	align-items: center;
	border-radius: 10px;
	background: linear-gradient(#d5d5d5, #c5c4ca);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.single_rate p {
	color: #181717 !important;
	font-weight: 600;
	margin-bottom: 0px;
	font-size: 18px;
	text-shadow: none;
}

/*.table-striped tbody tr:nth-of-type(odd) {
    background-color: #1acc8d;
}*/

/*.bg-home-img {
	width: 100%;
	background: url("../img/home-bg-1.jpg");
	position: relative;
	padding: 120px 0 0 0;
}*/

.parallax-section {
	background-image: url('../images/bg-fun-me.jpg');
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 0;
	overflow: hidden;
	margin-top: 0px;
	filter: blur(10px);
	-webkit-filter: blur(0px);
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgb(236 230 250);
}

.bg-tabl-section {
	background: #ceb6ff;
}

.ff-wet {
	font-weight: 600;
	letter-spacing: 1.3px;
}