@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Roboto&display=swap");

:root {
	--base-clr: #ff6772;
	--base-rgb: 255, 103, 114;
	--body-clr: #536479;
	--light-clr: #ded6ff;
	--title-clr: #1d3781;
	--title-rgb: 29, 55, 129;
	--body-bg: #f5f6fc;
	--section-bg: #ffffff;
	--section-light: #f3f9ff;
	--dark-clr: #00447a;
	--dark-rgb: 0, 68, 122;
	--white-clr: #ffffff;
	--white-rgb: 255, 255, 255;
	--primary-clr: #0c67a3;
	--primary-rgb: 12, 103, 163;
	--border-clr: #e5e5e5;
	--border-light: #e5e5e5;
	--border-light-only: #e5e5e5;
	--border-dark: #302474;
	--border-dark-only: transparent;
	--heading-fonts: "Jost", sans-serif;
	--body-fonts: "Roboto", sans-serif;
	--base-shadow-sm: 0 0 1px var(--base-clr), 0 0 3px var(--base-clr);
	--base-shadow: 0 0 1px var(--base-clr), 0 0 2px var(--base-clr),
		0 0 3px var(--base-clr), 0 0 5px var(--base-clr), 0 0 7px var(--base-clr);
	--shadow: 0 0 5px rgba(var(--title-rgb), 0.2);
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: var(--body-clr);
	line-height: 26px;
	overflow-x: hidden;
	font-family: var(--body-fonts);
	background: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.2;
	color: var(--title-clr);
	font-family: var(--heading-fonts);
	font-weight: 500;
}

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

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	color: var(--base-clr);
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 28px;
	margin-top: -9px;
}

h3 {
	font-size: 24px;
	margin-top: -8px;
}

h4 {
	font-size: 22px;
	margin-top: -5px;
}

h5 {
	font-size: 20px;
	margin-top: -4px;
	font-weight: 500;
}

h6 {
	font-size: 18px;
	margin-top: -6px;
	font-weight: 500;
}

p {
	margin-top: -9px;
}

p:last-child {
	margin-bottom: -7px !important;
}

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

	h2 {
		font-size: 40px;
		margin-top: -11px;
	}

	h3 {
		font-size: 30px;
		margin-top: -9px;
	}

	h4 {
		font-size: 22px;
		margin-top: -7px;
	}

	h5 {
		font-size: 20px;
		margin-top: -5px;
	}
}

@media (min-width: 768px) {
	h1 {
		font-size: 60px;
		line-height: 73px;
	}

	h2 {
		font-size: 42px;
	}

	h3 {
		font-size: 30px;
		margin-top: -9px;
	}

	h4 {
		font-size: 24px;
		margin-top: -8px;
	}

	h5 {
		font-size: 22px;
		margin-top: -7px;
	}
}

a {
	display: inline-block;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

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

ul {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

label,
button,
select {
	cursor: pointer;
}

.bg_img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.bg_contain {
	background-size: contain;
}

input,
textarea {
	width: 100%;
}

.font--sm {
	font-size: 14px;
	line-height: 1.6;
}

.font--lg {
	font-size: 18px;
	line-height: 1.6;
}

.dashboard--wrapper,
.contact__item,
.how--wrapper,
.widget-body .widget-tags,
.banner-wrapper,
.social-icons {
	display: flex;
	flex-wrap: wrap;
}

.video--btn::after,
.video--btn::before,
.cmn--btn .round-effect::before,
.loader::before {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	content: "";
}

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

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

.pt-100 {
	padding-top: 70px;
}

.pb-100 {
	padding-bottom: 70px;
}

.pt-50 {
	padding-top: 35px;
}

.pb-50 {
	padding-bottom: 35px;
}

@media (min-width: 992px) {
	.pt-100 {
		padding-top: 100px;
	}

	.pb-100 {
		padding-bottom: 100px;
	}

	.pt-50 {
		padding-top: 50px;
	}

	.pb-50 {
		padding-bottom: 50px;
	}
}

.toTopBtn {
	position: fixed;
	bottom: -60px;
	right: 30px;
	width: 40px;
	line-height: 40px;
	display: block;
	text-align: center;
	color: var(--base-clr);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	cursor: pointer;
	z-index: 3;
	background: var(--title-clr);
}

.toTopBtn.active {
	bottom: 30px;
}

.loader {
	position: fixed;
	inset: 0;
	background: var(--section-bg);
	z-index: 99999;
}

.loader::before {
	width: 46px;
	height: 46px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid var(--base-clr);
	border-left-color: transparent;
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		-ms-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(720deg);
		-ms-transform: translate(-50%, -50%) rotate(720deg);
		transform: translate(-50%, -50%) rotate(720deg);
	}
}

.section-header {
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.section-header__subtitle {
	color: var(--base-clr);
	display: inline-block;
	text-transform: capitalize;
	margin: 0;
	display: inline-flex;
	align-items: flex-end;
	position: relative;
	margin-bottom: 20px;
}

.section-header__subtitle::after {
	display: inline;
	content: "";
	background: var(--base-clr);
	height: 2px;
	width: 60px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	left: 100%;
	bottom: 0;
}

.section-header.text-lg-end .section-header__subtitle {
	padding-right: 60px;
}

.section-header.text-lg-end .section-header__subtitle::after {
	left: calc(100% - 60px);
}

.section-header__title {
	margin-bottom: 20px;
}

.section-header p {
	max-width: 630px;
}

.section-header p:not(:last-child) {
	margin-bottom: 22px;
}

.section-header.text-center {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.section-header.text-center .section-header__subtitle {
	justify-content: center;
}

.section-header.text-center p {
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;
}

.section-header.text-white {
	color: #daddff;
}

.section-header.text-white .section-header__title {
	color: #fff;
}

@media (min-width: 768px) {
	.section-header {
		margin-bottom: 40px;
	}
}

@media (min-width: 992px) {
	.section-header {
		margin-bottom: 50px;
	}
}

.owl-dots {
	display: flex;
	flex-wrap: wrap;
	margin: -3px;
	margin-top: 20px;
	justify-content: center;
}

.owl-dots .owl-dot {
	width: 13px;
	height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	margin: 3px;
}

.owl-dots .owl-dot span {
	background: var(--base-clr);
	width: 5px;
	height: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.owl-dots .owl-dot.active {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid var(--base-clr);
	border-color: var(--base-clr);
	background: var(--base-clr);
}

.footer-input-group {
	position: relative;
}

.footer-input-group .form-control {
	outline: none;
	box-shadow: none !important;
	border: 2px solid #ffffff10;
	height: 45px;
	-webkit-border-radius: 24px !important;
	-moz-border-radius: 24px !important;
	border-radius: 24px !important;
	padding: 0 65px 0 20px;
	color: #fff;
	background: #ffffff10 !important;
}

.footer-input-group .form-control:focus {
	border-color: var(--base-clr);
	color: #fff;
}

.footer-input-group .input-group-text {
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
	border-radius: 20px !important;
	height: 37px;
	width: 50px;
	justify-content: center;
	position: absolute;
	right: 5px;
	top: 4px;
	z-index: 9;
}

/*Footer*/
.footer-top {
	padding: 90px 0 35px;
}

.footer-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media (min-width: 576px) {
	.footer-wrapper {
		margin: 0 -12px;
	}
}

.footer-wrapper .footer-logo,
.footer-wrapper .footer-links,
.footer-wrapper .footer-comunity {
	padding: 0 12px 40px;
	width: 100%;
}

.footer-wrapper .title {
	margin-bottom: 15px;
	color: var(--white-clr);
}

.footer-wrapper .footer-links {
	max-width: 250px;
}

.footer-wrapper .footer-links ul li a {
	color: var(--light-clr);
	padding: 3px 0;
	padding-left: 18px;
	position: relative;
	display: block;
}

.footer-wrapper .footer-links ul li a:hover {
	padding-left: 21px;
	color: var(--base-clr);
}

.footer-wrapper .footer-links ul li a::before {
	position: absolute;
	left: 0;
	content: "";
	width: 6px;
	height: 6px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--base-clr);
	top: 12px;
}

@media (max-width: 1399px) {
	.footer-wrapper .footer-links {
		max-width: 200px;
	}
}

.footer-wrapper .footer-comunity {
	max-width: 290px;
}

.footer-wrapper .footer-logo {
	max-width: 190px;
}

.footer-wrapper .footer-logo a {
	display: block;
}

.footer-wrapper .footer-logo a img {
	width: 100%;
}

@media (max-width: 991px) {
	.footer-wrapper .footer-logo a {
		max-width: 200px;
	}
}

@media screen and (max-width: 991px) and (min-width: 450px) {
	.footer-wrapper .footer-logo,
	.footer-wrapper .footer-links,
	.footer-wrapper .footer-comunity {
		max-width: 50%;
	}

	.footer-wrapper .footer-logo {
		order: 2;
	}

	.footer-wrapper .mobile-second-item {
		order: 1;
	}
}

@media screen and (max-width: 449.9px) {
	.footer-wrapper .footer-logo,
	.footer-wrapper .footer-comunity {
		max-width: 100%;
	}

	.footer-wrapper .footer-links {
		width: 180px;
		flex-grow: 1;
		max-width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.footer-top {
		padding: 60px 0 35px;
	}
	.footer-logo {
		padding-bottom: 25px !important;
	}
}

.footer-wrapper .social-icons li a i {
	border-color: rgba(var(--white-rgb), 0.1);
}

footer {
	font-size: 14px;
	line-height: 1.65;
	position: relative;
	color: var(--light-clr);
	overflow: hidden;
	background: var(--title-clr);
	border-top: 1px solid rgba(var(--white-rgb), 0.1);
}

.footer-copyright {
	padding: 16px 0;
	border-top: 1px solid #ffffff15;
}

.logo-white img {
	filter: brightness(10);
}

.newsletter-section {
	background: rgba(var(--title-rgb), 0.99);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: 1px solid var(--base-clr);
	-webkit-text-fill-color: var(--title-clr);
	box-shadow: 0 0 0px 1000px var(--body-bg) inset;
	-webkit-box-shadow: 0 0 0px 1000px var(--body-bg) inset;
	transition: background-color 5000s ease-in-out 0s;
}

.form-control {
	background: var(--body-bg) !important;
	border: 1px solid var(--border-clr);
	outline: none;
	box-shadow: none !important;
	color: var(--title-clr);
}

.form-control:focus {
	border-color: var(--base-clr);
	color: var(--title-clr);
}

.form-control.cmn--btn {
	color: var(--white-clr);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
	border: 1px solid var(--base-clr) !important;
	-webkit-text-fill-color: var(--title-clr) !important;
	box-shadow: 0 0 0px 1000px var(--body-bg) inset !important;
	-webkit-box-shadow: 0 0 0px 1000px var(--body-bg) inset !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

.form-control.text--dark {
	background: var(--section-light) !important;
	border-color: var(--border-light) !important;
	color: var(--dark-clr) !important;
}

.form-control.text--dark:-webkit-autofill,
.form-control.text--dark:-webkit-autofill:hover,
.form-control.text--dark:-webkit-autofill:focus {
	border: 1px solid var(--base-clr) !important;
	-webkit-text-fill-color: var(--dark-clr) !important;
	box-shadow: 0 0 0px 1000px var(--section-light) inset !important;
	-webkit-box-shadow: 0 0 0px 1000px var(--section-light) inset !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

input.form-control,
select.form-control,
button.form-control {
	height: 50px;
	color: var(--title-clr);
}

input.form-control:focus,
select.form-control:focus,
button.form-control:focus {
	color: var(--title-clr);
}

input.form-control[type="number"]::-webkit-inner-spin-button,
input.form-control[type="number"]::-webkit-outer-spin-button,
select.form-control[type="number"]::-webkit-inner-spin-button,
select.form-control[type="number"]::-webkit-outer-spin-button,
button.form-control[type="number"]::-webkit-inner-spin-button,
button.form-control[type="number"]::-webkit-outer-spin-button {
	display: none;
}

select.form-control {
	-webkit-appearance: button;
}

textarea.form-control {
	padding-top: 15px;
	height: 150px;
	resize: none;
}

select.form--control {
	-webkit-appearance: button;
}

select.form--control:focus {
	background: var(--section-bg);
}

select.form--control option {
	color: var(--title-clr);
}

.form-label {
	font-family: var(--heading-fonts);
	font-weight: 500;
	text-transform: capitalize;
}

.btn {
	font-family: var(--heading-fonts);
}

.form-check .form-check-input:checked {
	background-color: var(--base-clr);
	border-color: var(--base-clr);
}

.form-check .form-check-input:focus {
	box-shadow: var(--base-shadow-sm);
}

/*Account Section*/
.accounts-section {
	padding: 50px;
	display: flex;
	flex-direction: column;
}

.accounts-section .accounts-inner {
	position: relative;
	z-index: 2;
	flex-grow: 1;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}

.accounts-section .accounts-inner__wrapper {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}

.accounts-section .accounts-inner__wrapper a {
	font-family: var(--heading-fonts);
}

.accounts-section .accounts-inner__wrapper .accounts-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--border-clr);
	border-right: none;
	-webkit-border-radius: 10px 0 0 10px;
	-moz-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
}

.accounts-section .accounts-inner__wrapper .accounts-left-content {
	padding: 40px;
	margin: 0 auto;
}

.accounts-section .accounts-inner__wrapper .accounts-left-content .top--icon {
	font-size: 50px;
	line-height: 1;
	color: var(--primary-clr);
}

.accounts-section
	.accounts-inner__wrapper
	.accounts-left-content
	.section-header {
	max-width: 540px;
}

@media (min-width: 992px) {
	.accounts-section
		.accounts-inner__wrapper
		.accounts-left-content
		.section-header {
		margin-bottom: 30px;
	}
}

.accounts-section .accounts-inner__wrapper .accounts-right {
	width: 50%;
	background: var(--title-clr);
	padding: 50px 30px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}

.accounts-section .accounts-inner__wrapper .accounts-right img {
	width: 100%;
	max-width: 460px;
}

.accounts-section .accounts-inner__wrapper .accounts-right .section-header {
	max-width: 540px;
}

@media (max-width: 991px) {
	.accounts-section {
		padding: 30px;
	}
}

@media (max-width: 991px) {
	.accounts-section {
		display: block;
	}

	.accounts-section .accounts-inner .accounts-inner__wrapper {
		border: 1px solid var(--border-clr);
		border-radius: 5px 5px 0 0 !important;
	}

	.accounts-section .accounts-inner .accounts-left {
		border: none;
	}

	.accounts-section .accounts-inner .accounts-left .accounts-left-content {
		padding: 45px 40px;
		margin: 0;
	}
}

@media screen and (max-width: 991px) and (max-width: 400px) {
	.accounts-section .accounts-inner .accounts-left .accounts-left-content {
		padding: 35px 15px;
	}
}

@media (max-width: 991px) {
	.accounts-section .accounts-inner .accounts-left,
	.accounts-section .accounts-inner .accounts-right {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.accounts-section {
		padding: 20px 0;
	}
}

.parent-menu {
	position: relative;
	z-index: 999 !important;
}

.parent-menu > a {
	align-items: center;
}

.parent-menu > a::after {
	content: "\f107";
	font-weight: 700;
	font-family: "Font Awesome 5 Free";
	margin-left: 5px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	display: inline-block;
}

@media (max-width: 991px) {
	.parent-menu > a::after {
		margin-left: auto;
	}
}

.parent-menu:hover > a::after,
.parent-menu.open > a::after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

@media (min-width: 992px) {
	.parent-menu.open .submenu {
		display: block !important;
	}

	.parent-menu .submenu {
		display: block !important;
	}
}

.nav-toggle {
	position: relative;
	cursor: pointer;
	width: 25px;
	height: 20px;
}

.nav-toggle span {
	position: absolute;
	display: inline-block;
	height: 3px;
	width: 100%;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	background: var(--title-clr);
	left: 0;
}

.nav-toggle span:first-child {
	top: 0;
}

.nav-toggle span:nth-child(2) {
	top: 52%;
	transform: translateY(-65%);
}

.nav-toggle span:last-child {
	bottom: 0;
}

.nav-toggle.active span:first-child {
	-webkit-transform: rotate(45deg) translate(3px, 9px);
	-ms-transform: rotate(45deg) translate(3px, 9px);
	transform: rotate(45deg) translate(3px, 9px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:last-child {
	-webkit-transform: rotate(-45deg) translate(3px, -9px);
	-ms-transform: rotate(-45deg) translate(3px, -9px);
	transform: rotate(-45deg) translate(3px, -9px);
}

.social-icons {
	justify-content: center;
	margin: -3px;
}

.social-icons li {
	padding: 3px;
}

.social-icons li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--border-clr);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	color: var(--base-clr);
	background: rgba(var(--title-rgb), 0.011);
}

.social-icons li a i[class*="facebook"] {
	color: #3b5998;
}

.social-icons li a i[class*="whatsapp"] {
	color: #25d366;
}

.social-icons li a i[class*="twitter"] {
	color: #55acee;
}

.social-icons li a i[class*="linkedin"] {
	color: #007bb5;
}

.social-icons li a i[class*="instagram"] {
	color: #e4405f;
}

.social-icons li a i[class*="google"] {
	color: #dd4b39;
}

.social-icons li a i[class*="youtube"] {
	color: #cd201f;
}

.social-icons li a i[class*="camera"] {
	color: #e4405f;
}

.social-icons li a i[class*="pinterest"] {
	color: #007bb5;
}

.social-icons li a i[class*="tumblr"] {
	color: #34465d;
}

.social-icons li a i[class*="behance"] {
	color: #1769ff;
}

.social-icons li a i[class*="skype"] {
	color: #2fb7df;
}

.social-icons li a i[class*="vimeo"] {
	color: #1ab7ea;
}

header {
	position: relative;
	z-index: 9999;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.navbar-bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: -1;
}

.navbar-bottom.active {
	box-shadow: 0 0 5px rgba(var(--base-rgb), 0.2);
	position: fixed;
	bottom: unset;
	top: 0;
	animation: fadeInDown 0.4s;
	-webkit-animation: fadeInDown 0.4s;
	-moz-animation: fadeInDown 0.4s;
	background: var(--section-bg);
}

.navbar-bottom.active .mode--toggle {
	display: block !important;
}

.navbar-wrapper {
	padding: 15px 0;
}

.navbar-wrapper .logo {
	max-width: 190px;
}

.navbar-wrapper .logo a {
	display: block;
}

.navbar-wrapper .logo img {
	width: 100%;
	height: 45px;
	object-fit: contain;
	object-position: left center;
}

@media (max-width: 575px) {
	.navbar-wrapper {
		padding: 10px 0;
	}

	.navbar-wrapper .logo {
		max-width: 160px;
	}
}

.change-language {
	display: flex;
	align-items: center;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.change-language .language-bar {
	height: 32px;
	padding: 0;
	padding-left: 5px;
	border: 1px solid rgba(var(--title-rgb), 0.1);
	border-radius: 4px;
	margin-left: 15px;
	outline: none;
	background: rgba(var(--title-rgb), 0.051);
	color: var(--title-clr);
}

.change-language .language-bar option {
	color: var(--title-clr);
	background: var(--body-bg);
}

.change-language .language-bar:focus {
	box-shadow: none;
}

@media screen and (max-width: 375px) {
	.change-language {
		font-size: 12px;
		font-family: var(--heading-fonts);
	}

	.change-language .language-bar {
		margin-left: 5px;
	}
}

.change-language.text--title .language-bar {
	color: #00447a;
	border-color: var(--border-clr);
}

/*Nav Menu*/
.navbar-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.nav-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.nav-menu li a:not([class*="btn"]) {
		color: var(--title-clr);
		font-family: var(--heading-fonts);
		text-transform: capitalize;
		padding: 5px 15px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nav-menu li a:not([class*="btn"]) {
		padding: 5px 10px;
	}
}

@media (min-width: 992px) {
	.nav-menu li .cmn--btn {
		padding: 6px 22px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}
}

@media (min-width: 992px) {
	.nav-menu li .sub-nav {
		min-width: 220px;
		position: absolute;
		left: 0;
		top: 100%;
		padding: 5px;
		border-bottom: 3px solid var(--base-clr);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		background: var(--dark-clr);
		-webkit-transition: all ease 0.3s;
		-moz-transition: all ease 0.3s;
		transition: all ease 0.3s;
	}

	.nav-menu li .sub-nav li a {
		padding: 5px 15px;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
		color: var(--white-clr);
		align-items: center;
	}

	.nav-menu li .sub-nav li a:hover {
		padding-left: 20px;
		background: var(--base-clr);
		color: var(--white-clr);
	}

	.nav-menu li .sub-nav li:not(:last-child) > a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-menu li .sub-nav .sub-nav {
		left: 100%;
		top: 0;
	}
}

@media (min-width: 992px) {
	.nav-menu li:not(:hover) .sub-nav {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width: 992px) {
	.nav-menu li:nth-last-of-type(1) .sub-nav,
	.nav-menu li:nth-last-of-type(2) .sub-nav,
	.nav-menu li:nth-last-of-type(3) .sub-nav {
		left: unset;
		right: 0;
	}

	.nav-menu li:nth-last-of-type(1) .sub-nav .sub-nav,
	.nav-menu li:nth-last-of-type(2) .sub-nav .sub-nav,
	.nav-menu li:nth-last-of-type(3) .sub-nav .sub-nav {
		right: 100%;
	}
}
/*Nav Mobile Menu*/
@media (max-width: 991px) {
	.nav-menu-area {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		z-index: 999;
		max-width: 320px;
		background: var(--dark-clr);
		padding: 30px 20px;
		overflow-y: auto;
		-webkit-transition: all ease 0.3s;
		-moz-transition: all ease 0.3s;
		transition: all ease 0.3s;
		transform-origin: left;
	}

	.nav-menu-area .menu-close {
		position: absolute;
		right: 30px;
		top: 20px;
		font-size: 20px;
	}

	.nav-menu-area:not(.active) {
		-webkit-transform: scaleX(0);
		-ms-transform: scaleX(0);
		transform: scaleX(0);
	}

	.nav-menu-area .nav-menu li a {
		color: #fff;
		display: flex;
		justify-content: space-between;
		padding: 5px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-menu-area .nav-menu li a.cmn--btn {
		background: #fff;
		color: var(--base-clr);
		display: inline-flex;
		padding: 10px 25px;
		margin-top: 15px;
		border: none;
	}

	.nav-menu-area .nav-menu .sub-nav {
		padding-left: 15px;
		display: none;
		font-size: 14px;
	}
}

.navbar-top {
	position: relative;
	z-index: -1;
	padding-top: 5px;
	padding-bottom: 5px;
	background: var(--section-bg);
}

@media (max-width: 767px) {
	.navbar-top {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.contact-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 767px) {
	.contact-bar {
		justify-content: center;
	}
}

.contact-bar li a {
	color: var(--title-clr);
}

.contact-bar li:not(:last-child) {
	border-right: 1px solid var(--border-clr);
}

.contact-bar li:not(:last-child) a {
	padding: 0 10px;
	font-size: 14px;
}

.contact-bar li:nth-last-child(2) {
	border: none;
}

.remove-scroll header {
	opacity: 0;
	visibility: hidden;
}

.header-user-toggle {
	margin-left: 20px;
	position: relative;
}

.header-user-toggle a {
	display: block;
}

.header-user-toggle img {
	width: 40px;
	aspect-ratio: 1;
	object-fit: cover;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.header-user-toggle .dropdown-menu {
	left: unset;
	right: 0;
	font-size: 14px;
	min-width: 180px;
	animation: zoomIn 0.2s;
	-webkit-animation: zoomIn 0.2s;
	-moz-animation: zoomIn 0.2s;
}

.header-user-toggle .dropdown-menu .dropdown-item {
	color: var(--body-clr);
}

.header-user-toggle .dropdown-menu .dropdown-item i {
	color: var(--title-clr);
	margin-right: 6px;
}

.header-user-toggle .dropdown-menu .dropdown-item:focus {
	background: var(--base-clr);
	color: var(--white-clr);
}

.header-user-toggle .dropdown-menu .dropdown-item:focus i {
	color: var(--white-clr);
}

.header-user-toggle .toggle-user-toggle-btn:focus ~ .dropdown-menu,
.header-user-toggle .dropdown-menu:hover {
	display: block;
}

.banner-section {
	padding: 15px 0;
	position: relative;
	background: var(--section-bg);
}

.banner-section.vintage-banner {
	background: #1d3781;
}

.banner-section.vintage-banner .banner-content {
	color: var(--light-clr);
}

.banner-section.vintage-banner .banner-content .title {
	color: var(--white-clr);
}

.banner-wrapper {
	justify-content: space-between;
	align-items: center;
}

.banner-wrapper .banner-content {
	width: 100%;
	max-width: 620px;
}

.banner-wrapper .banner-content .section-header__subtitle {
	margin-bottom: 10px;
}

.banner-wrapper .banner-content .title {
	margin-bottom: 30px;
}

.banner-wrapper .banner-content .text {
	max-width: 500px;
	margin-bottom: 30px;
}

.banner-wrapper .banner-thumb {
	width: calc(100% - 640px);
}

.banner-wrapper .banner-thumb img {
	max-width: 900px;
}

@media (max-width: 1399px) {
	.banner-wrapper .banner-thumb {
		width: calc(100% - 620px);
	}

	.banner-wrapper .banner-thumb img {
		max-width: 800px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.banner-wrapper .banner-content {
		max-width: 460px;
	}

	.banner-wrapper .banner-content .title {
		font-size: 50px;
		line-height: 1.25;
	}

	.banner-wrapper .banner-thumb {
		width: calc(100% - 460px);
	}

	.banner-wrapper .banner-thumb img {
		max-width: 800px;
	}
}

@media (max-width: 991px) {
	.banner-wrapper {
		padding: 80px 0;
	}

	.banner-wrapper .banner-content {
		max-width: 660px;
		text-align: center;
		margin: 0 auto;
	}

	.banner-wrapper .banner-content .title {
		font-size: 50px;
		line-height: 1.25;
	}

	.banner-wrapper .banner-content .text {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.banner-wrapper .banner-content .btn__grp {
		justify-content: center;
	}

	.banner-wrapper .banner-thumb {
		width: 100%;
		max-width: 600px;
		margin: 40px auto 0;
	}

	.banner-wrapper .banner-thumb img {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.banner-wrapper .banner-content .title {
		font-size: 42px;
		line-height: 1.25;
	}
}

@media (max-width: 575px) {
	.banner-wrapper {
		padding: 60px 0;
	}

	.banner-wrapper .banner-content .title {
		font-size: 36px;
	}

	.banner-wrapper .banner-thumb {
		margin-top: 30px;
	}
}

.hero-section {
	padding: 50px 0;
	background: var(--section-bg);
}

.hero-text {
	text-align: center;
	text-transform: uppercase;
}

.hero-text-title {
	margin: 0;
}

.breadcrumb {
	justify-content: center;
}

.breadcrumb li {
	color: var(--base-clr);
}

.breadcrumb li a {
	color: var(--title-clr);
}

.breadcrumb li a::after {
	content: ">";
	display: inline-block;
	margin: 0 10px;
}

.banner-elem {
	position: absolute;
	display: block;
	overflow: hidden;
}

.banner-elem.facebook {
	width: 20px;
	height: 20px;
	background: url(./img/facebook.png) no-repeat center center/contain;
	top: 30px;
	left: calc(50% - 75px);
	animation: rotate 4s alternate infinite;
}

.banner-elem.twitter {
	width: 30px;
	height: 30px;
	background: url(./img/twitter.png) no-repeat center center/contain;
	top: 100px;
	left: calc(50% - 570px);
	animation: slide 8s linear infinite;
}

.banner-elem.instagram {
	width: 30px;
	height: 30px;
	background: url(./img/instagram.png) no-repeat center center/contain;
	right: 100px;
	top: 30px;
	animation: rotate 4s alternate infinite;
}

.banner-elem.youtube {
	width: 75px;
	height: 40px;
	background: url(./img/youtube.png) no-repeat center center/contain;
	top: 130px;
	left: 55%;
	animation: pulse 2s alternate infinite;
}

.banner-elem.pinterest {
	width: 45px;
	height: 45px;
	background: url(./img/pinterest.png) no-repeat center center/contain;
	top: 240px;
	right: calc(50% + 800px);
	animation: slide 12s alternate-reverse infinite;
}

.banner-elem.dribble {
	width: 40px;
	height: 40px;
	background: url(./img/dribble.png) no-repeat center center/contain;
	bottom: 130px;
	right: 50%;
	animation: jump 3s alternate infinite;
}

.banner-elem.behance {
	width: 40px;
	height: 40px;
	background: url(./img/behance.png) no-repeat center center/contain;
	bottom: 90px;
	right: calc(50% + 780px);
	animation: move3 5s alternate infinite;
}

.banner-elem.gmail {
	width: 40px;
	height: 40px;
	background: url(./img/gmail.png) no-repeat center center/contain;
	top: 550px;
	right: 120px;
	animation: move2 5s alternate infinite;
}

@media (max-width: 991px) {
	.banner-elem {
		display: none;
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(720deg);
		-ms-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}

@keyframes move1 {
	0% {
		-webkit-transform: translate(0px, 0px);
		-ms-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}

	50% {
		-webkit-transform: translate(50px, 55px);
		-ms-transform: translate(50px, 55px);
		transform: translate(50px, 55px);
	}

	100% {
		-webkit-transform: translate(50px, -50px);
		-ms-transform: translate(50px, -50px);
		transform: translate(50px, -50px);
	}
}

@keyframes move2 {
	0% {
		-webkit-transform: translate(0px, 0px) rotate(0deg);
		-ms-transform: translate(0px, 0px) rotate(0deg);
		transform: translate(0px, 0px) rotate(0deg);
	}

	50% {
		-webkit-transform: translate(50px, 55px) rotate(360deg);
		-ms-transform: translate(50px, 55px) rotate(360deg);
		transform: translate(50px, 55px) rotate(360deg);
	}

	100% {
		-webkit-transform: translate(50px, -50px) rotate(-360deg);
		-ms-transform: translate(50px, -50px) rotate(-360deg);
		transform: translate(50px, -50px) rotate(-360deg);
	}
}

@keyframes jump {
	0% {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}

	40% {
		-webkit-transform: translateY(50px);
		-ms-transform: translateY(50px);
		transform: translateY(50px);
	}

	70% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(80px);
		-ms-transform: translateY(80px);
		transform: translateY(80px);
	}
}

@keyframes slide {
	0% {
		-webkit-transform: translateX(0px);
		-ms-transform: translateX(0px);
		transform: translateX(0px);
	}

	40% {
		-webkit-transform: translateX(50px);
		-ms-transform: translateX(50px);
		transform: translateX(50px);
	}

	70% {
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px);
	}

	100% {
		-webkit-transform: translateX(80px);
		-ms-transform: translateX(80px);
		transform: translateX(80px);
	}
}

@keyframes move3 {
	0% {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}

	40% {
		-webkit-transform: translateY(50px);
		-ms-transform: translateY(50px);
		transform: translateY(50px);
	}

	70% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(80px);
		-ms-transform: translateY(80px);
		transform: translateY(80px);
	}
}
/*Blog Sidebar*/
.widget {
	-webkit-border-radius: 7px !important;
	-moz-border-radius: 7px !important;
	border-radius: 7px !important;
	background: var(--section-bg);
}

.widget:not(:last-child) {
	margin-bottom: 25px;
}

.widget-header {
	padding: 12px 15px;
	background: var(--base-clr);
	-webkit-border-radius: 7px 7px 0 0 !important;
	-moz-border-radius: 7px 7px 0 0 !important;
	border-radius: 7px 7px 0 0 !important;
}

.widget-body {
	border: 1px solid var(--border-clr);
	border-top: none;
	padding: 20px;
	-webkit-border-radius: 0 0 7px 7px;
	-moz-border-radius: 0 0 7px 7px;
	border-radius: 0 0 7px 7px;
}

.widget-body .archive-links li a {
	color: #00447a;
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
}

.widget-body .archive-links li a::before {
	content: "\f101";
	margin-right: 5px;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	color: var(--base-clr);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.widget-body .archive-links li a span:last-child {
	margin-left: auto;
}

.widget-body .archive-links li a:hover {
	padding-left: 2px;
}

.widget-body .archive-links li a:hover::before {
	-webkit-transform: translateX(3px);
	-ms-transform: translateX(3px);
	transform: translateX(3px);
}

.widget-body .archive-links li:not(:last-child) {
	border-bottom: 1px solid var(--border-clr);
}

.widget-body .archive-links li:first-child a {
	padding-top: 0;
}

.widget-body .archive-links li:last-child a {
	padding-bottom: 0;
}

.widget-body .latest-posts li {
	padding: 0;
}

.widget-body .latest-posts li:not(:last-child) {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-clr);
}

.widget-body .latest-posts li:not(:first-child) {
	padding-top: 10px;
}

.widget-body .latest-posts li a {
	display: flex;
}

.widget-body .latest-posts li a .img {
	width: 70px;
}

.widget-body .latest-posts li a .img img {
	height: 70px;
	object-fit: cover;
	width: 100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.widget-body .latest-posts li a .cont {
	width: calc(100% - 70px);
	padding-left: 15px;
}

.widget-body .latest-posts li a .cont .subtitle {
	margin: 0;
	font-size: 18px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.widget-body .latest-posts li a .cont .date {
	font-size: 14px;
	color: var(--base-clr);
}

.widget-body .widget-tags {
	margin: -3px;
}

.widget-body .widget-tags li {
	padding: 3px;
}

.widget-body .widget-tags li a {
	padding: 7px 15px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: var(--section-bg);
	border: 1px solid var(--border-clr);
	color: #00447a;
	font-size: 14px;
}

.widget-body .widget-tags li a:hover,
.widget-body .widget-tags li a.active {
	background: var(--base-clr);
	border-color: var(--base-clr);
	color: #fff;
}

.counter-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -7px;
}

.counter-area .counter-item {
	margin-top: 25px;
	padding: 0 7px;
	flex-grow: 1;
}

@media (max-width: 575px) {
	.counter-area {
		flex-wrap: wrap;
		justify-content: space-around;
	}
}

.counter-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.counter-item .counter-thumb {
	width: 45px;
}

.counter-item .counter-thumb img {
	width: 100%;
}

.counter-item .counter-content {
	width: calc(100% - 45px);
	padding-left: 10px;
}

.counter-item .counter-content .counter-header {
	display: flex;
}

.counter-item .counter-content .counter-header .title {
	margin: 0;
	font-weight: 600;
	font-size: 22px;
}

.counter-item .counter-content .subtitle {
	font-weight: 400;
	font-size: 14px;
}

@media (max-width: 1199px) and (min-width: 992px) {
	/* .counter-item .counter-thumb {
		width: 40px;
	}

	.counter-item .counter-content {
		width: 100%;
		padding: 10px 0 0;
		text-align: center;
	}

	.counter-item .counter-content .counter-header {
		justify-content: center;
	} */
	.counter-item {
		flex-wrap: wrap;
		width: 200px;
	}
}

@media (max-width: 767px) and (min-width: 576px) {
	.counter-item .counter-thumb {
		width: 50px;
	}

	.counter-item .counter-content {
		width: 100%;
		padding: 10px 0 0;
		text-align: center;
	}

	.counter-item .counter-content .counter-header {
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.counter-item {
		flex-wrap: wrap;
		width: 200px;
	}
}

.about-thumb img {
	max-width: 100%;
}

@media (max-width: 991px) {
	.about-thumb {
		max-width: 450px;
		margin: 0 auto;
	}
}

.feature-item {
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	box-shadow: 0 0 7px rgba(var(--title-rgb), 0.1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 30px 20px;
	position: relative;
	z-index: 1;
	height: 100%;
	background: var(--section-bg);
	text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.feature-item {
		font-size: 14px;
	}
}

.feature-item:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.feature-item:hover .feature-item__icon i {
	border-color: rgba(var(--base-rgb), 0.2);
	background: var(--base-clr);
	color: var(--white-clr);
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.feature-item__icon i {
	font-size: 24px;
	color: var(--white-clr);
	background: rgba(var(--base-rgb), 0.1);
	border: 1px solid rgba(var(--base-rgb), 0.2);
	width: 80px;
	line-height: 80px;
	height: 80px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto 25px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.feature-item__icon i[class*="facebook"] {
	background: #3b5998;
}

.feature-item__icon i[class*="whatsapp"] {
	background: #25d366;
}

.feature-item__icon i[class*="twitter"] {
	background: #55acee;
}

.feature-item__icon i[class*="pinterest"] {
	background: #007bb5;
}

.feature-item__icon i[class*="linkedin"] {
	background: #007bb5;
}

.feature-item__icon i[class*="skype"] {
	background: #2fb7df;
}

.feature-item__icon i[class*="google"] {
	background: #dd4b39;
}

.feature-item__icon i[class*="youtube"] {
	background: #cd201f;
}

.feature-item__icon i[class*="camera"] {
	background: #e4405f;
}

.feature-item__icon i[class*="instagram"] {
	background: #e4405f;
}

.feature-item__icon i[class*="tumblr"] {
	background: #34465d;
}

.feature-item__icon i[class*="behance"] {
	background: #1769ff;
}

.feature-item__icon i[class*="futbol"] {
	background: #db3776;
}

.feature-item__icon i[class*="dribble"] {
	background: #ea4c89;
}

.feature-item__icon i[class*="vimeo"] {
	background: #1ab7ea;
}

.feature-item__icon i[class*="navy"] {
	background: #d8e0f3;
}

.feature-item__icon i[class*="nell"] {
	background: #212fb4;
}

.feature-item__icon i[class*="envelope"],
.feature-item__icon i[class*="mail"],
.feature-item__icon i[class*="gmail"] {
	background: #e34133;
}

.feature-item__cont-title {
	margin-bottom: 20px;
	text-transform: capitalize;
}

.feature-item__cont-title a {
	display: block;
}

@media (max-width: 767px) and (min-width: 576px) {
	.feature-item {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.feature-item {
		max-width: 450px;
		margin: 0 auto;
	}
}

.clients-wrapper {
	position: relative;
}

.client-box {
	padding-bottom: 70px;
}

.client-box-img {
	width: 80px;
	aspect-ratio: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 15px;
}

.client-box-img img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.client-box-content {
	text-align: center;
}

.client-box-content .title {
	text-transform: uppercase;
	color: var(--base-clr);
}

.client-box-content .designation {
	display: block;
	margin-bottom: 25px;
}

.client-box-content .rating {
	color: #e9ba17;
	font-size: 18px;
}

.client-quote {
	font-family: var(--heading-fonts);
	font-size: 18px;
	margin: 15px auto 0;
	max-width: 780px;
	position: relative;
}

.client-quote::after,
.client-quote::before {
	font-size: 60px;
	position: absolute;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	opacity: 0.3;
	position: absolute;
	top: -70px;
}

.client-quote::after {
	content: "\f10e";
	top: calc(100% + 30px);
}

.counter-section {
	position: relative;
	z-index: 10;
}

.counter-section .auto-container {
	max-width: 1340px;
}

.counter-section .inner-container {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	padding: 60px 40px 30px;
}

.counter-section .vector-layer-one {
	position: absolute;
	left: -60px;
	top: -40px;
	width: 200px;
	height: 205px;
	background: url(./img/vector-11.png) no-repeat;
}

.counter-section .vector-layer-two {
	position: absolute;
	right: -65px;
	bottom: -40px;
	width: 200px;
	height: 205px;
	background: url(./img/vector-12.png) no-repeat;
}

.counter-section .vector-layer-three {
	position: absolute;
	left: 42%;
	top: -90px;
	width: 200px;
	height: 205px;
	background: url(./img/vector-13.png) no-repeat;
}

.counter-section .vector-layer-four {
	position: absolute;
	left: 19%;
	top: -100px;
	width: 202px;
	height: 201px;
	background: url(./img/vector-14.png) no-repeat;
}

.counter-section .vector-layer-five {
	position: absolute;
	right: 19%;
	top: -100px;
	width: 202px;
	height: 201px;
	background: url(./img/vector-14.png) no-repeat;
}

.counter-section .vector-layer-six {
	position: absolute;
	left: 42%;
	bottom: -100px;
	width: 202px;
	height: 201px;
	background: url(./img/vector-14.png) no-repeat;
}

/* Fact Counter */
.fact-counter {
	position: relative;
}

.fact-counter .counter-item {
	position: relative;
	margin-bottom: 30px;
}

.fact-counter .counter-item .inner {
	position: relative;
	text-align: center;
}

.fact-counter .counter-item .inner .content {
	position: relative;
}

.fact-counter .counter-item .inner .icon {
	font-weight: 400;
	color: var(--base-clr);
	font-size: 40px;
	display: inline-block;
	margin-bottom: 20px;
	transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-webkit-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
}

.fact-counter .counter-item .inner:hover .icon {
	-webkit-transform: scale(-1) rotate(180deg);
	-moz-transform: scale(-1) rotate(180deg);
	-ms-transform: scale(-1) rotate(180deg);
	-o-transform: scale(-1) rotate(180deg);
	transform: scale(-1) rotate(180deg);
}

.fact-counter .count-outer .percentage {
	position: relative;
}

.fact-counter .counter-item .inner .count-outer {
	position: relative;
	font-weight: 400;
	line-height: 1em;
	color: var(--white-clr);
	font-size: 50px;
}

.fact-counter .counter-item h5 {
	font-weight: 400;
	color: var(--white-clr);
	margin-top: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
	.fact-counter .counter-item .inner .count-outer {
		font-size: 36px;
	}

	.fact-counter .counter-item h5 {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.fact-counter .counter-item .inner .count-outer {
		font-size: 36px;
	}

	.fact-counter .counter-item h5 {
		font-size: 16px;
	}
}
/*How To Start*/
.how--wrapper {
	justify-content: center;
	max-width: 970px;
	margin: 0 auto;
	margin-bottom: -35px;
}

.how__item {
	width: 33.3333333333%;
	padding: 0 12px 35px;
	font-size: 14px;
	text-align: center;
}

.how__item-icon {
	width: 100px;
	height: 100px;
	border: 2px dashed var(--border-clr);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--title-clr);
	margin: 0 auto 20px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
@media (max-width: 575px) {
	.how__item-icon {
		width: 70px;
		height: 70px;
		font-size: 24px;
	}
}

.how__item-cont .title {
	margin-bottom: 15px;
	color: var(--base-clr);
}

.how__item:hover .how__item-icon,
.how__item.active .how__item-icon {
	background: var(--base-clr);
	border-color: var(--base-clr);
	color: var(--section-bg);
	border-style: solid;
}

.how__item:nth-of-type(even) {
	margin-bottom: 50px;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
}

@media (max-width: 767px) {
	.how__item {
		width: 100%;
		max-width: 400px;
		padding: 0 0 35px;
		margin-bottom: 0 !important;
		-webkit-transform: translateY(0) !important;
		-ms-transform: translateY(0) !important;
		transform: translateY(0) !important;
	}
}
/*Faqs*/
.accordion-item {
	border: 1px solid var(--border-clr);
	background: rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.accordion-item:not(:last-child) {
	margin-bottom: 10px;
}

.accordion-item .accordion-title {
	padding: 13px 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
}

.accordion-item .accordion-title .title {
	margin: 0;
	font-size: 18px;
	width: calc(100% - 15px);
}

.accordion-item .accordion-title .right-icon {
	width: 14px;
	height: 14px;
	display: block;
	border-right: 2px solid var(--title-clr);
	border-bottom: 2px solid var(--title-clr);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.accordion-item .accordion-content {
	padding: 30px 20px;
	display: none;
	border-top: 1px solid var(--border-clr);
}

.accordion-item .accordion-content p {
	margin: 0;
}

.accordion-item .accordion-content p:not(:last-child) {
	margin-bottom: 20px;
}

.accordion-item.open .accordion-title .title {
	color: var(--base-clr);
}

.accordion-item.open .accordion-title .right-icon {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.accordion-item.active .accordion-content {
	display: block;
}

.contact__item {
	align-items: center;
}

.contact__item-icon {
	width: 56px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	color: var(--base-clr);
	font-size: 23px;
	border: 2px solid rgba(var(--base-rgb), 0.2);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.contact__item-cont {
	width: calc(100% - 56px);
	padding-left: 20px;
}

.contact__item-cont-title {
	margin: 0;
	margin-bottom: 5px;
}

.contact__item:not(:last-child) {
	margin-bottom: 25px;
}

.mapouter {
	position: relative;
	text-align: right;
	width: 100%;
}

.gmap_canvas {
	overflow: hidden;
	background: none !important;
	height: 450px;
	width: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.gmap_canvas iframe {
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.gmap_canvas {
		height: 380px;
	}
}

.contact-wrapper {
	padding: 50px 45px 40px;
	overflow: hidden;
}

@media (max-width: 767px) {
	.contact-wrapper {
		padding: 35px 20px 30px;
	}
}

.text-item {
	font-size: 15px;
}

.text-item:not(:last-child) {
	margin-bottom: 45px;
}

.text-item .title {
	margin-bottom: 15px;
}

.text-item p {
	margin-top: 0;
}

.text-item p:not(:last-child) {
	margin-bottom: 25px;
}

.text-item ul:not(:last-child) {
	margin-bottom: 25px;
}

.dark-theme .text-item .title {
	color: var(--base-clr) !important;
}

.dark-theme .text-item p {
	color: var(--body-clr) !important;
}

.dark-theme .text-item ul:not(:last-child) {
	margin-bottom: 25px;
}

.dark-theme .text-item ul * {
	color: var(--body-clr) !important;
}

.check-list li {
	position: relative;
	padding-left: 20px;
}

.check-list li:not(:last-child) {
	margin-bottom: 10px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	color: var(--base-clr);
	font-size: 14px;
}

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

.post-item__img {
	position: relative;
}

.post-item__img a {
	display: block;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	position: relative;
}

.post-item__img a img {
	width: 100%;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	height: 250px;
	object-fit: cover;
}

.post-item__img a::before {
	position: absolute;
	content: "";
	inset: 0;
	z-index: 1;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: var(--title-clr);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	transition-delay: 0.3s;
	transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
}

.post-item__img .date {
	background: var(--title-clr);
	color: var(--white-clr);
	padding: 7px 25px;
	font-size: 18px;
	font-family: var(--heading-fonts);
	clip-path: polygon(7px 0%, calc(100% - 7px) 0%, 100% 100%, 0% 100%);
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

.post-item__content {
	padding: 25px;
	background: var(--section-bg);
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	border: 1px solid var(--border-clr);
	border-top: none;
}

.post-item__content::before {
	position: absolute;
	content: "";
	inset: -1px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	background: var(--title-clr);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	transition-delay: 0s;
	transition-delay: 0s;
	-o-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
}

.post-item__content > * {
	position: relative;
	z-index: 1;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	transition-delay: 0s;
	transition-delay: 0s;
	-o-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
}

.post-item__content .meta-post {
	margin-bottom: 15px;
}

.post-item__content .meta-post i {
	color: var(--base-clr);
}

.post-item__content .title {
	margin-bottom: 10px;
}

.post-item__content .title a {
	transition-delay: 0s;
	transition-delay: 0s;
	-o-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
}

.post-item__content .read-more {
	color: var(--base-clr);
	text-decoration: underline;
	font-weight: 500;
	font-family: var(--heading-fonts);
}

.post-item:hover .post-item__img a img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.post-item:hover .post-item__img a::before {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	transition-delay: 0s;
	transition-delay: 0s;
	-o-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
}

.post-item:hover .post-item__content {
	color: var(--light-clr);
}

.post-item:hover .post-item__content::before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-delay: 0.3s;
	transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
}

.post-item:hover .post-item__content .title a {
	color: var(--white-clr);
	transition-delay: 0.3s;
	transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
}

.post-item:hover .post-item__content > * {
	transition-delay: 0.3s;
	transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
}

/*Blogs*/
.blog__item {
	position: relative;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.blog__item-img {
	height: 260px;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.blog__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

@media (min-width: 992px) and (max-width: 1399px) {
	.blog__item-img {
		height: 240px;
	}
}

.blog__item-img .date {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 80px;
	padding: 10px 15px;
	text-align: center;
	color: var(--white-clr);
	background: var(--base-clr);
	font-size: 20px;
	line-height: 1.4;
	font-family: var(--heading-fonts);
	font-weight: 500;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.blog__item-img .date span {
	display: block;
}

.blog__item .blog-link {
	position: absolute;
	z-index: 1;
	inset: 0;
}

.blog__item-content {
	margin-bottom: 20px;
}

.blog__item-content .meta-post {
	margin-bottom: 15px;
}

.blog__item .blog__author {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.blog__item .blog__author .author {
	display: flex;
	align-items: center;
	width: calc(100% - 80px);
}

.blog__item .blog__author .author img {
	width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	object-fit: cover;
}

.blog__item .blog__author .author h6 {
	font-size: 16px;
	font-weight: 500;
	color: var(--base-clr);
	padding-left: 7px;
	margin: 0;
}

.blog__item .blog__author .read--more {
	width: 80px;
	text-align: right;
	text-decoration: underline;
}

.blog__item:hover,
.blog__item.active {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(var(--base-rgb), 0.6),
		0 0 6px rgba(var(--base-rgb), 1);
}

.blog__item:hover .blog__item-img img,
.blog__item.active .blog__item-img img {
	-webkit-transform: scale(1.051);
	-ms-transform: scale(1.051);
	transform: scale(1.051);
}

.blog__item-details {
	box-shadow: unset !important;
}

.blog__item-details .blog__item-img {
	height: unset;
}

.blog__item-details .blog__item-img img {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.blog__item-details .blog__details p {
	margin-top: 0;
}

.blog__item-details .blog__details p:not(:last-child) {
	margin-bottom: 25px;
}

.blog__item-details .blog__details .subtitle {
	margin-top: 0;
	margin-bottom: 16px;
}

.blog__item-details .social-icons li i {
	background: rgba(var(--title-rgb), 0.1);
}

.user-toggle-menu {
	position: absolute;
	top: calc(100% + 40px);
	right: 0;
	padding: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: var(--section-bg);
	min-width: 200px;
	font-size: 13px;
	border: 1px solid var(--border-clr);
	z-index: 99;
}

@media (max-width: 1199px) {
	.user-toggle-menu {
		top: calc(100% + 27px);
	}
}

.user-toggle-menu::before {
	content: "";
	width: 30px;
	height: 30px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border: 1px solid var(--border-clr);
	display: block;
	position: absolute;
	top: -15px;
	background: var(--section-bg);
	right: 20px;
	border-right: none;
	border-bottom: none;
}

@media (max-width: 575px) {
	.user-toggle-menu::before {
		right: 12px;
	}
}

.user-toggle-menu ul li:not(:last-child) {
	margin-bottom: 3px;
}

.user-toggle-menu ul li a {
	color: var(--title-clr);
	display: flex;
	align-items: center;
}

.user-toggle-menu ul li a i {
	font-size: 14px;
	width: 25px;
	color: var(--base-clr);
}

.user-toggle-menu:not(.active) {
	display: none;
}

.dashborad--content {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

@media (max-width: 575px) {
	.dashborad--content {
		padding: 30px 15px;
	}
}

.dashboard-card {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: var(--section-bg);
	border: 1px solid var(--border-clr);
	display: block;
	color: var(--base-clr);
	position: relative;
}

.dashboard-card:not(:last-child) {
	margin-bottom: 10px;
}

.dashboard-card .deposit-btn-grp {
	display: flex;
	margin: -5px;
}

.dashboard-card .deposit-btn-grp a {
	display: block;
	margin: 5px;
	font-size: 12px;
	flex-grow: 1;
	width: calc(50% - 10px);
}

.dashboard-card__header {
	display: flex;
	align-items: center;
	padding: 20px;
	padding-top: 27px;
}

.dashboard-card__header__icon {
	font-size: 35px;
	color: var(--base-clr);
	line-height: 1;
}

.dashboard-card__header__icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.dashboard-card__header__cont {
	width: calc(100% - 65px);
	padding-left: 20px;
	font-size: 14px;
}

.dashboard-card__header__cont .name {
	font-weight: 600;
	margin: 0;
	font-size: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
	.dashboard-card__header {
		padding: 20px 15px;
	}

	.dashboard-card__header .dashboard-card__header__icon img {
		width: 55px;
		height: 55px;
	}

	.dashboard-card__header .dashboard-card__header__cont {
		width: calc(100% - 55px);
		padding-left: 15px;
	}
}

.dashboard-card__content {
	padding: 15px 20px;
	background: rgba(var(--title-rgb), 0.031);
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	border-top: 1px solid var(--border-clr);
}

.dashboard-card__content h6 {
	font-weight: 400;
	font-size: 14px;
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
	.dashboard-card__content {
		padding: 20px 15px;
	}
}

.dashboard--wrapper {
	margin: -6px;
}

.dashboard--wrapper .dashboard--width {
	padding: 6px;
	width: 320px;
	flex-grow: 1;
}

@media (min-width: 768px) {
	.dashboard--wrapper .dashboard--width {
		width: 100%;
		max-width: 33.3333333333%;
	}
}

@media screen and (min-width: 1024px) {
	.dashboard--wrapper .dashboard--width {
		max-width: 25%;
	}
}

.dashboard-title {
	color: var(--base-clr);
	margin: 0;
	margin-bottom: 15px;
}

.dashboard--content-item:not(:last-child) {
	margin-bottom: 40px;
}

.dashboard--content-item .social-icons li a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: rgba(var(--title-rgb), 0.051);
	color: var(--title-clr);
	text-align: center;
}

.dashboard--content-item .social-icons li a i {
	width: unset;
	height: unset;
	line-height: unset;
	border: none;
}

.dashboard--content-item .social-icons li a:hover {
	background: var(--base-clr);
	color: var(--white-clr);
}

.chat__list {
	margin: 0;
	display: block;
	max-height: calc(100vh - 250px);
	min-height: 400px;
	overflow-y: scroll;
}

.chat__list > li {
	width: 100%;
	border-bottom: 1px solid #e1e1e1;
	padding: 10px 0;
}

.chat__list > li:last-child {
	border: none;
}

.chat__item {
	width: 100%;
}

.chat__item .item__inner {
	display: block;
	padding: 10px 15px;
	border-radius: 5px;
	margin-right: 14px;
}

.chat__item .item__inner .chat__meta {
	margin: 3px;
	margin-top: -25px;
	padding-left: 65px;
	font-size: 13px;
}

.chat__item .item__inner a {
	color: #456;
}

.chat__item.active .item__inner,
.chat__item:hover .item__inner {
	background: rgba(31, 31, 35, 0.05);
}

.chat__msg-header .post__creator {
	display: inline-flex;
	position: relative;
}

.chat__msg-header .post__creator .profile-link {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.msg__wrapper {
	padding: 0;
}

.chat__msg-body {
	max-height: calc(100vh - 250px);
	min-height: 400px;
	overflow-y: scroll;
	background: var(--section-bg);
}

.chat__msg-body .msg__wrapper li p {
	padding: 10px 15px;
	border-radius: 15px 15px 15px 0;
	font-size: 15px;
	display: inline-block;
}

.chat__msg-body .msg__wrapper li.incoming__msg p {
	background: rgba(var(--title-rgb), 0.2);
	color: var(--title-clr);
}

.out__msg {
	background: #206bc4 !important;
	color: #fff;
}

.chat__msg-footer .send__msg {
	box-shadow: 0 0 15px rgba(31, 31, 35, 0.05);
}

.chat__msg-footer .send__msg .input-group {
	position: relative;
}

.chat__msg-footer .send__msg .form--control {
	height: 50px;
	padding: 10px 15px;
	padding-left: 60px;
}

.chat__msg-footer .send__msg .send-btn {
	background: rgba(31, 31, 35, 0.05);
	width: 50px !important;
	height: 50px !important;
	padding: 0;
	font-size: 24px;
	color: #fff;
	background: #206bc4 !important;
}

.chat__msg-footer .send__msg .upload-file {
	cursor: pointer;
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0;
	z-index: 11;
	width: 50px;
	height: 50px;
	background: var(--section-bg);
	font-size: 18px;
	border-radius: 5px 0 0 5px !important;
	border: 1px solid var(--border-clr);
}

.msg__item .comment-img {
	max-width: 300px;
	width: 100%;
}

.msg__item .comment-img img {
	width: 100%;
}

ul li {
	list-style: none;
}

.msg__item .post__creator-content {
	padding-top: 0;
}

.chat__msg-footer .send__msg .upload-file i,
.chat__msg-footer .send__msg .upload-file {
	text-align: center;
	line-height: 50px;
}

.send-btn {
	border-radius: 0 5px 5px 0;
	line-height: 50px;
}

.msg__item .post__creator-content .comment-date {
	display: block;
	font-size: 11px;
	margin-bottom: 7px;
}

.chat__msg-footer {
	margin-top: 20px;
}

.outgoing__msg .post__creator {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

.post__creator-content {
	max-width: 90%;
}

@media screen and (min-width: 768px) {
	.post__creator-content {
		max-width: 575px;
	}
}

.outgoing__msg .post__creator-content {
	text-align: right;
	padding-left: 18px;
	padding-right: 18px;
}

.incoming__msg .post__creator-content {
	padding-left: 18px;
	padding-right: 18px;
}

.outgoing__msg .post__creator-content p {
	border-radius: 15px 15px 0 15px !important;
}

body * ::-webkit-scrollbar {
	width: 5px !important;
	height: 5px;
}

body * ::-webkit-scrollbar-thumb {
	background: rgba(31, 31, 35, 0.4) !important;
	border-radius: 5px !important;
}

.msg__wrapper li {
	list-style: none;
	padding: 0;
}

.msg__wrapper li p {
	margin-bottom: 0;
}

.btn-primary {
	background: var(--primary-clr);
}

.chat__msg-header {
	border: none !important;
}

.chat__list {
	padding-right: 0;
}

.chat__list li {
	padding: 0 !important;
	border: none !important;
}

.post__creator .name {
	font-size: 18px;
}

.chat__item.active .item__inner {
	background: rgba(var(--title-rgb), 0.041);
	border-radius: 3px;
	margin: 0;
}

.modal .table-responsive {
	max-height: 70vh;
	overflow-x: hidden;
	overflow-y: auto;
}

.modal .table-responsive::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
	width: 4px;
}

.modal .table-responsive::-webkit-scrollbar {
	width: 4px;
}

.modal .table-responsive::-webkit-scrollbar-thumb {
	background-color: var(--base-clr);
	outline: 1px solid var(--base-clr);
	width: 4px;
}

.modal .modal-content {
	position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.modal-xl {
		max-width: 960px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.modal-xl {
		max-width: 660px;
	}
}

.badge {
	font-family: var(--heading-fonts);
	font-weight: 500;
	text-transform: capitalize;
	padding: 5px 10px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.close-modal-btn {
	background: transparent;
	color: #d90429 !important;
	font-size: 24px;
	padding: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
}

@media (min-width: 768px) {
	.close-modal-btn {
		position: absolute;
		right: 20px;
		top: 10px;
	}
}

.modal {
	background: rgba(var(--primary-rgb), 0.3);
}

.modal-content {
	box-shadow: var(--base-shadow);
	background: var(--body-bg);
}

.modal-title {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-title::after,
.modal-title::before {
	content: "";
	width: 60px;
	height: 2px;
	background: var(--base-clr);
	display: inline-block;
}

.modal-title::after {
	margin-left: 5px;
}

.modal-title::before {
	margin-right: 5px;
}

.badge.badge-sm {
	font-size: 10px !important;
	padding: 5px 7px !important;
}

.user-sidebar-body .user-sidbar-link li a {
	align-items: center;
}

.dashboard-header {
	background: url(./img/dashboard-bg.png) no-repeat center center/cover;
}

.dashboard-header .change-language {
	display: flex;
	align-items: center;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.dashboard-header .change-language .language {
	height: 32px;
	padding-left: 5px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	margin-left: 15px;
	outline: none;
	background: rgba(255, 255, 255, 0.051);
	color: #fff;
}

.dashboard-header .change-language .language option {
	color: var(--title-clr);
	background: var(--section-bg);
}

.dashboard-header .change-language .language:focus {
	box-shadow: none;
}

@media screen and (max-width: 375px) {
	.dashboard-header .change-language {
		font-size: 12px;
		font-family: var(--heading-fonts);
	}

	.dashboard-header .change-language .language-bar {
		margin-left: 5px;
	}
}

.dashboard-header .change-language.text--title .language-bar {
	color: #00447a;
	border-color: var(--border-clr);
}

.breadcrumb-area {
	padding: 30px;
}

.breadcrumb-area .title {
	margin: 0;
}

.breadcrumb-area .breadcrumb {
	margin-bottom: 0;
}

.bg--gradient {
	background-image: linear-gradient(
		to left top,
		#00447a,
		#004072,
		#003b6b,
		#003763,
		#00335c
	);
}

.table {
	font-size: 15px;
	color: var(--body-clr);
	margin: 0;
	border-left: 1px solid var(--border-clr);
	border-right: 1px solid var(--border-clr);
	text-align: center;
}

.table * {
	border-color: var(--border-clr);
}

@media (min-width: 1200px) {
	.table .badge {
		min-width: 70px;
	}
}

.table thead {
	background: var(--primary-clr);
	margin-left: -1px;
	margin-right: -1px;
}

.table thead th {
	padding: 17px 0;
	border: none;
	color: var(--white-clr);
}

.table tbody tr td {
	padding: 15px 10px;
	vertical-align: middle;
}

.table tbody tr:nth-of-type(even) {
	background: rgba(var(--title-rgb), 0.031) !important;
}

.table thead th {
	font-weight: 500;
}

.cmn--media,
.table-buyer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 200px;
	margin: 0 auto;
}

.cmn--media img,
.table-buyer img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.cmn--media .subtitle,
.table-buyer .subtitle {
	padding-left: 15px;
	font-size: 17px;
	font-weight: 400;
}

@media (max-width: 575px) {
	.cmn--media img,
	.table-buyer img {
		width: 30px;
		height: 30px;
	}

	.cmn--media .subtitle,
	.table-buyer .subtitle {
		font-size: 15px;
		padding-left: 10px;
	}
}

@media (max-width: 1399px) {
	.table--mobile-xxl {
		padding-right: 5px;
	}

	.table--mobile-xxl:not(.no--scroll) {
		max-height: 70vh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.table--mobile-xxl:not(.no--scroll)::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
		width: 4px;
	}

	.table--mobile-xxl:not(.no--scroll)::-webkit-scrollbar {
		width: 4px;
	}

	.table--mobile-xxl:not(.no--scroll)::-webkit-scrollbar-thumb {
		background-color: var(--base-clr);
		outline: 1px solid var(--base-clr);
		width: 4px;
	}

	.table--mobile-xxl .table {
		width: 100%;
		border-left: 1px solid var(--border-clr);
		border-right: 1px solid var(--border-clr);
		border-top: 1px solid var(--border-clr);
		text-align: left;
	}

	.table--mobile-xxl .table thead {
		display: none;
	}

	.table--mobile-xxl .table tbody tr {
		display: block;
		border-bottom: 1px solid var(--border-clr);
	}

	.table--mobile-xxl .table tbody tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: none;
		padding: 3px 0;
	}

	.table--mobile-xxl .table tbody tr td::before {
		content: attr(data-label);
		font-family: var(--heading-fonts);
		font-weight: 500;
		color: var(--title-clr);
	}

	.table--mobile-xxl .cmn--media {
		margin-right: 0;
	}
}

@media (max-width: 1199px) {
	.table--mobile-xl {
		padding-right: 5px;
	}

	.table--mobile-xl:not(.no--scroll) {
		max-height: 70vh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.table--mobile-xl:not(.no--scroll)::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
		width: 4px;
	}

	.table--mobile-xl:not(.no--scroll)::-webkit-scrollbar {
		width: 4px;
	}

	.table--mobile-xl:not(.no--scroll)::-webkit-scrollbar-thumb {
		background-color: var(--base-clr);
		outline: 1px solid var(--base-clr);
		width: 4px;
	}

	.table--mobile-xl .table {
		width: 100%;
		color: var(--body-clr);
		border-left: 1px solid var(--border-clr);
		border-right: 1px solid var(--border-clr);
		border-top: 1px solid var(--border-clr);
		text-align: left;
	}

	.table--mobile-xl .table thead {
		display: none;
	}

	.table--mobile-xl .table tbody tr {
		display: block;
		border-bottom: 1px solid var(--border-clr);
		padding: 10px 15px;
	}

	.table--mobile-xl .table tbody tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: none;
		padding: 3px 0;
	}

	.table--mobile-xl .table tbody tr td::before {
		content: attr(data-label);
		font-family: var(--heading-fonts);
		font-weight: 500;
		color: var(--title-clr);
	}

	.table--mobile-xl .cmn--media {
		margin-right: 0;
	}
}

@media (max-width: 991px) {
	.table--mobile-lg {
		padding-right: 5px;
	}

	.table--mobile-lg:not(.no--scroll) {
		max-height: 70vh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.table--mobile-lg:not(.no--scroll)::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
		width: 4px;
	}

	.table--mobile-lg:not(.no--scroll)::-webkit-scrollbar {
		width: 4px;
	}

	.table--mobile-lg:not(.no--scroll)::-webkit-scrollbar-thumb {
		background-color: var(--base-clr);
		outline: 1px solid var(--base-clr);
		width: 4px;
	}

	.table--mobile-lg .table {
		width: 100%;
		color: var(--body-clr);
		border-left: 1px solid var(--border-clr);
		border-right: 1px solid var(--border-clr);
		border-top: 1px solid var(--border-clr);
		text-align: left;
	}

	.table--mobile-lg .table thead {
		display: none;
	}

	.table--mobile-lg .table tbody tr {
		display: block;
		border-bottom: 1px solid var(--border-clr);
		padding: 10px 15px;
	}

	.table--mobile-lg .table tbody tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: none;
		padding: 3px 0;
	}

	.table--mobile-lg .table tbody tr td::before {
		content: attr(data-label);
		font-family: var(--heading-fonts);
		font-weight: 500;
		color: var(--title-clr);
	}

	.table--mobile-lg .cmn--media {
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.table--mobile-md {
		padding-right: 5px;
	}

	.table--mobile-md:not(.no--scroll) {
		max-height: 70vh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.table--mobile-md:not(.no--scroll)::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
		width: 4px;
	}

	.table--mobile-md:not(.no--scroll)::-webkit-scrollbar {
		width: 4px;
	}

	.table--mobile-md:not(.no--scroll)::-webkit-scrollbar-thumb {
		background-color: var(--base-clr);
		outline: 1px solid var(--base-clr);
		width: 4px;
	}

	.table--mobile-md .table {
		width: 100%;
		color: var(--body-clr);
		border-left: 1px solid var(--border-clr);
		border-right: 1px solid var(--border-clr);
		border-top: 1px solid var(--border-clr);
		text-align: left;
	}

	.table--mobile-md .table thead {
		display: none;
	}

	.table--mobile-md .table tbody tr {
		display: block;
		border-bottom: 1px solid var(--border-clr);
		padding: 10px 15px;
	}

	.table--mobile-md .table tbody tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: none;
		padding: 3px 0;
	}

	.table--mobile-md .table tbody tr td::before {
		content: attr(data-label);
		font-family: var(--heading-fonts);
		font-weight: 500;
		color: var(--title-clr);
	}

	.table--mobile-md .cmn--media {
		margin-right: 0;
	}
}

@media (max-width: 575px) {
	.table--mobile-sm {
		padding-right: 5px;
	}

	.table--mobile-sm:not(.no--scroll) {
		max-height: 70vh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.table--mobile-sm:not(.no--scroll)::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
		width: 4px;
	}

	.table--mobile-sm:not(.no--scroll)::-webkit-scrollbar {
		width: 4px;
	}

	.table--mobile-sm:not(.no--scroll)::-webkit-scrollbar-thumb {
		background-color: var(--base-clr);
		outline: 1px solid var(--base-clr);
		width: 4px;
	}

	.table--mobile-sm .table {
		width: 100%;
		color: var(--body-clr);
		border-left: 1px solid var(--border-clr);
		border-right: 1px solid var(--border-clr);
		border-top: 1px solid var(--border-clr);
		text-align: left;
	}

	.table--mobile-sm .table thead {
		display: none;
	}

	.table--mobile-sm .table tbody tr {
		display: block;
		border-bottom: 1px solid var(--border-clr);
		padding: 10px 15px;
	}

	.table--mobile-sm .table tbody tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: none;
		padding: 3px 0;
	}

	.table--mobile-sm .table tbody tr td::before {
		content: attr(data-label);
		font-family: var(--heading-fonts);
		font-weight: 500;
		color: var(--title-clr);
	}

	.table--mobile-sm .cmn--media {
		margin-right: 0;
	}
}

.attachments--img {
	max-width: 280px;
	display: block;
}

.attachments--img img {
	width: 100%;
}

.user--profile {
	display: flex;
	align-items: center;
	position: relative;
}

.user--profile .thumb {
	width: 260px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	height: 175px;
}

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

.user--profile .content {
	padding-left: 30px;
}

.user--profile .content .title {
	margin: 0;
}

@media (max-width: 767px) {
	.user--profile .content .title {
		font-size: 22px;
		line-height: 1.3;
	}
}

@media (max-width: 575px) {
	.user--profile {
		flex-wrap: wrap;
	}

	.user--profile .thumb {
		width: 100%;
		height: unset;
		max-width: 300px;
		margin: 0 auto;
	}

	.user--profile .content {
		width: 100%;
		padding: 20px 0 0;
		text-align: center;
	}
}

.form-control[type="file" i] {
	appearance: none;
	background-color: initial;
	cursor: default;
	align-items: baseline;
	color: inherit;
	text-overflow: ellipsis;
	white-space: pre;
	text-align: start !important;
	padding: initial;
	border: initial;
	overflow: hidden !important;
}

.remove-thumb {
	position: absolute;
	text-align: center;
	background: #d90429;
	z-index: 1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	left: 10px;
	top: 10px;
	display: none;
	color: var(--white-clr);
}

.profile--card {
	padding: 30px;
	border: 1px solid var(--border-clr);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: var(--section-bg);
}

@media (max-width: 575px) {
	.profile--card {
		padding: 20px 15px;
	}
}

.two-factor-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 25px;
}

.two-factor-item:not(:last-child) {
	border-bottom: 1px solid var(--border-clr);
	padding-bottom: 25px;
}

.two-factor-item .left {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 500px;
}

.two-factor-item .left .icon {
	font-size: 34px;
	color: var(--base-clr);
}

.two-factor-item .left .cont {
	width: calc(100% - 40px);
	padding-left: 20px;
}

.two-factor-item .left .cont h5 {
	margin-bottom: 5px;
}

@media (max-width: 767px) {
	.two-factor-item .right {
		margin-top: 20px;
		text-align: center;
	}

	.two-factor-item .cmn--btn {
		font-size: 14px;
		padding: 5px 15px;
	}
}

@media (max-width: 575px) {
	.two-factor-item .left,
	.two-factor-item .right {
		width: 100%;
	}

	.two-factor-item .left .icon,
	.two-factor-item .right .icon {
		font-size: 24px;
	}

	.two-factor-item .left {
		font-size: 14px;
	}

	.two-factor-item .left .cont {
		padding-left: 20px;
		width: calc(100% - 25px);
	}
}

.default--card {
	background: var(--body-bg);
	border-color: var(--border-clr);
}

.default--card .list-group .list-group-item {
	font-size: 14px;
}

.list-group {
	border-color: var(--border-clr);
}

.list-group .list-group-item {
	background: transparent;
	border-color: var(--border-clr);
}

strong {
	font-weight: 500;
	font-family: var(--heading-fonts);
}

.cmn--btn {
	font-family: var(--heading-fonts);
	position: relative;
	color: var(--white-clr);
	border-radius: 7px;
	width: auto;
	font-weight: 500;
	text-transform: capitalize;
	outline: none;
	border: none;
	padding: 10px 25px;
	overflow: hidden;
	background: var(--base-clr);
	text-decoration: none;
	border: 2px solid var(--base-clr, 0.3);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	text-align: center;
}

.cmn--btn:hover,
.cmn--btn.btn-outline {
	color: var(--base-clr);
	background: transparent;
	border-color: var(--base-clr);
}

.cmn--btn:hover .round-effect::before,
.cmn--btn.btn-outline .round-effect::before {
	background: var(--base-clr);
}

.cmn--btn:hover .round-effect i,
.cmn--btn.btn-outline .round-effect i {
	color: var(--white-clr);
}

.cmn--btn.btn-outline:hover {
	background: var(--base-clr);
	color: #fff;
}

.cmn--btn .round-effect {
	position: relative;
	margin-left: 15px;
}

.cmn--btn .round-effect::before {
	width: 25px;
	height: 25px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: rgba(var(--dark-rgb), 0.3);
}

.cmn--btn .round-effect i {
	position: relative;
	z-index: 1;
}

.cmn--btn.btn-sm {
	padding: 4px 20px;
}

button.cmn--btn {
	padding-top: 0;
	padding-bottom: 0;
	height: 50px;
}

button.cmn--btn:hover {
	background: var(--base-clr);
	color: var(--white-clr);
}

.btn.cmn--btn {
	outline: none;
	box-shadow: none;
}

.btn.cmn--btn:hover {
	color: #00447a;
	border-color: rgba(0, 68, 122, 0.1);
}

.video--btn {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	background: var(--base-clr);
}

.video--btn::after,
.video--btn::before {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--base-clr);
	opacity: 0.4;
}

.video--btn::after {
	animation: inside-ripple 2s linear infinite;
	animation-delay: 1s;
}

.video--btn::before {
	animation: outside-ripple 2s linear infinite;
}

.video--btn i {
	position: relative;
	z-index: 1;
	color: #fff;
}

@keyframes inside-ripple {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(1.1);
		-ms-transform: translate(-50%, -50%) scale(1.1);
		transform: translate(-50%, -50%) scale(1.1);
	}

	50% {
		-webkit-transform: translate(-50%, -50%) scale(1.5);
		-ms-transform: translate(-50%, -50%) scale(1.5);
		transform: translate(-50%, -50%) scale(1.5);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) scale(1.5);
		-ms-transform: translate(-50%, -50%) scale(1.5);
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

@keyframes outside-ripple {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		-webkit-transform: translate(-50%, -50%) scale(1.5);
		-ms-transform: translate(-50%, -50%) scale(1.5);
		transform: translate(-50%, -50%) scale(1.5);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) scale(1.5);
		-ms-transform: translate(-50%, -50%) scale(1.5);
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

.btn__grp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -4px;
}

.btn__grp a {
	margin: 4px;
}

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

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

.btn--base,
.badge--base,
.bg--base {
	background-color: var(--base-clr) !important;
	border-color: var(--base-clr) !important;
}

.btn--primary,
.badge--primary,
.bg--primary {
	background-color: #0c67a3 !important;
	border-color: #0c67a3 !important;
}

.btn--secondary,
.badge--secondary,
.bg--secondary {
	background-color: #668799 !important;
	border-color: #668799 !important;
}

.btn--success,
.badge--success,
.bg--success {
	background-color: #0ead69 !important;
	border-color: #0ead69 !important;
}

.btn--danger,
.badge--danger,
.bg--danger {
	background-color: #d90429 !important;
	border-color: #d90429 !important;
}

.btn--warning,
.badge--warning,
.bg--warning {
	background-color: #ee9b00 !important;
	border-color: #ee9b00 !important;
}

.btn--warning {
	color: #192a56 !important;
}

.btn--info,
.badge--info,
.bg--info {
	background-color: #00b4d8 !important;
	border-color: #00b4d8 !important;
}

.btn--dark,
.badge--dark,
.bg--dark {
	background-color: var(--dark-clr) !important;
	border-color: var(--dark-clr) !important;
}

.btn--white,
.badge--white,
.bg--white {
	background-color: #fff !important;
	border-color: #fff !important;
}

[class*="btn--"] {
	color: #fff;
	font-weight: 500;
}

[class*="btn--"]:hover {
	color: #fff;
}

.btn--warning,
.badge--warning,
.btn--white,
.badge--white {
	color: #00447a;
}

.btn--warning:hover,
.badge--warning:hover,
.btn--white:hover,
.badge--white:hover {
	color: #00447a;
}

.btn--black,
.badge--black,
.bg--black {
	background-color: #000 !important;
	border-color: #000 !important;
}

.btn--title,
.badge--title,
.bg--title {
	background-color: var(--title-clr) !important;
	border-color: var(--title-clr) !important;
}

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

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

.text--success {
	color: #0ead69 !important;
}

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

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

.text--info {
	color: #00b4d8 !important;
}

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

.text--white {
	color: #fff !important;
}

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
	color: #daddff;
}

.text--black {
	color: #000 !important;
}

.text--body {
	color: var(--body-clr) !important;
}

.text--base {
	color: var(--base-clr) !important;
}

.text--title {
	color: var(--title-clr) !important;
}

.text--light {
	color: #daddff !important;
}

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

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

.text--star {
	color: #e9ba17;
}

a {
	text-decoration: none;
}

*[class*="border"] {
	border-color: var(--border-clr) !important;
}

.badge {
	padding: 8px 15px 7px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
}
/*# sourceMappingURL=main.css.map */

/* Cookie */
.cookies-card {
	width: 520px;
	padding: 30px;
	color: #002046;
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 11;
}

.radius--10px {
	border-radius: 10px;
}

.cookies-card.bg--default {
	background-color: #eadfd8;
}

.cookies-card__icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: #ded4cd;
	font-size: 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.cookies-card__content {
	margin-bottom: 0;
}

.cookies-btn {
	color: #fff;
	text-decoration: none;
	padding: 10px 25px;
	margin: 3px 5px;
	display: inline-block;
	border-radius: 45px;
	border: none;
}

.cookies-btn:hover {
	background-color: #fff;
	color: #363636;
}

.cookies-card.style--lg,
.cookies-card.style--full {
	width: 1200px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.cookies-card.style--lg .cookies-card__content,
.cookies-card.style--full .cookies-card__content {
	width: calc(100% - (55px + 220px));
	padding: 0 25px;
}
.cookies-card.style--lg .cookies-card__btn,
.cookies-card.style--full .cookies-card__btn {
	width: 220px;
}

.cookies-card.style--full {
	width: 100%;
}

.cookies-card.cookies--dark {
	background-color: #fff;
}

.cookies-card.cookies--dark .cookies-btn {
	color: #fff;
}

.cookies-card.cookies--dark .cookies-btn:hover {
	background-color: #343a50;
	color: #fff;
}

.cookies-card.cookies--dark .cookies-card__icon {
	background-color: #10163a;
	color: #fff;
}

@media (max-width: 1399px) {
	.cookies-card.style--lg,
	.cookies-card {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.cookies-card.style--lg,
	.cookies-card.style--full {
		display: block;
	}
	.cookies-card.style--lg .cookies-card__content,
	.cookies-card.style--full .cookies-card__content {
		width: 100%;
		padding: 0;
		margin-top: 25px;
	}
	.cookies-card.style--lg .cookies-card__btn,
	.cookies-card.style--full .cookies-card__btn {
		width: 100%;
		margin-top: 20px;
	}
}
.select2-container {
	width: 100% !important;
}
.select2-container .select2-selection--single {
	height: 45px !important;
	border: 1px solid var(--border-clr) !important;
	background: var(--body-bg) !important;
	border-radius: 5px;
	font-size: 14px;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	line-height: 45px !important;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	top: 70% !important;
}
.pagination {
	flex-wrap: wrap;
	margin: -2px;
	margin-top: 26px;
	justify-content: flex-end;
}
.pagination li {
	padding: 2px;
}
.pagination li a,
.pagination li span {
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	padding: 0;
	outline: none;
	box-shadow: none;
	border-radius: 4px;
}

.pagination li.active a,
.pagination li.active span {
	background-color: var(--base-clr) !important;
	border-color: var(--base-clr) !important;
}
.card-img-top {
	object-fit: cover;
}

.swal2-container {
	z-index: 999999 !important;
}

.table-responsive table {
	min-width: 1000px;
}
.max-360px {
	max-width: 460px;
}
@media (max-width: 1199px) {
	.max-360px {
		max-width: 360px;
	}
}
.profile--contain-img {
	position: relative;
	width: 100%;
	max-width: 260px;
}
.profile--contain-img img {
	width: 100%;
	max-width: 260px;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center center;
}
.change-profile {
	background: var(--body-bg);
	border-radius: 50%;
	border: 1px solid var(--border-clr);
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
