/*====================
1. Google fonts
======================*/

@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap");

/*====================
2. Theme variables
======================*/

:root {
	--body-font: "Roboto", sans-serif;
	--heading-font: "Ubuntu", sans-serif;
	--theme-color: #0194d6;
	--theme-color2: #ffa704;
	--theme-bg-not-sure-light: #f6f6f6;
	--theme-color-not-sure-light: rgba(0, 152, 255, 0.1);
	--theme-color-not-sure-light2: rgba(0, 152, 255, 0.25);
	--body-text-color: #424346;
	--color-not-sure-white: #ffffff;
	--color-not-sure-dark: #2d4a8e;
	--color-green: #15d4c9;
	--color-blue: #0049d0;
	--color-skyblue: #00bfff;
	--color-yellow: #fba707;
	--color-gray: #ececec;
	--color-red: #f05454;
	--box-apply-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	--box-apply-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
	--transition: all 0.5s ease-in-out;
	--transition2: all 0.3s ease-in-out;
	--border-info-color: rgba(0, 0, 0, 0.08);
	--border-info-color2: rgba(0, 0, 0, 0.05);
	--border-not-sure-white-color: rgba(255, 255, 255, 0.08);
	--border-not-sure-white-color2: rgba(255, 255, 255, 0.05);
	--footer-bg: #03204b;
	--footer-text-color: #f5faff;
}

/*====================
3. General css
======================*/

*,
*:before,
*:after {
	box-sizing: inherit;
}

* {
	scroll-behavior: inherit !important;
}

html,
body {
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

body {
	/* font-family: var(--body-font); */
	font-family: var(--heading-font);
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	color: var(--body-text-color);
	line-height: 1.8;
}

a {
	color: var(--color-not-sure-dark);
	display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
	outline: none;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	text-decoration: none;
}

a:hover {
	color: var(--color-blue);
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-not-sure-dark);
	margin: 0px;
	font-weight: 500;
	font-family: var(--heading-font);
	line-height: 1.2;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	margin: 0px;
}

.img,
img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height: auto;
}

label {
	color: #999;
	cursor: pointer;
	font-weight: 400;
}

*::-moz-selection {
	background: #d6b161;
	color: var(--color-not-sure-white);
	text-apply-shadow: none;
}

::-moz-selection {
	background: #555;
	color: var(--color-not-sure-white);
	text-apply-shadow: none;
}

::selection {
	background: #555;
	color: var(--color-not-sure-white);
	text-apply-shadow: none;
}

*::-moz-placeholder {
	color: #999;
	font-size: 16px;
	opacity: 1;
}

*::placeholder {
	color: #999;
	font-size: 16px;
	opacity: 1;
}

/*-----Chapter gallery with content popup start---*/

.view-more-btn {
	padding: 14px 32px;
	font-size: 1.1rem;
	font-weight: 500;
	background: #0194d6;
	color: white;
	border: none;
	border-radius: 18px;
	cursor: pointer;
	box-shadow: 0 4px 20px rgb(1, 148, 214, 0.3);
	transition: all 0.25s ease;
	width: fit-content;
}

.view-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgb(1, 148, 214, 0.3);
}

/* Custom Popup */
.custom-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.custom-popup {
	background: white;
	border-radius: 24px;
	width: 100%;
	max-width: 680px;
	max-height: 92vh;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	animation: popupAnimate 0.4s ease forwards;
	position: relative;
}

@keyframes popupAnimate {
	from {
		opacity: 0;
		transform: translateY(100px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.popup-close-btn {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: rgb(3, 138, 179);
	border: none;
	border-radius: 50%;
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: all 0.3s ease;
}

.popup-close-btn:hover {
	background: #1f2937;
	color: #fff;
}

.popup-image {
	height: 260px;
	background-size: cover;
	background-position: center;
}

.popup-content-wrapper {
	padding: 35px;
	overflow-y: auto;
	max-height: calc(120vh - 260px);
}

.popup-title {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-not-sure-dark);
	margin-bottom: 25px;
}

.popup-text {
	color: #374151;
	font-size: 1.05rem;
}

.popup-text ul {
	padding-left: 25px;
	margin: 15px 0;
}

.popup-text li {
	margin-bottom: 10px;
}

/*-----Chapter gallery with content popup end---*/

/*===================
4. Theme default css
======================*/

.bg {
	background: var(--theme-bg-not-sure-light);
}

.bg-2 {
	background: var(--theme-color-not-sure-light);
}

.bg-3 {
	background: var(--theme-color-not-sure-light);
}

.bg-4 {
	background: var(--theme-color-not-sure-light);
}

/*====================
5. Margin & padding
======================*/

.pt-0 {
	padding-top: 0px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-110 {
	padding-top: 110px;
}

.pt-120 {
	padding-top: 120px;
}

.pb-0 {
	padding-bottom: 0px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pb-120 {
	padding-bottom: 120px;
}

.py-60 {
	padding: 60px 0;
}

.py-80 {
	padding: 80px 0;
}

.py-90 {
	padding: 90px 0;
}

.py-100 {
	padding: 100px 0;
}

.py-110 {
	padding: 110px 0;
}

.py-120 {
	padding: 120px 0;
}

.mt-0 {
	margin-top: 0px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-110 {
	margin-top: 110px;
}

.mt-120 {
	margin-top: 120px;
}

.mb-0 {
	margin-bottom: 0px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-110 {
	margin-bottom: 110px;
}

.mb-120 {
	margin-bottom: 120px;
}

.my-80 {
	margin: 80px 0;
}

.my-90 {
	margin: 90px 0;
}

.my-100 {
	margin: 100px 0;
}

.my-110 {
	margin: 110px 0;
}

.my-120 {
	margin: 120px 0;
}

/*====================
6. Preloader
======================*/

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.loader-ripple div {
	position: absolute;
	border: 4px solid var(--color-not-sure-white);
	opacity: 1;
	border-radius: 50%;
	animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes loader-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

/*====================
7. Bs custom css
======================*/

/* custom form */
.form-group {
	margin-bottom: 20px;
}

.form-group .form-label {
	color: var(--color-not-sure-dark);
}

.form-group .form-control,
.form-group .form-select {
	padding: 14px 20px 14px 20px;
	border-radius: 20px;
	background-color: var(--color-not-sure-white);
	color: var(--body-text-color);
	border-color: var(--border-info-color);
}

.form-group .form-control::placeholder {
	color: var(--body-text-color);
}

.form-group .form-control:focus,
.form-group .form-select:focus {
	border-color: var(--theme-color);
	box-apply-shadow: 0 0 0 0.25rem var(--theme-color-not-sure-light2);
}

.form-group .form-icon {
	position: relative;
}

.form-group .form-icon i {
	position: absolute;
	top: 19px;
	left: 20px;
	color: var(--theme-color);
	z-index: 1;
}

.form-group .form-icon .form-control,
.form-group .form-icon .form-select {
	padding-left: 50px;
}

.form-check {
	margin-bottom: 20px;
}

.form-check .form-check-input {
	border-radius: 6px;
	margin-top: 6.5px;
	border-color: var(--border-info-color);
}

.form-check .form-check-label {
	color: var(--color-not-sure-dark);
}

.form-check .form-check-input:checked {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

.form-check .form-check-input:focus {
	border-color: var(--theme-color);
	box-apply-shadow: 0 0 0 0.25rem var(--theme-color-not-sure-light2);
}

/*====================
8. Container
======================*/

@media (min-width: 1200px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1200px;
	}
}

/*====================
9. Nice select css
======================*/

.nice-select {
	width: 100%;
	height: 54px;
	line-height: 54px;
	border-radius: 20px;
	font-size: 16px;
	color: var(--color-not-sure-dark);
	margin-bottom: 20px;
	border-color: var(--border-info-color);
}

.nice-select::after {
	width: 9px;
	height: 9px;
	right: 20px;
	margin-top: -6.5px;
}

.nice-select:focus {
	border-color: var(--theme-color);
	box-apply-shadow: 0 0 0 0.25rem var(--theme-color-not-sure-light2);
}

.nice-select .list {
	width: 100%;
	border: none;
	border-radius: 15px;
	padding: 10px;
	box-apply-shadow: var(--box-apply-shadow);
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
	border-radius: 10px;
	background: var(--theme-bg-not-sure-light);
	color: var(--theme-color);
}

.form-icon .nice-select {
	padding-left: 50px;
}

/*===================
10. Play btn
=====================*/

.play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	line-height: 75px;
	font-size: 20px;
	text-align: center;
	background: var(--theme-color);
	color: var(--color-not-sure-white) !important;
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}

.play-btn i::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: var(--theme-color);
	border-radius: 50px;
	animation: ripple-wave 1s linear infinite;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
	0% {
		opacity: 0.8;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}

/*====================
11. Site title css
======================*/

.site-heading {
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.site-title-tagline {
	display: inline-block;
	color: var(--color-not-sure-white);
	font-weight: 500;
	text-transform: capitalize;
	font-size: 18px;
	background: var(--theme-color);
	border-radius: 50px;
	padding: 2px 15px 2px 15px;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.site-title-tagline::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background: var(--theme-color2);
	border-radius: 0 50px 50px 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
	z-index: -1;
}

.site-title-tagline.not-sure-light {
	background: var(--color-not-sure-white);
}

.site-title {
	font-weight: 500;
	text-transform: none;
	font-size: 42px;
	color: var(--color-not-sure-dark);
	margin-bottom: 0;
}

.site-title span {
	color: var(--theme-color2);
}

.site-heading p {
	margin-top: 15px;
}

.gallery-title {
	font-weight: 500;
	text-transform: capitalize;
	font-size: 22px;
	color: var(--color-not-sure-dark);
	margin-bottom: 0;
}

.heading-divider {
	display: inline-block;
	position: relative;
	border-bottom: 4px solid var(--theme-color);
	width: 90px;
	height: 4px;
	border-radius: 50px;
}

.heading-divider:after {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	height: 6px;
	width: 15px;
	border-radius: 0px;
	background-color: var(--color-not-sure-white);
	-webkit-animation: heading-move 5s infinite linear;
	animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
	0% {
		transform: translateX(-1px);
	}
	50% {
		transform: translateX(75px);
	}
	100% {
		transform: translateX(-1px);
	}
}

@keyframes heading-move {
	0% {
		transform: translateX(-1px);
	}
	50% {
		transform: translateX(75px);
	}
	100% {
		transform: translateX(-1px);
	}
}

.site-title2 {
	font-weight: 500;
	text-transform: capitalize;
	font-size: 24px;
	color: var(--color-not-sure-dark);
	margin-bottom: 0;
}

/*====================
12. Theme button
======================*/

.theme-btn,
.theme-btn2,
.theme-btn3 {
	font-size: 16px;
	color: var(--color-not-sure-white);
	padding: 10px 20px;
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	border-radius: 18px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	border: none;
	background: var(--theme-color);
	box-shadow: var(--box-apply-shadow);
	z-index: 1;
}

.theme-btn::before,
.theme-btn2::before,
.theme-btn3::before {
	content: "";
	height: 300px;
	width: 300px;
	background: var(--color-not-sure-dark);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}

.theme-btn:hover {
	color: var(--color-not-sure-white);
}

.theme-btn:hover::before,
.theme-btn2:hover::before,
.theme-btn3:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i,
.theme-btn2 i,
.theme-btn3 i {
	margin-left: 8px;
	transform: rotate(-40deg);
	transition: var(--transition2);
}

.theme-btn:hover i,
.theme-btn2:hover i,
.theme-btn3:hover i {
	transform: rotate(0deg);
}

.theme-btn span,
.theme-btn2 span,
.theme-btn3 span {
	margin-right: 5px;
}

.theme-btn2 {
	background: var(--theme-color2);
	color: var(--color-not-sure-white);
	margin-right: 10px;
}

.theme-btn2::before {
	background: var(--color-not-sure-dark);
}

.theme-btn2:hover {
	color: var(--color-not-sure-white);
}

.theme-btn3 {
	background: #03204b;
	color: var(--color-not-sure-white);
	margin-right: 10px;
}

.theme-btn3::before {
	background: var(--color-not-sure-dark);
}

.theme-btn3:hover {
	color: var(--color-not-sure-white);
}

.theme-btn4 {
	background: #0b4b03;
	color: var(--color-not-sure-white);
	margin-right: 10px;
}

.theme-btn4::before {
	background: var(--color-not-sure-dark);
}

.theme-btn4:hover {
	color: var(--color-not-sure-white);
}

/*====================
13. Header top css
======================*/

.header-top {
	padding: 10px 0;
	background: var(--color-not-sure-dark);
	position: relative;
}

.header-top::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40%;
	background: var(--theme-color);
	border-radius: 50px 0px 0px 50px;
}

.header-top-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.header-top-list ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
}

.header-top-list a {
	color: var(--color-not-sure-white);
}

.header-top-list a:hover {
	color: var(--theme-color2);
}

.header-top-list a i {
	color: var(--theme-color2);
	margin-right: 5px;
}

.header-top-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.header-top-right .header-top-list a:hover {
	color: var(--color-not-sure-white);
}

.header-top-right .header-top-list i {
	color: var(--color-not-sure-white);
}

.header-top-social span {
	color: var(--color-not-sure-white);
}

.header-top-social a {
	color: var(--color-not-sure-white);
	font-size: 16px;
	text-align: center;
	margin-left: 14px;
	transition: var(--transition);
}

.header-top-social a:hover {
	color: var(--color-not-sure-white);
	transform: translateY(-3px);
}

.header-top-lang .top-lang {
	color: var(--color-not-sure-white);
}

.header-top-lang .dropdown-menu {
	min-width: 60px;
	border-radius: 15px;
	padding: 10px;
	border: none;
	box-apply-shadow: var(--box-apply-shadow);
}

.header-top-lang .dropdown-item {
	color: var(--color-not-sure-dark);
	border-radius: 15px;
}

.header-top-lang .dropdown-item:hover {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

@media all and (min-width: 1200px) {
	.header-top {
		z-index: 5;
	}

	.header-top::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		/* width: 6%; */
		background: var(--theme-color);
		border-radius: 0px 50px 50px 0px;
	}
}

@media all and (max-width: 1199px) {
	.header-top::before {
		width: 43%;
	}

	.header-top-list ul {
		gap: 10px;
	}

	.header-top-social a {
		width: 34px;
		height: 34px;
		line-height: 37px;
		margin-left: 0;
	}

	.header-top-left {
		margin-right: 5px;
	}
}

@media all and (max-width: 991px) {
	.header-top::before {
		width: 50%;
	}

	.header-top-list ul {
		gap: 0px;
	}

	.header-top-list ul li {
		margin-right: 10px;
	}

	.header-top-list ul li:last-child {
		display: none;
	}

	.header-top-lang .dropdown-toggle::after {
		margin-top: 12px;
	}

	.header-top-social span {
		display: none;
	}
}

@media all and (max-width: 767px) {
	.header-top::before {
		width: 45%;
	}
}

/*====================
14. Navbar css
======================*/

.navbar {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.65);
	padding-top: 0px;
	padding-bottom: 0px;
	z-index: 4;
}

.navbar.fixed-top {
	position: fixed;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow2);
	animation: slide-down 0.7s;
}

@keyframes slide-down {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

.navbar .container {
	max-width: 1400px;
}

.navbar .navbar-brand .logo-display {
	display: block;
}

.navbar .navbar-brand .logo-scrolled {
	display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
	display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
	display: block;
}

.navbar-brand {
	margin-right: 0;
}

.navbar-brand img {
	width: 170px;
}

.navbar .dropdown-toggle::after {
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
	font-family: "Font Awesome 6 Pro";
	content: "\f107";
	font-weight: 500;
	border: none;
	font-size: 14px;
}

@media all and (min-width: 992px) {
	.navbar .nav-item .nav-link {
		margin-right: 22px;
		padding: 30px 0 30px 0;
		font-size: 17px;
		font-weight: 500;
		color: #3d4246;
		text-transform: capitalize;
		position: relative;
	}

	.navbar.fixed-top .nav-item .nav-link {
		color: var(--color-not-sure-dark);
	}

	.navbar .nav-item .nav-link.active,
	.navbar .nav-item:hover .nav-link {
		color: var(--theme-color);
	}

	.navbar .nav-item .nav-link::before {
		content: "";
		position: absolute;
		left: 0px;
		bottom: 25px;
		width: 0px;
		height: 3px;
		background: var(--theme-color);
		border-radius: 50px;
		transition: var(--transition);
	}

	.navbar .nav-item .nav-link.active::before,
	.navbar .nav-item:hover .nav-link::before {
		width: 15px;
	}

	.navbar .nav-item:last-child .nav-link {
		margin-right: 0;
	}

	.navbar .nav-item .dropdown-menu {
		display: block;
		padding: 10px;
		margin-top: 0;
		left: -15px;
		border-radius: 15px;
		border: none;
		background: var(--color-not-sure-white);
		width: 220px;
		box-apply-shadow: var(--box-apply-shadow);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition2);
	}

	.navbar .nav-item .dropdown-menu::before {
		content: "";
		position: absolute;
		left: 50px;
		right: 50px;
		top: 0;
		border-top: 3px solid var(--theme-color);
		border-radius: 50px;
	}

	.navbar .nav-item .dropdown-menu .dropdown-item {
		font-size: 15px;
		padding: 6px 15px;
		font-weight: 500;
		color: #3d4246;
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		text-transform: capitalize;
		transition: var(--transition2);
		z-index: 1;
	}

	.navbar .nav-item .dropdown-menu .dropdown-item:hover {
		background: transparent;
		color: var(--theme-color);
		padding-left: 25px;
	}

	.navbar .nav-item .dropdown-menu .dropdown-item::before {
		content: "\f061";
		position: absolute;
		font-family: "Font Awesome 6 Pro";
		left: -15px;
		top: 6px;
		color: var(--theme-color);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition2);
		z-index: -1;
	}

	.navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transition: 0.3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);
	}

	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 140%;
	}

	/* nav right */
	.nav-right {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-left: 45px;
	}

	.nav-right-link {
		position: relative;
		font-size: 20px;
		color: var(--color-not-sure-dark);
		border: none;
		padding-right: 0;
		background: transparent;
		transition: var(--transition);
	}

	.nav-right-link:hover {
		color: var(--theme-color);
	}

	.navbar.fixed-top .nav-right-link {
		color: var(--color-not-sure-dark);
	}

	.navbar.fixed-top .nav-right-link:hover {
		color: var(--theme-color);
	}

	.nav-right .call-wrap {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 7px;
	}

	.nav-right .call-wrap .icon {
		width: 45px;
		height: 45px;
		line-height: 46px;
		border-radius: 50px;
		background: var(--theme-color);
		color: var(--color-not-sure-white);
		text-align: center;
		font-size: 18px;
		margin-top: 5px;
	}

	.nav-right .call-wrap .content span {
		color: var(--theme-color);
		font-weight: 500;
	}

	.nav-right .call-wrap .content h6 a {
		color: var(--color-not-sure-dark);
		font-weight: 800;
	}

	.nav-right .sidebar-btn span {
		display: block;
		width: 24px;
		border-bottom: 3px solid var(--color-not-sure-dark);
		border-radius: 50px;
		margin-top: 6px;
		margin-left: auto;
		transition: var(--transition);
	}

	.nav-right .sidebar-btn span:first-child {
		width: 10px;
		margin-top: 0;
	}

	.nav-right .sidebar-btn span:nth-child(3) {
		width: 15px;
	}

	/* navbar not-sure-light */
	.navbar.not-sure-light .nav-item .nav-link {
		color: var(--color-not-sure-white);
	}

	.navbar.not-sure-light.fixed-top .nav-item .nav-link {
		color: var(--color-not-sure-dark);
	}

	.navbar.not-sure-light .nav-item .nav-link.active,
	.navbar.not-sure-light .nav-item:hover .nav-link {
		color: var(--theme-color);
	}

	.navbar.not-sure-light .nav-right-link {
		color: var(--color-not-sure-white);
	}

	.navbar.not-sure-light.fixed-top .nav-right-link {
		color: var(--color-not-sure-dark);
	}

	.navbar.not-sure-light .nav-right-link:hover {
		color: var(--theme-color);
	}

	.navbar.not-sure-light .nav-right .sidebar-btn span {
		border-color: var(--color-not-sure-white);
	}

	.navbar.not-sure-light.fixed-top .nav-right .sidebar-btn span {
		border-color: var(--color-not-sure-dark);
	}
}

@media all and (max-width: 1199px) {
	.navbar .nav-item .nav-link {
		margin-right: 15px;
	}

	.nav-right {
		margin-left: 25px;
	}

	.nav-btn {
		display: none;
	}

	.nav-right .sidebar-btn,
	.nav-right .call-wrap {
		display: none;
	}
}

/* navbar mobile menu */
.navbar .mobile-menu-right {
	display: none;
}

@media all and (max-width: 991px) {
	.header-top {
		display: none;
	}

	.navbar {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.navbar-brand img {
		width: 160px;
	}

	.navbar .offcanvas {
		width: 300px;
		height: 100vh;
	}

	.navbar .offcanvas-header .btn-close {
		background: var(--theme-color2);
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border-radius: 50px;
		color: var(--color-not-sure-white);
		font-size: 18px;
		box-apply-shadow: none;
		opacity: 1;
	}

	.navbar .offcanvas-brand {
		width: 180px;
	}

	.navbar .nav-item .nav-link {
		color: var(--color-not-sure-dark);
		font-weight: 500;
		margin-right: 0px;
		transition: var(--transition);
	}

	.navbar .nav-item .nav-link:hover {
		color: var(--theme-color);
	}

	.navbar .nav-item .dropdown-menu {
		border-radius: 15px;
	}

	.navbar .nav-item .dropdown-toggle::after {
		float: right;
		margin-top: 2.5px;
	}

	.navbar-toggler {
		padding: 0;
		border: none;
	}

	.navbar-toggler:focus {
		outline: none;
		box-apply-shadow: none;
	}

	.navbar-toggler span {
		display: block;
		width: 22px;
		border-bottom: 3px solid var(--color-not-sure-dark);
		border-radius: 50px;
		margin-top: 5px;
	}

	.navbar-toggler span:first-child {
		margin-top: 0;
	}

	.navbar-toggler span:nth-child(2) {
		width: 15px;
	}

	.navbar .mobile-menu-right {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.navbar .mobile-menu-right .nav-right-link {
		background: transparent;
		border: none;
		font-size: 20px;
		color: var(--color-not-sure-dark);
	}

	.navbar .mobile-menu-right .nav-right-link:hover {
		color: var(--theme-color);
	}

	.nav-right {
		display: none;
	}

	/* navbar not-sure-light */
	.navbar.not-sure-light .navbar-toggler span {
		border-color: var(--color-not-sure-white);
	}

	.navbar.not-sure-light.fixed-top .navbar-toggler span {
		border-color: var(--color-not-sure-dark);
	}

	.navbar.not-sure-light .mobile-menu-right .nav-right-link {
		color: var(--color-not-sure-white);
	}

	.navbar.not-sure-light.fixed-top .mobile-menu-right .nav-right-link {
		color: var(--color-not-sure-dark);
	}

	.navbar.not-sure-light .mobile-menu-right .nav-right-link:hover {
		color: var(--theme-color);
	}
}

/*==============================
15. Navbar multi level dropdown
================================*/

.navbar .nav-item .dropdown-submenu {
	position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
	display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
	transform: rotate(-90deg);
	position: absolute;
	right: 15px;
	top: 8px;
	font-weight: 500;
}

.navbar .nav-item .dropdown-submenu a:hover {
	background: transparent;
	color: var(--color-not-sure-white);
}

.navbar .nav-item .dropdown-submenu a:focus {
	background: transparent;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
	top: 120%;
	left: 100%;
	opacity: 0;
	visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
	top: 0;
	opacity: 1;
	visibility: visible;
}

@media all and (max-width: 991px) {
	.navbar .nav-item .dropdown-menu .dropdown-item {
		color: var(--color-not-sure-dark);
		font-size: 15px;
	}

	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		margin: 0 17px;
	}

	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		opacity: unset;
		visibility: unset;
	}

	.navbar .nav-item .dropdown-submenu a::after {
		top: 3px;
	}

	.navbar .nav-item .dropdown-submenu a:hover {
		color: var(--theme-color);
	}
}

/*============================
16. Navbar mega menu
==============================*/

@media all and (min-width: 992px) {
	.nav-item.mega-menu {
		position: static;
	}

	.navbar .nav-item.mega-menu .dropdown-menu {
		width: 98.2%;
		left: 12px;
	}

	.navbar .mega-menu .mega-content {
		padding: 12px;
	}

	.navbar .mega-menu .mega-menu-title {
		font-size: 17px;
		margin-bottom: 15px;
		color: var(--color-not-sure-dark);
	}

	.navbar .mega-menu-img img {
		border-radius: 15px;
	}

	.navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
		padding-left: 0;
	}

	.navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
		left: 0;
	}

	.navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
		padding-left: 15px;
	}

	/* mega-menu small */
	.navbar .nav-item.mega-menu.small {
		position: relative;
	}

	.navbar .mega-menu.small .dropdown-menu {
		width: 340px;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media all and (max-width: 991px) {
	.navbar .mega-menu-img {
		display: none;
	}

	.navbar .mega-menu .mega-content h5 {
		margin: 15px 0;
	}
}

/* ======================
17. Search popup
====================== */

.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0, 0, 0, 0.95);
	transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.search-active .search-popup {
	transform: translateY(0%);
	margin-top: 0;
}

.search-popup .close-search {
	position: absolute;
	left: 0;
	right: 0;
	top: 75%;
	border: none;
	margin: 0 auto;
	margin-top: -200px;
	border-radius: 50px;
	text-align: center;
	background: var(--theme-color2);
	text-align: center;
	width: 50px;
	height: 50px;
	color: var(--color-not-sure-white);
	font-size: 20px;
	cursor: pointer;
	box-apply-shadow: var(--box-apply-shadow);
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}

.search-active .search-popup .close-search {
	visibility: visible;
	opacity: 1;
	top: 50%;
	transition-delay: 1500ms;
}

.search-active .search-popup .close-search span {
	transition: var(--transition);
}

.search-active .search-popup .close-search:hover span {
	transform: rotate(180deg);
}

.search-popup form {
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin: -35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: all 300ms ease;
}

.search-active .search-popup form {
	transform: scaleX(1);
	transition-delay: 1200ms;
}

.search-popup .form-group {
	position: relative;
	margin: 0px;
	overflow: hidden;
}

.search-popup .form-control {
	position: relative;
	width: 100%;
	height: 70px;
	outline: none;
	border-radius: 0px;
	border: none;
	border-bottom: 2px solid var(--color-not-sure-white);
	background-color: transparent;
	color: var(--color-not-sure-white);
	font-size: 40px;
	padding: 0 70px 0 20px;
	transition: all 500ms ease;
	text-transform: capitalize;
}

.search-popup .form-control::placeholder {
	color: var(--color-not-sure-white);
	font-size: 40px;
}

.search-popup .form-group button {
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 50px;
	background: transparent;
	text-align: center;
	font-size: 30px;
	color: var(--color-not-sure-white);
	height: 50px;
	width: 50px;
	border: none;
	cursor: pointer;
	transition: all 500ms ease;
}

.search-popup .form-group button:hover {
	color: var(--theme-color);
}

/*====================
18. Sidebar popup css 
======================*/

.sidebar-popup {
	padding: 20px;
}

.sidebar-popup .btn-close {
	background: var(--theme-color);
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 50px;
	color: var(--color-not-sure-white);
	font-size: 20px;
	transition: var(--transition);
	box-apply-shadow: var(--box-apply-shadow);
	opacity: 1;
}

.sidebar-popup .btn-close:hover {
	background: var(--color-red);
}

.sidebar-popup .btn-close i {
	transition: var(--transition);
}

.sidebar-popup .btn-close:hover i {
	transform: rotate(180deg);
}

.sidebar-popup-logo img {
	width: 180px;
}

.sidebar-popup-about {
	margin-top: 10px;
}

.sidebar-popup-about h4 {
	margin-bottom: 10px;
	font-weight: 500;
}

.sidebar-popup-contact {
	margin-top: 20px;
}

.sidebar-popup-contact h4 {
	margin-bottom: 15px;
	font-weight: 500;
}

.sidebar-popup-contact li {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

.sidebar-popup-contact li .icon {
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: var(--color-not-sure-white);
	background: var(--theme-color);
	text-align: center;
	border-radius: 50px;
}

.sidebar-popup-contact li a:hover {
	color: var(--theme-color);
}

.sidebar-popup-social {
	margin-top: 25px;
}

.sidebar-popup-social h4 {
	margin-bottom: 20px;
	font-weight: 500;
}

.sidebar-popup-social a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	margin-right: 8px;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
}

.sidebar-popup-social a:hover {
	background: var(--color-not-sure-dark);
}

/*====================
19. Main section css 
======================*/

.main {
	margin-top: 0rem;
	/* margin-top: -145px; */
}

.main-inner {
	/* margin-top: 0rem; */
	margin-top: 0px;
}

/*====================
20. Hero css 
======================*/

.hero-single {
	padding-top: 120px;
	padding-bottom: 180px;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.hero-single::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -0.5px;
	background: linear-gradient(
		to bottom right,
		rgba(2, 81, 112, 1) 0%,
		rgba(55, 173, 184, 0) 80%
	);
	z-index: -1;
}

.hero-single .hero-content {
	height: 100%;
}

.hero-single .hero-content .hero-sub-title {
	color: var(--color-not-sure-white);
	font-size: 20px;
	letter-spacing: 3px;
	font-weight: 500;
	text-transform: uppercase;
	background: var(--theme-color);
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	padding: 5px 10px 5px 10px;
	position: relative;
	z-index: 1;
}

.hero-single .hero-content .hero-sub-title::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background: var(--theme-color2);
	border-radius: 0 50px 50px 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
	z-index: -1;
}

.hero-single .hero-content .hero-title {
	color: var(--color-not-sure-white);
	font-size: 60px;
	font-weight: 500;
	margin: 20px 0;
	text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
	color: transparent;
	-webkit-text-stroke: 3px var(--color-not-sure-white);
}

.hero-single .hero-content p {
	color: var(--color-not-sure-white);
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
	display: flex;
	justify-content: start;
	gap: 1rem;
	margin-top: 35px;
}

@media all and (max-width: 1199px) {
	.hero-single .hero-content .hero-title {
		font-size: 37px;
	}
}

@media all and (max-width: 991px) {
	.hero-single .hero-content .hero-title {
		font-size: 50px;
	}
}

@media all and (max-width: 767px) {
	.hero-single .hero-content .hero-sub-title {
		font-size: 18px;
	}

	.hero-single .hero-content .hero-btn {
		gap: 1rem;
	}
}

/* hero-slider */
.hero-slider .owl-nav {
	margin-top: 0px;
}

.hero-slider .owl-nav button i {
	display: inline-block;
	height: 55px;
	width: 55px;
	line-height: 55px;
	color: var(--theme-color);
	font-size: 25px;
	text-align: center;
	background: var(--color-not-sure-white);
	border-radius: 50px;
	cursor: pointer;
	transition: var(--transition);
}

.hero-slider .owl-nav button:hover i {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

.hero-slider .owl-nav .owl-prev {
	left: 40px;
}

.hero-slider .owl-nav .owl-next {
	right: 40px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.hero-slider .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	display: none;
}

.hero-slider .owl-dots .owl-dot span {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-color: var(--color-not-sure-white);
	border-radius: 0px;
	border: 3px solid var(--theme-color);
	margin: 5px;
	transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
	background-color: var(--theme-color);
}

@media all and (max-width: 1199px) {
	.hero-slider .owl-nav .owl-prev,
	.hero-slider .owl-nav .owl-next {
		top: unset;
		bottom: 45px;
	}

	.hero-slider .owl-nav .owl-prev {
		left: unset;
		right: 120px;
	}

	.hero-slider .owl-nav .owl-next {
		right: 40px;
	}
}

/*====================
21. Breadcrumb css
======================*/

.site-breadcrumb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-repeat: no-repeat !important;
	background-position: center bottom !important;
	background-size: cover !important;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	z-index: 1;
}

.site-breadcrumb::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: #29292a;
	opacity: 0.8;
	z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
	font-size: 32px;
	color: var(--color-not-sure-white);
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
	position: relative;
	z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
	position: relative;
	display: inline-block;
	margin-left: 25px;
	color: var(--color-not-sure-white);
	font-weight: 500;
	text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
	color: var(--color-not-sure-white);
	transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
	position: absolute;
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	right: -21px;
	top: 1px;
	text-align: center;
	font-size: 16px;
	color: var(--color-not-sure-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
	margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
	display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
	color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
	color: var(--theme-color);
}

/* ===================
22. About css 
====================== */

.about-area {
	position: relative;
}

.about-area::before {
	position: absolute !important;
	content: "" !important;
	right: 0px !important;
	bottom: 0px !important;
	height: 326px;
	width: 300px;
	background-image: url(../images/shape/icon1.png) !important;
	background-repeat: no-repeat;
	/* animation: jump-2 5s linear infinite;  */
	/* animation: rotateIt2 25s linear infinite; */
	animation: slide-two 10s linear infinite;
	z-index: 1;
	opacity: 0.9;
}

.about-left {
	position: relative;
	margin-right: 20px;
}

.about-img .img-1 {
	margin-top: -8%;
	border-radius: 70px 70px 0px 70px;
}

.about-img .shape {
	border-radius: 0;
	position: absolute;
	left: 0;
	bottom: -4%;
	width: 48%;
}

.about-img .img-2 {
	margin-bottom: -8%;
	border-radius: 0px 70px 70px 70px;
}

.about-right {
	position: relative;
	display: block;
}

.about-experience {
	background: var(--theme-color);
	padding: 14px 25px;
	border-radius: 100px 100px 100px 0;
	text-align: center;
	width: 150px;
	height: 150px;
	position: relative;
	margin-bottom: 25px;
}

.about-experience::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 2px dashed var(--color-not-sure-white);
	border-radius: 100px 100px 100px 0;
}

.about-experience h5 {
	color: var(--color-not-sure-white);
	font-size: 40px;
	margin-top: 15px;
}

.about-experience p {
	color: var(--color-not-sure-white);
	font-weight: 500;
	line-height: 1.2;
}

.about-content {
	background: var(--theme-color-not-sure-light);
	border-radius: 30px;
	padding: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.about-item {
	display: flex;
	gap: 12px;
}

.about-item .icon {
	width: 75px;
	height: 75px;
	line-height: 70px;
	text-align: center;
	background: var(--theme-color);
	border-radius: 50px;
}

.about-item .icon img {
	width: 45px;
	filter: brightness(0) invert(1);
}

.about-item .content {
	flex: 1;
}

.about-item .content h6 {
	color: var(--color-not-sure-dark);
	margin-bottom: 5px;
}

.about-text {
	color: var(--body-text-color);
}

@media all and (max-width: 991px) {
	.about-left {
		margin-top: 150px;
	}
	.about-right {
		margin-top: 180px;
	}
}

@media all and (max-width: 767px) {
	.about-title {
		font-size: 30px;
	}
	.about-left {
		margin-top: 0px;
		margin-right: 0px;
	}
	.about-img .img-1 {
		margin-top: 0;
	}
	.about-right {
		margin-top: 40px;
	}
}

/*====================
23. Apply css 
======================*/

.apply-form {
	position: relative;
	background: var(--color-not-sure-white);
	border-radius: 30px;
	padding: 20px;
	margin-top: -65px;
	box-shadow: var(--box-apply-shadow);
	z-index: 2;
}

.apply-form .apply-header {
	display: block;
	margin-bottom: 5px;
}

.apply-form .title {
	color: var(--color-not-sure-dark);
	font-size: 20px;
}

.apply-form .theme-btn {
	padding: 8px 15px;
}

.apply-form .form-group,
.apply-form .nice-select {
	margin-bottom: 0;
}

/*====================
23. email login css 
======================*/

.email-apply-form {
	position: relative;
	background: var(--color-not-sure-white);
	border-radius: 30px;
	padding: 20px;
	/* margin-top: -65px; */
	box-shadow: var(--box-apply-shadow);
	z-index: 2;
}

.email-apply-form .apply-header {
	display: block;
	margin-bottom: 5px;
}

.email-apply-form .title {
	color: var(--color-not-sure-dark);
	font-size: 20px;
}

.email-apply-form .theme-btn {
	padding: 8px 15px;
}

.email-apply-form .form-group,
.email-apply-form .nice-select {
	margin-bottom: 0;
}

/*====================
24. Feature css 
======================*/

.feature-area {
	position: relative;
}

.feature-negative {
	margin-top: -120px;
	z-index: 1;
}

.feature-item {
	display: flex;
	gap: 20px;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
	border-radius: 0px 40px 40px 40px;
	padding: 20px;
	position: relative;
	transition: var(--transition);
}

.feature-item:hover {
	transform: translateY(-10px);
}

.feature-item::before {
	content: "";
	position: absolute;
	left: 100px;
	right: 100px;
	bottom: 0;
	border-bottom: 3px solid var(--theme-color);
	border-radius: 50px;
}

.feature-item .count {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: 45px;
	line-height: 35px;
	font-weight: 800;
	color: transparent;
	-webkit-text-stroke: 2px var(--theme-color);
}

.feature-icon {
	position: relative;
	width: 80px;
	height: 80px;
	line-height: 75px;
	text-align: center;
	background: var(--theme-color2);
	border-radius: 0 50px 50px 50px;
	margin-bottom: 18px;
	z-index: 1;
}

.feature-icon::before {
	content: "";
	position: absolute;
	inset: -5px;
	border: 2px dashed var(--theme-color2);
	border-radius: 0 50px 50px 50px;
}

.feature-icon img {
	width: 50px;
	filter: brightness(0) invert(1);
}

.feature-content {
	flex: 1;
}

.feature-content h4 {
	color: var(--color-not-sure-dark);
}

.feature-content p {
	color: var(--color-not-sure-dark);
	margin-top: 10px;
}

@media all and (max-width: 991px) {
	.feature-negative {
		margin-top: -70px;
	}
}

/* ===================
25. Visa css 
====================== */

.visa-area {
	position: relative;
}

.visa-item {
	position: relative;
	padding: 20px;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
	border-radius: 0 70px 70px 70px;
}

.visa-item .count {
	position: absolute;
	top: 90px;
	left: 20px;
	font-weight: 800;
	font-size: 70px;
	font-family: var(--heading-font);
	color: transparent;
	-webkit-text-stroke: 1px var(--theme-color);
	opacity: 0.2;
}

.visa-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 0 50px 50px 50px;
	background: var(--theme-color);
	margin-bottom: 30px;
	box-apply-shadow: 8px 8px 0 var(--theme-color-not-sure-light);
	transition: var(--transition);
	position: relative;
}

.visa-item:hover .visa-icon {
	box-apply-shadow: 0px 0px 0 var(--theme-color-not-sure-light);
}

.visa-icon img {
	width: 50px;
	filter: brightness(0) invert(1);
}

.visa-content {
	display: flex;
	gap: 20px;
}

.visa-info {
	flex: 1;
}

.visa-content h4 a {
	color: var(--color-not-sure-dark);
}

.visa-content h4 a:hover {
	color: var(--theme-color);
}

.visa-content p {
	color: var(--body-text-color);
	margin-top: 5px;
	margin-bottom: 10px;
}

.visa-content .theme-btn {
	padding: 3px 15px;
}

.visa-img {
	margin-top: 25px;
	overflow: hidden;
	border-radius: 0 50px 50px 50px;
}

.visa-img img {
	border-radius: 0 50px 50px 50px;
}

.visa-item:hover .visa-img img {
	transform: scale(1.1);
}

/* visa-slider */
.visa-slider .visa-item {
	box-apply-shadow: none;
}

.visa-slider .visa-icon {
	padding-top: 15px;
}

.visa-slider .visa-icon img {
	width: 50px !important;
	margin: auto;
}

.visa-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.visa-slider .owl-dots .owl-dot span {
	background: var(--theme-color);
	margin: 0 8px;
	border-radius: 50px;
	width: 15px;
	height: 6px;
	display: inline-block;
	transition: var(--transition);
	position: relative;
}

.visa-slider .owl-dots .owl-dot.active span::before {
	content: "";
	position: absolute;
	top: -4.5px;
	left: -5.1px;
	width: 25px;
	height: 15px;
	border: 2px solid var(--theme-color);
	border-radius: 50px;
}

/* ===================
26. Visa single css 
====================== */

.visa-sidebar .widget {
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
	padding: 30px;
	margin-bottom: 25px;
}

.visa-sidebar .widget .title {
	margin-bottom: 25px;
}

.visa-sidebar .visa-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-not-sure-white);
}

.visa-sidebar .visa-list a:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.visa-sidebar .visa-list a:hover {
	color: var(--theme-color);
	padding-left: 10px;
}

.visa-sidebar .visa-list a img {
	width: 35px;
	margin-right: 10px;
}

.visa-sidebar .download-list .theme-btn {
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 20px;
	text-align: left;
}

.visa-sidebar .visa-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 140px 40px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
}

.visa-sidebar .visa-banner::before {
	content: "";
	position: absolute;
	inset: 15px;
	background: var(--theme-color);
	border-radius: 40px;
	opacity: 0.7;
	z-index: -1;
}

.visa-sidebar .banner-content {
	text-align: center;
}

.visa-sidebar .banner-content span {
	color: var(--color-not-sure-white);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
}

.visa-sidebar .banner-content h1 {
	color: var(--color-not-sure-white);
	margin-bottom: 25px;
}

.visa-details img {
	border-radius: 30px;
}

.visa-details .visa-single-item {
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
	text-align: center;
	padding: 25px;
}

.visa-details .visa-single-item img {
	width: 70px;
	border-radius: 0px;
	margin-bottom: 20px;
}

.visa-details .visa-single-item h5 {
	color: var(--color-not-sure-dark);
	margin-bottom: 10px;
}

.visa-details .content .list li {
	margin: 5px 0;
	font-weight: 500;
}

.visa-details .content .list i {
	color: var(--theme-color);
	margin-right: 10px;
}

/* ===================
27. Country css 
====================== */

.country-bg {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 500px;
}

.country-bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--color-not-sure-dark);
	opacity: 0.75;
}

.country-wrap {
	position: relative;
	background: var(--color-not-sure-white);
	border-radius: 60px;
	padding: 30px;
}

.country-item {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--theme-color-not-sure-light);
	border-radius: 40px;
	padding: 15px 16px;
}

.country-img {
	width: 100px;
}

.country-item:hover .country-img img {
	transform: rotate(360deg);
}

.country-content {
	flex: 1;
}

.country-content h4 {
	margin-bottom: 8px;
}

.country-content h4 a {
	color: #2d4a8e;
	font-size: 20px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
}

.country-content h4 a:hover {
	color: var(--theme-color);
}

.country-content p {
	margin: 5px 0 7px 0;
}

.country-item .theme-btn {
	padding: 4px 12px;
}

/* country-area2 */
.country-area2 .country-item {
	flex-direction: column;
	text-align: center;
	padding: 15px 15px 30px 15px;
	border-radius: 60px;
}

.country-area2 .country-banner-img img {
	border-radius: 50px;
}

.country-area2 .country-img {
	margin-top: -60px;
}

.country-area2 .country-img img {
	width: 70px;
	border: 5px solid var(--color-not-sure-white);
	border-radius: 50px;
}

.country-area2 .country-content .theme-btn {
	margin-top: 10px;
}

/* ===================
28. Country single css 
====================== */

.country-sidebar .widget {
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
	padding: 30px;
	margin-bottom: 25px;
}

.country-sidebar .widget .title {
	margin-bottom: 25px;
}

.country-sidebar .country-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-not-sure-white);
}

.country-sidebar .country-list a:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.country-sidebar .country-list a:hover {
	color: var(--theme-color);
	padding-left: 10px;
}

.country-sidebar .country-list a img {
	width: 35px;
	margin-right: 10px;
}

.country-sidebar .download-list .theme-btn {
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 20px;
	text-align: left;
}

.country-sidebar .country-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 140px 40px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
}

.country-sidebar .country-banner::before {
	content: "";
	position: absolute;
	inset: 15px;
	background: var(--theme-color);
	border-radius: 40px;
	opacity: 0.7;
	z-index: -1;
}

.country-sidebar .banner-content {
	text-align: center;
}

.country-sidebar .banner-content span {
	color: var(--color-not-sure-white);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
}

.country-sidebar .banner-content h1 {
	color: var(--color-not-sure-white);
	margin-bottom: 25px;
}

.country-details img {
	border-radius: 30px;
}

.country-details .content .list li {
	margin: 5px 0;
	font-weight: 500;
}

.country-details .content .list i {
	color: var(--theme-color);
	margin-right: 10px;
}

/* ===================
29. Process css 
====================== */

.process-item {
	padding: 10px;
	text-align: center;
	position: relative;
}

.process-item .count {
	position: absolute;
	right: 0;
	top: 0;
	font-weight: 800;
	font-size: 60px;
	line-height: 60px;
	font-family: var(--heading-font);
	color: transparent;
	-webkit-text-stroke: 1px var(--theme-color);
	opacity: 0.4;
}

.process-icon {
	width: 100px;
	height: 100px;
	line-height: 95px;
	background: var(--theme-color);
	border-radius: 50%;
	margin: 0 auto 25px auto;
	position: relative;
}

.process-icon::before {
	content: "";
	position: absolute;
	inset: -10px;
	border: 2px dashed var(--theme-color);
	border-radius: 50%;
}

.process-icon img {
	width: 60px;
	filter: brightness(0) invert(1);
}

.process-content h4 {
	color: var(--color-not-sure-dark);
	margin-bottom: 8px;
}

/* ===================
30. Coaching css 
====================== */

.coaching-area {
	background: var(--theme-color-not-sure-light);
	position: relative;
}

.coaching-area::before {
	position: absolute !important;
	content: "" !important;
	left: 0px !important;
	top: 0px !important;
	height: 262px;
	width: 400px;
	background-image: url(../images/shape/aeroplane.png) !important;
	background-repeat: no-repeat;
	/* animation: jump-2 5s linear infinite;  */
	/* animation: rotateIt2 25s linear infinite; */
	animation: slide-two 10s linear infinite;
	z-index: 1;
	opacity: 0.9;
}

.coaching-area::after {
	position: absolute !important;
	content: "" !important;
	right: 50px !important;
	bottom: 20px !important;
	height: 133px;
	width: 90px;
	background-image: url(../images/shape/map-pin.png) !important;
	background-repeat: no-repeat;
	animation: jump-2 5s linear infinite;
	/* animation: rotateIt2 25s linear infinite; */
	/* animation: slide-two 10s linear infinite; */
	z-index: 1;
	opacity: 0.9;
}

.coaching-item {
	background: var(--color-not-sure-white);
	border-radius: 50px 50px 30px 0;
	padding: 15px;
	position: relative;
	min-height: 490px;
}

.coaching-img {
	overflow: hidden;
	border-radius: 40px 40px 40px 0;
}

.coaching-img img {
	border-radius: 40px 40px 40px 0;
}

.coaching-item:hover .coaching-img img {
	transform: rotate(2deg) scale(1.1);
}

.coaching-price {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	display: inline-block;
	padding: 0 15px;
	border-radius: 50px 50px 50px 0;
	box-apply-shadow: var(--box-apply-shadow);
	z-index: 1;
}

.coaching-meta {
	display: flex;
	gap: 20px;
	margin: 10px 0 10px 0;
}

.coaching-meta span i {
	color: var(--theme-color);
}

.coaching-content h4 {
	color: var(--color-not-sure-dark);
	font-size: 22px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.coaching-content h4 a:hover {
	color: var(--theme-color);
}

.coaching-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border-info-color);
	margin-top: 10px;
	padding-top: 10px;
}

.coaching-rating i {
	color: var(--color-yellow);
}

.coaching-bottom .theme-btn {
	padding: 2px 12px;
}

/* coaching-slider */
.coaching-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.coaching-slider .owl-dots .owl-dot span {
	background: var(--theme-color);
	margin: 0 8px;
	border-radius: 50px;
	width: 15px;
	height: 6px;
	display: inline-block;
	transition: var(--transition);
	position: relative;
}

.coaching-slider .owl-dots .owl-dot.active span::before {
	content: "";
	position: absolute;
	top: -4.5px;
	left: -5.1px;
	width: 25px;
	height: 15px;
	border: 2px solid var(--theme-color);
	border-radius: 50px;
}

/* ===================
30. news css 
====================== */

.news-area {
	background: var(--theme-color-not-sure-light);
	position: relative;
}

.news-area::before {
	position: absolute !important;
	content: "" !important;
	left: 0px !important;
	top: 0px !important;
	height: 262px;
	width: 400px;
	background-image: url(../images/shape/aeroplane.png) !important;
	background-repeat: no-repeat;
	/* animation: jump-2 5s linear infinite;  */
	/* animation: rotateIt2 25s linear infinite; */
	animation: slide-two 10s linear infinite;
	z-index: 1;
	opacity: 0.9;
}

.news-area::after {
	position: absolute !important;
	content: "" !important;
	right: 50px !important;
	bottom: 20px !important;
	height: 133px;
	width: 90px;
	background-image: url(../images/shape/map-pin.png) !important;
	background-repeat: no-repeat;
	animation: jump-2 5s linear infinite;
	/* animation: rotateIt2 25s linear infinite; */
	/* animation: slide-two 10s linear infinite; */
	z-index: 1;
	opacity: 0.9;
}

.news-item {
	background: var(--color-not-sure-white);
	border-radius: 50px 50px 30px 0;
	padding: 15px;
	position: relative;
	min-height: 490px;
}

.news-img {
	overflow: hidden;
	border-radius: 40px 40px 40px 0;
}

.news-img img {
	border-radius: 40px 40px 40px 0;
}

.news-item:hover .news-img img {
	transform: rotate(2deg) scale(1.1);
}

.news-price {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	display: inline-block;
	padding: 0 15px;
	border-radius: 50px 50px 50px 0;
	box-apply-shadow: var(--box-apply-shadow);
	z-index: 1;
}

.news-meta {
	display: flex;
	gap: 20px;
	margin: 10px 0 10px 0;
}

.news-meta span i {
	color: var(--theme-color);
}

.news-content h4 {
	color: var(--color-not-sure-dark);
	font-size: 18px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.news-content h4 a:hover {
	color: var(--theme-color);
}

.news-content p {
	color: var(--body-text-color);
	font-size: 16px;
	margin-bottom: 5px;
	line-height: 24px;
}

.news-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border-info-color);
	margin-top: 10px;
	padding-top: 10px;
}

.news-rating i {
	color: var(--color-yellow);
}

.news-bottom .theme-btn {
	padding: 2px 12px;
}

/* newsupdate-slider-slider */

.newsupdate-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.newsupdate-slider .owl-dots .owl-dot span {
	background: var(--theme-color);
	margin: 0 8px;
	border-radius: 50px;
	width: 15px;
	height: 6px;
	display: inline-block;
	transition: var(--transition);
	position: relative;
}

.newsupdate-slider .owl-dots .owl-dot.active span::before {
	content: "";
	position: absolute;
	top: -4.5px;
	left: -5.1px;
	width: 25px;
	height: 15px;
	border: 2px solid var(--theme-color);
	border-radius: 50px;
}

/* Member-slider-slider */

.member-item {
	/* background: var(--color-not-sure-white); */
	border-radius: 50px 50px 30px 0;
	/* padding: 15px; */
	position: relative;
}

.member-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.member-slider .owl-dots .owl-dot span {
	background: var(--theme-color);
	margin: 0 8px;
	border-radius: 50px;
	width: 15px;
	height: 6px;
	display: inline-block;
	transition: var(--transition);
	position: relative;
}

.member-slider .owl-dots .owl-dot.active span::before {
	content: "";
	position: absolute;
	top: -4.5px;
	left: -5.1px;
	width: 25px;
	height: 15px;
	border: 2px solid var(--theme-color);
	border-radius: 50px;
}

/* ===================
31. Coaching single css 
====================== */

.coaching-sidebar .widget {
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
	padding: 30px;
	margin-bottom: 25px;
}

.coaching-sidebar .widget .title {
	margin-bottom: 25px;
}

.coaching-sidebar .coaching-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-not-sure-white);
}

.coaching-sidebar .coaching-list a:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.coaching-sidebar .coaching-list a:hover {
	color: var(--theme-color);
	padding-left: 10px;
}

.coaching-sidebar .coaching-list a img {
	width: 35px;
	margin-right: 10px;
}

.coaching-sidebar .download-list .theme-btn {
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 20px;
	text-align: left;
}

.coaching-sidebar .coaching-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 140px 40px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
}

.coaching-sidebar .coaching-banner::before {
	content: "";
	position: absolute;
	inset: 15px;
	background: var(--theme-color);
	border-radius: 40px;
	opacity: 0.7;
	z-index: -1;
}

.coaching-sidebar .banner-content {
	text-align: center;
}

.coaching-sidebar .banner-content span {
	color: var(--color-not-sure-white);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
}

.coaching-sidebar .banner-content h1 {
	color: var(--color-not-sure-white);
	margin-bottom: 25px;
}

.coaching-details img {
	border-radius: 30px;
}

.coaching-details .coaching-single-item {
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
	text-align: center;
	padding: 25px;
}

.coaching-details .coaching-single-item img {
	width: 70px;
	border-radius: 0px;
	margin-bottom: 20px;
}

.coaching-details .coaching-single-item h5 {
	color: var(--color-not-sure-dark);
	margin-bottom: 10px;
}

.coaching-details .content .list li {
	margin: 5px 0;
	font-weight: 500;
}

.coaching-details .content .list i {
	color: var(--theme-color);
	margin-right: 10px;
}

/* ===================
32. Service css 
====================== */

.service-area {
	position: relative;
}

.service-item {
	position: relative;
	padding: 20px;
	display: flex;
	gap: 20px;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
}

.service-item .count {
	position: absolute;
	bottom: 0px;
	left: 20px;
	font-weight: 800;
	font-size: 70px;
	color: transparent;
	-webkit-text-stroke: 1px var(--color-not-sure-dark);
	opacity: 0.2;
}

.service-icon {
	width: 80px;
	height: 80px;
	line-height: 72px;
	text-align: center;
	border-radius: 50px;
	background: var(--theme-color);
	margin-bottom: 30px;
	box-apply-shadow: 8px 8px 0 var(--theme-color-not-sure-light);
	transition: var(--transition);
}

.service-item:hover .service-icon {
	box-apply-shadow: 0px 0px 0 var(--theme-color-not-sure-light);
}

.service-icon img {
	width: 50px;
	filter: brightness(0) invert(1);
}

.service-content {
	flex: 1;
}

.service-content h4 a {
	color: var(--color-not-sure-dark);
}

.service-content h4 a:hover {
	color: var(--theme-color);
}

.service-content p {
	color: var(--body-text-color);
	margin-top: 5px;
	margin-bottom: 10px;
}

.service-content .theme-btn {
	padding: 3px 15px;
}

@media all and (min-width: 992px) {
	.service-wrap [class*="col-"]:nth-child(1) .service-item {
		border-top-left-radius: 50px;
	}

	.service-wrap [class*="col-"]:nth-child(3) .service-item {
		border-top-right-radius: 50px;
	}

	.service-wrap [class*="col-"]:nth-child(4) .service-item {
		border-bottom-left-radius: 50px;
	}

	.service-wrap [class*="col-"]:nth-child(6) .service-item {
		border-bottom-right-radius: 50px;
	}
}

/* ======================
33. Service single
====================== */

.service-sidebar .widget {
	background: var(--color-not-sure-white);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 30px;
	box-apply-shadow: var(--box-apply-shadow);
}

.service-sidebar .widget .title {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.service-sidebar .widget .title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: var(--theme-color);
	border-radius: 50px;
}

.service-sidebar .category a {
	display: block;
	font-size: 16px;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	padding-bottom: 7px;
	margin-bottom: 7px;
	border-bottom: 1px solid var(--border-info-color);
}

.service-sidebar .category a:hover {
	color: var(--theme-color);
	padding-left: 5px;
}

.service-sidebar .category a i {
	margin-right: 5px;
}

.service-sidebar .category a:last-child {
	padding: 0;
	margin: 0;
	border-bottom: none;
}

.service-sidebar .service-download a {
	display: block;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	border: 2px solid var(--theme-color);
	padding: 10px 20px;
	margin-bottom: 20px;
	border-radius: 50px;
	transition: var(--transition);
}

.service-sidebar .service-download a:last-child {
	margin-bottom: 0;
}

.service-sidebar .service-download a:hover {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

.service-sidebar .service-download a i {
	margin-right: 10px;
}

.service-details img {
	border-radius: 30px;
}

.service-details .content h3 {
	color: var(--color-not-sure-dark);
}

.service-details .content .list li {
	font-weight: 500;
	color: var(--color-not-sure-dark);
	margin-top: 5px;
}

.service-details .content .list i {
	color: var(--theme-color);
	margin-right: 10px;
}

/* ===================
34. Skill css 
====================== */

.skill-img {
	position: relative;
}

.skill-img::before {
	content: "";
	position: absolute;
	right: 50px;
	bottom: 0;
	width: 80%;
	height: 90%;
	background: var(--theme-color);
	border-radius: 100px 100px 100px 0px;
	transform: rotate(5deg);
	opacity: 0.1;
	z-index: -1;
}

.skill-img img {
	width: 85%;
	border-radius: 100px 100px 100px 0px;
}

.skill-text {
	margin-top: 10px;
}

.skill-progress {
	margin-top: 25px;
}

.skill-progress .progress-item {
	margin-bottom: 25px;
}

.skill-progress .progress-item:last-child {
	margin-bottom: 0;
}

.skill-progress .progress-item h5 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.skill-progress .progress-item .progress {
	height: 8px;
	background-color: var(--theme-bg-not-sure-light);
	border-radius: 50px;
}

.skill-progress .progress-item .progress .progress-bar {
	background-color: var(--theme-color);
}

@media all and (max-width: 767px) {
	.skill-img::before {
		right: 15px;
	}
}

/* ===================
35. Pricing css 
====================== */

.pricing-area {
	position: relative;
}

.pricing-wrap {
	background: var(--theme-color-not-sure-light);
	border-radius: 40px;
}

.pricing-item {
	position: relative;
	padding: 40px;
}

.pricing-icon {
	position: absolute;
	right: 40px;
	top: 40px;
	width: 60px;
}

.pricing-header-wrap {
	margin-bottom: 30px;
}

.pricing-header {
	display: inline-block;
	background: var(--theme-color);
	padding: 2px 15px 0 15px;
	box-apply-shadow: var(--box-apply-shadow);
	border-radius: 50px;
	letter-spacing: 4px;
	margin-bottom: 30px;
}

.pricing-header h5 {
	font-size: 22px;
	font-weight: 500;
	text-transform: capitalize;
	display: inline-block;
	color: var(--color-not-sure-white);
}

.pricing-amount {
	margin-bottom: 40px;
}

.pricing-amount strong {
	font-size: 50px;
	font-weight: 900;
	color: var(--color-not-sure-dark);
	line-height: 1;
}

.pricing-amount-type {
	color: var(--color-not-sure-dark);
	font-size: 16px;
	font-weight: 500;
}

.pricing-feature {
	padding: 40px 0 0 0;
}

.pricing-feature li {
	margin-bottom: 15px;
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.pricing-feature li:last-child {
	margin-bottom: 0px;
}

.pricing-feature li i {
	color: var(--theme-color);
	margin-right: 10px;
}

.pricing-feature li .not-include {
	color: var(--color-red);
}

.pricing-item .theme-btn {
	width: 100%;
}

.pricing-item.active {
	margin: 0 20px;
	background: var(--theme-color);
	border-radius: 40px;
	transform: scale(1.05);
}

.pricing-item.active .pricing-icon img {
	filter: brightness(0) invert(1);
}

.pricing-item.active .pricing-header {
	background: var(--color-not-sure-white);
}

.pricing-item.active .pricing-header h5 {
	color: var(--theme-color);
}

.pricing-item.active .pricing-amount strong,
.pricing-item.active .pricing-amount-type {
	color: var(--color-not-sure-white);
}

.pricing-item.active .theme-btn {
	background: var(--color-not-sure-white);
	color: var(--theme-color);
}

.pricing-item.active .pricing-feature li,
.pricing-item.active .pricing-feature li i {
	color: var(--color-not-sure-white);
}

@media all and (max-width: 1199px) {
	.pricing-item.active {
		margin: 0;
	}
}

@media all and (max-width: 991px) {
	.pricing-amount strong {
		font-size: 50px;
	}
}

/* ===================
36. Counter css 
====================== */

.counter-area {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.counter-wrap {
	background: var(--theme-color);
	padding: 40px 0;
}

.counter-wrap .shape {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	width: 80%;
	opacity: 0.15;
}

.counter-box {
	display: flex;
	gap: 12px;
	position: relative;
	padding: 15px 10px 15px 15px;
	border-radius: 50px 50px 50px 0;
	background: var(--color-not-sure-white);
	border: 2px solid var(--border-not-sure-white-color);
	box-apply-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}

.counter-box .icon {
	width: 80px;
	height: 80px;
	line-height: 70px;
	font-size: 35px;
	border-radius: 50px 50px 50px 0;
	text-align: center;
	color: var(--color-not-sure-white);
	background: var(--theme-color2);
}

.counter-box .icon img {
	width: 50px;
	filter: brightness(0) invert(1);
}

.counter-box .info {
	display: flex;
	gap: 2px;
}

.counter-box .counter {
	display: block;
	line-height: 1;
	color: var(--theme-color2);
	font-size: 50px;
	font-weight: 900;
}

.counter-box .unit {
	font-size: 25px;
	color: var(--color-not-sure-dark);
	font-weight: 500;
	line-height: 1;
	margin: 3px 0 0 3px;
}

.counter-box .title {
	color: var(--color-not-sure-dark);
	margin-top: 10px;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
}

/* ===================
37. Team css 
====================== */

.team-area {
	position: relative;
}

.team-item {
	background: var(--color-not-sure-white);
	border-radius: 100px;
	padding: 25px;
	box-apply-shadow: var(--box-apply-shadow);
	position: relative;
	z-index: 1;
}

.team-item::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100px;
	bottom: 100px;
	border-left: 3px solid var(--theme-color);
	border-radius: 50px;
	z-index: -1;
}

.team-img {
	position: relative;
}

.team-img img {
	border-radius: 50%;
	padding: 10px;
	border: 2px dashed var(--theme-color);
}

.team-social-btn {
	position: absolute;
	right: -3px;
	bottom: 0;
	width: 60px;
	height: 60px;
	background: var(--color-not-sure-white);
	border-top-left-radius: 50%;
	padding: 8px;
}

.team-social-btn button {
	width: 42px;
	height: 42px;
	line-height: 42px;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	border: none;
}

.team-social {
	position: absolute;
	right: 9px;
	bottom: 50px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.team-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-left: 8px;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	border-radius: 50px;
}

.team-social a:hover {
	background: var(--theme-color2);
	color: var(--color-not-sure-white);
}

.team-social-wrap:hover .team-social {
	opacity: 1;
	visibility: visible;
	bottom: 70px;
}

.team-content {
	text-align: center;
	margin-top: 10px;
}

.team-content h4 a {
	color: var(--color-not-sure-dark);
	font-size: 20px;
}

.team-content h4 a:hover {
	color: var(--theme-color);
}

.team-content span {
	color: var(--theme-color);
	font-weight: 500;
}

/* ===================
37. Member css 
====================== */

.member-area {
	position: relative;
}

.member-item1 {
	background: var(--color-not-sure-white);
	border-radius: 100px;
	padding: 25px 15px;
	/* box-apply-shadow: var(--box-apply-shadow); */
	position: relative;
	z-index: 1;
}

.member-item1::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100px;
	bottom: 100px;
	border-left: 3px solid var(--theme-color);
	border-radius: 50px;
	z-index: -1;
}

.member-img {
	position: relative;
}

.member-img img {
	border-radius: 50%;
	padding: 10px;
	border: 2px dashed var(--theme-color);
}

.member-content {
	text-align: center;
	margin-top: 10px;
}

.member-content h4 a {
	color: var(--color-not-sure-dark);
	font-size: 20px;
}

.member-content h4 a:hover {
	color: var(--theme-color);
}

.member-content span {
	color: #424346;
	font-weight: 400;
	display: block;
	font-size: 13px;
	line-height: 20px;
}

.member-content span i {
	color: #ffa704;
	margin-right: 5px;
}

.member-content .designation {
	color: #ffa704;
}

/* ===================
37. About css 
====================== */

.about-com-item {
	background: #2d4a8e;
	border-radius: 100px;
	padding: 25px;
	box-apply-shadow: var(--box-apply-shadow);
	position: relative;
	z-index: 1;
}

.about-com-item::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 100px;
	bottom: 100px;
	border-left: 3px solid #ffa704;
	border-radius: 50px;
	z-index: -1;
}

.about-com-img {
	position: relative;
}

.about-com-img img {
	border-radius: 50%;
	padding: 10px;
	border: 2px dashed var(--theme-color);
}

.about-com-content {
	text-align: center;
	margin-top: 10px;
}

.about-com-content h4 a {
	color: #fff;
	font-size: 20px;
}

.about-com-content h4 a:hover {
	color: #ffa704;
}

.about-com-content span {
	color: #ffa704;
	font-weight: 500;
}

/* ===================
38. Video css 
====================== */

.video-area {
	position: relative;
}

.video-content {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 500px;
	border-radius: 0px;
}

.video-content::before {
	content: "";
	position: absolute;
	background: var(--theme-color-not-sure-light2);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 0px;
}

.video-content .play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media all and (max-width: 991px) {
	.video-content {
		position: relative;
		width: 100%;
		height: 350px;
	}
}

/*====================
39. Quote css 
======================*/

.quote-bg {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	height: 650px;
	width: 100%;
	padding-top: 150px;
	z-index: 1;
}

.quote-bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	opacity: 0.5;
	z-index: -1;
}

.quote-form {
	background: var(--color-not-sure-white);
	padding: 35px;
	box-apply-shadow: var(--box-apply-shadow);
	position: relative;
	border-radius: 50px;
	margin-top: 60px;
	z-index: 1;
}

.quote-header {
	border-bottom: 1px solid var(--border-info-color);
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.quote-header p {
	margin-top: 8px;
}

.quote-img {
	position: relative;
	z-index: 1;
}

.quote-img img {
	border-radius: 20px;
	width: 100%;
}

/* ===================
40. Cta css 
====================== */

.cta-area {
	position: relative;
}

.cta-negative {
	margin-top: -130px;
}

.cta-wrap {
	position: relative;
	background: var(--theme-color);
	border-radius: 50px 50px 50px 0;
	overflow: hidden;
	z-index: 1;
}

.cta-wrap .shape {
	position: absolute;
	right: 50px;
	top: 0;
	width: 40%;
	opacity: 0.2;
	z-index: -1;
}

.cta-img img {
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.cta-content {
	text-align: center;
	padding: 20px;
}

.cta-content h1 {
	color: var(--color-not-sure-white);
	font-size: 42px;
}

.cta-content h1 span {
	color: transparent;
	-webkit-text-stroke: 2px var(--color-not-sure-white);
}

.cta-content p {
	color: var(--color-not-sure-white);
	margin-top: 10px;
	margin-bottom: 20px;
}

@media all and (max-width: 991px) {
	.cta-img img {
		clip-path: none;
	}

	.cta-wrap .shape {
		right: unset;
		top: unset;
		left: 0;
		bottom: 0;
		width: 100%;
	}
}

/* ===================
41. Choose css 
====================== */

.choose-area {
	position: relative;
}

.choose-content {
	margin-top: 30px;
}

.choose-item {
	background: var(--color-not-sure-white);
	border-radius: 0 50px 50px 50px;
	padding: 25px;
	position: relative;
	margin-bottom: 25px;
	box-shadow: var(--box-apply-shadow);
}

.choose-item .count {
	position: absolute;
	right: 30px;
	top: 30px;
	font-size: 45px;
	line-height: 35px;
	font-weight: 500;
	font-family: var(--heading-font);
	color: transparent;
	-webkit-text-stroke: 2px var(--theme-color);
}

.choose-item:last-child {
	margin-bottom: 0;
}

.choose-item-icon {
	position: relative;
	width: 80px;
	height: 80px;
	line-height: 73px;
	background: var(--theme-color);
	text-align: center;
	border-radius: 0 50px 50px 50px;
	margin-bottom: 15px;
	box-apply-shadow: 5px 5px 0 var(--theme-color-not-sure-light);
}

.choose-item-icon img {
	width: 50px;
	filter: brightness(0) invert(1);
}

.choose-item-info {
	flex: 1;
}

.choose-item-info h4 {
	color: var(--color-not-sure-dark);
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 500;
}

.choose-item-info p {
	color: var(--body-text-color);
}

.choose-img {
	position: relative;
	margin-top: 25px;
}

.choose-img::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 8px double var(--color-not-sure-white);
	border-radius: 150px 150px 150px 0;
}

.choose-img img {
	border-radius: 150px 150px 150px 0;
}

/*====================
42. Testimonial css 
======================*/

.testimonial-area {
	position: relative;
}

.testimonial-bg {
	background: var(--color-not-sure-dark);
	z-index: 1;
}

.testimonial-bg::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	background-image: url(../img/shape/04.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	z-index: -1;
}

.testimonial-item {
	background: var(--color-not-sure-white);
	padding: 25px;
	border-radius: 0 50px 50px 50px;
}

.testimonial-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	width: 100%;
	height: 90%;
	background: var(--theme-color);
	transform: rotate(10deg);
	border-radius: 50px;
	z-index: -1;
}

.testimonial-quote p {
	position: relative;
	color: var(--color-not-sure-dark);
	font-size: 18px;
	font-style: italic;
	font-weight: 500;
	z-index: 1;
}

.testimonial-content {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.testimonial-author-img {
	width: 80px;
	height: 80px;
	padding: 4px;
	border-radius: 0 50px 50px 50px;
	border: 2px dashed var(--theme-color);
}

.testimonial-author-img img {
	border-radius: 0 50px 50px 50px;
}

.testimonial-author-info h4 {
	font-size: 20px;
	color: var(--color-not-sure-dark);
}

.testimonial-area.bg .testimonial-author-info h4 {
	color: var(--color-not-sure-dark);
}

.testimonial-author-info p {
	color: var(--theme-color);
	font-weight: 500;
}

.testimonial-quote-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

.testimonial-quote-icon img {
	width: 200px !important;
}

.testimonial-rate {
	color: #fb9902;
	border: 2px solid #fb9902;
	width: fit-content;
	border-radius: 50px;
	padding: 0 10px;
	margin-top: 15px;
}

/* testimonial-slider */
.testimonial-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.testimonial-slider .owl-dots .owl-dot span {
	background: var(--color-not-sure-white);
	margin: 5px;
	border-radius: 10px;
	width: 10px;
	height: 10px;
	display: inline-block;
	transition: var(--transition);
}

.testimonial-slider .owl-dots .owl-dot.active span {
	background: var(--theme-color);
}

/* ========================
43. Gallery css 
=========================== */

.gallery-item {
	position: relative;
	width: 100%;
}

.gallery-img {
	height: 100%;
}

.gallery-img img {
	width: 100%;
	border-radius: 20px;
}

.gallery-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.gallery-content::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	background: var(--theme-color);
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.gallery-content:hover::before {
	opacity: 0.9;
	visibility: visible;
}

.gallery-link {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 0.5s;
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 50px;
	color: var(--color-not-sure-white);
}

.gallery-link:hover {
	color: var(--color-not-sure-white);
}

.gallery-content:hover .gallery-link {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

/*====================
44. Blog css 
======================*/

.blog-area {
	position: relative;
}

.blog-item {
	padding: 15px;
	transition: var(--transition);
	position: relative;
	border-radius: 40px 40px 40px 0;
	box-shadow: var(--box-apply-shadow);
}

.blog-item-img {
	position: relative;
	overflow: hidden;
	border-radius: 30px 30px 30px 0;
}

.blog-item-img img {
	border-radius: 30px 30px 30px 0;
}

.blog-item:hover .blog-item-img img {
	transform: scale(1.1);
}

.blog-date {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 65px;
	height: 65px;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	text-align: center;
	border-radius: 50px 50px 50px 0;
	border: 5px solid var(--color-not-sure-white);
	box-shadow: var(--box-apply-shadow);
	z-index: 1;
}

.blog-date strong {
	display: block;
	font-size: 20px;
	font-weight: 800;
	margin-top: 5px;
	line-height: 1;
}

.blog-date span {
	font-weight: 500;
}

.blog-item-info {
	padding: 15px 0 0 0;
}

.blog-item-meta ul {
	margin: 0;
	margin-bottom: 14px;
	padding: 0;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
	display: inline-block;
	margin-right: 15px;
	font-weight: 500;
	position: relative;
	color: var(--color-not-sure-dark);
}

.blog-item-meta ul li i {
	margin-right: 5px;
	color: var(--theme-color);
}

.blog-item-meta a {
	color: var(--color-not-sure-dark);
}

.blog-item-meta a:hover {
	color: var(--theme-color);
}

.blog-title {
	font-size: 22px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.blog-item-info h4 a {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.blog-item-info h4 a:hover {
	color: var(--theme-color);
}

.blog-item-info p {
	margin-bottom: 16px;
}

.blog-item-info .theme-btn {
	margin-top: 10px;
}

/*========================
45. Blog single css
==========================*/

.blog-single {
	position: relative;
}

/* blog single img */
.blog-single .blog-thumb-img {
	margin-bottom: 20px;
}

.blog-single .blog-single-content img {
	border-radius: 30px;
}

/* blog single meta */
.blog-single .blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.blog-single .blog-meta-left ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

.blog-single .blog-meta-left ul li {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.blog-single .blog-meta i {
	margin-right: 5px;
	color: var(--theme-color);
}

.blog-single .blog-meta a {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.blog-single .blog-meta a:hover {
	color: var(--theme-color);
}

/* blog single details */
.blog-single .blog-details-title {
	font-size: 34px;
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

/* blog single blockqoute */
.blog-single .blockqoute {
	background: var(--theme-color-not-sure-light);
	border-left: 5px solid var(--theme-color);
	padding: 30px;
	font-size: 17px;
	font-style: italic;
	margin: 20px 0;
	border-radius: 0px;
	position: relative;
}

.blog-single .blockqoute .blockqoute-icon {
	position: absolute;
	right: 20px;
	bottom: 5px;
	color: var(--theme-color);
	font-size: 70px;
}

.blog-single .blockqoute-author {
	margin-top: 20px;
	padding-left: 60px;
	position: relative;
	color: var(--color-not-sure-dark);
}

.blog-single .blockqoute-author::before {
	content: "";
	position: absolute;
	height: 2px;
	width: 40px;
	background: var(--theme-color);
	left: 0;
	top: 10px;
}

/* blog single details tag */
.blog-single .blog-details-tag {
	display: flex;
	align-items: center;
	gap: 20px;
}

.blog-single .blog-details-tag h5 {
	color: var(--color-not-sure-dark);
}

.blog-single .blog-details-tag ul {
	display: flex;
	align-items: center;
	gap: 15px;
}

.blog-single .blog-details-tag ul a {
	background: var(--theme-bg-not-sure-light);
	color: var(--color-not-sure-dark);
	padding: 5px 18px;
	border-radius: 50px;
	transition: var(--transition);
}

.blog-single .blog-details-tag ul a:hover {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

/* blog single author */
.blog-single .blog-author {
	display: flex;
	justify-content: start;
	align-items: center;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
	margin: 50px 0;
	padding: 20px;
	border-radius: 50px;
}

.blog-single .blog-author-img {
	width: 320px;
}

.blog-single .blog-author-img img {
	border-radius: 40px;
}

.blog-single .author-name {
	font-size: 22px;
	color: var(--theme-color);
	margin: 8px 0;
}

.blog-single .author-info {
	padding: 0 20px;
}

.blog-single .author-social {
	margin-top: 10px;
}

.blog-single .author-social a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50px;
	margin-right: 5px;
	color: var(--color-not-sure-white);
	background: var(--theme-color);
	transition: var(--transition);
	box-apply-shadow: var(--box-apply-shadow);
}

.blog-single .author-social a:hover {
	color: var(--color-not-sure-white);
	background: var(--color-not-sure-dark);
}

/* blog single comment */
.blog-single .blog-comment h3 {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.blog-single .blog-comment-wrap {
	margin: 30px 0;
}

.blog-single .blog-comment-item {
	display: flex;
	justify-content: start;
	align-items: flex-start;
	border: 1px solid var(--border-info-color);
	border-radius: 50px;
	padding: 15px;
	margin-top: 50px;
}

.blog-single .blog-comment-item.reply {
	margin-left: 50px;
}

.blog-single .blog-comment-item img {
	width: 80px;
	border-radius: 50%;
}

.blog-single .blog-comment-content {
	padding: 0 0 0 20px;
}

.blog-single .blog-comment-content span {
	font-size: 14px;
	color: var(--theme-color);
	font-weight: 500;
}

.blog-single .blog-comment-content a {
	font-weight: 500;
	margin-top: 5px;
	color: var(--theme-color);
}

.blog-single .blog-comment-content a:hover {
	color: var(--theme-color2);
}

.blog-single .blog-comment-content h5 {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

/* blog single comment form */
.blog-single .blog-comment-form {
	padding: 30px;
	margin-top: 50px;
	border-radius: 50px;
	background: var(--color-not-sure-white);
	box-apply-shadow: var(--box-apply-shadow);
}

.blog-single .blog-comment-form h3 {
	margin-bottom: 20px;
}

@media all and (max-width: 767px) {
	.blog-single .blog-meta {
		flex-direction: column;
		font-size: 15px;
	}

	.blog-single .blog-meta-left ul {
		gap: 10px;
	}

	.blog-single .blog-details-tag {
		flex-direction: column;
		align-items: flex-start;
	}

	.blog-single .blog-author {
		flex-direction: column;
		text-align: center;
		padding: 25px;
	}

	.blog-single .author-info {
		margin-top: 25px;
	}

	.blog-single .blog-comment-item {
		flex-direction: column;
		text-align: center;
		padding: 30px 0px;
		background: var(--color-not-sure-white);
		box-apply-shadow: var(--box-apply-shadow);
		margin-bottom: 30px;
		border-radius: 15px;
	}

	.blog-single .blog-comment-item img {
		margin: 0 auto 20px auto;
	}

	.blog-single .blog-comment-item.reply {
		margin-left: 0px;
	}
}

/*==========================
46. Blog sidebar widget css
============================*/

.blog-sidebar .widget {
	background: var(--theme-bg-not-sure-light);
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 30px;
}

.blog-sidebar .widget .widget-title {
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
	font-size: 22px;
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.blog-sidebar .widget .widget-title::before {
	position: absolute;
	content: "";
	width: 15px;
	border-bottom: 3px solid var(--theme-color);
	bottom: 0;
	left: 0;
}

.blog-sidebar .widget .widget-title::after {
	position: absolute;
	content: "";
	width: 30px;
	border-bottom: 3px solid var(--theme-color);
	bottom: 0;
	left: 22px;
}

/* search widget */
.blog-sidebar .widget .search-form .form-control {
	padding-right: 50px;
}

.blog-sidebar .widget .search-form .form-group {
	position: relative;
}

.blog-sidebar .widget .search-form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	padding: 12px 18px 6px 18px;
	background: transparent;
	border: none;
	color: var(--theme-color);
}

/* category widget */
.blog-sidebar .widget .category-list a {
	display: block;
	padding: 10px 0;
	font-weight: 500;
	color: var(--color-not-sure-dark);
	border-bottom: 1px solid var(--border-info-color);
	transition: var(--transition);
}

.blog-sidebar .widget .category-list a:last-child {
	margin-bottom: 0px;
	border-bottom: none;
}

.blog-sidebar .widget .category-list a:hover {
	padding-left: 10px;
	color: var(--theme-color);
}

.blog-sidebar .widget .category-list a i {
	margin-right: 5px;
	color: var(--theme-color);
}

.blog-sidebar .widget .category-list a span {
	float: right;
}

/* recent post widget*/
.blog-sidebar .widget .recent-post-item {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.blog-sidebar .widget .recent-post-img img {
	width: 75px;
	border-radius: 15px;
}

.blog-sidebar .widget .recent-post-info {
	flex: 1;
}

.blog-sidebar .widget .recent-post-info h6 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 4px;
}

.blog-sidebar .widget .recent-post-info span {
	font-size: 14px;
	color: var(--theme-color);
	font-weight: 500;
}

.blog-sidebar .widget .recent-post-info span i {
	margin-right: 5px;
}

.blog-sidebar .widget .recent-post-info h6 a:hover {
	color: var(--theme-color);
}

/* social widget */
.blog-sidebar .widget .social-link a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: var(--color-not-sure-white);
	background: var(--theme-color);
	text-align: center;
	margin-right: 5px;
	border-radius: 50px;
	transition: var(--transition);
}

.blog-sidebar .widget .social-link a:hover {
	background: var(--color-not-sure-dark);
	color: var(--color-not-sure-white);
}

/* tag widget */
.blog-sidebar .widget .tag-list a {
	background: var(--color-not-sure-white);
	color: var(--color-not-sure-dark);
	padding: 5px 18px;
	margin-bottom: 10px;
	margin-right: 10px;
	border-radius: 50px;
	display: inline-block;
	transition: var(--transition);
}

.blog-sidebar .widget .tag-list a:hover {
	background-color: var(--theme-color);
	color: var(--color-not-sure-white);
}

/*====================
53. Pagination css 
======================*/

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.pagination .page-link {
	border: none;
	background: var(--theme-bg-not-sure-light);
	color: var(--color-not-sure-dark);
	font-weight: 500;
	margin: 0 10px;
	border-radius: 12px !important;
	width: 40px;
	height: 40px;
	line-height: 28px;
	text-align: center;
	transition: var(--transition);
	z-index: 1;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

/*====================
47. Faq css 
======================*/

.faq-area .accordion-item {
	border: none;
	background: var(--color-not-sure-white);
	border-radius: 50px;
	margin-bottom: 20px;
	box-shadow: var(--box-apply-shadow);
}

.faq-area .accordion-button {
	border-radius: 0px;
	background: transparent;
	font-weight: 500;
	font-size: 20px;
	color: var(--color-not-sure-dark);
	box-shadow: none;
	padding: 10px;
}

.faq-area .accordion-button::after {
	content: "\f107";
	background: none;
	color: var(--theme-color);
	font-size: 24px;
	font-weight: 500;
	font-family: "Font Awesome 6 pro";
	width: unset;
	height: unset;
	margin-right: 3px;
}

.faq-area .accordion-button:not(.collapsed) {
	color: var(--theme-color);
	background: transparent;
	border-bottom: 1px dashed var(--theme-color);
	box-shadow: none;
}

.faq-area .accordion-button:not(.collapsed)::after {
	content: "\f107";
	transform: rotate(-180deg);
}

.faq-area .accordion-button span {
	width: 35px;
	height: 35px;
	margin-right: 15px;
}

.faq-area .accordion-button span i {
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50px;
	background: var(--theme-color);
	text-align: center;
	color: var(--color-not-sure-white);
}

.faq-area .accordion-body {
	color: var(--color-not-sure-dark);
	font-weight: 400;
}

@media all and (max-width: 991px) {
	.faq-area .faq-content {
		margin-bottom: 50px;
	}

	.faq-area .accordion-button {
		font-size: 16px;
	}
}

/*===================
48. Contact us css 
=====================*/

.contact-content {
	margin-bottom: 50px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	padding: 30px 20px;
	position: relative;
	margin-bottom: 25px;
	border-radius: 40px;
	min-height: 255px;
	background: var(--theme-color-not-sure-light);
	transition: var(--transition);
}

.contact-info:hover {
	transform: translateY(-8px);
}

.contact-info .icon {
	font-size: 35px;
	color: var(--color-not-sure-white);
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 50px;
	background: var(--theme-color);
	position: relative;
}

.contact-info .icon::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 2px dashed var(--color-not-sure-white);
	border-radius: 50px;
}

.contact-info .content h5 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--color-not-sure-dark);
}

.contact-info .content p {
	color: var(--body-text-color);
	font-weight: 400;
	font-size: 18px;
}

.contact-img img {
	width: 100%;
	border-radius: 40px;
}

.contact-form-wrap {
	background: var(--color-not-sure-white);
	box-shadow: var(--box-apply-shadow);
	padding: 30px;
	border-radius: 40px;
}

.contact-form-header {
	margin-bottom: 30px;
}

.contact-form-header h2 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--color-not-sure-dark);
}

.contact-form-header p {
	color: var(--body-text-color);
}

.contact-form .form-message.success,
.contact-form .form-message.error {
	margin-bottom: 20px;
	border-radius: 10px;
	padding: 10px 18px;
}

.contact-form .form-message.success {
	color: #41be7d;
	background: rgba(65, 190, 125, 0.1);
}

.contact-form .form-message.error {
	color: #ff7f7f;
	background: rgba(255, 127, 127, 0.1);
}

.contact-form .form-message.error {
	color: var(--color-red);
}

.contact-map {
	margin-bottom: -9px;
}

.contact-map iframe {
	width: 100%;
	height: 450px;
}

/*-----enquiry start---*/

.enquiry-form-wrap {
	background: var(--color-not-sure-white);
	box-shadow: var(--box-apply-shadow);
	padding: 30px;
	border-radius: 40px;
}

.enquiry-form-header {
	margin-bottom: 30px;
}

.enquiry-form-header h2 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--color-not-sure-dark);
}

.enquiry-form-header p {
	color: var(--body-text-color);
}

.enquiry-img img {
	width: 100%;
	border-radius: 40px;
}

.enquiry-form .form-message.success,
.enquiry-form .form-message.error {
	margin-bottom: 20px;
	border-radius: 10px;
	padding: 10px 18px;
}

.enquiry-form .form-message.success {
	color: #41be7d;
	background: rgba(65, 190, 125, 0.1);
}

.enquiry-form .form-message.error {
	color: #ff7f7f;
	background: rgba(255, 127, 127, 0.1);
}

.enquiry-form .form-message.error {
	color: var(--color-red);
}

/*----enquiry end---*/

/*====================
49. Auth css 
======================*/

.auth-form {
	padding: 40px;
	background: var(--theme-color-not-sure-light);
	border-radius: 50px;
}

/* auth-header */
.auth-form .auth-header {
	text-align: center;
	margin-bottom: 30px;
}

.auth-form .auth-header img {
	width: 200px;
	margin-bottom: 10px;
}

.auth-form .auth-header h3 {
	color: var(--theme-color);
	margin-bottom: 5px;
	font-weight: 800;
}

.auth-form .auth-header p {
	color: var(--color-not-sure-dark);
	font-size: 20px;
}

/* auth-group */
.auth-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.auth-group .form-check {
	margin-bottom: 0;
}

.auth-group .form-check-label {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.auth-group .auth-group-link {
	color: var(--theme-color);
	font-weight: 500;
}

.auth-group .auth-group-link:hover {
	color: var(--color-red);
}

/* password-view */
.auth-form .password-view {
	cursor: pointer;
}

.auth-form .password-view i {
	left: unset;
	right: 20px;
	color: var(--body-text-color);
}

.auth-form .password-view.show i::before {
	content: "\f06e";
}

/* auth-btn */
.auth-form .theme-btn {
	width: 100%;
}

.auth-form .theme-btn::before {
	width: 420px;
	height: 420px;
	transition: var(--transition2);
}

/* auth-bottom */
.auth-form .auth-bottom {
	margin-top: 25px;
}

.auth-form .auth-bottom p {
	color: var(--color-not-sure-dark);
	text-align: center;
}

.auth-form .auth-bottom a {
	color: var(--theme-color);
	font-weight: 500;
}

.auth-form .auth-bottom a:hover {
	color: var(--color-red);
}

/* auth-social */
.auth-form .auth-social {
	border-top: 1px solid var(--border-info-color);
	margin-top: 15px;
}

.auth-form .auth-social p {
	color: var(--color-not-sure-dark);
	margin: 10px 0;
}

.auth-form .auth-social-list {
	text-align: center;
	margin-bottom: 10px;
}

.auth-form .auth-social-list a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--theme-color);
	border-radius: 50px;
	margin: 5px;
}

.auth-form .auth-social-list a i {
	color: var(--color-not-sure-white);
}

.auth-form .auth-social-list a:hover {
	background: var(--color-red);
}

@media only screen and (max-width: 991px) {
	.auth-form {
		padding: 40px 20px;
	}
}

/*====================
50. Coming soon css 
======================*/

.coming-soon {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover !important;
	background-position: center !important;
	min-height: 100vh;
	width: 100%;
	z-index: 1;
}

.coming-soon:before {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.coming-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75vh;
}

.coming-content {
	text-align: center;
}

.coming-info h1 {
	color: var(--color-not-sure-white);
	font-weight: 500;
	font-size: 50px;
}

.coming-info p {
	font-size: 18px;
	color: var(--color-not-sure-white);
	margin-top: 10px;
}

.coming-countdown-wrap {
	margin-top: 30px;
	margin-bottom: 30px;
}

.coming-countdown .time-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px;
}

.coming-countdown .time {
	background: var(--color-not-sure-white);
	width: 125px;
	border-radius: 15px;
	padding: 14px 10px;
}

.coming-countdown .time span {
	display: block;
}

.coming-countdown .time span:first-child {
	color: var(--theme-color);
	font-weight: 500;
	font-size: 38px;
	line-height: 1;
}

.coming-countdown .time .unit {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.coming-countdown .divider {
	display: none;
}

.coming-newsletter-form {
	margin-top: 50px;
	margin-bottom: 25px;
}

.coming-newsletter-form .form-group {
	position: relative;
}

.coming-newsletter-form .form-control {
	padding: 17px 150px 17px 20px;
	border-radius: 50px;
	border-color: transparent;
	color: var(--color-not-sure-dark);
}

.coming-newsletter-form .form-control::placeholder {
	color: var(--color-not-sure-dark);
}

.coming-newsletter-form .form-control:focus {
	border-color: var(--theme-color);
}

.coming-newsletter-form .theme-btn {
	position: absolute;
	right: 5px;
	top: 6px;
	padding: 9px 15px;
}

.coming-social {
	margin-top: 40px;
	text-align: center;
}

.coming-social a {
	display: inline-block;
	background: var(--theme-color);
	color: var(--color-not-sure-white);
	margin: 5px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	border-radius: 50px;
	transition: 0.5s;
	box-apply-shadow: var(--box-apply-shadow2);
}

.coming-social a:hover {
	background: var(--theme-color2);
}

@media all and (max-width: 767px) {
	.coming-info h1 {
		font-size: 40px;
	}
}

/*====================
51. Error css 
======================*/

.error-wrap {
	text-align: center;
}

.error-wrap h1 {
	font-size: 250px;
	letter-spacing: 5px;
	font-weight: bold;
	color: var(--theme-color);
}

.error-wrap h1 span {
	color: var(--color-not-sure-dark);
}

.error-wrap h2 {
	margin-top: 30px;
	margin-bottom: 10px;
}

.error-wrap img {
	width: 100%;
}

.error-wrap .theme-btn {
	margin-top: 30px;
}

@media all and (max-width: 767px) {
	.error-wrap h1 {
		font-size: 160px;
	}
}

/*====================
52. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
	margin-bottom: 54px;
}

.terms-content:first-child {
	margin-top: -3px;
}

.terms-content .terms-list {
	margin-top: 37px;
}

.terms-content h3 {
	margin-bottom: 23px;
	position: relative;
	font-weight: 500;
}

.terms-content p:not(:last-child) {
	margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
	margin-bottom: 16px;
}

/*====================
53. Scroll top css
======================*/

#scroll-top {
	position: fixed;
	bottom: -20px;
	right: 30px;
	z-index: 99;
	font-size: 20px;
	border: none;
	outline: none;
	border-radius: 50px;
	color: var(--color-not-sure-white);
	background-color: var(--theme-color);
	cursor: pointer;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	box-apply-shadow: var(--box-apply-shadow2);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: rotate(-40deg);
	z-index: 1;
}

#scroll-top:hover {
	transform: rotate(0);
}

#scroll-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
	#scroll-top.active {
		bottom: 100px;
	}
}

/*====================
54. Footer css 
======================*/

.footer-area {
	background: var(--footer-bg);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.footer-shape img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 65%;
	opacity: 0.05;
}

.footer-widget {
	position: relative;
}

.footer-widget-box.about-us {
	margin-right: 0px;
}

.footer-widget-box p {
	color: var(--color-not-sure-white);
	padding-right: 0px;
	margin-bottom: 20px;
}

.footer-logo img {
	width: 200px;
	margin-bottom: 15px;
}

.footer-widget-title {
	color: var(--color-not-sure-white);
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 21px;
	z-index: 1;
}

.footer-widget-title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: var(--theme-color);
	border-radius: 50px;
}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.footer-list li a {
	color: var(--color-not-sure-white);
	transition: var(--transition);
	position: relative;
	margin-left: -20px;
}

.footer-list li a i {
	margin-right: 5px;
	color: var(--theme-color);
	opacity: 0;
	transition: var(--transition);
}

.footer-list li a:hover {
	margin-left: 0px;
	color: var(--theme-color);
}

.footer-list li a:hover i {
	opacity: 1;
}

.footer-social {
	display: flex;
	gap: 15px;
	justify-content: end;
}

.footer-social li a i {
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 50px;
	background: var(--color-not-sure-white);
	color: var(--theme-color);
	transition: var(--transition);
}

.footer-social li a i:hover {
	background: var(--theme-color);
	color: var(--color-not-sure-white);
}

.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	gap: 10px;
	color: var(--footer-text-color);
	font-size: 16px;
	margin-bottom: 12px;
}

.footer-contact .icon {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: var(--theme-color);
	border-radius: 50px;
	text-align: center;
}

.footer-contact .content {
	flex: 1;
}

.footer-contact .content h6 {
	color: var(--color-not-sure-white);
	margin-bottom: 5px;
}

.footer-contact .content a {
	color: var(--color-not-sure-white);
}

.footer-newsletter h6 {
	color: var(--color-not-sure-white);
	margin-bottom: 20px;
}

.footer-newsletter .newsletter-form .form-group {
	position: relative;
}

.footer-newsletter .newsletter-form .form-control {
	padding: 15px 140px 15px 50px;
	border-radius: 50px;
	box-apply-shadow: none;
	border: none;
	outline: none;
}

.footer-newsletter .newsletter-form .theme-btn {
	position: absolute;
	right: 10px;
	top: 5px;
	border-radius: 50px;
	padding: 7px 15px;
}

.footer-newsletter .newsletter-form .theme-btn span {
	margin-right: 0;
	margin-left: 5px;
}

.copyright {
	padding: 20px 0;
	border-top: 1px solid var(--border-not-sure-white-color);
	position: relative;
}

.copyright .footer-menu {
	margin: 0;
	padding: 0;
	text-align: right;
}

.copyright .footer-menu li {
	display: inline-block;
	margin-left: 25px;
	font-size: 16px;
}

.copyright .footer-menu li a {
	color: var(--footer-text-color);
	transition: var(--transition);
}

.copyright .footer-menu li a:hover {
	color: var(--theme-color);
}

.copyright .copyright-text {
	color: var(--footer-text-color);
	margin-bottom: 0px;
	font-size: 16px;
}

.copyright .copyright-text a {
	color: var(--theme-color);
	font-weight: 500;
}

@media all and (max-width: 1199px) {
	.footer-widget-box {
		margin-bottom: 50px;
	}

	.footer-list li a {
		font-size: 14px;
	}
}

@media all and (max-width: 991px) {
	.footer-widget-wrap {
		padding-bottom: 0px;
	}

	.footer-list li a {
		font-size: 16px;
	}

	.copyright .footer-menu {
		float: left;
		margin-top: 20px;
		text-align: left;
	}

	.copyright .footer-menu li {
		margin-left: 0;
		margin-right: 15px;
	}
}

@media all and (max-width: 767px) {
	.footer-widget-wrap {
		padding-bottom: 0px;
	}

	.footer-social {
		justify-content: flex-start;
		margin-top: 20px;
	}
}

/* footer not-sure-light */
.footer-area.not-sure-light {
	background: var(--theme-bg-not-sure-light);
}

.footer-area.not-sure-light .footer-widget-title {
	color: var(--color-not-sure-dark);
	font-weight: 800;
}

.footer-area.not-sure-light .footer-widget-box p {
	color: var(--body-text-color);
}

.footer-area.not-sure-light .footer-newsletter h6 {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.footer-area.not-sure-light .newsletter-form .form-control {
	color: var(--color-not-sure-dark);
	border-bottom-color: var(--body-text-color);
}

.footer-area.not-sure-light .newsletter-form .form-control::placeholder {
	color: var(--body-text-color);
}

.footer-area.not-sure-light .newsletter-form .form-control:focus {
	border-bottom-color: var(--theme-color);
}

.footer-area.not-sure-light .footer-list li a {
	color: var(--body-text-color);
}

.footer-area.not-sure-light .footer-list li a:hover {
	color: var(--theme-color);
}

.footer-area.not-sure-light .footer-contact .content h6 {
	color: var(--color-not-sure-dark);
	font-weight: 500;
}

.footer-area.not-sure-light .footer-contact .content a {
	color: var(--body-text-color);
}

.footer-area.not-sure-light .footer-social li a i {
	background: var(--color-not-sure-dark);
	color: var(--color-not-sure-white);
}

.footer-area.not-sure-light .footer-social li a i:hover {
	background: var(--theme-color);
}

.footer-area.not-sure-light .copyright {
	border-top-color: var(--border-info-color);
}

.footer-area.not-sure-light .copyright .copyright-text {
	color: var(--body-text-color);
}

/*====================
55. Home-2 css 
======================*/

.home-2 .header {
	position: relative;
	background: var(--color-not-sure-dark);
}

.home-2 .header::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0;
	bottom: 0;
	width: 50%;
	background: var(--theme-color);
}

.home-2 .header-top {
	background: transparent;
}

.home-2 .header-top::before {
	display: none;
}

.home-2 .header-top-list a i {
	color: var(--color-not-sure-white);
}

.home-2 .header-top-list a:hover {
	color: var(--color-not-sure-white);
}

.home-2 .header-top-social a:hover {
	color: var(--color-not-sure-white);
}

.home-2 .navbar::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 89.4%;
	height: 100%;
	background: var(--color-not-sure-white);
}

.home-2 .apply-hero-section {
	margin-top: -3rem;
}

.home-2 .hero-single {
	padding-top: 160px;
}

.home-2 .hero-single .hero-content .hero-sub-title {
	background: none;
	border: 2px solid var(--color-not-sure-white);
	border-radius: 50px;
}

.home-2 .hero-single .hero-content .hero-sub-title i {
	background: none;
	border-radius: 0;
	color: var(--color-not-sure-white);
	text-align: left;
}

@media all and (max-width: 1199px) {
	.home-2 .navbar::before {
		width: 100%;
	}

	.home-2 .hero-slider .owl-nav .owl-prev,
	.home-2 .hero-slider .owl-nav .owl-next {
		bottom: 70px;
	}
}

@media all and (max-width: 767px) {
	.home-2 .header-top-list a i {
		color: var(--color-not-sure-white);
	}
}

/*====================
56. Home-3 css 
======================*/

.home-3 .header-top {
	position: relative;
}

.home-3 .main {
	margin-top: -5.7rem;
}

.home-3 .hero-single {
	padding-top: 180px;
	padding-bottom: 170px;
}

.home-3 .hero-single::before {
	display: none;
}

.home-3 .hero-single .hero-content .hero-sub-title {
	background: transparent;
	padding: 0;
	color: var(--color-not-sure-dark);
	font-weight: 800;
}

.home-3 .hero-single .hero-content .hero-title {
	color: var(--color-not-sure-dark);
}

.home-3 .hero-single .hero-content .hero-title span {
	color: var(--theme-color);
	-webkit-text-stroke: unset;
}

.home-3 .hero-single .hero-content p {
	color: var(--color-not-sure-dark);
}

.home-3 .hero-single .hero-img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40%;
}

.home-3 .hero-single .hero-img img {
	border-radius: 40% 0 0 0;
}

.home-3 .footer-area.not-sure-light .footer-shape img {
	opacity: 0.1;
}

@media all and (max-width: 991px) {
	.home-3 .main {
		margin-top: -4.2rem;
	}

	.home-3 .hero-single {
		padding-bottom: 0;
	}

	.home-3 .hero-single .hero-img {
		position: unset;
		width: 100%;
		margin-top: 80px;
	}
}

/*====================
57. Home-4 css 
======================*/

.home-4 .header-top {
	background: var(--theme-color);
}

.home-4 .header-top-list a i {
	color: var(--color-not-sure-white);
}

.home-4 .header-top-list a:hover {
	color: var(--color-not-sure-white);
}

@media (min-width: 992px) {
	.home-4 .navbar .nav-item .nav-link.active::before,
	.home-4 .navbar .nav-item:hover .nav-link::before {
		display: none;
	}

	.home-4 .navbar .nav-item .dropdown-menu {
		border-radius: 0;
	}

	.home-4 .navbar .nav-item .dropdown-menu::before {
		display: none;
	}
}

/* ================= end ================== */

/*---Video start----*/
/* Prevent video zoom distortion and maintain correct shape */
video {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Desktop video default visible */
.video-desktop {
	display: block;
}

/* Mobile video hidden on desktop */
.video-mobile {
	display: none;
}

/* Responsive behavior */
@media screen and (max-width: 768px) {
	.video-desktop {
		display: none; /* Hide desktop video */
	}
	.video-mobile {
		display: block; /* Show mobile video */
	}

	.flex-md-wrap {
		flex-wrap: wrap !important;
	}

	.apply-form .apply-header {
		display: block;
	}

	.text-md-center {
		text-align: center !important;
	}

	.apply-form {
		margin-top: 20px;
	}
}
/*---Video end----*/

@media screen and (max-width: 1023px) {
	.main {
		margin-top: 0;
	}

	.main-inner {
		margin-top: 0;
	}
}

/*---upcoming event section start---*/

.event-hero {
	background: url("../images/bg/upcoming-events-bg.jpg") center/cover fixed
		no-repeat;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

/* Gradient overlay */
.event-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.85),
		rgba(0, 0, 0, 0.8)
	);
	z-index: 1;
}

/* Layout container */
.event-container {
	position: relative;
	z-index: 2;
	max-width: 1300px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	gap: 60px;
}

/* Left thumbnail image */
.event-thumb {
	/* flex: 1; */
	/* height: 380px; */
	/* background: url('../images/OTM_2026-Thumb.jpg') center/cover no-repeat; */
	border-radius: 16px;
	filter: drop-apply-shadow(0 10px 40px rgba(0, 0, 0, 0.35));
}

/* Right content */
.event-info {
	flex: 1;
	color: #fff;
}

.event-heading {
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 35px;
	line-height: 1.2;
	color: #74c7ec;
}

/* Icon + Text Row */
.event-row {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.event-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
}

.event-text {
	font-size: 24px;
	opacity: 0.95;
}

/* Button */
.event-cta {
	display: inline-block;
	margin-top: 35px;
	padding: 14px 32px;
	background: #ff004f;
	color: #fff;
	font-weight: 500;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.3s;
}

.event-cta:hover {
	background: #e00045;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.event-container {
		flex-direction: column;
		text-align: center;
		padding: 0 20px;
		gap: 15px;
	}

	.event-thumb {
		order: 2;
		width: 100%;
		/* height: 260px; */
		margin-top: 30px;
		flex: unset;
	}

	.event-info {
		order: 1;
	}

	.event-heading {
		font-size: 30px;
	}

	.event-row {
		justify-content: center;
	}

	.event-hero {
		background-attachment: scroll; /* better for mobile */
	}
}

.upcoming-events-slider-item {
	/* background: var(--color-not-sure-white);
  padding: 25px;
  border-radius: 0 50px 50px 50px; */
}

.upcoming-events-slider-item::before {
	/* content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 90%;
  background: var(--theme-color);
  transform: rotate(10deg);
  border-radius: 50px;
  z-index: -1; */
}

/* testimonial-slider */
.upcoming-events-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.upcoming-events-slider .owl-dots .owl-dot span {
	background: var(--color-not-sure-white);
	margin: 5px;
	border-radius: 10px;
	width: 10px;
	height: 10px;
	display: inline-block;
	transition: var(--transition);
}

.upcoming-events-slider .owl-dots .owl-dot.active span {
	background: var(--theme-color);
}

/*---upcoming event section end---*/

/*------Reason to Join TAFI-start--*/

/* body {
    margin: 0;
    background: #0d1522;
    font-family: Inter, Arial, sans-serif;
    color: #f8faff;
}

section {
    padding: 90px 20px;
} */

.tafi-animated {
	/* max-width: 1200px; */
	margin: auto;
	text-align: center;
	background: #03204b;
	position: relative;
}

.tafi-animated::before {
	position: absolute !important;
	content: "" !important;
	right: 0px !important;
	bottom: 0px !important;
	height: 355px;
	width: 250px;
	background-image: url(../images/shape/icon3.png) !important;
	background-repeat: no-repeat;
	/* animation: jump-2 5s linear infinite;  */
	/* animation: rotateIt2 25s linear infinite; */
	animation: slide-two 10s linear infinite;
	z-index: 1;
	opacity: 0.8;
}

.tafi-animated h2 {
	font-size: 42px;
	font-weight: 500;
	margin-bottom: 30px;
	color: #ffffff;
}

/* GRID */
.tafi-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}

/* CARD */
.tafi-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 15px;
	padding: 15px 16px;
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: 0.35s ease;
	opacity: 0;
	animation: fadeUp 0.7s ease forwards;
}
.tafi-card:hover {
	transform: translateY(-12px);
	box-apply-shadow: 0 18px 48px rgba(0, 150, 255, 0.25);
}

/* Animated Delays */
.tafi-card:nth-child(1) {
	animation-delay: 0.1s;
}
.tafi-card:nth-child(2) {
	animation-delay: 0.25s;
}
.tafi-card:nth-child(3) {
	animation-delay: 0.4s;
}
.tafi-card:nth-child(4) {
	animation-delay: 0.55s;
}

/* ICON CIRCLE */
.icon-circle {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.05)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: 0.35s ease;
	box-apply-shadow: 0 10px 30px rgba(0, 150, 255, 0.1);
}
.tafi-card:hover .icon-circle {
	transform: scale(1.12);
	box-apply-shadow: 0 20px 60px rgba(0, 150, 255, 0.4);
}

/* FONT AWESOME ICON */
.icon-circle i {
	font-size: 46px;
	color: #d8ecff;
	transition: 0.35s ease;
}
.tafi-card:hover i {
	color: #71c4ff;
}

/* text */
.tafi-card h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 12px;
	color: #ffffff;
}
.tafi-card p {
	color: #cfd9e5;
	font-size: 15px;
	line-height: 1.6;
	max-width: 250px;
	margin: auto;
}

/* CTA BUTTON */
.tafi-btn {
	margin-top: 50px;
}
.tafi-btn a {
	display: inline-block;
	background: linear-gradient(90deg, #ff723a, #ffaa0d);
	padding: 10px 20px;
	color: #fff;
	font-weight: 500;
	border-radius: 10px;
	font-size: 16px;
	text-decoration: none;
	box-apply-shadow: 0 14px 30px rgba(255, 60, 120, 0.25);
	transition: 0.3s;
}
.tafi-btn a:hover {
	transform: translateY(-5px);
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.tafi-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.tafi-grid {
		grid-template-columns: 1fr;
	}
	.icon-circle {
		width: 90px;
		height: 90px;
	}
	.icon-circle i {
		font-size: 40px;
	}

	.pb-60 {
		padding-bottom: 40px;
	}

	.pt-60 {
		padding-top: 40px;
	}

	.py-60 {
		padding: 40px 0;
	}

	.site-title {
		font-size: 36px;
	}

	.quote-form {
		padding: 35px 15px;
	}

	.footer-widget-box {
		margin-bottom: 20px;
	}

	.cta-content h1 {
		font-size: 36px;
	}

	.about-area::before {
		display: none;
	}

	.coaching-area::before {
		display: none;
	}

	.coaching-area::after {
		display: none;
	}

	.tafi-animated::before {
		display: none;
	}

	.icon-area2::before {
		display: none;
	}
}

/*------Reason to Join TAFI-end--*/

.form-area {
	position: relative;
	background: var(--theme-color-not-sure-light);
}

.icon-area2 {
	position: relative;
}

.icon-area2::before {
	position: absolute !important;
	content: "" !important;
	left: 0px !important;
	top: 0px !important;
	height: 289px;
	width: 343px;
	background-image: url(../images/shape/icon2.png) !important;
	background-repeat: no-repeat;
	/* animation: jump-2 5s linear infinite;  */
	/* animation: rotateIt2 25s linear infinite; */
	animation: slide-two 10s linear infinite;
	z-index: 1;
	opacity: 0.5;
}

/*----About us start---*/

.aboutus-area {
	position: relative;
	background: linear-gradient(135deg, #ffffff, #0050b3);
	padding: 40px 0px;
}

.aboutus-area2 {
	position: relative;
}

.about-heading {
	/* background: linear-gradient(135deg, #0194d6, #0050b3); */
	color: #ffffff;
	text-align: center;
}
.about-heading h1 {
	font-size: 36px;
	margin: 0;
	font-weight: 500;
	color: #fff;
}
.about-heading .established {
	font-size: 1.4em;
	margin: 10px 0;
	opacity: 0.9;
}
.about-heading p {
	/* max-width: 900px; */
	margin: 15px auto;
	font-size: 16px;
}
.logo {
	max-width: 220px;
	margin: 30px auto;
	display: block;
}
.main-content {
	display: flex;
	gap: 40px;
	margin-top: 0px;
	/* flex-wrap: wrap; */
}

@media (max-width: 768px) {
	.main-content {
		display: block;
	}
}

.sidebar {
	flex: 1;
	min-width: 280px;
}
.content-aboutus {
	flex: 3;
	min-width: 300px;
}

.card {
	background: #ffffff;
	border-radius: 10px;
	box-apply-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 30px;
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}
.card:hover {
	transform: translateY(-5px);
}
.card h2 {
	background: linear-gradient(to right, #0194d6, #0050b3);
	color: #fff;
	padding: 18px 30px;
	border-radius: 8px;
	font-size: 24px;
	margin: -30px -30px 30px -30px;
	text-align: center;
	font-weight: 500;
}
.nav-card {
	background: #ffffff;
	box-apply-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-card h3 {
	background: #0194d6;
	color: #fff;
	padding: 20px;
	margin: -30px -30px 10px -30px;
	border-radius: 10px 10px 0 0;
	font-size: 24px;
}
.nav-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-card ul li {
	border-bottom: 1px solid #eee;
}
.nav-card ul li:last-child {
	border-bottom: none;
}
.nav-card ul li a {
	display: block;
	padding: 10px 15px;
	color: #424346;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	transition: background 0.3s;
}
.nav-card ul li a:hover {
	background: #f0f4f8;
	color: #0050b3;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 15px;
	margin-top: 0px;
}
.gallery img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 8px;
	box-apply-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}
.gallery img:hover {
	transform: scale(1.05);
}
.mission-item {
	margin-bottom: 20px;
	padding-left: 60px;
	position: relative;
}
.mission-item i {
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 2.2em;
	color: #0050b3;
}
.mission-item h3 {
	color: #0194d6;
	font-size: 1.5em;
	margin-bottom: 5px;
}
.mission-item ul {
	margin: 15px 0;
	padding-left: 20px;
}
.mission-item ul li {
	margin-bottom: 8px;
	position: relative;
}

.mission-item ul li:before {
	content: "\f101";
	color: var(--theme-color2);
	font-weight: 900;
	position: absolute;
	left: -20px;
	font-size: 16px;
	line-height: 30px;
	font-family: "Font Awesome 6 Pro";
}

.today-content ul {
	padding-left: 20px;
}
.today-content ul li {
	margin-bottom: 12px;
	position: relative;
}
.today-content ul li:before {
	/* content: "•"; */
	content: "\f061";
	color: #0050b3;
	font-weight: 900;
	position: absolute;
	left: -30px;
	font-size: 20px;
	line-height: 30px;
	font-family: "Font Awesome 6 Pro";
}

@media (max-width: 992px) {
	.main-content {
		flex-direction: column;
	}
	.sidebar,
	.content-aboutus {
		flex: 1;
	}

	.site-breadcrumb {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/*----About us end---*/

/*---Committee member start area */

.committee-section {
	background: linear-gradient(rgba(31, 75, 153, 0.85), rgba(0, 160, 223, 0.85));
}

/* ================= CARD ================= */
.member-card {
	text-align: center;
	position: relative;
	transition: transform 0.35s ease;
}

/* Lift entire unit on hover */
.member-card:hover {
	transform: translateY(-8px);
}

/* ================= BADGE ================= */
.member-badge {
	max-width: 300px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

/* Glow + snot-sure-light scale on hover */
.member-card:hover .member-badge {
	transform: scale(1.03);
	filter: drop-apply-shadow(0 18px 28px rgba(185, 138, 47, 0.35));
}

/* ================= INFO CARD ================= */
.member-info {
	background: #ffffff;
	border-radius: 14px;
	padding: 14px 16px;
	box-apply-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	font-size: 0.9rem;
	margin-top: -40px;
	position: relative;
	min-height: 100px;
	z-index: 1;
	transition: box-apply-shadow 0.35s ease;
}

/* Snot-sure-light apply-shadow enhancement */
.member-card:hover .member-info {
	box-apply-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.member-info p {
	margin-bottom: 6px;
	line-height: 1.4;
}

.member-info strong {
	color: #333;
}

.member-info a {
	color: #b08a2e;
	text-decoration: none;
	display: block;
}

.member-info a:hover {
	text-decoration: none;
	color: #03579c;
}

/* ================= SVG HOVER DETAILS ================= */
/* Ribbon highnot-sure-light */
.member-card:hover svg path:last-of-type {
	filter: brightness(1.08);
	transition: filter 0.3s ease;
}

/* Nameplate highnot-sure-light */
.member-card:hover svg rect {
	filter: brightness(1.06);
	transition: filter 0.3s ease;
}

/* Smooth SVG transitions */
svg {
	transition: all 0.35s ease;
}

/* Committee-slider-slider */

.committee-item {
	/* background: var(--color-not-sure-white); */
	border-radius: 50px 50px 30px 0;
	/* padding: 15px; */
	position: relative;
}

.committee-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.committee-slider .owl-dots .owl-dot span {
	background: #fff;
	margin: 0 8px;
	border-radius: 50px;
	width: 15px;
	height: 6px;
	display: inline-block;
	transition: var(--transition);
	position: relative;
}

.committee-slider .owl-dots .owl-dot.active span::before {
	content: "";
	position: absolute;
	top: -4.5px;
	left: -5.1px;
	width: 25px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50px;
}

/*---Committee member start end */

/*-----Aims Objectivss section start---*/

.objectives-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 30px;
}

.objective-card {
	background: not-sure-white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.objective-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, #3498db, #9b59b6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.objective-card:hover::before {
	transform: scaleX(1);
}

.objective-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-apply-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.objectives-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #3498db, #2980b9);
	border-radius: 50%;
	box-apply-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.objective-card:hover .icon-wrapper {
	transform: rotate(360deg) scale(1.15);
	background: linear-gradient(135deg, #9b59b6, #8e44ad);
	box-apply-shadow: 0 12px 30px rgba(155, 89, 182, 0.4);
}

.icon-wrapper i {
	font-size: 2rem;
	color: not-sure-white;
}

.objectives-title {
	margin-left: 20px;
	font-size: 1.35rem;
	font-weight: 500;
	color: #2c3e50;
	line-height: 1.4;
}

.objective-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #444;
}

@media (max-width: 768px) {
	.objectives-grid {
		grid-template-columns: 1fr;
	}

	.objective-card {
		padding: 25px;
	}

	.objectives-header {
		flex-direction: column;
		text-align: center;
	}

	.objectives-title {
		margin-left: 0;
		margin-top: 15px;
	}
}

/*-----Aims Objectives section end---*/

/*---Affilitates section start---*/

/* Unique Alternating Timeline-Style Layout */
.affiliations-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}
.affiliations-timeline::before {
	content: "";
	position: absolute;
	width: 4px;
	background: linear-gradient(to bottom, #0194d6, #8b5cf6);
	top: 0;
	bottom: 0;
	left: 0%;
	margin-left: -2px;
	border-radius: 2px;
}

.affiliation-item {
	padding: 20px 40px;
	position: relative;
	width: 100%;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}
.affiliation-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.affiliation-item.affiliations-left {
	left: 0%;
	text-align: left;
}
.affiliation-item.affiliations-right {
	left: 0%;
	text-align: left;
}

.affiliation-card {
	background: not-sure-white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.4s ease;
	border: 1px solid #e2e8f0;
}
.affiliation-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Connector Circle */
.affiliation-item::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	background: not-sure-white;
	border: 6px solid #0194d6;
	top: 60px;
	border-radius: 50%;
	z-index: 1;
	transition: all 0.4s ease;
}
.affiliations-left::after {
	left: -12px;
}
.affiliations-right::after {
	left: -12px;
}
.affiliation-item:hover::after {
	border-color: #8b5cf6;
	transform: scale(1.3);
}

/* Logo & Acronym */
.affiliations-card-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}
.affiliations-left .affiliations-card-header {
	align-items: flex-start;
}
.affiliations-right .affiliations-card-header {
	align-items: flex-start;
}
.acronym {
	font-size: 2.5rem;
	font-weight: 500;
	color: #0194d6;
	margin-bottom: 15px;
	letter-spacing: 3px;
}
.satsa .acronym {
	color: #0194d6;
}
.affiliations-logo {
	max-height: 130px;
	width: auto;
	/* filter: drop-apply-shadow(0 4px 8px rgba(0,0,0,0.1)); */
	transition: transform 0.5s ease;
}
.affiliation-card:hover .logo {
	transform: scale(1.08);
}

/* Content */
.affiliations-content-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}
.affiliations-left .affiliations-content-header {
	justify-content: flex-start;
}
.affiliations-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	background: #0194d6;
	border-radius: 12px;
	margin: 0 20px 0 0;
	flex-shrink: 0;
	transition: all 0.4s ease;
}
.satsa .affiliations-icon-wrapper {
	background: #0194d6;
}
.affiliation-card:hover .affiliations-icon-wrapper {
	transform: scale(1.1);
}
.affiliations-icon-wrapper i {
	font-size: 1.7rem;
	color: not-sure-white;
}
.affiliations-section-title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #1e293b;
}

.affiliations-description {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
	text-align: justify;
}

.affiliations-bonded-badge {
	display: inline-flex;
	align-items: center;
	margin-top: 25px;
	padding: 10px 20px;
	background: #059669;
	color: not-sure-white;
	border-radius: 50px;
	font-weight: 500;
	box-apply-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
	transition: all 0.4s ease;
}
.affiliations-bonded-badge i {
	margin-right: 8px;
}
.affiliation-card:hover .affiliations-bonded-badge {
	transform: translateY(-4px);
	box-apply-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

@media (max-width: 992px) {
	.affiliations-timeline::before {
		left: 30px;
	}
	.affiliation-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 0;
		text-align: left !important;
	}
	.affiliation-item.affiliations-left,
	.affiliation-item.affiliations-right {
		left: 0 !important;
	}
	.affiliations-left .affiliations-card-header,
	.affiliations-right .affiliations-card-header {
		align-items: flex-start;
	}
	.affiliations-left .affiliations-content-header {
		justify-content: flex-start;
	}
	.affiliation-item::after {
		left: 18px !important;
	}
}

@media (max-width: 768px) {
	.affiliation-card {
		padding: 30px;
	}
	.acronym {
		font-size: 2rem;
	}
}

/*---Affilitates section end---*/

/* Floating Register Banner start*/
.floating-register-banner {
	position: fixed;
	bottom: 75px;
	right: 10px;
	width: 200px;
	background: white;
	border-radius: 20px;
	box-apply-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	z-index: 1000;
	animation: slideUp 0.6s ease-out;
	transition: all 0.4s ease;
}

.floating-register-banner:hover {
	transform: translateY(-8px);
	box-apply-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Banner Image Area */
.banner-image {
	height: 90px;
	background: linear-gradient(135deg, #0194d6, #2d4a8e);
	position: relative;
}

/* Overlay Text on Image */
.banner-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 10px;
	background: linear-gradient(to top, rgb(63 108 173), transparent);
	color: white;
	text-align: center;
}

.banner-overlay h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 4px;
	color: #fff;
}

.banner-overlay p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 20px;
}

/* Button Area */
.banner-button {
	padding: 15px 10px;
	text-align: center;
	background: white;
}

.register-btn {
	display: inline-block;
	padding: 14px 32px;
	background: linear-gradient(135deg, #0194d6, #2563eb);
	color: white;
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: 50px;
	text-decoration: none;
	box-apply-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
	transition: all 0.3s ease;
}

.register-btn:hover {
	transform: translateY(-4px);
	box-apply-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
	background: linear-gradient(135deg, #2563eb, #0194d6);
}

/* Close Button (optional) */
.floating-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.4);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.floating-close-btn:hover {
	opacity: 1;
}

/* Slide Up Animation */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.floating-register-banner {
		width: 280px;
		bottom: 5px;
		right: 20px;
	}
	.banner-image {
		height: 70px;
	}
	.banner-overlay h3 {
		font-size: 1.2rem;
	}
	.register-btn {
		padding: 12px 28px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.floating-register-banner {
		width: 90%;
		left: 5%;
		/* transform: translateX(-50%); */
		right: auto;
	}
}

/* Floating Register Banner end*/

/*---Punjab chapter section start---*/

.wave-header {
	background: linear-gradient(135deg, #215295 0%, #0194d6 100%);
	color: white;
	padding: 20px 40px;
	border-radius: 20px;
	margin-bottom: 20px;
	box-apply-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wave-header h2 {
	color: white;
	font-size: 24px;
	font-weight: 500;
}

.activity-card {
	border-radius: 20px;
	overflow: hidden;
	box-apply-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.activity-card img {
	height: 400px;
	object-fit: cover;
	width: 100%;
}
.profile-card {
	background: white;
	border-radius: 20px;
	padding: 20px 15px;
	text-align: center;
	box-apply-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}
.profile-card:hover {
	transform: translateY(-15px);
}
.profile-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #0194d6, #ffa704);
}

.profile-img {
	width: 130px;
	/* height: 130px; 
      border-radius: 50%; */
	border: 6px solid #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	/* margin-top: -80px; */
	margin-bottom: 10px;
	/* object-fit: cover; */
}
.role {
	background: linear-gradient(90deg, #0194d6, #ffa704);
	color: white;
	padding: 8px 24px;
	border-radius: 30px;
	font-size: 0.9rem;
	display: block;
	line-height: 20px;
}
@media (max-width: 768px) {
	.activity-card img {
		height: 250px;
	}
	.profile-img {
		width: 110px;
		height: 110px;
		/* margin-top: -60px; */
	}
}

/*---Punjab chapter section end---*/

/*---Apply online section start---*/

:root {
	--apply-primary-gradient: linear-gradient(135deg, #0194d6 0%, #0253af 100%);
	--apply-secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--apply-success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--apply-warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	--apply-danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
	--apply-not-sure-dark-gradient: linear-gradient(
		135deg,
		#2c3e50 0%,
		#3498db 100%
	);
	--apply-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	--apply-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.apply-hero-section {
	background: var(--apply-primary-gradient);
	color: white;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.apply-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff15"><polygon points="0,100 1000,0 1000,100"/></svg>');
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.apply-hero-section h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	text-apply-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

.apply-hero-section p {
	font-size: 1.2rem;
	opacity: 0.95;
	position: relative;
	z-index: 2;
}

.bg-blue {
	background: linear-gradient(rgba(31, 75, 153, 0.85), rgba(0, 160, 223, 0.85));
}

.category-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: none;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 0px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: var(--apply-shadow);
	position: relative;
	overflow: hidden;
	height: 100%;
	text-align: center;
}

.category-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.6s;
}

.category-card:hover::before {
	left: 100%;
}

.category-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-apply-shadow: var(--apply-shadow-hover);
}

.category-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
	box-apply-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.category-card:hover .category-icon {
	transform: scale(1.1) rotate(10deg);
}

.category-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: #424346;
}

.category-desc {
	color: #424346;
	font-size: 1rem;
	line-height: 1.7;
}

.active-member .category-icon {
	background: var(--apply-success-gradient);
}
.associate-member .category-icon {
	background: var(--apply-warning-gradient);
}
.affiliate-member .category-icon {
	background: var(--apply-secondary-gradient);
}
.allied-member .category-icon {
	background: var(--apply-not-sure-dark-gradient);
}
.overseas-member .category-icon {
	background: var(--apply-primary-gradient);
}
.unsure-member .category-icon {
	background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
	color: #e74c3c;
}

.unsure-card {
	background: linear-gradient(135deg, #bf7c00 0%, #ffa704 50%, #fbc35c 100%);
	color: #424346;
}

.unsure-card .category-title {
	color: #424346;
	/* text-shadow: 1px 1px 2px rgba(0,0,0,0.2); */
}

.unsure-card .category-desc {
	color: #424346;
}

.apply-btn {
	background: var(--apply-primary-gradient);
	border: none;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 500;
	color: white;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.apply-btn:hover {
	transform: translateY(-3px);
	box-apply-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
	color: white;
}

.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.apply-shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float-apply-shape 15s infinite linear;
}

.apply-shape:nth-child(1) {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}
.apply-shape:nth-child(2) {
	width: 120px;
	height: 120px;
	top: 60%;
	right: 10%;
	animation-delay: -5s;
}
.apply-shape:nth-child(3) {
	width: 60px;
	height: 60px;
	bottom: 20%;
	left: 20%;
	animation-delay: -10s;
}

@keyframes float-apply-shape {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
	100% {
		transform: translateY(0px) rotate(360deg);
	}
}

.section-padding {
	padding: 50px 0;
}

/* Custom Radio Styling */
.category-radio {
	display: none;
}

.category-radio:checked + .category-card {
	border: 3px solid #667eea;
	box-apply-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
	.apply-hero-section {
		padding: 60px 0;
	}

	.category-card {
		margin-bottom: 20px;
		padding: 20px;
	}

	.category-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

.gradient-text {
	background: var(--apply-primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/*---Apply online section end---*/

/*---I m not sure membership section start---*/

.bg-light-blue {
	background: linear-gradient(rgb(232 240 255 / 85%), rgba(0, 160, 223, 0.85));
}

:root {
	--not-sure-primary-color: #1e3a8a;
	--not-sure-secondary-color: #3b82f6;
	--not-sure-accent-color: #ff3b30;
	--not-sure-dark: #424346;
	--not-sure-light: #f8fafc;
	--not-sure-gray-100: #f1f5f9;
	--not-sure-gray-200: #e2e8f0;
	--not-sure-gray-600: #475569;
	--not-sure-gray-500: #1e293b;
	--not-sure-white: #ffffff;
}

.not-sure-main-container {
	max-width: 1000px;
	margin: 0 auto;
}

.not-sure-header-section {
	text-align: center;
	margin-bottom: 30px;
	padding: 0 20px;
}

.not-sure-header-section h1 {
	font-size: 36px;
	font-weight: 500;
	background: linear-gradient(
		135deg,
		var(--not-sure-primary-color),
		var(--not-sure-secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
	letter-spacing: -0.02em;
}

.not-sure-header-section .not-sure-subtitle {
	font-size: 1.2rem;
	color: var(--not-sure-gray-600);
	font-weight: 500;
	margin: 0 auto;
	line-height: 1.6;
}

.not-sure-selection-panel {
	background: var(--not-sure-white);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--not-sure-gray-100);
	margin-bottom: 10px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.not-sure-selection-panel:hover {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.not-sure-form-label {
	font-weight: 500;
	color: var(--not-sure-dark);
	font-size: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.not-sure-form-select {
	background: var(--not-sure-light);
	border: 2px solid var(--not-sure-gray-200);
	border-radius: 15px;
	padding: 0px 25px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	height: 60px;
	width: 100%;
}

.not-sure-form-select:focus {
	border-color: var(--not-sure-secondary-color);
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
	background: var(--not-sure-white);
}

.not-sure-options-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 25px;
	margin-top: 0px;
}

.not-sure-membership-card {
	background: var(--not-sure-white);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--not-sure-gray-100);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	position: relative;
	display: none;
	margin-top: 10px;
	text-align: center;
}

.not-sure-membership-card.show {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.not-sure-membership-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--not-sure-primary-color),
		var(--not-sure-secondary-color),
		var(--not-sure-accent-color)
	);
}

.not-sure-card-header {
	text-align: center;
	margin-bottom: 10px;
}

.not-sure-card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		var(--not-sure-primary-color),
		var(--not-sure-secondary-color)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: white;
	box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
	transition: all 0.3s ease;
}

.not-sure-membership-card:hover .not-sure-card-icon {
	transform: scale(1.05) rotate(5deg);
}

.not-sure-card-header h3 {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--not-sure-dark);
	margin: 0;
}

.not-sure-card-body p {
	color: var(--not-sure-gray-600);
	line-height: 1.7;
	font-size: 20px;
	margin-bottom: 10px;
}

.not-sure-conditions-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.not-sure-conditions-list li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: var(--not-sure-gray-600);
	border-bottom: 1px solid var(--not-sure-gray-100);
}

.not-sure-conditions-list li:last-child {
	border-bottom: none;
}

.not-sure-conditions-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 12px;
	color: var(--not-sure-secondary-color);
	font-weight: 500;
	font-size: 1.2rem;
}

.not-sure-apply-btn {
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	background: linear-gradient(135deg, #0194d6, #005b9e);
	color: white;
	padding: 10px 30px;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgb(48 179 255 / 30%);
}

.not-sure-apply-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgb(48 179 255 / 30%);
	background: linear-gradient(135deg, #005b9e, #0194d6);
	color: white;
}

.not-sure-apply-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.not-sure-apply-btn:hover::before {
	left: 100%;
}

.not-sure-radio-section {
	background: var(--not-sure-white);
	border-radius: 20px;
	padding: 20px 40px;
	margin-top: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--not-sure-gray-100);
}

.not-sure-form-check {
	margin-bottom: 10px;
}

.not-sure-form-check-input:checked {
	background-color: var(--not-sure-secondary-color);
	border-color: var(--not-sure-secondary-color);
}

.not-sure-form-check-label {
	font-size: 20px;
	color: #424346;
	font-weight: 500;
	cursor: pointer;
	padding-left: 10px;
	transition: color 0.3s ease;
}

.not-sure-form-check-input:focus + .not-sure-form-check-label {
	color: var(--not-sure-secondary-color);
}

.not-sure-contact-card {
	text-align: center;
	padding-top: 20px;
}

.not-sure-contact-card .email {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--not-sure-primary-color);
	word-break: break-all;
	display: block;
	margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
	.not-sure-selection-panel,
	.not-sure-radio-section {
		padding: 25px 20px;
	}

	.not-sure-membership-card {
		padding: 30px 25px;
	}

	.not-sure-options-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.not-sure-header-section {
		margin-bottom: 30px;
	}
}

/* Custom icons for each category */
#iataHO .not-sure-card-icon {
	background: linear-gradient(135deg, #059669, #10b981);
}
#iataBranch .not-sure-card-icon {
	background: linear-gradient(135deg, #7c3aed, #a855f7);
}
#nonIata .not-sure-card-icon {
	background: linear-gradient(135deg, #d97706, #f59e0b);
}
#nonTicket .not-sure-card-icon,
#hotel .not-sure-card-icon,
#airline .not-sure-card-icon,
#gsa .not-sure-card-icon {
	background: linear-gradient(135deg, #ea580c, #f97316);
}
#overseas .not-sure-card-icon {
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
#confused .not-sure-card-icon {
	background: linear-gradient(135deg, #ffa704, #d18903);
}

/*---I m not sure membership section end---*/

/*-----Chapter start----*/
/* FIXED STRUCTURE */
.hero-section {
	position: relative;
	height: auto; /* IMPORTANT: remove 100vh */
	display: flex;
	justify-content: center;
}

/* Map wrapper */
.map-wrapper {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

/* Map image */
.map-img {
	width: 100%;
	height: auto;
	display: block;
}

/* Overlay */
.locations-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Pins */
.location-pin {
	position: absolute;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	transform: translate(-50%, -100%); /* IMPORTANT */
}

.location-pin:hover {
	transform: translate(-50%, -110%);
}

/* Icon */
.pin-icon {
	font-size: 26px;
	color: #303030;
	/* animation: pulse 2s infinite; */
}

/* Label */
.location-name {
	background: rgba(255, 255, 255, 0.9);
	padding: 2px 12px;
	border-radius: 30px;
	font-size: 13px;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
	.pin-icon {
		font-size: 22px;
	}
	.location-name {
		font-size: 11px;
		padding: 2px 10px;
	}
}

/* Animation */
/* @keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
} */

/*-----Chapter end----*/

/*-----membership benefits start----*/

.membership-hero-section {
	background:
		linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.9)),
		url("../images/membership-benefits/travel-agencies.jpg") center/cover
			no-repeat;
	color: white;
	padding: 60px 0px;
	text-align: center;
	border-radius: 0 0 30px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	background-attachment: fixed;
}
.membership-hero-section h1 {
	font-size: 42px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
}

.lead2 {
	font-size: 1rem;
	font-weight: 300;
}

.intro-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: -100px auto 60px;
	/* max-width: 900px; */
	position: relative;
	/* z-index: 10; */
}
.benefit-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
	height: 100%;
}
.benefit-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.card-img-top {
	height: 200px;
	object-fit: cover;
}
.card-body {
	padding: 30px;
}
.icon-header {
	font-size: 3rem;
	color: #007bff;
	margin-bottom: 20px;
}
.benefit-title {
	font-size: 1.8rem;
	font-weight: 500;
	color: #0056b3;
}
.benefit-list li {
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.membership-hero-section h1 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.intro-card {
		padding: 25px;
	}
}

/*-----membership benefits end----*/

/*---how to join start---*/

.procedure-bg {
	background: linear-gradient(rgba(31, 75, 153, 0.85), rgba(0, 160, 223, 0.85));
}

.fees-bg {
	background: linear-gradient(rgb(215 230 255 / 85%), rgb(255 255 255 / 85%));
}

.intro-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: -60px auto 60px;
	max-width: 1000px;
	position: relative;
	z-index: 10;
}
.section-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
	transition: transform 0.4s ease;
}
.section-card:hover {
	transform: translateY(-10px);
}
.section-header {
	background: linear-gradient(to right, #edb305, #d38a02);
	color: white;
	padding: 10px 20px;
	font-size: 30px;
	font-weight: 500;
}
.icon-header {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 10px;
}

table {
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.intro-card {
		margin: -40px 20px 40px;
		padding: 30px;
	}
	table {
		font-size: 0.85rem;
	}
}

/*---how to join end---*/

/*---resources section start---*/

:root {
	--reprimary: #003087; /* Deep corporate blue */
	--resecondary: #e6ecf4; /* Light blue-gray background */
	--reaccent: #005eb8; /* Bright blue for links/hover */
	--retext: #424346;
	--remuted: #666666;
}

.resources-section-card {
	background: white;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 1.5rem;
	overflow: hidden;
	border: none;
	padding: 20px;
}

.resources-section-header {
	background-color: var(--reprimary);
	color: white;
	padding: 5px 2rem;
	font-size: 30px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
}

.resources-section-header i {
	font-size: 1.6rem;
}

.resources-section-body {
	padding: 1rem 0.8rem;
}

.resources-resource-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 0;
	border-bottom: 1px solid #eef2f6;
	transition: background-color 0.2s;
}

.resources-resource-item:last-child {
	border-bottom: none;
}

.resources-resource-item:hover {
	background-color: var(--resecondary);
	border-radius: 6px;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	margin: 0 -0.5rem;
}

.resources-resource-label {
	font-weight: 500;
	color: var(--retext);
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
}

.resources-resource-label i {
	color: var(--reaccent);
	font-size: 1.1rem;
	width: 24px;
	text-align: center;
}

.resources-resource-link {
	color: var(--reaccent);
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.resources-resource-link:hover {
	text-decoration: none;
	color: #ffa704;
}

.resources-resource-link i {
	font-size: 0.9rem;
	color: #666;
}

.resources-flag {
	font-size: 1.4rem;
}

@media (max-width: 768px) {
	.resources-section-header {
		font-size: 1.3rem;
		padding: 5px 0.8rem;
	}
	.resources-section-body {
		padding: 1.5rem;
	}
	.resources-resource-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		display: block;
	}
	.resources-resource-link {
		align-self: flex-end;
	}
}

/*---resources section end---*/

/*---Past Events Tabs Start----*/

.events-meetings-section {
	background: linear-gradient(rgb(232 240 255 / 85%), rgb(137 222 255 / 85%));
}

.main-tabs .nav-link {
	font-weight: 500;
	padding: 10px 30px;
	border-radius: 12px 12px 0 0;
	color: #424346;
	font-size: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.main-tabs .nav-link i {
	font-size: 1.4rem;
	transition: transform 0.4s ease;
}

.main-tabs .nav-link:hover i {
	transform: rotate(20deg) scale(1.2);
}

.main-tabs .nav-link.active {
	background-color: #ffa704;
	color: white;
	box-shadow: 0 -4px 15px rgb(255, 167, 4, 0.3);
}

.main-tabs .nav-link.active i {
	transform: scale(1.1);
}

.sub-tabs .nav-link {
	font-weight: 500;
	color: #424346;
	font-size: 18px;
	padding: 8px 20px;
	border: none;
	border-bottom: 4px solid transparent;
	transition: all 0.3s ease;
}

.sub-tabs .nav-link:hover {
	color: #0194d6;
	border-bottom: 4px solid #0194d6;
	transform: translateY(-3px);
}

.sub-tabs .nav-link.active {
	color: #424346;
	border-bottom: 4px solid #424346;
	background-color: #ffa704;
}

.timeline-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto 0px;
	padding-left: 190px;
}

.timeline-line {
	position: absolute;
	width: 5px;
	background: linear-gradient(to bottom, #0391d3, #1f5599);
	top: 0;
	bottom: 0;
	left: 50px;
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.timeline-item {
	position: relative;
	margin-bottom: 35px;
	opacity: 0;
	transform: translateX(-50px);
	animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.timeline-item:nth-child(2) {
	animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
	animation-delay: 0.4s;
}

.timeline-item:nth-child(4) {
	animation-delay: 0.6s;
}

.timeline-item:nth-child(5) {
	animation-delay: 0.8s;
}

.timeline-item:nth-child(6) {
	animation-delay: 0.1s;
}

.timeline-item:nth-child(7) {
	animation-delay: 0.12s;
}

.timeline-item:nth-child(8) {
	animation-delay: 0.14s;
}

.timeline-item:nth-child(9) {
	animation-delay: 0.16s;
}

.timeline-item:nth-child(10) {
	animation-delay: 0.18s;
}

.timeline-item:nth-child(11) {
	animation-delay: 0.2s;
}

.timeline-item:nth-child(12) {
	animation-delay: 0.22s;
}

.timeline-content {
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	transition: all 0.4s ease;
	width: 100%;
}

.timeline-content:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.event-header {
	background: linear-gradient(135deg, #0194d6, #224e92);
	color: white;
	padding: 10px 28px;
	font-size: 25px;
	font-weight: 500;
	line-height: 30px;
	position: relative;
	overflow: hidden;
}

.event-header::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.8s;
}

.timeline-content:hover .event-header::after {
	left: 100%;
}

.event-body {
	padding: 15px 28px;
}

.event-date {
	color: #495057;
	font-size: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.event-date i {
	font-size: 1.4rem;
	color: #fea604;
}

.timeline-marker {
	position: absolute;
	top: 50px;
	left: -160px;
	width: 50px;
	height: 50px;
	background-color: #fea604;
	border: 5px solid white;
	border-radius: 50%;
	box-shadow: 0 0 0 5px #1c5ca0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	z-index: 10;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
	}
}

.month-label {
	position: absolute;
	left: -120px;
	top: 60px;
	font-weight: 500;
	color: #146caf;
	font-size: 18px;
	width: 110px;
	text-align: right;
}

.year-header {
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	color: #444346;
	margin: 20px 0 20px;
	position: relative;
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.year-header::after {
	content: "";
	position: absolute;
	width: 120px;
	height: 4px;
	background: #ffa704;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}

.empty-state {
	text-align: center;
	padding: 60px 20px;
	color: #434446;
	font-size: 1.3rem;
}

.empty-state i {
	font-size: 5rem;
	margin-bottom: 20px;
	opacity: 1;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

@media (max-width: 768px) {
	.footer-newsletter .newsletter-form .theme-btn {
		right: 6px;
	}

	.timeline-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.timeline-line {
		display: none;
	}

	.timeline-marker {
		left: -11px;
		width: 35px;
		height: 35px;
		font-size: 1rem;
		top: -10px;
	}

	.month-label {
		left: -100px;
		font-size: 1.1rem;
		top: 55px;
		display: none;
	}

	.event-header {
		font-size: 1.5rem;
		padding: 10px 40px;
	}

	.event-body {
		padding: 15px 28px;
	}
}

@media (max-width: 576px) {
	.main-tabs .nav {
		flex-direction: column;
	}

	.main-tabs .nav-link {
		border-radius: 8px;
		margin-bottom: 10px;
		justify-content: center;
	}
}

/*---Past Events Tabs end----*/

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

/*jump animation */
@keyframes jump-1 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40% {
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes jump-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes jump-3 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes floating {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
}
@keyframes slide-one {
	0% {
		-webkit-transform: translate3d(-60px, 0, 0);
		transform: translate3d(-60px, 0, 0);
	}
	25% {
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(-60px, 0, 0);
		transform: translate3d(-60px, 0, 0);
	}
}
@keyframes slide-one1 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0px, 0, 0);
	}
	25% {
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(-60px, 0, 0);
		transform: translate3d(-60px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slide-two {
	0% {
		-webkit-transform: translate3d(60px, 0, 0);
		transform: translate3d(60px, 0, 0);
	}
	25% {
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(60px, 0, 0);
		transform: translate3d(60px, 0, 0);
	}
}
@keyframes slide-two1 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	25% {
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(60px, 0, 0);
		transform: translate3d(60px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
@keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px)
			rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
@keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
@keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes not-sure-lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes not-sure-lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.not-sure-lightSpeedIn {
	-webkit-animation-name: not-sure-lightSpeedIn;
	animation-name: not-sure-lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes not-sure-lightSpeedOut {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
@keyframes not-sure-lightSpeedOut {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.not-sure-lightSpeedOut {
	-webkit-animation-name: not-sure-lightSpeedOut;
	animation-name: not-sure-lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}
@keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}
.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
@keyframes rollOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@keyframes jump-1 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40% {
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes jump-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes rotateIt {
	to {
		transform: rotate(-360deg);
	}
}
@keyframes rotateIt2 {
	to {
		transform: rotate(360deg);
	}
}
@keyframes animate-floting {
	0% {
		transform: translateX(50%);
	}
	50% {
		transform: translateX(-40%);
	}
	100% {
		transform: translateX(40%);
	}
}
@keyframes animate-floting-2 {
	0% {
		transform: translateX(-50%);
	}
	50% {
		transform: translateX(40%);
	}
	100% {
		transform: translateX(-40%);
	}
}
.floting-line {
	animation: animate-floting 15s linear infinite;
}
.floting-line:hover {
	animation-play-state: paused;
}

.floting-line-2 {
	animation: animate-floting-2 15s linear infinite;
}
.floting-line-2:hover {
	animation-play-state: paused;
}

@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
@keyframes customOne {
	0% {
		-webkit-transform: translateY(-50%) scale(0);
		transform: translateY(-50%) scale(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-50%) scale(1.3);
		transform: translateY(-50%) scale(1.3);
		opacity: 0;
	}
}
@keyframes liveAuction {
	0% {
		background: var(--color-not-sure-white);
	}
	100% {
		background: var(--color-danger);
	}
}

.open-btn {
	padding: 14px 32px;
	font-size: 1.1rem;
	font-weight: 500;
	background: #0194d6;
	color: white;
	border: none;
	border-radius: 18px;
	cursor: pointer;
	box-shadow: 0 4px 20px rgb(1, 148, 214, 0.3);
	transition: all 0.25s ease;
	width: fit-content;
}

.open-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgb(1, 148, 214, 0.3);
}

/* ========================================= */
/*                Modal / Overlay           */
/* ========================================= */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	display: grid;
	place-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: white;
	width: 100%;
	max-width: 768px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	transform: scale(0.85);
	opacity: 0;
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
	transform: scale(1);
	opacity: 1;
}

/* ========================================= */
/*               Form styling               */
/* ========================================= */
.modal-header {
	background: linear-gradient(135deg, #0194d6, #006795);
	color: white;
	padding: 24px 28px;
	text-align: center;
	position: relative;
}

.modal-header h2 {
	font-size: 1.55rem;
	margin: 0;
	color: #fff;
}

.close-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	font-size: 1.1rem;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: all 0.2s;
}

.close-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}

.modal-body {
	padding: 28px 24px;
}

/* ========================================= */
/*              Responsive                  */
/* ========================================= */
@media (max-width: 500px) {
	.modal-content {
		margin: 0 16px;
	}

	.modal-body {
		padding: 24px 20px;
	}
}

/*-----modal popup end---*/

.qty-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.qty-section-header h5 {
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--body-text-color);
}

.control-buttons .btn {
	min-width: 44px;
	font-size: 1.2rem;
	line-height: 1;
}

.item-row {
	margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
	.qty-section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.control-buttons {
		width: 100%;
		justify-content: flex-end;
	}
}
