@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap";

:root {
	--fontFamily: 'Poppins', sans-serif;
	--fontFamily2: 'Open Sans', sans-serif;
	--mainColor: #B00F15;
	--secondColor: #141E46;
	--backgroundColor: #ebebeb;
	--transparentColor: #FFF7E9;
	--whiteColor: #ffffff;
	--blackColor: #242424;
	--paragraphColor: #666666;
	--fontSize: 16px;
	--card-title-fontSize: 22px;
	--transition: 0.5s
}

body {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

h1,
h2,
h3,
h4 {
	font-family: var(--fontFamily)
}

h5,
h6 {
	font-family: var(--fontFamily2)
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0 !important
}

a:hover {
	color: var(--mainColor);
	text-decoration: none
}

:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important
}

img {
	max-width: 100%;
	height: auto
}

p {
	color: var(--paragraphColor);
	font-size: var(--fontSize);
	margin-bottom: 15px;
	line-height: 1.8;
	font-family: var(--fontFamily2)
}

p:last-child {
	margin-bottom: 0
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px
}

.pt-100 {
	padding-top: 100px
}

.pb-100 {
	padding-bottom: 100px
}

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px
}

.pt-70 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.pb-70 {
	padding-bottom: 70px
}

.pt-30 {
	padding-top: 0
}

.pl-20 {
	padding-left: 20px
}

.pr-20 {
	padding-right: 20px
}

.mt-30 {
	margin-top: 30px
}

.section-content {
	margin-top: 10px
}

.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--whiteColor) !important;
	z-index: 99999;
	padding: 0;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown
}

.bg-f9faff {
	background-color: #f9faff;
}

.bg-fff7e9 {
	background-color: #fff7e9;
}

.bg-mainColor {
	background-color: var(--mainColor)
}

.bg-000000 {
	background-color: #242325
}

.rs {
	margin-top: -10px
}

.topbar {
	font-family: var(--fontFamily2);
	border-bottom: 1px solid #eee;
	padding: 6px 0;
	position: relative;
	z-index: 9;
	background: #404143;
}

.topbar-left-side ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.topbar-left-side ul li {
	font-size: 14px;
	margin-right: 15px;
	display: inline-block;
	color: var(--blackColor)
}

.topbar-left-side ul li a {
	color: var(--transparentColor)
}

.topbar-left-side ul li a:hover {
	color: var(--mainColor)
}

.topbar-left-side ul li i {
	margin-right: 3px;
	color: var(--mainColor)
}

.topbar-right-side {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.topbar-right-side a {
	color: var(--transparentColor);
	font-size: 14px
}

.topbar-right-side a:hover {
	color: var(--mainColor);
	font-size: 14px
}

.topbar-right-side i {
	color: var(--mainColor)
}

.topbar-right-side .account {
	margin-right: 15px;
	font-family: var(--fontFamily2)
}

.topbar-right-side .account p {
	color: var(--transparentColor);
}

.topbar-right-side .account i {
	margin-right: 3px
}

.global-location-area .single-location-box {
	background-color: #f9faff;
	border: 1px solid #393E46;
	-webkit-box-shadow: 0 5px 10px -5px #ccc;
	box-shadow: 0 5px 10px -5px #ccc;
	text-align: center;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	margin-top: 15px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
}

.global-location-area .single-location-box a {
	color: var(--mainColor);
	padding: 10px;
	display: inline-block
}

.global-location-area .single-location-box a:hover {

	color: var(--secondColor);
}



.global-location-area .single-location-box a i {
	font-size: 20px;
	display: inline-block;
	margin-right: 5px;
	position: relative;
	top: 3px
}

.global-location-area .single-location-box a span {
	font-size: 16px;
	font-weight: 600
}

.global-location-area .single-location-box:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}


.nice-select {
	border: 0;
	background-color: transparent;
	height: auto;
	width: 100%;
	line-height: unset;
	font-size: var(--fontSize);
	font-family: var(--fontFamily2);
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 23px;
	padding-right: 15px
}

.nice-select .selected {
	color: var(--mainColor)
}

.nice-select .list {
	width: 100%;
	z-index: 9999
}

.option-select-area {
	position: relative;
	display: inline-block;
	max-width: 100%;
	color: var(--paragraphColor)
}

.option-select-area .fa-globe {
	position: absolute;
	top: 5px;
	left: 0;
	z-index: 99;
	color: var(--mainColor)
}

.option-select-area .nice-select .list {
	width: 85px;
	z-index: 999
}

.option-select-area .nice-select::after {
	right: 2px;
	width: 7px;
	height: 7px;
	border-color: var(--blackColor)
}

.option-select-area .nice-select .current {
	color: var(--blackColor);
	font-size: 14px
}

a.meanmenu-reveal {
	display: none
}

.mean-container .mean-bar {
	float: left;
	width: 100%;
	position: absolute;
	background: 0 0;
	padding: 20px 0 0;
	z-index: 2;
	height: 60px;
	text-transform: capitalize;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.mean-container a.meanmenu-reveal {
	width: 35px;
	height: 30px;
	padding: 12px 15px 0 0;
	position: absolute;
	right: 0;
	top: 70%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--mainColor);
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-weight: 700
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: var(--mainColor);
	height: 4px;
	margin-top: 5px;
	border-radius: 3px
}

.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: var(--whiteColor);
	margin-top: 64px
}

.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	border: none;
	list-style-type: none
}

.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 90%;
	padding: 0.7rem 5%;
	margin: 0;
	text-align: left;
	color: var(--blackColor);
	border-top: 1px solid #dbeefd;
	text-decoration: none;
	font-weight: 600;
	text-transform: capitalize;
}

.mean-container .mean-nav ul li a:hover {
	background: var(--whiteColor)
}

.mean-container .mean-nav ul li a.active {
	color: var(--whiteColor)
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	color: #677294;
	border-top: 1px solid #dbeefd;
	opacity: 1;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible;
	text-transform: none;
	font-size: 14px;
	text-transform: capitalize
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 3px;
	width: 100%;
	height: 24px;
	padding: 12px !important;
	text-align: right;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: 0 0 !important;
	border: none !important
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0
}

.mean-container .mean-nav .navbar-nav {
	overflow-y: scroll;
	height: 300px;
	margin-top: 30px;
}

.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0
}

.mean-nav .dropdown-toggle::after {
	display: none
}

.mean-remove {
	display: none !important
}

.mobile-nav {
	display: none;
	position: relative
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
	background-color: var(--whiteColor);
	color: var(--blackColor)
}

.btn-primary,
.btn-primary:active {
	background-color: var(--whiteColor) !important;
	color: var(--blackColor) !important;
	border-color: var(--blackColor) !important
}

.mobile-nav.mean-container .mean-nav ul li a.active {
	color: var(--mainColor)
}

.main-nav {
	background-color: transparent
}

.main-nav nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.main-nav nav .navbar-nav {
	margin-left: auto;
	margin-right: auto
}

.main-nav nav .navbar-nav .nav-item {
	position: relative;
	padding: 15px 0
}

.main-nav nav .navbar-nav .nav-item a {
	padding: 0;
	-webkit-transition: .5s;
	transition: .5s;
	position: relative;
	color: var(--blackColor);
	font-size: 15px;
	font-weight: 600;
	font-family: var(--fontFamily2);
	margin-left: 14px;
	margin-right: 14px
}

.main-nav nav .navbar-nav .nav-item a i {
	right: 0;
	top: 8px;
	font-size: 12px;
	position: absolute
}

.main-nav nav .navbar-nav .nav-item a:hover {
	color: var(--mainColor);
	-webkit-transition: .5s;
	transition: .5s
}

.main-nav nav .navbar-nav .nav-item a::after {
	display: none
}

.main-nav nav .navbar-nav .nav-item a.dropdown-toggle {
	padding-right: 13px
}

.main-nav nav .navbar-nav .nav-item a.active {
	color: var(--mainColor);
	-webkit-transition: .5s;
	transition: .5s
}

.main-nav nav .navbar-nav .nav-item:hover a {
	color: var(--mainColor)
}

.main-nav nav .navbar-nav .nav-item:hover ul {
	opacity: 1;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	visibility: visible
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
	left: 0;
	top: 60px;
	opacity: 0;
	z-index: 99;
	width: 200px;
	border: none;
	display: block;
	border-radius: 0;
	visibility: hidden;
	position: absolute;
	-webkit-transform: rotateX(-20deg);
	transform: rotateX(-20deg);
	-webkit-transform-origin: top;
	transform-origin: top;
	background: var(--whiteColor);
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
	padding-top: 10px;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 10px
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
	position: relative;
	padding: 0
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	margin: 0;
	display: block;
	padding: 7px 20px;
	color: var(--blackColor);
	border-bottom: 1px dashed transparent;
	font-size: 15px;
	font-weight: 600
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
	top: 50%;
	position: absolute;
	right: 10px !important;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
	content: '+';
	font-size: 0;
	color: var(--mainColor);
	-webkit-transition: .2s ease;
	transition: .2s ease;
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: var(--mainColor);
	padding-left: 25px
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::before {
	font-size: 15px
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	position: absolute;
	left: 101%;
	top: 0;
	opacity: 0 !important;
	visibility: hidden !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
	top: 20px;
	left: 100%;
	position: absolute;
	opacity: 0 !important;
	visibility: hidden !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
	color: var(--blackColor)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
	color: var(--mainColor)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	top: -5px !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	top: -5px !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
	color: var(--mainColor)
}

.main-nav nav .navbar-nav .nav-item:last-child .dropdown-menu {
	left: auto;
	right: 0
}

.navbar-light .navbar-brand {
	color: var(--mainColor);
	font-weight: 700;
	text-transform: uppercase
}

.navbar-light .navbar-brand:hover {
	color: var(--mainColor);
	font-weight: 700;
	text-transform: uppercase
}

.mean-container .mean-bar {
	position: relative
}

.mobile-nav .menu-sidebar-small-device {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 15px;
	right: 47px
}

.mobile-nav .menu-sidebar-small-device .uni-button {
	padding: 5px 10px
}

.mobile-nav .call-button {
	top: 7px
}

.menu-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.menu-sidebar ul li {
	margin-left: 15px
}

.menu-small-device {
	display: none;
	position: absolute;
	right: 80px;
	top: 14px;
	margin: 0;
	padding: 0;
	list-style: none
}

.menu-small-device li {
	list-style: none;
	display: inline-block
}

.header-area2 .main-nav nav .navbar-nav .nav-item .dropdown-menu {
	top: 69px
}

.popup-button {
	border: 0;
	border-radius: 5px;
	font-size: 20px;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	color: var(--secondColor);
	background-color: transparent;
	margin-right: 15px
}

.popup-button:hover {
	color: var(--mainColor)
}

.popup {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99999;
	visibility: hidden;
	background-color: #000000d4
}

.popup .popup-content {
	width: 0%;
	height: 100%;
	opacity: 0;
	margin-left: 0;
	margin-right: auto
}

.popup .popup-content .close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: transparent;
	color: var(--mainColor);
	border: 0;
	font-size: 30px
}

.popup .popup-content form {
	top: 20%;
	left: 50%;
	width: 80%;
	visibility: hidden;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.popup .popup-content form .search-box {
	border-radius: 10px;
	border: 1px solid var(--mainColor)
}

.popup .popup-content form .search-box input {
	padding: 5px 20px
}

.popup .popup-content form .search-box .form-control {
	border-radius: 10px;
	border: 0 solid transparent !important
}

.popup .popup-content form .search-box .btn {
	padding: 5px 15px;
	color: var(--whiteColor);
	border-radius: 10px;
	background-color: var(--mainColor);
	font-size: 25px
}

.popup .hi {
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
	opacity: 1;
	width: 100%;
	background-color: rgba(0, 0, 0, .5)
}

.popup .hi form {
	visibility: visible;
	top: 50% !important;
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out
}

@media only screen and (max-width:767px) {
	.topbar-right-side {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.topbar-left-side {
		text-align: center
	}

	.topbar-left-side ul li {
		margin-right: 7px;
		margin-left: 7px
	}
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.topbar-right-side {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.topbar-left-side {
		text-align: center
	}
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
	.main-nav nav .navbar-nav .nav-item a {
		font-size: 14px;
		margin-left: 13px;
		margin-right: 13px
	}
}

@media only screen and (max-width:1199px) {
	.main-responsive-nav {
		background-color: #fff;
		height: 89px
	}

	.mobile-nav {
		display: block;
		position: relative
	}

	.mobile-nav .logo {
		top: 10px;
		left: 0;
		z-index: 999;
		position: absolute;
		color: #fff;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none
	}

	.mobile-nav nav .navbar-nav .nav-item a i {
		display: none
	}

	.mean-container .mean-bar {
		background-color: #fff;
		padding: 0
	}

	.mean-container a.meanmenu-reveal {
		padding: 5px 2px 0 0
	}

	.main-nav {
		display: none !important
	}

	.menu-sidebar {
		display: none
	}

	.menu-small-device {
		z-index: 0;
		right: 55px;
		top: 18px;
		display: block !important
	}

	.menu-small-device .default-button {
		padding: 7px 10px;
		font-size: 14px
	}

	.topbar-left-area {
		text-align: center
	}

	.topbar-left-area ul li {
		margin-left: 5px;
		margin-right: 5px
	}

	.mobile-nav .call-button {
		top: 0
	}
}

.stars ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.stars ul li {
	display: inline-block
}

.stars ul li i {
	cursor: pointer
}

.default-button {
	overflow: hidden;
	border: 1px solid var(--secondColor);
	padding: 12px 35px;
	border-radius: 25px;
	display: inline-block;
	color: var(--whiteColor);
	background-color: var(--secondColor);
	position: relative;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--fontFamily2)
}

.default-button::before {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: var(--mainColor);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0
}

.default-button::after {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: var(--mainColor);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0
}

.default-button span {
	position: relative;
	z-index: 2
}

.default-button:hover {
	color: var(--whiteColor);
	border-color: var(--mainColor)
}

.default-button:hover::before,
.default-button:hover::after {
	height: 51%
}

.default-button-2 {
	background-color: transparent;
	color: var(--blackColor)
}

.default-button-2:hover {
	color: var(--whiteColor)
}

.read-more-btn {
	font-size: var(--fontSize);
	font-family: var(--fontFamily2);
	font-weight: 600
}

.default-button-3 {
	border-radius: 5px
}

.default-button-4 {
	border-radius: 0
}

.default-section-title h6 {
	position: relative;
	padding-left: 45px;
	display: inline-block;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily)
}

.default-section-title h6::before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: var(--mainColor);
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.default-section-title h2 {
	line-height: 1.4;
	font-size: 36px;
	font-weight: 700
}

.default-section-title h3 {
	line-height: 1.4;
	font-size: 36px;
	font-weight: 700
}

.default-section-title-middle {
	text-align: center;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto
}

.banner-text-area {
	max-width: 745px;
	margin-left: auto;
	position: relative
}

.banner-text-area h6 {
	position: relative;
	padding-left: 45px;
	display: inline-block;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily)
}

.banner-text-area h6::before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: var(--mainColor);
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.banner-text-area h1 {
	line-height: 1.4;
	margin-top: 15px;
	margin-bottom: 25px;
	font-size: 60px;
	font-weight: 700;
	font-family: var(--fontFamily)
}

.banner-text-area p {
	max-width: 650px;
	margin-bottom: 28px
}

.main-banner-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/banner/banner-bg1.jpg);
	position: relative;
	overflow: hidden
}

.main-banner-bg::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .95);
	position: absolute;
	left: 0;
	top: 0
}

.main-banner-img img {
	position: relative;
	right: -20px
}

.partner-slider-area img {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.about-img-area {
	position: relative
}

.about-img-area .about-img-1 img {
	position: relative;
	-webkit-transform: scale(.8);
	transform: scale(.8);
	-webkit-transform-origin: left top;
	transform-origin: left top
}

.about-img-area .about-img-2 {
	position: absolute;
	bottom: 0;
	right: 30px;
	-webkit-transform: scale(.85);
	transform: scale(.85);
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}

.about-img-area .about-img-2 img {
	border-radius: 50%
}

.about-img-area .about-img-2 a {
	width: 100px;
	height: 100px;
	font-size: 60px;
	border-radius: 50%;
	padding-top: 10px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--whiteColor);
	background-color: var(--mainColor);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.about-text-area .about-list ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.about-text-area .about-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	color: var(--blackColor);
	margin: 8px;
	font-size: var(--fontFamily2);
	font-weight: 400
}

.about-text-area .about-list ul li i {
	margin-right: 10px;
	color: var(--mainColor)
}

.about-text-area .default-button {
	margin-top: 20px
}

.about-1 .about-img-area {
	margin-left: auto;
	max-width: 750px
}

.about-1 .about-text-area {
	max-width: 630px
}

.fun-facts-area {
	margin-top: 10px
}

.fun-facts-card {
	position: relative;
	margin-top: 30px
}

.fun-facts-card i {
	color: rgba(0, 0, 0, .05);
	position: absolute;
	font-size: 100px;
	top: -30px
}

.fun-facts-card h2 {
	margin-bottom: 0;
	position: relative;
	font-size: 48px;
	font-weight: 700;
	font-family: var(--fontFamily)
}

.fun-facts-card h2 sup {
	font-weight: 500;
	position: relative;
	top: -12px
}

.fun-facts-card p {
	color: var(--blackColor)
}

.features-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/shape/bg.jpg);
	padding-bottom: 300px
}

.features-card {
	padding: 30px 30px 25px 160px;
	-webkit-box-shadow: 0 0 15px -5px #ccc;
	box-shadow: 0 0 15px -5px #ccc;
	background-color: var(--whiteColor);
	border-radius: 15px;
	position: relative;
	margin-top: 30px
}

.features-card .features-icon-area {
	position: absolute;
	left: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.features-card .features-card-icons {
	position: relative;
	display: inline-block;
	overflow: hidden
}

.features-card .features-card-icons .shape2 {
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1.5, 1.5) rotate(10deg);
	transform: scale(1.5, 1.5) rotate(10deg);
	opacity: 0;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.features-card .features-card-icons i {
	font-size: 40px;
	color: var(--whiteColor);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.features-card .features-card-text h4 {
	font-size: var(--card-title-fontSize);
	font-weight: 700
}

.features-card:hover .features-icon-area .shape2 {
	-webkit-transform: scale(1, 1) rotate(0deg);
	transform: scale(1, 1) rotate(0deg);
	opacity: 1
}

.fmt-0 {
	margin-top: 0
}

.booking-content {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/shape/shape-bg-2.png);
	-webkit-box-shadow: 0 0 10px -3px #ccc;
	box-shadow: 0 0 10px -3px #ccc;
	text-align: center;
	position: relative;
	margin-top: -200px;
	border-radius: 25px;
	padding: 40px 50px 50px
}

.booking-content .booking-form-content {
	margin-top: 20px;
	border-radius: 25px
}

.booking-content .booking-form-content .form-control,
.booking-content .booking-form-content .form-select {
	padding: 15px;
	border-radius: 25px;
	background-color: #FFF7E9;
	border: 1px solid #eee;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.booking-content .booking-form-content .form-control::after,
.booking-content .booking-form-content .form-select::after {
	display: none
}

.booking-content .booking-form-content .default-button {
	display: block;
	width: 100%;
	padding: 15px
}

.booking-content .booking-form-content .current {
	color: var(--paragraphColor)
}

.service-card {
	-webkit-box-shadow: 0 5px 10px -3px #ccc;
	box-shadow: 0 5px 10px -3px #ccc;
	border-radius: 20px;
	overflow: hidden;
	margin-top: 30px
}

.service-card .service-card-text {
	padding: 0 30px 25px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/service/text-bg.png);
	-webkit-filter: brightness(.98);
	filter: brightness(.98);
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.service-card .service-card-text .service-card-icon {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin-top: -50px;
	margin-bottom: 15px
}

.service-card .service-card-text .service-card-icon .shape1 {
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out
}

.service-card .service-card-text .service-card-icon .shape2 {
	position: absolute;
	left: 0%;
	top: 0;
	z-index: 0;
	-webkit-transform: scale(1.5, 1.5) rotate(10deg);
	transform: scale(1.5, 1.5) rotate(10deg);
	opacity: 0;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out
}

.service-card .service-card-text .service-card-icon i {
	font-size: 35px;
	color: var(--whiteColor);
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.service-card .service-card-text h4 {
	margin-bottom: 14px;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.service-card:hover .service-card-icon .shape2 {
	-webkit-transform: scale(1, 1) rotate(0deg);
	transform: scale(1, 1) rotate(0deg);
	opacity: 1
}

.service-card:hover .service-card-icon .shape1 {
	opacity: 0
}

.service-card:hover .service-card-text {
	-webkit-filter: brightness(1);
	filter: brightness(1)
}

.portfolio-card {
	position: relative;
	margin-top: 30px;
	border-radius: 25px;
	overflow: hidden;
	-webkit-box-shadow: 5px 5px 10px -5px #212529;
	box-shadow: 0 5px 10px -5px #212529;
}

.portfolio-card::before {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#000000ef), color-stop(#0000006e), color-stop(#00000000), to(#00000000));
	background-image: linear-gradient(to top, #000000ef, #0000006e, #00000000, #00000000);
	position: absolute;
	left: 0;
	bottom: 0
}

.portfolio-card .portfolio-text {
	width: 100%;
	padding: 20px 20px 30px;
	z-index: 9;
	text-align: center;
	position: absolute;
	bottom: 0;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	-webkit-transform: translateY(50px) scale(0);
	transform: translateY(50px) scale(0)
}

.portfolio-card .portfolio-text p {
	color: var(--mainColor);
	font-size: 15px;
	margin-bottom: 5px
}

.portfolio-card .portfolio-text h4 {
	margin-bottom: 0;
	color: var(--whiteColor);
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.portfolio-card .portfolio-text h4 a {
	color: var(--whiteColor)
}

.portfolio-card:hover::before {
	height: 100%
}

.portfolio-card:hover .portfolio-text {
	-webkit-transform: translateY(0px) scale(1);
	transform: translateY(0px) scale(1)
}



.shape-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/shape/bg.jpg)
}

.portfolio-slider-area .owl-nav {
	position: absolute;
	top: -55px;
	right: 0
}

.portfolio-slider-area .owl-nav button {
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 10px;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	display: inline-block;
	border: 1px solid #858585 !important
}

.portfolio-slider-area .owl-nav button:hover {
	border-color: var(--mainColor) !important;
	color: var(--whiteColor) !important;
	background-color: var(--mainColor) !important
}

.stars ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.stars ul li {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.stars ul li i {
	color: #ffd31d
}

.testimonial-card {
	padding: 30px;
	border-radius: 25px;
	margin-top: 30px;
	background-color: #FFF7E9;
	-webkit-box-shadow: 0 0 15px -5px #cccccc00;
	box-shadow: 0 0 15px -5px #cccccc00;
	position: relative;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.testimonial-card .flaticon-right-quote {
	position: absolute;
	right: 25px;
	bottom: 10px;
	font-size: 50px;
	color: #dadada;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	-webkit-animation: top-bottom 3s infinite linear;
	animation: top-bottom 3s infinite linear
}

.testimonial-card .stars {
	margin-bottom: 15px
}

.testimonial-card .stars span {
	margin: 0 5px;
	font-size: 14px;
	font-weight: 600
}

.testimonial-card p {
	font-size: var(--fontSize);
	color: var(--blackColor)
}

.testimonial-card .testimonial-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px
}

.testimonial-card .testimonial-footer img {
	border-radius: 50%;
	margin-right: 15px
}

.testimonial-card .testimonial-footer h4 {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 600
}

.testimonial-card .testimonial-footer p {
	color: var(--paragraphColor);
	margin-bottom: 0
}

.testimonial-card:hover {
	-webkit-box-shadow: 0 0 15px -5px #cccccccc;
	box-shadow: 0 0 15px -5px #cccccccc;
	background-color: var(--whiteColor)
}

.testimonial-card:hover .flaticon-right-quote {
	color: #ffd8c2
}

.pricing-1 {
	position: relative
}

.pricing-1::before {
	content: '';
	height: 210px;
	width: 100%;
	background-color: var(--whiteColor);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0
}

.pricing-1 .container {
	position: relative
}

.pricing-card {
	background-color: var(--whiteColor);
	border-radius: 25px;
	margin-top: 30px;
	text-align: center;
	-webkit-box-shadow: 0 0 10px -5px #ccc;
	box-shadow: 0 0 10px -5px #ccc;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.pricing-card .pricing-card-header {
	background-color: var(--blackColor);
	border-radius: 25px 25px 0 0;
	padding: 30px 30px 0;
	position: relative;
	margin-bottom: 15px;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.pricing-card .pricing-card-header::before {
	content: '';
	width: 100%;
	height: 30px;
	z-index: 0;
	background-color: var(--whiteColor);
	position: absolute;
	bottom: 0;
	left: 0
}

.pricing-card .pricing-card-header h3 {
	margin-bottom: 20px;
	color: var(--whiteColor)
}

.pricing-card .pricing-card-header .price {
	padding: 10px 25px;
	border-radius: 30px;
	display: inline-block;
	-webkit-box-shadow: 0 0 10px -5px #b5b5b5;
	box-shadow: 0 0 10px -5px #b5b5b5;
	background-color: var(--whiteColor);
	position: relative;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.pricing-card .pricing-card-header .price h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 700
}

.pricing-card .pricing-card-header .price h2 sup {
	font-size: 18px;
	font-weight: 400;
	position: relative;
	top: -15px
}

.pricing-card .pricing-card-header .price h2 sub {
	font-size: 14px;
	font-weight: 400
}

.pricing-card .pricing-text-area {
	padding: 0 30px 35px
}

.pricing-card .service-price-list {
	margin-bottom: 15px
}

.pricing-card .service-price-list ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.pricing-card .service-price-list ul li {
	padding: 15px;
	color: var(--blackColor);
	border-bottom: 1px solid #eee;
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.pricing-card .service-price-list ul li i {
	margin-right: 5px
}

.pricing-card .service-price-list ul li:last-child {
	border-bottom: 0
}

.pricing-card .service-price-list .fa-check {
	color: #02960e
}

.pricing-card .service-price-list .fa-times {
	color: #da0202
}

.pricing-card:hover .pricing-card-header {
	background-color: var(--mainColor)
}

.pricing-card:hover .pricing-card-header .price {
	color: var(--mainColor)
}

.pricing-active .pricing-card-header {
	background-color: var(--mainColor)
}

.pricing-active .pricing-card-header .price {
	color: var(--mainColor)
}

.pricing-active .default-button {
	background-color: var(--mainColor);
	color: var(--whiteColor);
	border-color: var(--mainColor)
}

.blog-card {
	margin-top: 30px
}

.blog-card .blog-card-img {
	position: relative;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	overflow: hidden
}

.blog-card .blog-card-img img {
	border-radius: 25px;
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.blog-card .blog-card-img .blog-card-category {
	padding: 8px 30px;
	border-radius: 20px;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	display: inline-block;
	color: var(--whiteColor);
	transition: .5s ease;
	background-color: var(--blackColor);
	position: absolute;
	bottom: 15px;
	left: 15px;
	font-size: 15px;
	font-weight: 600
}

.blog-card .blog-card-text {
	margin-top: 25px
}

.blog-card .blog-card-text h4 {
	line-height: 1.4;
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.blog-card:hover .blog-card-img img {
	-webkit-transform: scale(1.1) rotate(-3deg);
	transform: scale(1.1) rotate(-3deg)
}

.blog-card:hover .blog-card-img .blog-card-category {
	background-color: var(--mainColor)
}

.blog-date ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.blog-date ul li {
	display: inline-block;
	margin-right: 14px;
	position: relative;
	font-size: 14px;
	font-family: var(--fontFamily2)
}

.blog-date ul li i {
	color: var(--mainColor);
	margin-right: 5px
}

.blog-date ul li::before {
	content: '/';
	font-size: 16px;
	position: absolute;
	right: -11px;
	top: 0
}

.blog-date ul li:last-child::before {
	display: none
}

.newsletter-content-area {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

	padding: 20px 20px 20px;
	border-radius: 25px;
	position: relative
}

.newsletter-content-area .default-section-title h3 {
	margin-bottom: 0
}

.news-input-card .form-control,
.news-input-card .form-select {
	width: 100%;
	padding: 15px;
	border-radius: 25px;
	border: 1px solid #eee;
	background-color: var(--whiteColor)
}

.news-input-card .form-control::after,
.news-input-card .form-select::after {
	display: none
}

.news-input-card .default-button {
	width: 100%
}

.newsletter-1 {
	position: relative;
	background-color: #b00f15;

}

.newsletter-1::before {
	content: '';
	height: 50%;
	width: 100%;
	background-color: #ffffff;
	position: relative;
	bottom: 0;
	left: 0
}

.footer-logo-area p {
	margin-top: 20px
}

.footer-logo-area .footer-social-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 25px
}

.footer-logo-area .footer-social-icons span {
	margin-right: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--fontFamily2)
}

.footer-logo-area .footer-social-icons ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.footer-logo-area .footer-social-icons ul li {
	display: inline-block
}

.footer-logo-area .footer-social-icons ul li a {
	width: 30px;
	height: 30px;
	font-size: 15px;
	margin-left: 3px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--mainColor);
	background-color: var(--whiteColor);
	-webkit-box-shadow: 0 0 15px -5px #ccc;
	box-shadow: 0 0 15px -5px #ccc
}

.footer-logo-area .footer-social-icons ul li a:hover {
	color: var(--whiteColor);
	background-color: var(--mainColor)
}

.footer-links h3 {
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
	font-size: var(--card-title-fontSize)
}

.footer-links h3::before {
	content: '';
	height: 2px;
	width: 20%;
	background-color: var(--mainColor);
	position: absolute;
	left: 0;
	bottom: 0
}

.footer-contact-list {
	padding-left: 0px
}

.footer-quick-links {
	padding-left: 43px
}

.footer-content-card {
	position: relative;
	padding-left: 30px;
	margin-top: 15px
}

.footer-content-card i {
	width: 20px;
	font-size: 18px;
	text-align: center;
	color: var(--mainColor);
	position: absolute;
	left: 0;
	top: 1px
}

.footer-content-card h5 {
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 600
}

.footer-content-card p {
	font-size: 14px
}

.footer-content-card p a {
	color: var(--paragraphColor)
}

.footer-quick-links ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.footer-quick-links ul li {
	margin-top: 14px
}

.footer-quick-links ul li a {
	display: inline-block;
	color: var(--paragraphColor);
	font-size: 14px;
	font-family: var(--fontFamily2)
}

.footer-quick-links ul li a i {
	margin-right: 5px;
	color: var(--mainColor)
}

.footer-quick-links ul li a:hover {
	color: var(--mainColor)
}

.footer-quick-links ul li:first-child {
	margin-top: 0
}

.footer-newsletter form .form-control {
	padding: 10px 15px;
	border-radius: 25px
}

.footer-newsletter form .default-button {
	width: 100%;
	margin-top: 15px
}

.footer-2 .footer-logo-area p {
	color: #eee
}

.footer-2 .footer-logo-area .footer-social-icons span {
	color: #eee
}

.footer-2 .footer-links h3 {
	color: var(--whiteColor)
}

.footer-2 .footer-content-card h5 {
	color: #eee
}

.footer-2 .footer-content-card a {
	color: var(--whiteColor)
}

.footer-2 .footer-quick-links ul li a {
	color: var(--whiteColor)
}

.footer-2 .footer-quick-links ul li a:hover {
	color: var(--mainColor)
}

.footer-2 .footer-newsletter p {
	color: #eee
}

.footer-2 .footer-newsletter .input-group {
	border: 1px solid #eeeeee70
}

.footer-2 .footer-newsletter .input-group .form-control {
	color: var(--whiteColor)
}

.footer-2 .footer-newsletter .input-group .btn {
	border-radius: 25px !important;
	padding: 10px 30px
}

.copyright {
	text-align: center;
	color: var(--whiteColor);
	position: relative;
	padding-top: 0;
	padding-bottom: 20px
}

.copyright .container {
	border-top: 1px solid #ffffff1e
}

.copyright p {
	color: rgba(255, 255, 255, .8);
	padding-top: 20px;
	font-size: 15px
}

.copyright p a {
	font-weight: 600;
	text-decoration: none;
	color: var(--mainColor)
}

.copyright p strong {
	color: var(--whiteColor)
}

.copyright-2 {
	border-top: 1px solid rgba(238, 238, 238, .3)
}

.copyright-2 p {
	color: #eee
}

.copyright-2 p a {
	color: var(--thirdColor)
}

.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 100px;
	right: 20px;
	border-radius: 5px;
	background-color: var(--whiteColor);
	color: #fff;
	z-index: 999;
	width: 50px;
	padding: 0 10px 45px;
	text-align: center;
	height: 40px;
	opacity: 0;
	visibility: hidden;
	font-size: 25px;
	-webkit-transition: var(--transition);
	-webkit-transition: .5s;
	transition: .5s;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
	box-shadow: 0 3px 10px 2px rgba(7, 7, 7, .1)
}

.go-top i {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto
}

.go-top:hover {
	color: #fff;
	-webkit-transition: all .5s linear;
	transition: all .5s linear;
	border: 1px solid var(--mainColor)
}

.go-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 65px;
	-webkit-animation: top-bottom 5s infinite linear;
	animation: top-bottom 5s infinite linear
}

.banner-text-area-2 h6 {
	color: var(--mainColor)
}

.home-banner-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/banner/banner-2-bg.jpg);
	overflow: hidden
}

.home-banner-img {
	text-align: center;
	padding-top: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/banner/banner-2-circle-bg.png)
}

.home-banner-slider-area .owl-nav {
	width: 88%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 52%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.home-banner-slider-area .owl-nav button {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: var(--whiteColor) !important;
	background-color: var(--blackColor) !important;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.features-card-2 .features-card-icons i {
	left: 55%;
	top: 60%
}

.about-img-area-2 {
	position: relative;
	
	
}

.about-img-area-2 .about-text-2 {
	position: absolute;
	text-align: center;
	border-radius: 0 25% 0 25%;
	padding: 10px 20px;
	background-color: var(--whiteColor);
	border: 1px solid #B00F15;
	display: inline-block;
	right: -30px;
	bottom: 20%;
}

.about-img-area-2 .about-text-2 h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0
}

.service-2 {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.service-card-2 {
	position: relative;
	margin-top: 30px;
	-webkit-box-shadow: 0 0 10px -5px #ccc;
	box-shadow: 0 0 10px -5px #ccc
}

.service-card-2::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transition: .5s ease;
	transition: .5s ease
}

.service-card-2 .service-hover-text {
	width: 100%;
	z-index: 9;
	padding: 15px 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: .5s ease;
	transition: .5s ease;
	opacity: 0
}

.service-card-2 .service-hover-text i {
	font-size: 40px;
	color: var(--mainColor)
}

.service-card-2 .service-hover-text h4 {
	font-size: var(--card-title-fontSize);
	font-weight: 600;
	margin-top: 5px;
	margin-bottom: 10px
}

.service-card-2 .service-hover-text h4 a {
	color: var(--whiteColor)
}

.service-card-2 .service-hover-text p {
	color: rgba(255, 255, 255, .9)
}

.service-card-2 .service-hover-text .read-more-btn {
	color: var(--mainColor)
}

.service-card-2 .service-card-2-footer {
	padding: 15px 25px;
	background-color: var(--whiteColor);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	-webkit-transform-origin: bottom;
	transform-origin: bottom
}

.service-card-2 .service-card-2-footer i {
	font-size: 25px;
	margin-right: 10px;
	color: var(--mainColor)
}

.service-card-2 .service-card-2-footer h4 {
	margin-bottom: 0;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.service-card-2:hover::before {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg)
}

.service-card-2:hover .service-hover-text {
	opacity: 1;
	-webkit-transition-delay: .2s;
	transition-delay: .2s
}

.service-card-2:hover .service-card-2-footer {
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg)
}

.view-all-btn {
	display: table;
	margin-left: auto;
	margin-right: auto
}

.team-card {
	background-color: var(--whiteColor);
	-webkit-transition: .5s ease;
	transition: .5s ease;
	margin-top: 30px
}

.team-card .team-text-area {
	padding: 30px;
	text-align: center
}

.team-card .team-text-area h4 {
	margin-bottom: 8px;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.team-card .team-text-area p {
	margin-bottom: 12px
}

.team-card:hover {
	-webkit-box-shadow: 0 5px 10px -5px #ccc;
	box-shadow: 0 5px 10px -5px #ccc;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px)
}

.team-social-icons ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.team-social-icons ul li {
	display: inline-block
}

.team-social-icons ul li a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #eee;
	margin: 0 3px
}

.team-social-icons ul li a:hover {
	background-color: var(--mainColor);
	color: var(--whiteColor);
	border-color: var(--mainColor)
}

.testimonial-card-2 .testimonial-footer {
	margin-top: 0;
	margin-bottom: 20px
}

.testimonial-card-2 .stars {
	margin-top: 20px;
	margin-bottom: 0
}

.play-button {
	position: relative
}

.play-button a {
	width: 100px;
	height: 100px;
	font-size: 60px;
	border-radius: 50%;
	padding-top: 10px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--whiteColor);
	background-color: rgba(255, 99, 14, .9);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.booking-form-area {
	background-color: var(--whiteColor);
	padding-left: 50px;
	padding-right: 50px
}

.booking-form-area .default-section-title h3 {
	line-height: 1
}

.booking-form-area .booking-form-content {
	margin-top: 20px;
	border-radius: 10px
}

.booking-form-area .booking-form-content .form-control,
.booking-form-area .booking-form-content .form-select {
	padding: 15px;
	border-radius: 5px;
	background-color: #FFF7E9;
	border: 1px solid #eee;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.booking-form-area .booking-form-content .form-control::after,
.booking-form-area .booking-form-content .form-select::after {
	display: none
}

.booking-form-area .booking-form-content .default-button {
	display: block;
	width: 100%;
	padding: 15px;
	border-radius: 5px
}

.booking-form-area .booking-form-content .current {
	color: var(--paragraphColor)
}

.booking-2 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/booking-bg.jpg)
}

.accordion-item {
	margin-top: 20px
}

.accordion-button {
	border: 0;
	display: block;
	overflow: hidden;
	position: relative;
	padding: 15px 15px 15px 60px;
	background-color: #FFF7E9 !important;
	color: var(--blackColor) !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4
}

.accordion-button::after {
	display: none
}

.accordion-button:not(.collapsed) span {
	background-color: var(--mainColor)
}

.accordion-button:not(.collapsed) span::before {
	content: '-';
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
	-webkit-transform-origin: center !important;
	transform-origin: center !important
}

.accordion-button[aria-expanded=false] span {
	background-color: var(--blackColor)
}

.accordion-button[aria-expanded=false] span::before {
	content: '+'
}

.accordion-header {
	position: relative
}

.accordion-header span {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	height: 100%;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	background-color: var(--blackColor);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.accordion-header span::before {
	content: '+';
	width: 25px;
	height: 25px;
	line-height: 1.2;
	text-align: center;
	border: 1px solid #eee;
	font-size: 20px;
	font-weight: 600;
	border-radius: 50%;
	color: var(--whiteColor);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transform-origin: center !important;
	transform-origin: center !important
}

.accordion-collapse {
	border: 0
}

.accordion-body {
	border: 0;
	line-height: 1.8;
	-webkit-box-shadow: 0 0 10px -5px #ccc;
	box-shadow: 0 0 10px -5px #ccc
}

.faq-img-area {
	position: relative;
	border-radius: 25% 0 25% 0;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#ff6613), to(#fdc9ac));
	background-image: linear-gradient(to top, #ff6613, #fdc9ac)
}

.faq-img-area .about-text-2 {
	position: absolute;
	text-align: center;
	border-radius: 25% 0 25% 0;
	padding: 15px 30px;
	background-color: var(--whiteColor);
	border: 1px solid #ccc;
	display: inline-block;
	right: -30px;
	bottom: 20%
}

.faq-img-area .about-text-2 h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0
}

.banner-text-area-3 h6 {
	color: var(--mainColor)
}

.banner-text-area-3 .default-button {
	border-color: var(--mainColor);
	background-color: var(--mainColor)
}

.banner-text-area-3 .default-button:hover {
	border-color: var(--blackColor)
}

.banner-text-area-3 .default-button:hover::before,
.banner-text-area-3 .default-button:hover::after {
	background-color: var(--blackColor)
}

.banner {
	overflow: hidden;
	position: relative
}

.banner .black-line {
	position: absolute;
	left: 45%;
	top: 10px;
	-webkit-animation: top-bottom 2s infinite linear;
	animation: top-bottom 2s infinite linear
}

.banner .orange-line {
	position: absolute;
	right: 0;
	top: 0;
	-webkit-animation: top-bottom 2s infinite linear;
	animation: top-bottom 2s infinite linear
}

.banner .half-circle {
	position: absolute;
	bottom: 0;
	left: 30%;
	-webkit-animation: half-spin 15s infinite linear;
	animation: half-spin 15s infinite linear
}

.banner-img-area {
	position: relative;
	margin-right: 100px
}

.banner-img-area .main-img {
	width: 100%
}

.banner-img-area .shapes .b3-dot {
	position: absolute;
	bottom: 20%;
	left: -75px;
	-webkit-animation: half-spin 15s infinite linear;
	animation: half-spin 15s infinite linear
}

.banner-img-area .shapes .dot-circle {
	position: absolute;
	right: 0;
	bottom: 0
}

.about-img-area-3 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/about/a3.jpg);
	height: 100%;
	position: relative
}

.about-img-area-3 img {
	display: none
}

.about-img-area-3::before {
	content: '';
	width: 100px;
	height: 100%;
	background-color: var(--whiteColor);
	position: absolute;
	right: 0
}

.about-img-list {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/about/about-3-text-bg.jpg);
	display: inline-block;
	padding: 30px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.about-img-list ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.about-img-list ul li {
	padding: 10px;
	border-bottom: 1px solid #fff;
	color: rgba(255, 255, 255, .8);
	font-size: 20px;
	font-family: var(--fontFamily2)
}

.about-img-list ul li strong {
	color: var(--whiteColor);
	font-size: 30px
}

.about-img-list ul li:first-child {
	padding-top: 0;
	margin-top: -15px
}

.features-card-3 {
	position: relative;
	margin-top: 30px;
	padding-left: 90px;
	max-width: 300px
}

.features-card-3 i {
	width: 70px;
	height: 70px;
	font-size: 35px;
	border-radius: 50%;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	border: 3px dashed var(--blackColor);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	left: 0
}

.features-card-3 h4 {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 700
}

.features-card-3:hover i {
	color: var(--mainColor);
	border-color: var(--mainColor)
}

.service-card-3 {
	border-radius: 30px;
	margin-top: 30px;
	overflow: hidden;
	background-color: var(--whiteColor)
}

.service-card-3 .service-card-text-3 {
	padding: 30px 30px 25px;
	position: relative
}

.service-card-3 .service-card-text-3 i {
	font-size: 100px;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	color: rgba(0, 0, 0, .1);
	position: absolute;
	bottom: -25px;
	right: 10px
}

.service-card-3 .service-card-text-3 h4 {
	margin-bottom: 15px;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.service-card-3:hover i {
	color: rgba(255, 99, 14, .2)
}

.why-we {
	background: #FFF7E9;

}

.why-choose {
	background: #FFF7E9;
	padding-top: 5px;
	padding-bottom: 30px;
}

.why-we-card-3 {
	padding: 15px 15px 15px 15px;
	background-color: #f9faff;
	position: relative;
	margin-top: 20px;
	border-radius: 5px;
	border: 1px solid #393E46;
	-webkit-box-shadow: 0 5px 10px -5px #ccc;
	box-shadow: 0 5px 10px -5px #ccc;
	width: 100%;
}

.why-we-card-3 img {
	width: 60px;
	height: 60px;
    margin: 0 0 10px 0;
}

.why-we-card-3 i {
	font-size: 50px;
	color: var(--mainColor);
	position: absolute;
	left: 30px;
	top: 10px;
}

.why-we-card-3 h3 {

	font-weight: 600;
	font-size: 16px;

}

.why-we-card-3 p {
	font-size: 14px;
	font-weight: 600;

}

.booking-3 {
	block-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/booking-3-bg.jpg);
	position: relative
}

.booking-3::before {
	content: '';
	width: 32%;
	height: 100%;
	background-color: var(--whiteColor);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0
}

.booking-form-area-3 {
	background-color: var(--mainColor);
	padding: 0;
	position: relative
}

.booking-form-area-3 .booking-form-content-3 {
	padding: 50px;
	margin-top: 100px;
	margin-bottom: 100px
}

.booking-form-area-3 .booking-form-content-3 .default-section-title h3 {
	color: var(--whiteColor)
}

.booking-form-area-3 .booking-form-content-3 .booking-form-content .default-button {
	border: 1px solid var(--blackColor) !important
}

.testimonial-card-3 {
	padding-top: 0;
	padding-bottom: 25px;
	border-radius: 0;
	position: relative
}

.testimonial-card-3::before {
	content: '';
	width: 100%;
	height: 35px;
	background-color: var(--whiteColor);
	position: absolute;
	top: 0;
	left: 0
}

.testimonial-card-3 .testimonial-footer {
	display: block;
	position: relative
}

.testimonial-card-3 .testimonial-footer .testimonial-footer-intro {
	margin-top: 20px;
	margin-bottom: 15px
}

.testimonial-card-3:hover {
	background-color: #FFF7E9;
	-webkit-box-shadow: none;
	box-shadow: none
}

.blog-card-3 {
	border-radius: 0
}

.blog-card-3 .blog-card-img img {
	border-radius: 0
}

.newsletter-content-area-3 {
	border-radius: 0;
	background-image: unset;
	background-color: #b00f15;
}

.newsletter-content-area-3 .news-input-card .form-control,
.newsletter-content-area-3 .news-input-card .form-select {
	border-radius: 1
}

.newsletter-content-area-3 .news-input-card .default-button {
	border-radius: 0
}

.features-bg-4 {
	padding-bottom: 100px
}

.about-team .team-card {
	-webkit-box-shadow: 0 5px 10px -5px #ccc;
	box-shadow: 0 5px 10px -5px #ccc
}

.uni-banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/inner-images/uni-banner-bg.jpg);
	position: relative
}

.uni-banner::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	position: absolute;
	left: 0;
	top: 0
}

.uni-banner-text {
	position: relative;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px
}

.uni-banner-text h1 {
	color: var(--whiteColor);
	margin-bottom: 15px;
	font-size: 55px;
	font-weight: 700
}

.uni-banner-text ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.uni-banner-text ul li {
	display: inline-block;
	color: var(--mainColor);
	position: relative;
	margin-right: 20px;
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.uni-banner-text ul li a {
	color: var(--whiteColor)
}

.uni-banner-text ul li::after {
	content: '/';
	font-size: 20px;
	position: absolute;
	right: -18px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.uni-banner-text ul li:last-child::after {
	display: none
}

.pag-btn {
	display: table;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto
}

.login-form {
	margin-top: 20px
}

.login-form form label {
	color: var(--paragraphColor);
	font-family: var(--fontFamily);
	font-size: var(--fontSize);
	font-weight: 400
}

.login-form form .form-control {
	border: 1px solid #eee
}

.login-form form .form-check label {
	font-weight: 400;
	font-size: 14px
}

.login-form form .default-button {
	width: 100%
}

.login-form p {
	font-size: 14px;
	font-style: italic
}

.form-check-input:checked {
	border-color: var(--mainColor);
	background-color: var(--mainColor)
}

.error {
	border-top: 1px solid #eee
}

.error-content {
	margin-top: 30px
}

.error-content p {
	margin-top: 20px;
	margin-bottom: 20px
}

.error-content h1 {
	margin: 10px 0;
	line-height: 1;
	display: inline-block;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-image: -webkit-gradient(linear, left top, right top, from(#FF2626), color-stop(#BD1616), to(#FF2626));
	background-image: linear-gradient(to right, #FF2626, #BD1616, #FF2626);
	font-size: 100px;
	font-weight: 700
}

.terms {
	margin-bottom: -15px
}

.terms strong {
	color: var(--blackColor)
}

.terms a {
	color: var(--mainColor)
}

.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5 {
	margin-top: 25px;
	margin-bottom: 15px;
	font-family: var(--fontFamily);
	font-weight: 600
}

.terms h6 {
	font-size: 20px;
	font-weight: 600;
	font-family: var(--fontFamily)
}

.terms h1 {
	font-size: 30px
}

.terms h2 {
	font-size: 28px
}

.terms h3 {
	font-size: 26px
}

.terms h4 {
	font-size: 24px
}

.terms h5 {
	font-size: 22px
}

.terms ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.terms ul li {
	margin: 10px 0;
	font-size: var(--fontSize);
	color: var(--paragraphColor);
	font-family: var(--fontFamily2)
}

.terms ul li span {
	font-weight: 700;
	margin-right: 8px;
	color: var(--blackColor)
}

.terms .payment li {
	position: relative;
	padding-left: 20px
}

.terms .payment li::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--mainColor);
	position: absolute;
	left: 0;
	top: 6px
}

.service-4 .service-card-3 {
	-webkit-box-shadow: 0 5px 10px -5px #ccc;
	box-shadow: 0 5px 10px -5px #ccc
}

.details-text-area .details-page-img {
	margin-bottom: 30px
}

.details-text-area .details-page-img::after {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#000000ef), color-stop(#0000006e), color-stop(#00000000), to(#00000000));
	background-image: linear-gradient(to top, #000000ef, #0000006e, #00000000, #00000000);
	position: absolute;
	left: 0;
	bottom: 0;
}

.details-text-area .details-page-img img {
	border-radius: 25px
}

.details-text-area h3 {
	font-size: var(--card-title-fontSize);
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 20px
}

.details-text-area h2 {
	font-size: var(--card-title-fontSize);
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 20px;
	font-size: 25px;
}

.details-list li {
	color: var(--paragraphColor);
	margin: 15px 0;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.details-list li i {
	color: var(--mainColor);
	margin-right: 5px
}

.sd-img-area img {
	border-radius: 25px;
	margin-top: 10px;
	margin-bottom: 25px
}

.sidebar-card {
	background-color: var(--whiteColor);
	-webkit-box-shadow: 0 0 15px -5px #ccc;
	box-shadow: 0 0 15px -5px #ccc;
	border-radius: 25px;
	padding: 30px
}

.sidebar-card h3 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--mainColor);
	font-size: var(--card-title-fontSize);
	font-weight: 700
}

.search-box .input-group {
	border-radius: 25px;
	border: 1px solid #eee
}

.search-box .form-control {
	background-color: var(--whiteColor);
	border: 0;
	padding: 10px;
	border-radius: 25px
}

.search-box .btn {
	border-radius: 25px !important;
	color: var(--whiteColor);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	background-color: var(--mainColor)
}

.search-box .btn:hover {
	background-color: var(--blackColor)
}

.categories ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.categories ul li {
	margin-top: 10px;
	font-size: var(--fontSize);
	font-family: var(--fontFamily2);
	font-weight: 500
}

.categories ul li i {
	margin-right: 5px;
	color: var(--mainColor)
}

.categories ul li .active {
	color: var(--mainColor)
}

.calculate-area form {
	margin-top: 25px
}

.calculate-area form .form-control,
.calculate-area form .form-select {
	padding: 15px;
	margin: 10px 0;
	border-radius: 25px;
	border: 1px solid #eee;
	color: var(--blackColor);
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.calculate-area form .form-control::after,
.calculate-area form .form-select::after {
	display: none
}

.calculate-area form .default-button {
	display: inline-block;
	width: 100%;
	padding: 15px;
	margin-top: 15px
}

.calculate-area form .current {
	color: var(--paragraphColor)
}

.opening-card ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.opening-card ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px
}

.opening-card ul li span {
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.recent-news,
.sd-tag {
	margin-top: 30px
}

.recent-news-card {
	margin-top: 20px;
	min-height: 90px;
	position: relative;
	padding-left: 105px
}

.recent-news-card img {
	position: absolute;
	border-radius: 50%;
	left: 0
}

.recent-news-card h5 {
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: var(--fontSize)
}

.recent-news-card p {
	font-size: 14px
}

.sd-tag ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.sd-tag ul li {
	display: inline-block;
	margin-right: 10px;
	margin-top: 5px;
	font-weight: 500
}

.sd-tag ul li a {
	font-size: 13px;
	padding: 5px 15px 7px;
	border-radius: 15px;
	border: 1px solid #eee;
	display: inline-block;
	background-color: var(--whiteColor)
}

.sd-tag ul li:last-child {
	margin-right: 0
}

.pagination {
	margin-top: 30px;
	text-align: center;
	display: inherit
}

.pagination ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.pagination ul li {
	display: inline-block
}

.pagination ul li a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	border: 1px solid var(--mainColor);
	margin: 0 3px;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--fontFamily)
}

.pagination ul li a:hover {
	color: var(--whiteColor);
	background-color: var(--mainColor)
}

.pagination ul .active a {
	color: var(--whiteColor);
	background-color: var(--mainColor)
}

.blog-quote {
	background-color: #f9faff;
	margin-top: 20px;
	margin-bottom: 25px;
	padding: 30px;
	border-radius: 25px
}

.blog-quote p {
	color: var(--blackColor);
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600
}

.blog-quote h5 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500
}

.blog-quote h5 i {
	color: var(--mainColor);
	margin-right: 15px
}

.blog-quote h5 span {
	color: var(--paragraphColor)
}

.blog-text-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 20px;
	border-radius: 25px;
	padding: 3px 15px 15px;
	background-color: #FFF7E9
}

.blog-text-footer ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.blog-text-footer ul li {
	display: inline-block
}

.blog-text-footer ul li span {
	font-weight: 600;
	margin-right: 10px;
	padding: 0 !important;
	background-color: transparent !important
}

.blog-text-footer .tag-area {
	margin-top: 12px
}

.blog-text-footer .tag-area ul li {
	margin-right: 5px;
	cursor: pointer;
	font-size: var(--fontSize);
	font-family: var(--fontFamily2)
}

.blog-text-footer .tag-area ul li i {
	color: var(--mainColor)
}

.blog-text-footer .tag-area ul li:hover {
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	color: var(--mainColor)
}

.blog-text-footer .tag-area ul li:first-child {
	padding: 0
}

.blog-text-footer .social-icons {
	margin-top: 12px
}

.blog-text-footer .social-icons ul li a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px dashed var(--mainColor);
	color: var(--mainColor);
	background-color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.blog-text-footer .social-icons ul li a:hover {
	color: var(--whiteColor);
	background-color: var(--mainColor)
}

.bd-comments {
	margin-top: 30px
}

.bd-comments h3 {
	font-size: var(--card-title-fontSize)
}

.comment-card {
	margin-top: 30px;
	position: relative;
	padding-left: 100px
}

.comment-card img {
	border-radius: 50%;
	position: absolute;
	left: 0
}

.comment-card h5 {
	margin-bottom: 0;
	font-weight: 600;
	font-size: var(--fontSize)
}

.comment-card span {
	color: var(--paragraphColor);
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 14px;
	font-family: var(--fontFamily)
}

.comment-card p {
	margin-top: 10px;
	margin-bottom: 10px
}

.comment-card a {
	color: var(--mainColor);
	font-weight: 500
}

.bd-form {
	margin-top: 30px;
	padding: 30px;
	border-radius: 25px
}

.bd-form h3 {
	font-size: var(--card-title-fontSize)
}

.bd-form .form-control {
	border: 0;
	margin-top: 15px;
	padding: 12px 15px;
	border-radius: 25px;
	background-color: var(--whiteColor)
}

.bd-form .default-button {
	margin-top: 20px
}

.blog-with-sidebar .blog-card {
	margin-top: 0;
	margin-bottom: 30px
}

.blog-with-sidebar .blog-card img {
	width: 100%
}

.blog-details-text-area .blog-card .blog-card-img img {
	-webkit-transform: rotate(0);
	transform: rotate(0)
}

.contact-card {
	position: relative;
	border-radius: 20px;
	padding: 25px 30px 0px 105px;
	margin-top: 30px;
	-webkit-box-shadow: 0 0 10px -3px #ccc;
	box-shadow: 0 0 10px -3px #ccc
}

.contact-card i {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 30px;
	color: var(--mainColor);
	border: 1px dashed var(--mainColor);
	-webkit-transition: .5s ease;
	transition: .5s ease;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	left: 30px
}

.contact-card h4 {
	margin-bottom: 5px;
	font-size: var(--card-title-fontSize);
	font-weight: 600
}

.contact-card p {
	margin-bottom: 0
}

.contact-card p a {
	color: var(--paragraphColor)
}

.contact-card:hover i {
	color: var(--whiteColor);
	background-color: var(--mainColor)
}

.contact-page-form-area {
	-webkit-box-shadow: 0 0 10px -3px #ccc;
	box-shadow: 0 0 10px -3px #ccc;
	border-radius: 25px;
	background: #404143;
}

.contact-page-form-area .bd-form h3 {
	margin-top: 0
}

.contact-page-form-area .bd-form .form-control {
	background-color: #FFF7E9
}

.google-map {
	width: 100%;
	height: 400px
}

.google-map .g-map {
	width: 100%;
	height: 100%
}

@-webkit-keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}

@keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}

@-webkit-keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center
	}
}

@keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center
	}
}

@-webkit-keyframes video-play {
	0% {
		width: 50%;
		height: 50%
	}

	100% {
		width: 100%;
		height: 100%
	}
}

@keyframes video-play {
	0% {
		width: 50%;
		height: 50%
	}

	100% {
		width: 100%;
		height: 100%
	}
}

.pull-right {
	float: right !important;
}

.call-btn,
.whatsapp-btn,
.book-now-btn {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	position: fixed;
	left: 1rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	box-shadow: 0px 1px 2px 1px rgb(43 46 74 / 30%);
	z-index: 10
}


.call-btn {
	background: var(--mainColor);
	bottom: 7rem;
}

.whatsapp-btn {
	background: #2BB741;
	bottom: 2rem;
}

.call-btn:hover,
.whatsapp-btn:hover,
.book-now-btn:hover {
	background: var(--secondColor);
	color: #fff
}

.book-now-btn {
	display: none;
}

@media (max-width: 600px) {
	.copy-right-area {
		padding-bottom: 65px;
	}

	.btns {
		margin-top: 5px;
		width: 100%;
		align-items: center;
	}

	.now {
		margin-top: 5px;
		width: 100%;
		text-align: center;
	}

	.call-btn {
		bottom: 0;
		left: 0;
		border-radius: 0;
		width: 20%;
	}

	.whatsapp-btn {
		bottom: 0;
		left: 20%;
		border-radius: 0;
		width: 20%;
	}

	.book-now-btn {
		font-size: 1.5rem;
        display: flex;
        bottom: 0;
        left: 40%;
        border-radius: 0;
        width: 60%;
        background: #ffb703;
        color: #000;
	}

	.call-btn,
	.whatsapp-btn,
	.book-now-btn {
		height: 45px;
	}
}

/* Site-wide readability polish */
:root {
	--mainColor: #c1121f;
	--secondColor: #14213d;
	--backgroundColor: #f5f7fb;
	--transparentColor: #fff8ed;
	--whiteColor: #ffffff;
	--blackColor: #101828;
	--paragraphColor: #475467;
	--borderColor: #d0d5dd;
	--softRedColor: #fff1f1;
}

body {
	background-color: var(--whiteColor);
	color: var(--blackColor);
}

p,
li,
.form-control,
.form-select {
	color: var(--paragraphColor);
}

.topbar {
	background: var(--secondColor);
	border-bottom: 0;
}

.topbar-left-side ul li,
.topbar-left-side ul li a,
.topbar-right-side a,
.topbar-right-side .account p {
	color: rgba(255, 255, 255, .92);
}

.topbar-left-side ul li i,
.topbar-right-side i {
	color: #ffb703;
}

.topbar-left-side ul li a:hover,
.topbar-right-side a:hover {
	color: var(--whiteColor);
}

.main-nav,
.header-area,
.navbar-area,
.sticky {
	background-color: var(--whiteColor) !important;
}

.main-nav nav .navbar-nav .nav-item a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	color: var(--blackColor);
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a.active,
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
	border: 1px solid var(--borderColor);
	border-radius: 6px;
	box-shadow: 0 16px 32px rgba(16, 24, 40, .12);
}

.default-button {
	background-color: var(--secondColor);
	border-color: var(--secondColor);
	color: var(--whiteColor);
	box-shadow: 0 8px 18px rgba(20, 33, 61, .14);
}

.default-button::before,
.default-button::after {
	background-color: var(--mainColor);
}

.default-button:hover {
	border-color: var(--mainColor);
	color: var(--whiteColor);
}

.bg-f9faff,
.service-4,
.testimonial,
.contact,
.blog,
.team {
	background-color: var(--backgroundColor) !important;
}

.bg-fff7e9,
.why-we,
.why-choose {
	background-color: var(--transparentColor) !important;
}

.default-section-title h6 {
	color: var(--mainColor);
	font-weight: 700;
}

.default-section-title h2,
.default-section-title h3,
.about-list ul li,
.features-card .features-card-text h4,
.service-card h4,
.service-card h3,
.testimonial-footer h4,
.footer-links h3 {
	color: var(--blackColor);
}

.newsletter-1,
.newsletter-content-area-3 {
	background-color: var(--mainColor);
}

.newsletter-content-area {
	background-color: var(--mainColor);
}

.newsletter-content-area .default-section-title h6,
.newsletter-content-area .default-section-title h3 {
	color: var(--whiteColor);
}

.newsletter-content-area .default-section-title h6::before {
	background-color: var(--whiteColor);
}

.newsletter-content-area .news-input-card .default-button,
.newsletter-content-area-3 .news-input-card .default-button {
	background-color: var(--secondColor);
	border-color: var(--secondColor);
	color: var(--whiteColor);
	min-height: 52px;
	box-shadow: 0 10px 20px rgba(16, 24, 40, .18);
}

.newsletter-content-area .news-input-card .default-button::before,
.newsletter-content-area .news-input-card .default-button::after,
.newsletter-content-area-3 .news-input-card .default-button::before,
.newsletter-content-area-3 .news-input-card .default-button::after {
	background-color: #0b1228;
}

.newsletter-content-area .news-input-card .default-button:hover,
.newsletter-content-area .news-input-card .default-button:focus,
.newsletter-content-area .news-input-card .default-button:active,
.newsletter-content-area-3 .news-input-card .default-button:hover,
.newsletter-content-area-3 .news-input-card .default-button:focus,
.newsletter-content-area-3 .news-input-card .default-button:active {
	background-color: #0b1228;
	border-color: var(--whiteColor);
	color: var(--whiteColor);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .35), 0 10px 20px rgba(16, 24, 40, .2) !important;
	transform: translateY(-1px);
}

.newsletter-content-area .news-input-card .default-button span,
.newsletter-content-area-3 .news-input-card .default-button span {
	color: inherit;
}

.news-input-card .form-control,
.news-input-card .form-select,
.booking-content .booking-form-content .form-control,
.booking-content .booking-form-content .form-select,
.contact-form-area .form-control,
.contact-form-area .form-select {
	background-color: var(--whiteColor);
	border: 1px solid var(--borderColor);
	color: var(--blackColor);
	box-shadow: 0 6px 14px rgba(16, 24, 40, .08);
}

.news-input-card .form-control::placeholder,
.contact-form-area .form-control::placeholder,
.booking-content .booking-form-content .form-control::placeholder {
	color: #667085;
	opacity: 1;
}

.news-input-card .form-control:focus,
.news-input-card .form-select:focus,
.booking-content .booking-form-content .form-control:focus,
.booking-content .booking-form-content .form-select:focus,
.contact-form-area .form-control:focus,
.contact-form-area .form-select:focus {
	border-color: var(--secondColor);
	box-shadow: 0 0 0 3px rgba(20, 33, 61, .14) !important;
}

.why-we-card-3,
.features-card,
.testimonial-card,
.service-card,
.service-card-2,
.pricing-card,
.blog-card,
.single-contact-card,
.global-location-area .single-location-box {
	background-color: var(--whiteColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
}

.why-we-card-3 h3 {
	color: var(--blackColor);
}

.why-we-card-3 p {
	color: var(--paragraphColor);
	font-weight: 500;
}

.about-text-2,
.booking-form-area-3,
.single-contact-card i,
.go-top:hover {
	background-color: var(--mainColor);
}

.about-text-2 h2,
.about-text-2 p,
.booking-form-area-3 .booking-form-content-3 .default-section-title h3 {
	color: var(--whiteColor);
}

.footer.bg-000000,
.copyright.bg-000000 {
	background-color: #101828;
}

.footer-2 .footer-logo-area p,
.footer-2 .footer-logo-area .footer-social-icons span,
.footer-2 .footer-content-card h5,
.footer-2 .footer-newsletter p,
.copyright p {
	color: rgba(255, 255, 255, .82);
}

.footer-2 .footer-content-card a,
.footer-2 .footer-quick-links ul li a,
.footer-2 .footer-links h3 {
	color: var(--whiteColor);
}

.footer-2 .footer-quick-links ul li a:hover,
.copyright p a {
	color: #ffb703;
}

.footer-logo-area .footer-social-icons ul li a {
	background-color: rgba(255, 255, 255, .1);
	color: var(--whiteColor);
}

.footer-logo-area .footer-social-icons ul li a:hover {
	background-color: var(--mainColor);
	color: var(--whiteColor);
}

.call-btn {
	background: var(--mainColor);
}

.call-btn i {
	animation: call-heartbeat 1.35s ease-in-out infinite;
	transform-origin: center;
}

@keyframes call-heartbeat {
	0%,
	100% {
		transform: scale(1);
	}

	18% {
		transform: scale(1.18);
	}

	32% {
		transform: scale(.96);
	}

	48% {
		transform: scale(1.12);
	}

	64% {
		transform: scale(1);
	}
}

.whatsapp-btn {
	background: #168a3a;
}

.call-btn:hover,
.whatsapp-btn:hover,
.book-now-btn:hover {
	background: var(--secondColor);
	color: var(--whiteColor);
}

@media only screen and (max-width:767px) {
	.mean-container .mean-bar {
		background: var(--whiteColor);
	}

	.mean-container a.meanmenu-reveal {
		color: var(--secondColor);
	}

	.mean-container a.meanmenu-reveal span {
		background: var(--secondColor);
	}

	.mean-container .mean-nav {
		background: var(--whiteColor);
		box-shadow: 0 12px 28px rgba(16, 24, 40, .12);
	}

	.mean-container .mean-nav ul li a {
		color: var(--blackColor);
		border-top-color: var(--borderColor);
	}
}

/* Home page section refinements */
.pt-70 {
	padding-top: 64px;
	padding-bottom: 64px;
}

.default-section-title-middle {
	margin-bottom: 18px;
}

.default-section-title h6 {
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.default-section-title h2,
.default-section-title h3 {
	color: var(--blackColor);
	line-height: 1.25;
}

.service-4 {
	padding-bottom: 56px;
}

.service-4 .service-card-3 {
	height: 100%;
	border-radius: 14px;
	border: 1px solid var(--borderColor);
	box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-4 .service-card-3:hover {
	border-color: rgba(193, 18, 31, .28);
	box-shadow: 0 18px 36px rgba(16, 24, 40, .12);
	transform: translateY(-4px);
}

.service-card-3 .service-card-img-3 {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: var(--backgroundColor);
}

.service-card-3 .service-card-img-3 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.service-card-3:hover .service-card-img-3 img {
	transform: scale(1.04);
}

.service-card-3 .service-card-text-3 {
	padding: 24px;
}

.service-card-3 .service-card-text-3 h4 {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.35;
}

.service-card-3 .service-card-text-3 h4 a {
	color: var(--blackColor);
}

.service-card-3 .service-card-text-3 p {
	margin-bottom: 16px;
}

.read-more-btn {
	color: var(--secondColor);
	font-weight: 700;
}

.read-more-btn:hover {
	color: var(--mainColor);
}

.why-we {
	padding-top: 64px;
	padding-bottom: 50px;
}

.why-we .section-content .row {
	row-gap: 20px;
}

.why-we .why-we-card-3 {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	min-height: 128px;
	padding: 22px 24px;
	margin-top: 0;
	border-radius: 10px;
	background: var(--whiteColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 10px 24px rgba(16, 24, 40, .07);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-we .why-we-card-3:hover {
	border-color: rgba(193, 18, 31, .3);
	box-shadow: 0 16px 34px rgba(16, 24, 40, .12);
	transform: translateY(-3px);
}

.why-we .why-we-card-3 i {
	position: static;
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--softRedColor);
	color: var(--mainColor);
	font-size: 34px;
	line-height: 1;
}

.why-we .why-we-card-3 h4 {
	margin: 0 0 7px;
	color: var(--blackColor);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.why-we .why-we-card-3 p {
	margin: 0;
	color: var(--paragraphColor);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
}

.why-choose .why-we-card-3 {
	min-height: 154px;
	padding: 22px 16px;
	border-radius: 10px;
}

.why-choose .why-we-card-3 img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.why-choose .why-we-card-3 h3 {
	margin-bottom: 8px;
	line-height: 1.35;
}

.why-choose .why-we-card-3 i {
	position: static;
	width: 62px;
	height: 62px;
	margin: 0 auto 12px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--softRedColor);
	color: var(--mainColor);
	font-size: 28px;
	box-shadow: inset 0 0 0 1px rgba(193, 18, 31, .12);
}

.why-choose .why-we-card-3 h3 {
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}

.portfolio {
	padding-bottom: 64px;
}

.portfolio-card {
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(16, 24, 40, .1);
	background-color: var(--secondColor);
}

.portfolio-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.portfolio-card::before {
	height: 100%;
	background-image: linear-gradient(to top, rgba(16, 24, 40, .86), rgba(16, 24, 40, .28), rgba(16, 24, 40, .02));
}

.portfolio-card .portfolio-text {
	transform: none;
	padding: 18px;
	text-align: left;
}

.portfolio-card .portfolio-text p {
	color: #ffb703;
	font-weight: 700;
}

.portfolio-card .portfolio-text h4 {
	font-size: 20px;
	line-height: 1.3;
}

.portfolio-card:hover .portfolio-text {
	transform: translateY(-4px);
}

.global-location-area .single-location-box {
	border-radius: 10px;
}

.global-location-area .single-location-box a {
	width: 100%;
	color: var(--secondColor);
}

.global-location-area .single-location-box:hover {
	border-color: rgba(193, 18, 31, .35);
	box-shadow: 0 14px 30px rgba(16, 24, 40, .12);
}

.global-location-area .single-location-box a:hover {
	color: var(--mainColor);
}

@media only screen and (max-width:767px) {
	.pt-70 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.default-section-title h3,
	.default-section-title h2 {
		font-size: 26px;
	}

	.service-card-3 .service-card-text-3 {
		padding: 20px;
	}

	.why-we .why-we-card-3 {
		min-height: auto;
		padding: 18px;
	}

	.why-we .why-we-card-3 i {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
		font-size: 29px;
	}

	.why-we .why-we-card-3 h4 {
		font-size: 19px;
	}

	.portfolio-card .portfolio-text {
		padding: 14px;
	}

	.portfolio-card .portfolio-text h4 {
		font-size: 16px;
	}
}

/* Inner pages and contact polish */
.uni-banner::before {
	background: linear-gradient(90deg, rgba(16, 24, 40, .88), rgba(16, 24, 40, .72));
}

.uni-banner-text {
	padding-top: 84px;
	padding-bottom: 84px;
}

.uni-banner-text h1 {
	font-size: 46px;
	line-height: 1.2;
}

.uni-banner-text ul li {
	color: #ffb703;
	font-weight: 700;
}

.details-text-area h2,
.details-text-area h3,
.sidebar-card h3,
.contact-card h4 {
	color: var(--blackColor);
	line-height: 1.35;
}

.details-text-area .details-page-img img,
.sd-img-area img {
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(16, 24, 40, .1);
}

.sidebar-card {
	border-radius: 14px;
	border: 1px solid var(--borderColor);
	box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
}

.sidebar-card h3 {
	border-bottom-color: rgba(193, 18, 31, .3);
}

.calculate-area form .form-control,
.calculate-area form .form-select,
.booking-form-area .booking-form-content .form-control,
.booking-form-area .booking-form-content .form-select,
.bd-form .form-control {
	background-color: var(--whiteColor);
	border: 1px solid var(--borderColor);
	color: var(--blackColor);
	box-shadow: none;
}

.calculate-area form .form-control:focus,
.calculate-area form .form-select:focus,
.booking-form-area .booking-form-content .form-control:focus,
.booking-form-area .booking-form-content .form-select:focus,
.bd-form .form-control:focus {
	border-color: var(--secondColor);
	box-shadow: 0 0 0 3px rgba(20, 33, 61, .14) !important;
}

.contact-page {
	background-color: var(--backgroundColor);
}

.contact-card {
	min-height: 142px;
	padding: 25px 28px 24px 104px;
	background: var(--whiteColor);
	border: 1px solid var(--borderColor);
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
}

.contact-card i {
	left: 28px;
	top: 26px;
	background-color: var(--softRedColor);
	border: 0;
	border-radius: 14px;
}

.contact-card p a {
	color: var(--paragraphColor);
}

.contact-card p a:hover {
	color: var(--mainColor);
}

.contact-page-form-area {
	background: var(--secondColor);
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(16, 24, 40, .16);
}

.contact-page-form-area .bd-form {
	padding: 34px;
}

.contact-page-form-area .bd-form .form-control {
	background-color: var(--whiteColor);
	border-radius: 12px;
}

.contact-page-form-area .bd-form textarea.form-control {
	resize: vertical;
}

.google-map {
	overflow: hidden;
	border-top: 1px solid var(--borderColor);
}

.google-map iframe {
	display: block;
	filter: saturate(.92) contrast(1.02);
}

@media only screen and (max-width:767px) {
	.uni-banner-text {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.uni-banner-text h1 {
		font-size: 34px;
	}

	.contact-card {
		min-height: auto;
		padding: 22px 20px 22px 88px;
	}

	.contact-card i {
		left: 20px;
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.contact-page-form-area .bd-form {
		padding: 24px 18px;
	}
}

/* Service section image and card layout fix */
.service-4 .section-content {
	margin-top: 26px;
}

.service-4 .section-content .row {
	row-gap: 30px;
}

.service-4 .section-content .row > [class*="col-"] {
	display: flex;
}

.service-4 .service-card-3 {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 0;
	overflow: hidden;
	background-color: var(--whiteColor);
}

.service-4 .service-card-3 .service-card-img-3 {
	width: 100%;
	height: clamp(210px, 18vw, 260px);
	aspect-ratio: auto;
	flex: 0 0 auto;
	overflow: hidden;
	background-color: var(--backgroundColor);
}

.service-4 .service-card-3 .service-card-img-3 img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
}

.service-4 .service-card-3 .service-card-text-3 {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 24px 24px 26px;
}

.service-4 .service-card-3 .service-card-text-3 h4 {
	min-height: 54px;
	margin-bottom: 10px;
}

.service-4 .service-card-3 .service-card-text-3 p {
	margin-bottom: 18px;
}

.service-4 .service-card-3 .service-card-text-3 .read-more-btn {
	margin-top: auto;
}

@media only screen and (max-width:991px) {
	.service-4 .service-card-3 .service-card-img-3 {
		height: 230px;
	}
}

@media only screen and (max-width:767px) {
	.service-4 .section-content .row {
		row-gap: 22px;
	}

	.service-4 .service-card-3 .service-card-img-3 {
		height: 220px;
	}

	.service-4 .service-card-3 .service-card-text-3 h4 {
		min-height: auto;
	}
}

@media only screen and (max-width:420px) {
	.service-4 .service-card-3 .service-card-img-3 {
		height: 200px;
	}
}

/* Desktop service grid: 4 cards per row with 356x267 image ratio */
.service-4 .service-card-3 .service-card-img-3 {
	aspect-ratio: 356 / 267;
	height: auto;
	background-color: var(--whiteColor);
}

.service-4 .service-card-3 .service-card-img-3 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media only screen and (min-width:1200px) {
	.service-4 .section-content .row > .col-lg-4 {
		flex: 0 0 auto;
		width: 25%;
	}

	.service-4 .service-card-3 .service-card-text-3 {
		padding: 20px 20px 22px;
	}

	.service-4 .service-card-3 .service-card-text-3 h4 {
		min-height: 52px;
		font-size: 18px;
	}

	.service-4 .service-card-3 .service-card-text-3 p {
		font-size: 15px;
		line-height: 1.65;
	}
}

@media only screen and (min-width:992px) and (max-width:1199px) {
	.service-4 .section-content .row > .col-lg-4 {
		flex: 0 0 auto;
		width: 33.333333%;
	}
}

/* Why choose us premium card layout */
.premium-pricing {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 8%, rgba(193, 18, 31, .16), transparent 34%),
		radial-gradient(circle at 86% 18%, rgba(255, 183, 3, .13), transparent 30%),
		linear-gradient(135deg, var(--secondColor) 0%, #101828 62%, #26070a 100%);
}

.premium-pricing::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent);
	pointer-events: none;
}

.premium-pricing .container {
	position: relative;
	z-index: 1;
}

.premium-pricing .default-section-title h6,
.premium-pricing .default-section-title h2,
.premium-pricing .default-section-title p {
	color: #ffffff;
}

.premium-pricing .default-section-title h6::before {
	background: #ffb703;
}

.premium-pricing .default-section-title h2 {
	font-size: 38px;
	letter-spacing: 0;
}

.premium-pricing .default-section-title p {
	max-width: 780px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, .82);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 34px;
}

.premium-price-card {
	position: relative;
	overflow: hidden;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 16px;
	background: rgba(255, 255, 255, .95);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
	transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.premium-price-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(193, 18, 31, .12), transparent 44%);
	opacity: 1;
	transition: opacity .35s ease;
}

.premium-price-card::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--mainColor), #ffb703);
}

.premium-price-card > * {
	position: relative;
	z-index: 1;
}

.premium-price-card:hover {
	transform: translateY(-8px);
	border-color: rgba(193, 18, 31, .34);
	background: var(--whiteColor);
	box-shadow: 0 26px 62px rgba(0, 0, 0, .28);
}

.premium-price-card:hover::before {
	opacity: 1;
}

.price-icon {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--softRedColor);
	border: 1px solid rgba(193, 18, 31, .14);
	color: #ffffff;
	font-size: 25px;
	box-shadow: 0 14px 26px rgba(193, 18, 31, .13);
}

.price-icon i {
	color: var(--mainColor);
}

.premium-price-card h3 {
	margin: 20px 0 10px;
	color: var(--blackColor);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.28;
}

.premium-price-card .price {
	margin-bottom: 20px;
	color: var(--mainColor);
	font-family: var(--fontFamily);
	font-size: 33px;
	font-weight: 900;
}

.premium-price-card .price span {
	display: block;
	margin-top: 2px;
	color: var(--paragraphColor);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.premium-price-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.premium-price-card ul li {
	position: relative;
	margin-top: 12px;
	padding-left: 28px;
	color: var(--paragraphColor);
	font-family: var(--fontFamily2);
	line-height: 1.5;
}

.premium-price-card ul li::before {
	content: '\f00c';
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #dcfae6;
	color: #067647;
	font-family: "Font Awesome 5 Free";
	font-size: 10px;
	font-weight: 900;
}

.price-cta {
	width: 100%;
	margin-top: 24px;
	padding: 13px 18px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--secondColor);
	color: var(--whiteColor);
	font-family: var(--fontFamily);
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(20, 33, 61, .16);
}

.price-cta:hover {
	background: var(--mainColor);
	color: #ffffff;
}

.pricing-trust-badges {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.pricing-trust-badges span {
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	color: #ffffff;
	font-family: var(--fontFamily2);
	font-weight: 700;
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.pricing-trust-badges i {
	margin-right: 7px;
	color: #ffb703;
}

.reveal-on-scroll {
	animation: premium-card-reveal both;
	animation-timeline: view();
	animation-range: entry 12% cover 28%;
}

@keyframes premium-card-reveal {
	from {
		opacity: 0;
		transform: translateY(34px) scale(.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@supports not (animation-timeline: view()) {
	.reveal-on-scroll {
		animation: premium-card-fallback .7s ease both;
	}

	.premium-price-card:nth-child(2) {
		animation-delay: .08s;
	}

	.premium-price-card:nth-child(3) {
		animation-delay: .16s;
	}

	.premium-price-card:nth-child(4) {
		animation-delay: .24s;
	}

	.premium-price-card:nth-child(5) {
		animation-delay: .32s;
	}

	.premium-price-card:nth-child(6) {
		animation-delay: .4s;
	}
}

@keyframes premium-card-fallback {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media only screen and (max-width:991px) {
	.pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width:767px) {
	.premium-pricing .default-section-title h2 {
		font-size: 28px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.premium-price-card {
		padding: 24px;
	}
}

.why-we {
	background: linear-gradient(180deg, #fff8ed 0%, #ffffff 100%) !important;
}

.why-we .default-section-title-middle {
	max-width: 760px;
	margin-bottom: 30px;
}

.why-we .section-content .row {
	row-gap: 24px;
}

.why-we .why-we-card-3 {
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: auto auto;
	column-gap: 18px;
	row-gap: 6px;
	min-height: 150px;
	padding: 26px;
	border: 1px solid rgba(208, 213, 221, .95);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(255, 241, 241, .95) 0%, rgba(255, 255, 255, 0) 42%),
		var(--whiteColor);
	box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.why-we .why-we-card-3::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 4px solid transparent;
	transition: border-color .25s ease;
	pointer-events: none;
}

.why-we .why-we-card-3:hover::before {
	border-top-color: var(--mainColor);
}

.why-we .why-we-card-3 i {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
	width: 64px;
	height: 64px;
	flex-basis: auto;
	border-radius: 18px;
	background: var(--mainColor);
	color: var(--whiteColor);
	box-shadow: 0 12px 24px rgba(193, 18, 31, .22);
	font-size: 34px;
}

.why-we .why-we-card-3 h4 {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	font-size: 21px;
	line-height: 1.28;
}

.why-we .why-we-card-3 p {
	grid-column: 2;
	grid-row: 2;
	max-width: 250px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

@media only screen and (max-width:767px) {
	.why-we .why-we-card-3 {
		grid-template-columns: 56px 1fr;
		min-height: auto;
		padding: 22px;
	}

	.why-we .why-we-card-3 i {
		width: 56px;
		height: 56px;
		font-size: 30px;
	}

	.why-we .why-we-card-3 h4 {
		font-size: 19px;
	}
}

/* Bangalore to city SEO route pages */
.route-banner .uni-banner-text h1 {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

.route-page {
	background-color: var(--whiteColor);
}

.route-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
	gap: 34px;
	align-items: stretch;
}

.route-copy,
.route-quote-box,
.route-content-card,
.route-service-card {
	border: 1px solid var(--borderColor);
	border-radius: 16px;
	background-color: var(--whiteColor);
	box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.route-copy {
	padding: 34px;
}

.route-copy p {
	font-size: 16px;
	line-height: 1.85;
}

.route-check-list,
.route-steps {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.route-check-list li {
	margin-top: 12px;
	color: var(--blackColor);
	font-family: var(--fontFamily2);
	line-height: 1.6;
}

.route-check-list li i {
	margin-right: 8px;
	color: var(--mainColor);
}

.route-copy .default-button {
	margin-top: 24px;
}

.route-quote-box {
	padding: 30px;
	background: var(--secondColor);
}

.route-quote-box h3 {
	margin-bottom: 18px;
	color: var(--whiteColor);
	font-size: 24px;
	font-weight: 700;
}

.route-quote-box .form-control,
.route-quote-box .form-select {
	width: 100%;
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 10px;
	background-color: var(--whiteColor);
	color: var(--blackColor);
}

.route-quote-box .default-button {
	width: 100%;
	margin-top: 18px;
	border-color: var(--whiteColor);
	background-color: var(--mainColor);
}

.route-services .row {
	row-gap: 24px;
}

.route-service-card {
	height: 100%;
	padding: 28px 22px;
}

.route-service-card i {
	width: 58px;
	height: 58px;
	margin-bottom: 16px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--softRedColor);
	color: var(--mainColor);
	font-size: 32px;
}

.route-service-card h4,
.route-content-card h3 {
	color: var(--blackColor);
	font-weight: 700;
	line-height: 1.35;
}

.route-service-card h4 {
	font-size: 21px;
}

.route-content-card {
	height: 100%;
	padding: 30px;
}

.route-steps li {
	position: relative;
	min-height: 42px;
	margin-top: 16px;
	padding-left: 54px;
	color: var(--paragraphColor);
	font-family: var(--fontFamily2);
	line-height: 1.65;
}

.route-steps li span {
	position: absolute;
	left: 0;
	top: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mainColor);
	color: var(--whiteColor);
	font-weight: 700;
}

.route-faq .accordion {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width:991px) {
	.route-hero-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width:767px) {
	.route-copy,
	.route-quote-box,
	.route-content-card {
		padding: 22px;
	}
}

/* Home SEO sections */
.customer-prefer {
	background: var(--whiteColor);
}

.prefer-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--borderColor);
	border-radius: 16px;
	background: var(--whiteColor);
	box-shadow: 0 16px 38px rgba(16, 24, 40, .08);
}

.prefer-table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
	font-family: var(--fontFamily2);
}

.prefer-table th,
.prefer-table td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--borderColor);
	text-align: left;
	vertical-align: middle;
}

.prefer-table th {
	background: var(--secondColor);
	color: var(--whiteColor);
	font-family: var(--fontFamily);
	font-size: 17px;
	font-weight: 700;
}

.prefer-table td:first-child {
	color: var(--blackColor);
	font-weight: 700;
}

.prefer-table td:nth-child(2) {
	color: #667085;
}

.prefer-table td:nth-child(3) {
	color: #067647;
	font-weight: 700;
}

.prefer-table td:nth-child(3) span {
	position: relative;
	display: inline-block;
	padding-left: 28px;
}

.prefer-table td:nth-child(3) span::before {
	content: '\f00c';
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #dcfae6;
	color: #067647;
	font-family: "Font Awesome 5 Free";
	font-size: 11px;
	font-weight: 900;
}

.prefer-table tbody tr:last-child td {
	border-bottom: 0;
}

.prefer-table tbody tr:nth-child(even) {
	background: #f8fafc;
}

.prefer-highlight {
	margin: 24px auto 0;
	padding: 16px 20px;
	border-radius: 12px;
	max-width: 820px;
	text-align: center;
	background: var(--softRedColor);
	color: var(--blackColor);
	font-family: var(--fontFamily);
	font-weight: 800;
}

.prefer-highlight i {
	margin-right: 8px;
	color: var(--mainColor);
}

.prefer-cta {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	text-align: center;
}

.prefer-cta h4 {
	margin: 0;
	color: var(--blackColor);
	font-size: 22px;
	font-weight: 800;
}

.popular-routes .row,
.moving-process .row,
.blog .row {
	row-gap: 22px;
}

.route-pill {
	height: 100%;
	min-height: 72px;
	padding: 18px;
	border: 1px solid var(--borderColor);
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--whiteColor);
	color: var(--secondColor);
	font-family: var(--fontFamily2);
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(16, 24, 40, .07);
}

.route-pill i {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--softRedColor);
	color: var(--mainColor);
}

.route-pill:hover {
	border-color: rgba(193, 18, 31, .35);
	color: var(--mainColor);
	transform: translateY(-2px);
}

.process-card,
.seo-blog-card {
	height: 100%;
	padding: 26px;
	border: 1px solid var(--borderColor);
	border-radius: 16px;
	background: var(--whiteColor);
	box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.process-card span {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mainColor);
	color: var(--whiteColor);
	font-weight: 800;
	font-family: var(--fontFamily);
}

.process-card h4,
.seo-blog-card h4 {
	color: var(--blackColor);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.logistics-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	padding-top: 34px;
}

.timeline-line {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 66px;
	height: 4px;
	border-radius: 999px;
	background: #e4e7ec;
	overflow: hidden;
}

.timeline-line::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--mainColor), #ffb703, var(--mainColor));
	animation: logistics-progress 3.6s ease-in-out infinite;
}

.timeline-step {
	position: relative;
	z-index: 1;
	padding: 0 10px 24px;
	text-align: center;
}

.timeline-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border: 4px solid var(--whiteColor);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--secondColor);
	color: var(--whiteColor);
	font-size: 25px;
	box-shadow: 0 14px 30px rgba(16, 24, 40, .18);
	animation: logistics-node 2.8s ease-in-out infinite;
}

.timeline-step:nth-child(3) .timeline-icon {
	animation-delay: .2s;
}

.timeline-step:nth-child(4) .timeline-icon {
	animation-delay: .4s;
}

.timeline-step:nth-child(5) .timeline-icon {
	animation-delay: .6s;
}

.timeline-step:nth-child(6) .timeline-icon {
	animation-delay: .8s;
}

.timeline-step:nth-child(7) .timeline-icon {
	animation-delay: 1s;
}

.timeline-step h4 {
	margin-bottom: 8px;
	color: var(--blackColor);
	font-size: 19px;
	font-weight: 800;
}

.timeline-step p {
	max-width: 190px;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
	line-height: 1.65;
}

@keyframes logistics-progress {
	0% {
		transform: translateX(-120%);
	}

	55%,
	100% {
		transform: translateX(260%);
	}
}

@keyframes logistics-node {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	45% {
		transform: translateY(-5px) scale(1.04);
	}
}

.cost-calculator-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
	gap: 34px;
	align-items: center;
	padding: 34px;
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 241, 241, .86) 0%, rgba(255, 255, 255, 0) 45%),
		var(--whiteColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 16px 38px rgba(16, 24, 40, .1);
}

.home-cost-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.home-cost-form .form-control,
.home-cost-form .form-select {
	padding: 14px 16px;
	border: 1px solid var(--borderColor);
	border-radius: 10px;
	color: var(--blackColor);
}

.home-cost-form .default-button {
	grid-column: 1 / -1;
	width: 100%;
}

.video-panel {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	gap: 32px;
	align-items: center;
	padding: 34px;
	border-radius: 18px;
	background: var(--secondColor);
}

.video-panel .default-section-title h6,
.video-panel .default-section-title h3,
.video-panel p {
	color: var(--whiteColor);
}

.video-preview {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 16px;
}

.video-preview img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.video-preview span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mainColor);
	color: var(--whiteColor);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 12px rgba(255, 255, 255, .25);
}

.seo-blog-card a {
	color: var(--mainColor);
	font-weight: 700;
}

.home-cta-banner {
	padding: 48px 0;
	background: var(--mainColor);
}

.home-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.home-cta-inner h3 {
	margin-bottom: 8px;
	color: var(--whiteColor);
	font-size: 32px;
	font-weight: 800;
}

.home-cta-inner p {
	color: rgba(255, 255, 255, .9);
}

.home-cta-inner .default-button {
	border-color: var(--whiteColor);
	background: var(--secondColor);
	white-space: nowrap;
}

.footer-seo-content {
	background: var(--whiteColor);
}

.footer-seo-content p {
	max-width: 1120px;
}

@media only screen and (max-width:991px) {
	.cost-calculator-wrap,
	.video-panel {
		grid-template-columns: 1fr;
	}

	.home-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media only screen and (max-width:767px) {
	.prefer-table th,
	.prefer-table td {
		padding: 14px 16px;
	}

	.prefer-cta {
		flex-direction: column;
	}

	.prefer-cta h4 {
		font-size: 19px;
	}

	.logistics-timeline {
		display: block;
		padding-top: 0;
		padding-left: 32px;
	}

	.timeline-line {
		left: 32px;
		right: auto;
		top: 8px;
		bottom: 8px;
		width: 4px;
		height: auto;
	}

	.timeline-line::before {
		width: 100%;
		height: 35%;
		animation: logistics-progress-mobile 3.6s ease-in-out infinite;
	}

	.timeline-step {
		min-height: 116px;
		padding: 0 0 22px 58px;
		text-align: left;
	}

	.timeline-icon {
		position: absolute;
		left: -28px;
		top: 0;
		width: 56px;
		height: 56px;
		margin: 0;
		font-size: 21px;
	}

	.timeline-step p {
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.home-cost-form {
		grid-template-columns: 1fr;
	}

	.cost-calculator-wrap,
	.video-panel {
		padding: 22px;
	}

	.home-cta-inner h3 {
		font-size: 25px;
	}
}

@keyframes logistics-progress-mobile {
	0% {
		transform: translateY(-120%);
	}

	55%,
	100% {
		transform: translateY(330%);
	}
}
